diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 00000000..ca443103 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,42 @@ +# AI Coding Assistant Instructions for SEPTA Service Cuts Engagement Project + +## Project Overview +This is a client-side web application that visualizes the impact of SEPTA bus service cuts on Philadelphia residents. Users enter their address or use geolocation to see how cuts affected bus routes in their Pennsylvania Senate district. The app uses Leaflet maps, Turf.js for geospatial analysis, and Census geocoding API. + +## Architecture +- **Modular ES6**: Code split into `js/` modules (main.js, map.js, location.js, utils.js) with event-driven communication via a shared EventTarget bus. +- **Data Flow**: User location → geocoding → district lookup → filter/display route impacts. +- **No Build System**: Static files served directly; use ES modules and CDN libraries (Leaflet, Turf.js, Lodash). +- **Data Sources**: Pre-processed GeoJSON files in `data/` (routes, stops, districts) generated from R scripts. + +## Key Conventions +- **Event Bus Pattern**: Use `events.dispatchEvent(new CustomEvent('eventName', { detail: data }))` for inter-module communication (e.g., `userLocationAcquired`, `districtData`). +- **Async Data Loading**: Fetch JSON with `await fetch('data/filename.json')` in `utils.js`. +- **Geospatial Ops**: Use Turf.js for point-in-polygon (district lookup) and masking. +- **Debounced Inputs**: Apply Lodash `_.debounce()` to address search for performance. +- **CORS Handling**: Route external API calls through `https://corsproxy.io/?url=` for Census geocoding. + +## Developer Workflows +- **Linting**: Run `npm run js-lint` (ESLint) and `npm run css-lint` (Stylelint) before commits. +- **Data Processing**: Use R scripts in `r/` to transform raw CSV arrivals data into GeoJSON (e.g., `export_to_geojson.R`). +- **Local Development**: Open `index.html` in browser; no server needed for static assets. +- **Testing**: Manually test geolocation, address input, and map interactions across districts. + +## Common Patterns +- **Map Styling**: Define Leaflet styles as functions returning objects (e.g., `standardStyle(feature)` in `map.js`). +- **District Overlay**: Use Turf `turf.mask()` to create inverted polygons for focus areas. +- **Error Handling**: Alert users for geolocation failures; log console errors for debugging. +- **Responsive Design**: CSS in `styles.css` handles sidebar/map layout. + +## Integration Points +- **Leaflet Map**: Initialized in `map.js` with CartoDB basemap; add GeoJSON layers with custom styles. +- **Census API**: Geocode addresses via `https://geocoding.geo.census.gov/geocoder/locations/address` with Philadelphia bounds. +- **Turf.js**: Perform spatial queries like `turf.booleanPointInPolygon(point, polygon)`. + +## File Structure Highlights +- `js/main.js`: Entry point, loads data, sets up event listeners. +- `js/location.js`: Handles geolocation and address search with debounced API calls. +- `js/map.js`: Manages Leaflet map, legend, and district masking. +- `data/`: Static GeoJSON (septa_routes.json, arrivals_and_stops.json, districts.json). +- `r/`: Data processing scripts for generating JSON from raw CSVs. +/Users/chkim/Documents/Projects/classes/musa-javascript/septa-cuts-engagement/.github/copilot-instructions.md \ No newline at end of file diff --git a/.gitignore b/.gitignore index 12ac6472..4a02da5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ node_modules/ -.DS_Store \ No newline at end of file +.DS_Store +*.csv +.Rhistory diff --git a/README.md b/README.md index 40a45209..70986a9a 100644 --- a/README.md +++ b/README.md @@ -1 +1,19 @@ -Add a readme for your engagement tool here. Include content overview, data citations, and any relevant technical details. \ No newline at end of file +## Introduction + +Due to a structural funding shortfall, SEPTA (the transit agency for the Philadelphia area) was forced to enact significant service cuts in the summer of 2025. The service cuts lasted two weeks, starting August 24. Though the cuts were reversed after the agency shifted funds from its capital budget to its operating budget, the underlying funding shortfall still remains, and similar cuts may return if a long-term funding agreement is not enacted by the Pennsylvania legislature. + +## Purpose + +This online tool is intended to help SEPTA riders (or potential SEPTA riders) understand what the day-to-day impacts of these service cuts were. The tool, based on actual service data rather than scheduled trips, allows users to select specific trips (for example, their commuting trips) to see how bus service to their own stop at particular times of day were impacted by the service cuts. + +This tool focuses specifically on reduced bus service. Though the media and riders (understandably) paid much attention to the 32 eliminated and 19 shortened bus routes, as well as the threat of elimination for several Regional Rail lines, the degradation in service for routes which still existed—and continued to serve hundreds of thousands of riders—received less attention. This tool alleviates this information gap by quantifying the actual decrease in service as well as estimating the amount of time lost to riders because of the service cuts. + +## Data and methods + +The underlying data are real-time bus arrival data collected by SEPTA (and generously shared with the author). The data include arrival times for 41 bus routes which continued operations during the service cuts; these routes include high, medium, and low ridership routes, as well as a mix of urban and suburban routes. The time period of the data spans the week immediately before the cuts (August 17-23), as well as the first week of the cuts (August August 24-30). + +The number of bus arrivals both before and during the cuts is calculated at each stop, separately for each route, each direction, day of the week (weekday vs weekend), and time of day. (The count is normalized by day of week, so that the values are comparable for weekdays and weekends. Further, any trip with a bus arrival count of zero either before or during the cuts is excluded from comparison.) Based on these counts, the percentage difference during the cuts vs before the cuts is calculated. + +The estimates of waiting times are calculated by dividing the number of minutes in the time window by the number of arrivals, and dividing this value by two. For example, if 3 buses arrived at the stop during the morning rush period (7-10 am), the average waiting time would be 30 minutes (i.e., with a frequency of one bus per hour, if you arrive at a random time the expected value of of your waiting time would be 30 minutes). The difference in waiting time due to the cuts is simply the waiting time during the cuts minus the waiting time before the cuts. + + diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 00000000..2ec862e4 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,113 @@ +html { + font-size: 24px; + font-family: 'Gill Sans', sans-serif; +} + +body { + padding: 0; + margin: 0; +} + +.content { + display: flex; + flex-direction: row; + min-height: 100vh; +} + +.map-container { + position: relative; + min-width: 0; + background-color: silver; + flex: 1 1 50%; +} + +#map { + position: absolute; + inset: 0; +} + +.marker-pin { + width: 30px; + height: 30px; + border-radius: 50% 50% 50% 0; + background: #000000; + position: absolute; + transform: rotate(-45deg); + left: 50%; + top: 50%; + margin: -15px 0 0 -15px; +} + +.marker-pin::after { + content: ''; + width: 24px; + height: 24px; + margin: 3px 0 0 3px; + background: #fff; + position: absolute; + border-radius: 50%; +} + +.custom-div-icon i { + position: absolute; + width: 22px; + font-size: 22px; + left: 0; + right: 0; + margin: 10px auto; + text-align: center; +} + +.custom-div-icon i.awesome { + margin: 12px auto; + font-size: 17px; +} + +.sidebar { + position: relative; + background-color: #e9c46a; + padding: 16px; + display: flex; + flex-direction: column; + flex: 0 0 50%; + justify-content: space-around; +} + +.sidebar-container { + background-color: white; + padding: 12px; + margin: 5px; +} + +#trip-search-container { + display: flex; + flex-direction: column; +} + +.input { + flex: 0 0 auto; + padding: 8px; + border: none; + border-radius: 4px; + margin-right: 10px; +} + +.input label { + font-weight: bold; +} + +.citations { + flex: 1 0 auto; + display: flex; + flex-direction: column; + justify-content: flex-end; + align-items: flex-end; + font-size: 0.6em; +} + + + + + + + diff --git a/data/arrivals_and_stops.json b/data/arrivals_and_stops.json new file mode 100644 index 00000000..1d797d36 --- /dev/null +++ b/data/arrivals_and_stops.json @@ -0,0 +1,73999 @@ +{ +"type": "FeatureCollection", +"name": "arrivals_and_stops", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.2, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.8, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.8, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.2, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.8, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.8, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.8, "percent_change": -0.16, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.8, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.8, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.8, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.8, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.8, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.8, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.6, "percent_change": -0.2, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "20844", "stop_name": "Frankford Transit Center - Rt 5", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078866, 40.022878 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24088", "stop_name": "Frankford Av & Wakeling St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080367, 40.020401 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24090", "stop_name": "Frankford Av & Harrison St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081472, 40.019235 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24091", "stop_name": "Frankford Av & Foulkrod St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082613, 40.017989 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "19011", "stop_name": "Frankford Av & Orthodox St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24093", "stop_name": "Frankford Av & Sellers St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086308, 40.013974 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24094", "stop_name": "Frankford Av & Unity St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087532, 40.012638 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24095", "stop_name": "Frankford Av & Church St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088698, 40.011035 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24130", "stop_name": "Frankford Av & Womrath St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090031, 40.008995 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24131", "stop_name": "Frankford Av & Adams Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090889, 40.007631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "64", "stop_name": "Frankford Av & Torresdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09183, 40.006135 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24133", "stop_name": "Frankford Av & Jasper St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093052, 40.005013 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24134", "stop_name": "Frankford Av & Pike St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094346, 40.003821 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24135", "stop_name": "Frankford Av & Buckius St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095283, 40.002975 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24136", "stop_name": "Frankford Av & Valetta St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095829, 40.002486 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24137", "stop_name": "Frankford Av & Glenwood Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097752, 40.00076 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24138", "stop_name": "Frankford Av & Castor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098949, 39.999799 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24139", "stop_name": "Frankford Av & Venango St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10119, 39.998296 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24140", "stop_name": "Frankford Av & Tioga St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103323, 39.996936 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24141", "stop_name": "Frankford Av & Ontario St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105504, 39.995532 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24142", "stop_name": "Frankford Av & Westmoreland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107778, 39.994297 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24143", "stop_name": "Frankford Av & Allegheny Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110205, 39.993081 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24144", "stop_name": "Frankford Av & Clearfield St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112728, 39.991873 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24145", "stop_name": "Frankford Av & Elkhart St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114077, 39.991288 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24146", "stop_name": "Frankford Av & Orleans St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115971, 39.990507 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24147", "stop_name": "Frankford Av & Cambria St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117723, 39.989815 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24148", "stop_name": "Frankford Av & Somerset St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120208, 39.988857 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "65", "stop_name": "Frankford Av & Lehigh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122366, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24149", "stop_name": "Frankford Av & Huntingdon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124099, 39.98527 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24150", "stop_name": "Frankford Av & Sergeant St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12493, 39.984317 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24151", "stop_name": "Frankford Av & Cumberland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12582, 39.983355 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24152", "stop_name": "Frankford Av & Hagert St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126674, 39.982474 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24153", "stop_name": "Frankford Av & York St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127576, 39.981566 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24154", "stop_name": "Frankford Av & Dauphin St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128478, 39.980631 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24155", "stop_name": "Frankford Av & Susquehanna Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129391, 39.979749 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24156", "stop_name": "Frankford Av & Norris St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130435, 39.978699 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24157", "stop_name": "Frankford Av & Berks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131384, 39.977657 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24158", "stop_name": "Frankford Av & Montgomery Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131837, 39.976872 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24159", "stop_name": "Frankford Av & Palmer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132658, 39.975464 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24092", "stop_name": "Frankford Av & Oxford St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133407, 39.974145 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24035", "stop_name": "Frankford Av & Jefferson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134109, 39.972933 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24036", "stop_name": "Frankford Av & Master St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134481, 39.971479 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "24037", "stop_name": "Frankford Av & Thompson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134498, 39.970256 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "493", "stop_name": "Frankford Av & Girard Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134504, 39.9689 ] } }, +{ "type": "Feature", "properties": { "route_id": "5", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Market", "stop_id": "342", "stop_name": "Girard Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136075, 39.968903 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23671", "stop_name": "Marmax - On Site", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014617, 40.09081 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -46.7 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -46.7 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23673", "stop_name": "Red Lion Rd & Congdon Pkwy - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012548, 40.092552 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25953", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97159, 40.112118 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25954", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972827, 40.11114 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25955", "stop_name": "Townsend Rd & McNulty Rd - MBNS 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975206, 40.109266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "14", "stop_name": "Townsend Rd & McNulty Rd - MBNS 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976955, 40.107897 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31098", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977656, 40.107356 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22604", "stop_name": "McNulty Rd & Commerce Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980144, 40.1089 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22605", "stop_name": "McNulty Rd & Black Lake Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983002, 40.10974 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10485", "stop_name": "McNulty Rd & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986601, 40.109717 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1476", "stop_name": "Southhampton Rd & Roosevelt - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986878, 40.112726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.2, "percent_change": -0.67, "expected_wait_time_difference": 700.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 525.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.0, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.0, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.6, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.8, "percent_change": 0.09, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.8, "percent_change": 0.1, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.8, "percent_change": 0.1, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.2, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 14.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 14.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 14.0, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 14.0, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 14.0, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.6, "percent_change": 0.13, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.6, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.4, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.4, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23671", "stop_name": "Marmax - On Site", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014617, 40.09081 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23672", "stop_name": "Red Lion Rd & Congdon Pkwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011713, 40.091693 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23058", "stop_name": "Southampton Rd & McNulty Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986873, 40.109736 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23055", "stop_name": "Southampton Rd & McNulty Rd - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9868, 40.108102 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25925", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985314, 40.105276 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30754", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984314, 40.104398 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22602", "stop_name": "Townsend Rd & Byberry Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982018, 40.104479 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23054", "stop_name": "Townsend Rd & Old Townsend Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -74.980047, 40.105392 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22603", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978098, 40.106813 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25877", "stop_name": "Townsend Rd & McNulty Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 262.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977051, 40.107657 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25878", "stop_name": "Townsend Rd & McNulty Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 262.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975362, 40.108963 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25926", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 262.5 }, "geometry": { "type": "Point", "coordinates": [ -74.972891, 40.110928 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25927", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 262.5 }, "geometry": { "type": "Point", "coordinates": [ -74.971877, 40.111708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30392", "stop_name": "Townsend Rd & Natl Archives -opp entrance", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 262.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969017, 40.112876 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 175.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.2, "percent_change": 0.22, "expected_wait_time_difference": -21.2 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23077", "stop_name": "Bucks County Technology Park - 2", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.9848, 40.136586 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23078", "stop_name": "Street Rd & Reading Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982789, 40.136409 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25953", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97159, 40.112118 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25951", "stop_name": "Street Rd & Reading Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980831, 40.135224 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25954", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972827, 40.11114 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25955", "stop_name": "Townsend Rd & McNulty Rd - MBNS 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975206, 40.109266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "14", "stop_name": "Townsend Rd & McNulty Rd - MBNS 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976955, 40.107897 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31098", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977656, 40.107356 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22604", "stop_name": "McNulty Rd & Commerce Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980144, 40.1089 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22605", "stop_name": "McNulty Rd & Black Lake Pl", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983002, 40.10974 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10485", "stop_name": "McNulty Rd & Southampton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986601, 40.109717 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1476", "stop_name": "Southhampton Rd & Roosevelt - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986878, 40.112726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.4, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.4, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.4, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.4, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.8, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.4, "percent_change": 0.09, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.6, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.8, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.6, "percent_change": 0.13, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23058", "stop_name": "Southampton Rd & McNulty Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986873, 40.109736 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23055", "stop_name": "Southampton Rd & McNulty Rd - 2 MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9868, 40.108102 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25925", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985314, 40.105276 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30754", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984314, 40.104398 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22602", "stop_name": "Townsend Rd & Byberry Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.982018, 40.104479 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23054", "stop_name": "Townsend Rd & Old Townsend Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.980047, 40.105392 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22603", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.978098, 40.106813 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25932", "stop_name": "Somerton Rd & Carter Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982981, 40.130233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23074", "stop_name": "Somerton Rd & Metropolitan Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985947, 40.131136 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25877", "stop_name": "Townsend Rd & McNulty Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977051, 40.107657 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25878", "stop_name": "Townsend Rd & McNulty Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975362, 40.108963 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30752", "stop_name": "Somerton Rd & Trevose Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988884, 40.132842 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23075", "stop_name": "Somerton Rd & Trevose Rd - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991468, 40.134342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25926", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.972891, 40.110928 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23076", "stop_name": "Bucks County Technology Park - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987588, 40.135649 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25927", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971877, 40.111708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23077", "stop_name": "Bucks County Technology Park - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9848, 40.136586 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30392", "stop_name": "Townsend Rd & Natl Archives -opp entrance", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969017, 40.112876 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.6, "percent_change": 3.33, "expected_wait_time_difference": -115.4 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23077", "stop_name": "Bucks County Technology Park - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9848, 40.136586 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 132.1 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 132.6 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23078", "stop_name": "Street Rd & Reading Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982789, 40.136409 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25951", "stop_name": "Street Rd & Reading Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980831, 40.135224 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.7 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.7 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 132.1 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.4, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.4, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.4, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.4, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.2, "percent_change": 0.12, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 20.8, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 20.6, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 20.6, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 20.6, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.6, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.6, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.4, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 20.0, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 20.0, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 20.2, "percent_change": 0.12, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 20.6, "percent_change": 0.13, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.8, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.8, "percent_change": 0.09, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.8, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.8, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.6, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.2, "percent_change": 0.09, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.2, "percent_change": 0.09, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.2, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 19.8, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 20.0, "percent_change": 0.12, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 20.2, "percent_change": 0.13, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 20.2, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.2, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.2, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.4, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.8, "percent_change": 0.13, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.4, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.4, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.4, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.4, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.4, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.2, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.0, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.0, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.2, "percent_change": 0.09, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.2, "percent_change": 0.09, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23058", "stop_name": "Southampton Rd & McNulty Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986873, 40.109736 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 19.6, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23055", "stop_name": "Southampton Rd & McNulty Rd - 2 MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.9868, 40.108102 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 19.6, "percent_change": 0.09, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 19.6, "percent_change": 0.09, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25925", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985314, 40.105276 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.6, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30754", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984314, 40.104398 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22602", "stop_name": "Townsend Rd & Byberry Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.982018, 40.104479 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 19.6, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23054", "stop_name": "Townsend Rd & Old Townsend Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.980047, 40.105392 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 19.6, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22603", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978098, 40.106813 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 18.6, "percent_change": 0.11, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25932", "stop_name": "Somerton Rd & Carter Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982981, 40.130233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23074", "stop_name": "Somerton Rd & Metropolitan Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985947, 40.131136 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25877", "stop_name": "Townsend Rd & McNulty Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.2, "percent_change": -0.75, "expected_wait_time_difference": 562.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977051, 40.107657 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 18.8, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 18.8, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30752", "stop_name": "Somerton Rd & Trevose Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988884, 40.132842 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 18.8, "percent_change": 0.11, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23075", "stop_name": "Somerton Rd & Trevose Rd - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991468, 40.134342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 18.8, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23076", "stop_name": "Bucks County Technology Park - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987588, 40.135649 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 18.8, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23077", "stop_name": "Bucks County Technology Park - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -74.9848, 40.136586 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 18.8, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 19.0, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 19.0, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 18.8, "percent_change": 0.09, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 18.6, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -375.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 18.0, "percent_change": 0.11, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.0, "percent_change": -0.88, "expected_wait_time_difference": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23077", "stop_name": "Bucks County Technology Park - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.9848, 40.136586 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 1.2, "percent_change": -0.82, "expected_wait_time_difference": 81.8 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16", "stop_name": "Caroline Rd & Comly Rd - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002204, 40.098926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 1.2, "percent_change": -0.82, "expected_wait_time_difference": 81.8 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23078", "stop_name": "Street Rd & Reading Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982789, 40.136409 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25953", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97159, 40.112118 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23033", "stop_name": "Caroline Rd & Charter Rd - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00401, 40.097683 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25951", "stop_name": "Street Rd & Reading Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980831, 40.135224 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25954", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972827, 40.11114 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 1.4, "percent_change": -0.79, "expected_wait_time_difference": 68.1 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25955", "stop_name": "Townsend Rd & McNulty Rd - MBNS 1", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975206, 40.109266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.6, "percent_change": -0.77, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "14", "stop_name": "Townsend Rd & McNulty Rd - MBNS 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976955, 40.107897 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 1.6, "percent_change": -0.76, "expected_wait_time_difference": 57.4 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.6, "percent_change": -0.78, "expected_wait_time_difference": 58.3 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31098", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977656, 40.107356 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22604", "stop_name": "McNulty Rd & Commerce Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980144, 40.1089 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.6, "percent_change": -0.78, "expected_wait_time_difference": 58.3 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22605", "stop_name": "McNulty Rd & Black Lake Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983002, 40.10974 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.6, "percent_change": -0.77, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10485", "stop_name": "McNulty Rd & Southampton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986601, 40.109717 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.6, "percent_change": -0.77, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1476", "stop_name": "Southhampton Rd & Roosevelt - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986878, 40.112726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.6, "percent_change": -0.77, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.6, "percent_change": -0.77, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 66.4 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 66.4 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 66.4 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 66.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 66.4 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 66.4 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.2, "percent_change": 0.22, "expected_wait_time_difference": -12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 15.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 15.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.8, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.8, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.8, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.6, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.8, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.4, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.2, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.8, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.8, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.8, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.8, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23671", "stop_name": "Marmax - On Site", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014617, 40.09081 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.4, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.4, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.4, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.6, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23058", "stop_name": "Southampton Rd & McNulty Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986873, 40.109736 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23055", "stop_name": "Southampton Rd & McNulty Rd - 2 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.9868, 40.108102 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25925", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985314, 40.105276 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30754", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984314, 40.104398 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22602", "stop_name": "Townsend Rd & Byberry Rd - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982018, 40.104479 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23054", "stop_name": "Townsend Rd & Old Townsend Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.980047, 40.105392 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22603", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.978098, 40.106813 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25932", "stop_name": "Somerton Rd & Carter Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982981, 40.130233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23074", "stop_name": "Somerton Rd & Metropolitan Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985947, 40.131136 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25877", "stop_name": "Townsend Rd & McNulty Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.977051, 40.107657 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25878", "stop_name": "Townsend Rd & McNulty Rd - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975362, 40.108963 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30752", "stop_name": "Somerton Rd & Trevose Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988884, 40.132842 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23075", "stop_name": "Somerton Rd & Trevose Rd - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991468, 40.134342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25926", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.972891, 40.110928 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23076", "stop_name": "Bucks County Technology Park - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987588, 40.135649 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25927", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.971877, 40.111708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23077", "stop_name": "Bucks County Technology Park - 2", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.6, "percent_change": -0.5, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9848, 40.136586 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30392", "stop_name": "Townsend Rd & Natl Archives -opp entrance", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969017, 40.112876 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.6, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.4, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.6, "percent_change": 0.23, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.6, "percent_change": 0.23, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.6, "percent_change": 0.23, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.6, "percent_change": 0.23, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.4, "percent_change": -0.78, "expected_wait_time_difference": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 1.4, "percent_change": -0.79, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23671", "stop_name": "Marmax - On Site", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014617, 40.09081 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 1.0, "percent_change": -0.83, "expected_wait_time_difference": 124.1 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 1.0, "percent_change": -0.83, "expected_wait_time_difference": 124.1 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23673", "stop_name": "Red Lion Rd & Congdon Pkwy - MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012548, 40.092552 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25953", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97159, 40.112118 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25954", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972827, 40.11114 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 1.0, "percent_change": -0.82, "expected_wait_time_difference": 123.2 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25955", "stop_name": "Townsend Rd & McNulty Rd - MBNS 1", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975206, 40.109266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 1.0, "percent_change": -0.82, "expected_wait_time_difference": 123.2 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "14", "stop_name": "Townsend Rd & McNulty Rd - MBNS 2", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976955, 40.107897 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 1.0, "percent_change": -0.83, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.0, "percent_change": -0.84, "expected_wait_time_difference": 125.8 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31098", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977656, 40.107356 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22604", "stop_name": "McNulty Rd & Commerce Way", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980144, 40.1089 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.0, "percent_change": -0.84, "expected_wait_time_difference": 125.8 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22605", "stop_name": "McNulty Rd & Black Lake Pl", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983002, 40.10974 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.0, "percent_change": -0.84, "expected_wait_time_difference": 126.6 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10485", "stop_name": "McNulty Rd & Southampton Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986601, 40.109717 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.0, "percent_change": -0.84, "expected_wait_time_difference": 126.6 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1476", "stop_name": "Southhampton Rd & Roosevelt - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986878, 40.112726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 1.0, "percent_change": -0.84, "expected_wait_time_difference": 126.6 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.0, "percent_change": -0.84, "expected_wait_time_difference": 125.8 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 1.2, "percent_change": -0.82, "expected_wait_time_difference": 102.9 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 1.2, "percent_change": -0.82, "expected_wait_time_difference": 102.9 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.0, "percent_change": -0.86, "expected_wait_time_difference": 128.6 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.0, "percent_change": -0.86, "expected_wait_time_difference": 128.6 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.0, "percent_change": -0.86, "expected_wait_time_difference": 129.2 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 1.2, "percent_change": -0.83, "expected_wait_time_difference": 103.6 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.2, "percent_change": -0.83, "expected_wait_time_difference": 104.2 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.2, "percent_change": -0.83, "expected_wait_time_difference": 104.2 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.2, "percent_change": -0.83, "expected_wait_time_difference": 104.2 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.2, "percent_change": -0.83, "expected_wait_time_difference": 104.2 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 1.0, "percent_change": -0.8, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 1.0, "percent_change": -0.8, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 1.0, "percent_change": -0.8, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 1.0, "percent_change": -0.8, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 1.0, "percent_change": -0.8, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 0.8, "percent_change": -0.84, "expected_wait_time_difference": 157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 0.8, "percent_change": -0.84, "expected_wait_time_difference": 157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 0.8, "percent_change": -0.84, "expected_wait_time_difference": 157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 0.8, "percent_change": -0.84, "expected_wait_time_difference": 157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 0.8, "percent_change": -0.84, "expected_wait_time_difference": 157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 0.8, "percent_change": -0.83, "expected_wait_time_difference": 154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 0.8, "percent_change": -0.82, "expected_wait_time_difference": 153.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 0.8, "percent_change": -0.81, "expected_wait_time_difference": 151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 0.8, "percent_change": -0.81, "expected_wait_time_difference": 151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 0.8, "percent_change": -0.81, "expected_wait_time_difference": 151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 0.8, "percent_change": -0.81, "expected_wait_time_difference": 151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.8, "percent_change": -0.8, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.8, "percent_change": -0.8, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.8, "percent_change": -0.79, "expected_wait_time_difference": 148.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.8, "percent_change": -0.79, "expected_wait_time_difference": 148.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.8, "percent_change": -0.79, "expected_wait_time_difference": 148.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.8, "percent_change": -0.79, "expected_wait_time_difference": 148.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.8, "percent_change": -0.79, "expected_wait_time_difference": 148.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.8, "percent_change": -0.8, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.8, "percent_change": -0.8, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.8, "percent_change": -0.8, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 0.6, "percent_change": -0.84, "expected_wait_time_difference": 210.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.6, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.8, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.8, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.2, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23058", "stop_name": "Southampton Rd & McNulty Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986873, 40.109736 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23055", "stop_name": "Southampton Rd & McNulty Rd - 2 MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9868, 40.108102 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25925", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985314, 40.105276 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30754", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984314, 40.104398 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22602", "stop_name": "Townsend Rd & Byberry Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982018, 40.104479 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23054", "stop_name": "Townsend Rd & Old Townsend Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980047, 40.105392 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22603", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978098, 40.106813 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25877", "stop_name": "Townsend Rd & McNulty Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977051, 40.107657 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25878", "stop_name": "Townsend Rd & McNulty Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975362, 40.108963 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25926", "stop_name": "Townsend Rd & FedEx - 1", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972891, 40.110928 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25927", "stop_name": "Townsend Rd & FedEx - 2", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971877, 40.111708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30392", "stop_name": "Townsend Rd & Natl Archives -opp entrance", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969017, 40.112876 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "20590", "stop_name": "Townsend Rd & Natl Archives layover", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.968934, 40.112929 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.8, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.8, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 0.6, "percent_change": -0.81, "expected_wait_time_difference": 203.1 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 0.6, "percent_change": -0.81, "expected_wait_time_difference": 203.1 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 0.6, "percent_change": -0.81, "expected_wait_time_difference": 203.1 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 0.6, "percent_change": -0.82, "expected_wait_time_difference": 205.9 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.4, "percent_change": -0.78, "expected_wait_time_difference": 291.7 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.6, "percent_change": -0.85, "expected_wait_time_difference": 212.5 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.4, "percent_change": -0.78, "expected_wait_time_difference": 291.7 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.4, "percent_change": -0.78, "expected_wait_time_difference": 291.7 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.4, "percent_change": -0.78, "expected_wait_time_difference": 291.7 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.4, "percent_change": -0.78, "expected_wait_time_difference": 291.7 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23671", "stop_name": "Marmax - On Site", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014617, 40.09081 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23058", "stop_name": "Southampton Rd & McNulty Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986873, 40.109736 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23055", "stop_name": "Southampton Rd & McNulty Rd - 2 MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9868, 40.108102 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25925", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985314, 40.105276 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30754", "stop_name": "Byberry Rd & Townsend Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984314, 40.104398 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22602", "stop_name": "Townsend Rd & Byberry Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982018, 40.104479 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23054", "stop_name": "Townsend Rd & Old Townsend Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980047, 40.105392 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22603", "stop_name": "Townsend Rd & McNulty Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978098, 40.106813 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.5, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.5, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.5, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.5, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.5, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.5, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.0, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.5, "percent_change": -0.25, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23671", "stop_name": "Marmax - On Site", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014617, 40.09081 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23671", "stop_name": "Marmax - On Site", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014617, 40.09081 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1747", "stop_name": "North Bucks Town Rd & Sesame Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.872052, 40.186783 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23673", "stop_name": "Red Lion Rd & Congdon Pkwy - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012548, 40.092552 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31345", "stop_name": "North Bucks Town Rd & Oxford Valley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869832, 40.18588 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30420", "stop_name": "Oxford Valley Rd & S Bucks Town Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.870659, 40.183161 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23581", "stop_name": "Maple Av PA 213 & Woodbourne Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884665, 40.178117 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23582", "stop_name": "Maple Av & Wheeler Way - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901291, 40.177438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23583", "stop_name": "Maple Av & S Flowers Mill Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.903691, 40.177975 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23584", "stop_name": "Maple Av & N Flowers Mill Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.906979, 40.178747 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23585", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.912304, 40.177966 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25948", "stop_name": "Maple Av & Cherry St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.914642, 40.177342 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25949", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916476, 40.157828 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23643", "stop_name": "Old Lincoln Rd & Glenn Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920702, 40.156506 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23644", "stop_name": "Old Lincoln Rd & Carter Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931581, 40.155345 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23660", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.962705, 40.13888 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23661", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.964005, 40.137439 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23662", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.965795, 40.13699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23664", "stop_name": "Old Lincoln & Trailwood", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.971983, 40.135844 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23665", "stop_name": "Old Lincoln Hwy & Street Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.974591, 40.133425 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23666", "stop_name": "Old Lincoln Hwy & Carter Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.975856, 40.131921 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23667", "stop_name": "Old Lincoln Hwy & Concord Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.975789, 40.131198 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23668", "stop_name": "Old Lincoln Hwy & Somerton Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976147, 40.128737 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25952", "stop_name": "Old Lincoln Hwy & Somerton Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976324, 40.127192 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23669", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976581, 40.125721 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23670", "stop_name": "Old Lincoln Hwy & Northgate Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.97682, 40.123579 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "336", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.977684, 40.121637 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22762", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.979135, 40.120606 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22764", "stop_name": "Roosevelt Blvd & Southampton - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.984223, 40.11709 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22765", "stop_name": "Roosevelt Blvd & Southampton - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988514, 40.11416 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22766", "stop_name": "Roosevelt Blvd & Hornig Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.990974, 40.112481 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25956", "stop_name": "Roosevelt Blvd & Hornig Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.991985, 40.111789 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.999579, 40.106558 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19", "stop_name": "Roosevelt Blvd & Comly Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001575, 40.105172 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21945", "stop_name": "Roosevelt Blvd & Plaza Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006721, 40.101628 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25958", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008455, 40.100438 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21946", "stop_name": "Roosevelt Blvd & Haldeman Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009786, 40.099523 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21947", "stop_name": "Roosevelt Blvd & Tomlinson Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012685, 40.097524 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21948", "stop_name": "Roosevelt Blvd & Greymont St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01404, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21949", "stop_name": "Roosevelt Blvd & Red Lion Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015932, 40.09459 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22767", "stop_name": "Roosevelt Blvd & Whitten St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017516, 40.092926 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22768", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021086, 40.089233 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22770", "stop_name": "Roosevelt Blvd & Bowler St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024002, 40.086208 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22771", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02524, 40.084945 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22773", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026418, 40.083708 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22900", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029369, 40.080611 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22896", "stop_name": "Roosevelt Blvd & Michener St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030809, 40.079152 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22897", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.03301, 40.076865 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22898", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034831, 40.074952 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038281, 40.071393 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22901", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040293, 40.068864 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25960", "stop_name": "Roosevelt Blvd & Strahle St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042412, 40.064176 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22902", "stop_name": "Roosevelt Blvd & Strahle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043095, 40.062634 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22903", "stop_name": "Roosevelt Blvd & Hoffnagle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043789, 40.061083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25867", "stop_name": "Roosevelt Blvd & Hoffnagle St - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043439, 40.060296 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22503", "stop_name": "Roosevelt Blvd & Strahle St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042433, 40.062471 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22509", "stop_name": "Roosevelt Blvd & Winchester Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039835, 40.068354 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22511", "stop_name": "Roosevelt Blvd & Woodward St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037846, 40.070882 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22513", "stop_name": "Roosevelt Blvd & Welsh Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034919, 40.07389 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22515", "stop_name": "Roosevelt Blvd & Goodnaw St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032528, 40.0764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22517", "stop_name": "Roosevelt Blvd & Michener Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030327, 40.07866 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21200", "stop_name": "Roosevelt Blvd & Grant Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028078, 40.080991 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22520", "stop_name": "Roosevelt Blvd & Fulmer St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02596, 40.083207 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22521", "stop_name": "Roosevelt Blvd & Lott St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024662, 40.084541 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22522", "stop_name": "Roosevelt Blvd & Bowler St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02352, 40.08568 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22524", "stop_name": "Roosevelt Blvd & Conwell Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.020521, 40.088776 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22525", "stop_name": "Roosevelt Blvd & Red Lion Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015081, 40.094426 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22526", "stop_name": "Roosevelt Blvd & Tomlinson Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.011751, 40.097334 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22537", "stop_name": "Roosevelt Blvd & Haldeman Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008175, 40.099803 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30391", "stop_name": "Roosevelt Blvd & Comly - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001057, 40.104697 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "327", "stop_name": "Roosevelt Blvd & Byberry Rd - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.998609, 40.106403 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23056", "stop_name": "Roosevelt Blvd & Crown Way - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990338, 40.112095 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30293", "stop_name": "Roosevelt Blvd & Southampton Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987806, 40.113827 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25881", "stop_name": "Roosevelt Blvd & Old Lincoln Hwy - MBNS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97909, 40.120223 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "329", "stop_name": "Old Lincoln Hwy & Roosevelt Blvd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976905, 40.12142 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23060", "stop_name": "Old Lincoln Hwy & Northgate Dr", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976558, 40.123784 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23061", "stop_name": "Old Lincoln Hwy & Interplex Dr", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976346, 40.125532 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23059", "stop_name": "Old Lincoln Hwy & Interplex Dr - MBFS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976184, 40.126826 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23062", "stop_name": "Old Lincoln Hwy & Somerton Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.975923, 40.128726 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23063", "stop_name": "Old Lincoln Hwy & Concord Dr - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.975587, 40.13126 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25883", "stop_name": "Old Lincoln Hwy & Street Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.975642, 40.131965 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23064", "stop_name": "Old Lincoln Hwy & Street Rd - MBFS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.974533, 40.133291 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23065", "stop_name": "Old Lincoln Hwy & Trailwood Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.971973, 40.135612 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23066", "stop_name": "Horizon Corp Center - 1", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.966127, 40.137009 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23067", "stop_name": "Horizon Corp Center - 2", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.963994, 40.137216 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23068", "stop_name": "Horizon Corp Center - 3", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96254, 40.138701 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30669", "stop_name": "Old Lincoln Hwy & Carter Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931511, 40.155229 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23083", "stop_name": "Old Lincoln Hwy & Neshaminy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923466, 40.155759 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23084", "stop_name": "Old Lincoln Hwy & Glen Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920809, 40.156364 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23085", "stop_name": "Old Lincoln Hwy & Hulmeville Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916595, 40.157686 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23087", "stop_name": "Old Lincoln Hwy & Bellevue Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912218, 40.158775 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23089", "stop_name": "Bellvue Av & Comly Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912332, 40.160891 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23090", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913238, 40.163483 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23092", "stop_name": "Bellevue Av & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915448, 40.167357 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23091", "stop_name": "Pine St & Woods Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914372, 40.170485 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23093", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916569, 40.174627 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "331", "stop_name": "Pine St & Richardson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916953, 40.175503 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23094", "stop_name": "Pine St & Maple Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917255, 40.176344 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25945", "stop_name": "Maple Av & Cherry St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914346, 40.177278 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23095", "stop_name": "Maple Av & Beechwood Cir", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91253, 40.177761 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23096", "stop_name": "Maple Av & Flowers Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908258, 40.17877 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23097", "stop_name": "Maple Av & S Flowers Mill - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903645, 40.177832 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30760", "stop_name": "Maple Av & Wheeler Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.901102, 40.177268 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25946", "stop_name": "Maple Ave PA 213 & Woodbourne Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885544, 40.177764 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29617", "stop_name": "Middletown Blvd & Oxford Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.88485, 40.184964 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29618", "stop_name": "Middletown Blvd & Penn Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883609, 40.186155 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27970", "stop_name": "Middletown Blvd & Town Center Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.881615, 40.186548 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27972", "stop_name": "North Bucks Town Rd & Town Ctr Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875936, 40.187068 ] } }, +{ "type": "Feature", "properties": { "route_id": "14", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31801", "stop_name": "Sesame Place", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875503, 40.186396 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.6, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.4, "percent_change": 0.36, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.4, "percent_change": 0.36, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.4, "percent_change": 0.36, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.2, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.6, "percent_change": 0.13, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.6, "percent_change": 0.13, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.6, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.6, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.6, "percent_change": 0.2, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.6, "percent_change": 0.2, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.6, "percent_change": 0.2, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 10.6, "percent_change": 0.26, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 10.6, "percent_change": 0.26, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.6, "percent_change": 0.32, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 10.6, "percent_change": 0.36, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.4, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.4, "percent_change": 0.16, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.6, "percent_change": 0.1, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.6, "percent_change": 0.1, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.6, "percent_change": 0.1, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.6, "percent_change": 0.1, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.8, "percent_change": 8.0, "expected_wait_time_difference": -933.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -1017.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 6.4, "percent_change": 9.67, "expected_wait_time_difference": -317.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 6.6, "percent_change": 1.75, "expected_wait_time_difference": -55.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.2, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.2, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.4, "percent_change": 0.15, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.4, "percent_change": 0.15, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.4, "percent_change": 0.15, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.6, "percent_change": 0.14, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.6, "percent_change": 0.21, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.6, "percent_change": 0.21, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.0, "percent_change": 0.18, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.0, "percent_change": 0.18, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.0, "percent_change": 0.18, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.0, "percent_change": 0.18, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.0, "percent_change": 0.25, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.0, "percent_change": 0.25, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.0, "percent_change": 0.25, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.8, "percent_change": 0.26, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.8, "percent_change": 0.26, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.8, "percent_change": 0.26, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.8, "percent_change": 0.26, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.6, "percent_change": 0.23, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.6, "percent_change": 0.23, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.8, "percent_change": 0.22, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.8, "percent_change": 0.22, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.8, "percent_change": 0.22, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.8, "percent_change": 0.22, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.8, "percent_change": 0.22, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.0, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.0, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.4, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.0, "percent_change": -0.09, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 11.8, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.0, "percent_change": -0.09, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.6, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.2, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.4, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.8, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.0, "percent_change": 0.06, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.2, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.8, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.2, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.2, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.2, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.2, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.2, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16982", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 9.6, "percent_change": 47.0, "expected_wait_time_difference": -440.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167562, 40.047228 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16983", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 10.0, "percent_change": 49.0, "expected_wait_time_difference": -441.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168742, 40.047954 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16984", "stop_name": "Chew Av & Walnut Ln", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 10.0, "percent_change": 49.0, "expected_wait_time_difference": -441.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 40.049055 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17453", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 10.0, "percent_change": 49.0, "expected_wait_time_difference": -441.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171597, 40.0497 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17482", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 12.0, "percent_change": 59.0, "expected_wait_time_difference": -442.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173155, 40.05064 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17483", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 13.6, "percent_change": 67.0, "expected_wait_time_difference": -443.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174559, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17485", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 13.6, "percent_change": 67.0, "expected_wait_time_difference": -443.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175668, 40.052207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17489", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 13.6, "percent_change": 67.0, "expected_wait_time_difference": -443.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177049, 40.05304 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17491", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 13.8, "percent_change": 68.0, "expected_wait_time_difference": -443.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177827, 40.053542 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17495", "stop_name": "Chew Av & Montana St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 13.8, "percent_change": 68.0, "expected_wait_time_difference": -443.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17942, 40.054509 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 14.0, "percent_change": 34.0, "expected_wait_time_difference": -218.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 14.0, "percent_change": 10.67, "expected_wait_time_difference": -68.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 14.0, "percent_change": 10.67, "expected_wait_time_difference": -68.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 14.8, "percent_change": 1.24, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.6, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.8, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.8, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.8, "percent_change": 0.23, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.8, "percent_change": 0.23, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 14.8, "percent_change": 0.19, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 14.8, "percent_change": 0.19, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 14.8, "percent_change": 0.17, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 14.8, "percent_change": 0.17, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 15.4, "percent_change": 0.2, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 15.6, "percent_change": 0.24, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 15.6, "percent_change": 0.24, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 15.6, "percent_change": 0.24, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 15.6, "percent_change": 0.24, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.2, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "32387", "stop_name": "Stenton Av & Upsal St - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170688, 40.062452 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "18468", "stop_name": "Stenton Av & Cardeza St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169555, 40.061807 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.4, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "254", "stop_name": "Stenton Av & Washington Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.059559 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.4, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31436", "stop_name": "Stenton Av & Wyncote Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155711, 40.054084 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.4, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31520", "stop_name": "Stenton Av & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 40.051744 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.2, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "20606", "stop_name": "Ogontz Av & Olney Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15073, 40.039668 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.2, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.4, "percent_change": 0.12, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.4, "percent_change": 0.12, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.4, "percent_change": 0.12, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.2, "percent_change": 0.12, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.4, "percent_change": 0.14, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.4, "percent_change": 0.14, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.4, "percent_change": 0.14, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 360.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.4, "percent_change": 0.14, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 360.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.2, "percent_change": 0.12, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 360.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.2, "percent_change": 0.12, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 360.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.0, "percent_change": 0.15, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.0, "percent_change": 0.17, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.0, "percent_change": 0.22, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.0, "percent_change": 0.2, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.0, "percent_change": 0.2, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.8, "percent_change": 0.17, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.6, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.0, "percent_change": 0.12, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -33.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.8, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.8, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.8, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.6, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.2, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 12.8, "percent_change": -0.33, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.6, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.4, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.4, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.2, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.2, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17495", "stop_name": "Chew Av & Montana St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 14.4, "percent_change": 71.0, "expected_wait_time_difference": -739.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17942, 40.054509 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 14.4, "percent_change": 35.0, "expected_wait_time_difference": -364.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 14.4, "percent_change": 23.0, "expected_wait_time_difference": -239.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 14.4, "percent_change": 11.0, "expected_wait_time_difference": -114.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 14.8, "percent_change": 1.39, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.4, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.4, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.4, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.4, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.2, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.2, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.0, "percent_change": -0.15, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.0, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.0, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.0, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.0, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 17.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 17.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.8, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.6, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.6, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 15.8, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 15.8, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.6, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.6, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.8, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.6, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.6, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.6, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.8, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.8, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.8, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.6, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.4, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.4, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.4, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.4, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.4, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.4, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.4, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.8, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.6, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.6, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.2, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.4, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.4, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.4, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.6, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.6, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.6, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.4, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.8, "percent_change": -0.27, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.6, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.6, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.0, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.6, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.8, "percent_change": -0.27, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.6, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.4, "percent_change": -0.3, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.4, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.6, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32629", "stop_name": "Olney Transit Center - Rt 18", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.0, "percent_change": -0.26, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143935, 40.038591 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.4, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 17.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.4, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 16.6, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.4, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.2, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.2, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.4, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 18.4, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 18.6, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 19.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 19.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 16.6, "percent_change": 26.67, "expected_wait_time_difference": -192.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 17.6, "percent_change": 28.33, "expected_wait_time_difference": -193.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 17.4, "percent_change": 28.0, "expected_wait_time_difference": -193.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 18.0, "percent_change": 2.1, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.8, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.8, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.8, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 19.0, "percent_change": 0.19, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 19.0, "percent_change": 0.19, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 19.0, "percent_change": 0.17, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 19.0, "percent_change": 0.16, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 19.0, "percent_change": 0.16, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 19.0, "percent_change": 0.16, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 19.2, "percent_change": 0.17, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 19.4, "percent_change": 0.21, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 19.0, "percent_change": 0.19, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 19.0, "percent_change": 0.19, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 19.0, "percent_change": 0.19, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 17.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 18.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 17.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 17.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 18.2, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 18.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.2, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.2, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.6, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.6, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 19.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.4, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.4, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 19.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 19.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 19.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 19.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 19.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 19.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 19.2, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 19.4, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 19.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 19.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 19.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.4, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.4, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 19.6, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 19.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.6, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.6, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.6, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 19.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 19.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 19.8, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 19.8, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 19.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 19.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 19.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 19.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 10.6, "percent_change": -0.28, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 10.6, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 10.8, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 10.8, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.6, "percent_change": -0.25, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 10.6, "percent_change": -0.33, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 10.6, "percent_change": -0.33, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 10.6, "percent_change": -0.33, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 10.6, "percent_change": -0.33, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.6, "percent_change": -0.2, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.6, "percent_change": -0.21, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.6, "percent_change": -0.3, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.4, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 10.4, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 10.4, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 10.4, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.0, "percent_change": -0.38, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.2, "percent_change": -0.36, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.2, "percent_change": -0.36, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.4, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.6, "percent_change": -0.34, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.6, "percent_change": -0.34, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.6, "percent_change": -0.34, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.6, "percent_change": -0.34, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16982", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 9.6, "percent_change": 11.0, "expected_wait_time_difference": -171.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167562, 40.047228 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16983", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 9.6, "percent_change": 11.0, "expected_wait_time_difference": -171.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168742, 40.047954 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16984", "stop_name": "Chew Av & Walnut Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 9.6, "percent_change": 11.0, "expected_wait_time_difference": -171.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 40.049055 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17453", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 9.6, "percent_change": 11.0, "expected_wait_time_difference": -171.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171597, 40.0497 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17482", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 10.4, "percent_change": 12.0, "expected_wait_time_difference": -173.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173155, 40.05064 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17483", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 10.6, "percent_change": 12.25, "expected_wait_time_difference": -173.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174559, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17485", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 10.6, "percent_change": 12.25, "expected_wait_time_difference": -173.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175668, 40.052207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17489", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 10.8, "percent_change": 12.5, "expected_wait_time_difference": -173.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177049, 40.05304 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17491", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 10.8, "percent_change": 12.5, "expected_wait_time_difference": -173.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177827, 40.053542 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17495", "stop_name": "Chew Av & Montana St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 10.8, "percent_change": 12.5, "expected_wait_time_difference": -173.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17942, 40.054509 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 10.8, "percent_change": 12.5, "expected_wait_time_difference": -173.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 11.2, "percent_change": 10.2, "expected_wait_time_difference": -136.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 11.4, "percent_change": 10.4, "expected_wait_time_difference": -136.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.8, "percent_change": 1.19, "expected_wait_time_difference": -15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.2, "percent_change": -0.29, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.2, "percent_change": -0.29, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.2, "percent_change": -0.29, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.4, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.4, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 10.8, "percent_change": -0.33, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.8, "percent_change": -0.34, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 10.8, "percent_change": -0.36, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.0, "percent_change": -0.34, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.2, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.2, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.4, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.4, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.4, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.6, "percent_change": -0.31, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.6, "percent_change": -0.31, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.2, "percent_change": -0.34, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.0, "percent_change": -0.36, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.6, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.6, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.8, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.8, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.8, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.0, "percent_change": -0.36, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.2, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.2, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.2, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.4, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.6, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.8, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 11.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.8, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.8, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.0, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 12.0, "percent_change": -0.34, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 12.2, "percent_change": -0.33, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 12.2, "percent_change": -0.33, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 12.2, "percent_change": -0.33, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.2, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.2, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.2, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.4, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.4, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 12.6, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 12.6, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 12.6, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 12.6, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 12.6, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 12.4, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 12.4, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 12.4, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 12.4, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16982", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 6.5, "percent_change": 12.0, "expected_wait_time_difference": -166.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167562, 40.047228 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16983", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 6.5, "percent_change": 12.0, "expected_wait_time_difference": -166.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168742, 40.047954 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16984", "stop_name": "Chew Av & Walnut Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 6.5, "percent_change": 12.0, "expected_wait_time_difference": -166.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 40.049055 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17453", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 6.5, "percent_change": 12.0, "expected_wait_time_difference": -166.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171597, 40.0497 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17482", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 7.0, "percent_change": 13.0, "expected_wait_time_difference": -167.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173155, 40.05064 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17483", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 7.0, "percent_change": 13.0, "expected_wait_time_difference": -167.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174559, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17485", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 7.0, "percent_change": 13.0, "expected_wait_time_difference": -167.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175668, 40.052207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17489", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 7.0, "percent_change": 13.0, "expected_wait_time_difference": -167.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177049, 40.05304 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17491", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 7.5, "percent_change": 14.0, "expected_wait_time_difference": -168.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177827, 40.053542 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17495", "stop_name": "Chew Av & Montana St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 7.0, "percent_change": 6.0, "expected_wait_time_difference": -77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17942, 40.054509 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 7.0, "percent_change": 6.0, "expected_wait_time_difference": -77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 7.0, "percent_change": 3.67, "expected_wait_time_difference": -47.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 7.0, "percent_change": 3.67, "expected_wait_time_difference": -47.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.5, "percent_change": 0.88, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 0.5, "percent_change": -0.83, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.0, "percent_change": -0.41, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.0, "percent_change": -0.41, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.0, "percent_change": -0.41, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.0, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.0, "percent_change": -0.39, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16982", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 10.0, "percent_change": 9.0, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167562, 40.047228 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16983", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 10.0, "percent_change": 9.0, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168742, 40.047954 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16984", "stop_name": "Chew Av & Walnut Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 10.0, "percent_change": 9.0, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 40.049055 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17453", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 10.0, "percent_change": 9.0, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171597, 40.0497 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17482", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 11.5, "percent_change": 10.5, "expected_wait_time_difference": -137.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173155, 40.05064 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17483", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 11.5, "percent_change": 6.67, "expected_wait_time_difference": -87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174559, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17485", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 11.5, "percent_change": 6.67, "expected_wait_time_difference": -87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175668, 40.052207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17489", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 11.5, "percent_change": 6.67, "expected_wait_time_difference": -87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177049, 40.05304 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17491", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 11.5, "percent_change": 6.67, "expected_wait_time_difference": -87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177827, 40.053542 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17495", "stop_name": "Chew Av & Montana St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 4.0, "percent_change": 1.67, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17942, 40.054509 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 4.0, "percent_change": 1.67, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 11.5, "percent_change": 0.53, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 11.5, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 3.5, "percent_change": -0.81, "expected_wait_time_difference": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 3.5, "percent_change": -0.81, "expected_wait_time_difference": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.5, "percent_change": -0.42, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.5, "percent_change": -0.42, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.5, "percent_change": -0.4, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 10.5, "percent_change": -0.36, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 10.5, "percent_change": -0.36, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 5.5, "percent_change": -0.68, "expected_wait_time_difference": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 5.5, "percent_change": -0.68, "expected_wait_time_difference": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 8.5, "percent_change": -0.41, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16982", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.5, "percent_change": 4.5, "expected_wait_time_difference": -98.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167562, 40.047228 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16983", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.5, "percent_change": 4.5, "expected_wait_time_difference": -98.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168742, 40.047954 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16984", "stop_name": "Chew Av & Walnut Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.5, "percent_change": 4.5, "expected_wait_time_difference": -98.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 40.049055 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17453", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.5, "percent_change": 4.5, "expected_wait_time_difference": -98.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171597, 40.0497 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17482", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.5, "percent_change": 1.6, "expected_wait_time_difference": -29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173155, 40.05064 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17483", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174559, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17485", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175668, 40.052207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17489", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177049, 40.05304 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17491", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177827, 40.053542 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17495", "stop_name": "Chew Av & Montana St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17942, 40.054509 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 4.0, "percent_change": -0.7, "expected_wait_time_difference": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 4.0, "percent_change": -0.7, "expected_wait_time_difference": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.0, "percent_change": -0.69, "expected_wait_time_difference": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.0, "percent_change": -0.69, "expected_wait_time_difference": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 7.5, "percent_change": -0.44, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 8.5, "percent_change": -0.41, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 8.0, "percent_change": -0.45, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16383", "stop_name": "Oxford Av & Hartel Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084539, 40.07209 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16384", "stop_name": "Oxford Av & Hartel Av - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084355, 40.07109 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16427", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08408, 40.066823 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16430", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083797, 40.061619 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16435", "stop_name": "Rising Sun Av & Unruh Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.092021, 40.053367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16436", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093114, 40.052263 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16711", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094195, 40.051169 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16726", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095645, 40.049664 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16727", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096845, 40.048436 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16728", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098033, 40.047198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16729", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099528, 40.046158 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16730", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100987, 40.045198 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16731", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.102683, 40.044069 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16732", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104343, 40.043002 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16733", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105849, 40.041979 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16734", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106727, 40.041392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16735", "stop_name": "Rising Sun Av & Adams Av - MBNS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.108932, 40.039961 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16736", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109786, 40.039392 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16737", "stop_name": "Rising Sun & Adams - MBFS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112099, 40.037845 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16738", "stop_name": "Rising Sun Av & Chew Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114059, 40.035556 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "379", "stop_name": "Rising Sun Av & Olney Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114951, 40.034523 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "32312", "stop_name": "Olney Av & 3rd St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127854, 40.03617 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "223", "stop_name": "Chew Av & Chelten Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 40.045598 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16980", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165922, 40.046207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16981", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166736, 40.046718 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16982", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 10.0, "percent_change": 1.86, "expected_wait_time_difference": -27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167562, 40.047228 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16983", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 10.0, "percent_change": 1.86, "expected_wait_time_difference": -27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168742, 40.047954 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "16984", "stop_name": "Chew Av & Walnut Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 10.0, "percent_change": 1.86, "expected_wait_time_difference": -27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 40.049055 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17453", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 10.0, "percent_change": 1.86, "expected_wait_time_difference": -27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171597, 40.0497 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17482", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 11.0, "percent_change": 1.2, "expected_wait_time_difference": -16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173155, 40.05064 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17483", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 11.0, "percent_change": 0.69, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174559, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17485", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 11.0, "percent_change": 0.69, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175668, 40.052207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17489", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 11.0, "percent_change": 0.69, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177049, 40.05304 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17491", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 11.0, "percent_change": 0.69, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177827, 40.053542 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17495", "stop_name": "Chew Av & Montana St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.5, "percent_change": 0.46, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17942, 40.054509 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17499", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 9.5, "percent_change": 0.58, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180128, 40.054947 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17500", "stop_name": "Phil Ellena St & Chew Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.5, "percent_change": 0.46, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180978, 40.055645 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17502", "stop_name": "Phil Ellena St & Boyer St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 10.0, "percent_change": 0.54, "expected_wait_time_difference": -8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17972, 40.056892 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17505", "stop_name": "Phil Ellena St & Sprague St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.5, "percent_change": 0.15, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178129, 40.058442 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17518", "stop_name": "Vernon Rd & Blakemore St - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177923, 40.059914 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17519", "stop_name": "Vernon Rd & Ardleigh St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.061056 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17520", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1773, 40.062118 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17523", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176254, 40.06374 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17525", "stop_name": "Vernon Rd & Stenton Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 40.065122 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "18466", "stop_name": "Stenton Av & Dorset St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173934, 40.064324 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17532", "stop_name": "Stenton Av & Phil Ellena St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173048, 40.063832 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17537", "stop_name": "Upsal St & Stenton Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17064, 40.062702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "383", "stop_name": "Upsal St & Mansfield St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 40.063433 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17540", "stop_name": "Upsal St & Rodney St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169061, 40.064207 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17549", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 40.065107 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17553", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166046, 40.06712 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17556", "stop_name": "Upsal St & Gilbert St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164694, 40.068116 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17559", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 40.069367 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17563", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166603, 40.070164 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17566", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168893, 40.071463 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17569", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170109, 40.072162 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17572", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171631, 40.073049 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17574", "stop_name": "Thouron Av & Mt Pleasant Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 9.5, "percent_change": -0.39, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173024, 40.073828 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17578", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 9.5, "percent_change": -0.39, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.075075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17582", "stop_name": "Michener Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170423, 40.076866 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17584", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172477, 40.078075 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "384", "stop_name": "Michener Av & Wadsworth Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173952, 40.078926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17586", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175499, 40.079813 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17587", "stop_name": "Michener Av & Roumfort Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177388, 40.080852 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17593", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176023, 40.082322 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17595", "stop_name": "Roumfort Rd & Cheltenham Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174764, 40.083596 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17597", "stop_name": "Cheltenham Av & Elaine St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173666, 40.08296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "17598", "stop_name": "Cheltenham Av & Gowan Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 40.082584 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "385", "stop_name": "Easton Rd & Cheltenham Av - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171196, 40.082232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "20850", "stop_name": "Cedarbrook Plaza - 1", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169104, 40.081683 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25972", "stop_name": "Cedarbrook Plaza - 2", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167782, 40.080752 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "15420", "stop_name": "Cedarbrook Plaza - 3", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16631, 40.082258 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cedarbrook Plaza", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25973", "stop_name": "Cedarbrook Plaza - 4", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165988, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25974", "stop_name": "Cedarbrook Plaza Stop - 5", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168398, 40.083753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15421", "stop_name": "Cedarbrook Plaza Stop - 6", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170294, 40.082926 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "368", "stop_name": "Cheltenham Av & Gowen Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172709, 40.082565 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15424", "stop_name": "Roumfort Rd & Cheltenham Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174977, 40.083552 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15428", "stop_name": "Roumfort Rd & Pickering Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 40.082465 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15431", "stop_name": "Roumfort Rd & Michener Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 40.081022 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15432", "stop_name": "Michener Av & Gowen Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175747, 40.079814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "369", "stop_name": "Michener Av & Wadsworth Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173929, 40.078775 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15451", "stop_name": "Michener Av & Mt Airy Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172725, 40.078076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15453", "stop_name": "Michener Av & Mt Pleasant Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170459, 40.076759 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15456", "stop_name": "Mt Pleasant Av & Williams Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171836, 40.075236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15457", "stop_name": "Thouron Av & Mt Pleasant Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.073703 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15459", "stop_name": "Thouron Av & Sedgwick St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171844, 40.073058 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "28403", "stop_name": "Thouron Av & Gorgas Ln", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 40.072171 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15461", "stop_name": "Thouron Av & Vernon Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169106, 40.071473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15479", "stop_name": "Thouron Av & Phil Ellena St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166816, 40.070174 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15481", "stop_name": "Thouron Av & Sharpnack St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 40.069377 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15483", "stop_name": "Thouron Av & Upsal St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164337, 40.068705 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15484", "stop_name": "Upsal St & Woolston Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16569, 40.067529 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15488", "stop_name": "Upsal St & Lowber Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 40.065268 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "370", "stop_name": "Upsal St & Mansfield Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16982, 40.063656 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15490", "stop_name": "Upsal St & Stenton Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 40.06272 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15583", "stop_name": "Stenton Av & Phi Ellena St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1728, 40.063804 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15585", "stop_name": "Stenton Av & Dorset St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173591, 40.064279 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15506", "stop_name": "Vernon Rd & Stenton Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175551, 40.065051 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15509", "stop_name": "Vernon Rd & Crittenden St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176289, 40.063901 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15510", "stop_name": "Vernon Rd & Anderson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 40.062305 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15514", "stop_name": "Vernon Rd & Ardleigh St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177636, 40.060994 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15515", "stop_name": "Vernon Rd & Blakemore St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178124, 40.059924 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15516", "stop_name": "Sprague St & Phil Ellena St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178531, 40.058702 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15517", "stop_name": "Phil Ellena St & Boyers St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179849, 40.057134 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15518", "stop_name": "Phil Ellena St & Chew Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181297, 40.055726 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15519", "stop_name": "Chew Av & Hortter St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180329, 40.054966 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15520", "stop_name": "Chew Av & Upsal St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178111, 40.053587 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15521", "stop_name": "Chew Av & Cliveden St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177014, 40.052888 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15522", "stop_name": "Chew Av & Johnson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175904, 40.052217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15523", "stop_name": "Chew Av & Duval St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174783, 40.051536 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15524", "stop_name": "Chew Av & Washington Ln", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173438, 40.050686 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15525", "stop_name": "Chew Av & Tulpehocken St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17181, 40.049709 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15526", "stop_name": "Chew Av & Herman St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170996, 40.049226 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15527", "stop_name": "Chew Av & High St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 40.048053 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15579", "stop_name": "Chew Av & Haines St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 40.0473 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15582", "stop_name": "Chew Av & Rittenhouse St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166996, 40.046736 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15584", "stop_name": "Chew Av & Price St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166159, 40.046217 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "371", "stop_name": "Chew Av & Chelten Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165003, 40.0455 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "373", "stop_name": "Olney Av & Broad St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 40.038877 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.5, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.5, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.5, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "28404", "stop_name": "Rising Sun Av & Chew Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113965, 40.035476 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15833", "stop_name": "Rising Sun Av & Chew Av - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111945, 40.037836 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15834", "stop_name": "Rising Sun Av & Adams Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110119, 40.039009 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15835", "stop_name": "Rising Sun Av & Adams - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108814, 40.039872 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15837", "stop_name": "Rising Sun Av & Godfrey Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106775, 40.041232 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15838", "stop_name": "Rising Sun Av & Sanger St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.5, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105897, 40.041819 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15839", "stop_name": "Rising Sun Av & Cheltenham Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.5, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104379, 40.042814 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15841", "stop_name": "Rising Sun Av & Van Kirk St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.102719, 40.043899 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15842", "stop_name": "Rising Sun Av & Comly St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.101141, 40.044939 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15843", "stop_name": "Rising Sun Av & Benner St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099564, 40.04597 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15845", "stop_name": "Rising Sun Av & Devereaux Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098105, 40.046957 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15847", "stop_name": "Rising Sun Av & Robbins St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.096846, 40.048248 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15848", "stop_name": "Rising Sun Av & Levick St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 40.049477 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15850", "stop_name": "Rising Sun Av & Hellerman St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094196, 40.050981 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15851", "stop_name": "Rising Sun Av & Magee Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093115, 40.052076 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15852", "stop_name": "Rising Sun Av & Martins Mill Rd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.092176, 40.053029 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15874", "stop_name": "Rising Sun Av & Cottman Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083822, 40.061405 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15877", "stop_name": "Oxford Av & Rockwell Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.5, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08388, 40.066635 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15878", "stop_name": "Oxford Av & Rockwell Av - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084156, 40.070697 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15879", "stop_name": "Oxford Av & Hartel Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084374, 40.072018 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15880", "stop_name": "Oxford Av & Hasbrook Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084581, 40.073331 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "18", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "20851", "stop_name": "Fox Chase Loop", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085523, 40.076654 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.6, "percent_change": -0.38, "expected_wait_time_difference": 30.8 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.4, "percent_change": -0.4, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.2, "percent_change": -0.45, "expected_wait_time_difference": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.2, "percent_change": -0.45, "expected_wait_time_difference": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.2, "percent_change": -0.45, "expected_wait_time_difference": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.2, "percent_change": -0.45, "expected_wait_time_difference": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.8, "percent_change": -0.55, "expected_wait_time_difference": 64.2 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.8, "percent_change": -0.55, "expected_wait_time_difference": 64.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.8, "percent_change": -0.55, "expected_wait_time_difference": 64.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.8, "percent_change": -0.55, "expected_wait_time_difference": 64.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.8, "percent_change": -0.55, "expected_wait_time_difference": 64.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 38.8 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.8, "percent_change": -0.55, "expected_wait_time_difference": 64.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 1.8, "percent_change": -0.47, "expected_wait_time_difference": 54.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.2, "percent_change": -0.08, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.4, "percent_change": -0.27, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.4, "percent_change": -0.27, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.4, "percent_change": -0.27, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.4, "percent_change": -0.27, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 5.8, "percent_change": -0.49, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.8, "percent_change": -0.51, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.8, "percent_change": -0.51, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.8, "percent_change": -0.51, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.8, "percent_change": -0.51, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.8, "percent_change": -0.51, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.8, "percent_change": -0.51, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.6, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.4, "percent_change": -0.54, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.4, "percent_change": -0.54, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.2, "percent_change": -0.56, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.2, "percent_change": -0.56, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.2, "percent_change": -0.56, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.2, "percent_change": -0.56, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.2, "percent_change": -0.56, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.6, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 5.6, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 5.4, "percent_change": -0.52, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 5.4, "percent_change": -0.52, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 5.4, "percent_change": -0.52, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 5.4, "percent_change": -0.52, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 5.4, "percent_change": -0.53, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.2, "percent_change": 0.3, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.2, "percent_change": 0.3, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.2, "percent_change": 0.3, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.4, "percent_change": 0.6, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.4, "percent_change": 0.6, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.4, "percent_change": 0.6, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.4, "percent_change": 0.6, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.2, "percent_change": 0.55, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.2, "percent_change": 0.55, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.2, "percent_change": 0.55, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.2, "percent_change": 0.55, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.2, "percent_change": 0.55, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.2, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.4, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.4, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.4, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.4, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.6, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.6, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.6, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.4, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.4, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.4, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.4, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.4, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.4, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.4, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.4, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.2, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.2, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.2, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.6, "percent_change": -0.52, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.4, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.4, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.4, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.4, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.4, "percent_change": -0.53, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.2, "percent_change": -0.54, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.0, "percent_change": -0.55, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.2, "percent_change": -0.54, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.2, "percent_change": -0.54, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 9.6, "percent_change": -0.52, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 9.8, "percent_change": -0.51, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 9.6, "percent_change": -0.52, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 9.6, "percent_change": -0.52, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 9.6, "percent_change": -0.52, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 9.6, "percent_change": -0.52, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 9.6, "percent_change": -0.52, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 9.8, "percent_change": -0.52, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 9.8, "percent_change": -0.52, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 9.8, "percent_change": -0.52, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 9.8, "percent_change": -0.52, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 9.8, "percent_change": -0.53, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.6, "percent_change": -0.09, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.6, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.6, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.4, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.6, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.6, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.6, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.6, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.6, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.2, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.2, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.2, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.2, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.2, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.0, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.0, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.0, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.0, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.0, "percent_change": -0.3, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.0, "percent_change": -0.3, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.4, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.4, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.6, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.6, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.6, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.6, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.8, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 6.0, "percent_change": -0.6, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.2, "percent_change": -0.57, "expected_wait_time_difference": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.2, "percent_change": -0.57, "expected_wait_time_difference": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.2, "percent_change": -0.57, "expected_wait_time_difference": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.2, "percent_change": -0.57, "expected_wait_time_difference": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.2, "percent_change": -0.57, "expected_wait_time_difference": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.4, "percent_change": -0.56, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.8, "percent_change": -0.53, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.8, "percent_change": -0.53, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.8, "percent_change": -0.53, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.8, "percent_change": -0.53, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 6.8, "percent_change": -0.53, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 7.0, "percent_change": -0.51, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.6, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.6, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.4, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.4, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.4, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.8, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.8, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.8, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.8, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.8, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.0, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.8, "percent_change": -0.17, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.6, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.8, "percent_change": 0.26, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.8, "percent_change": 0.26, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.8, "percent_change": 0.36, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.8, "percent_change": 0.36, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.2, "percent_change": 0.44, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.2, "percent_change": 0.44, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.2, "percent_change": 0.44, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.2, "percent_change": 0.5, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.8, "percent_change": 0.62, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.6, "percent_change": 0.65, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.6, "percent_change": 0.65, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 4.0, "percent_change": -0.64, "expected_wait_time_difference": 23.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "18973", "stop_name": "Parx Race Track", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.8, "percent_change": 5.0, "expected_wait_time_difference": -156.2 }, "geometry": { "type": "Point", "coordinates": [ -74.952476, 40.121008 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23376", "stop_name": "Street Rd & Tillman Dr - south", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958111, 40.115495 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23377", "stop_name": "Street Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954136, 40.111607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "31311", "stop_name": "Street Rd & Castle Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952639, 40.108959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23379", "stop_name": "Street Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951438, 40.106223 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -115.9 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -115.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 4.0, "percent_change": -0.67, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 3.6, "percent_change": -0.67, "expected_wait_time_difference": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 3.6, "percent_change": -0.67, "expected_wait_time_difference": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 3.6, "percent_change": -0.67, "expected_wait_time_difference": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 3.6, "percent_change": -0.67, "expected_wait_time_difference": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 3.6, "percent_change": -0.67, "expected_wait_time_difference": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 3.6, "percent_change": -0.67, "expected_wait_time_difference": 27.8 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 3.8, "percent_change": -0.65, "expected_wait_time_difference": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 3.8, "percent_change": -0.65, "expected_wait_time_difference": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 3.8, "percent_change": -0.65, "expected_wait_time_difference": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 4.0, "percent_change": -0.63, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 4.4, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 4.4, "percent_change": -0.58, "expected_wait_time_difference": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 4.6, "percent_change": -0.55, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 4.6, "percent_change": -0.55, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 4.8, "percent_change": -0.53, "expected_wait_time_difference": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25913", "stop_name": "Academy Rd & Red Lion Rd - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.994273, 40.08195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26120", "stop_name": "Academy Rd & Cromwell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995887, 40.081018 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26119", "stop_name": "Academy Rd & Red Lion Rd - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.997241, 40.080237 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 5.0, "percent_change": -0.54, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.0, "percent_change": 3.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.2, "percent_change": 3.2, "expected_wait_time_difference": -114.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.2, "percent_change": 4.25, "expected_wait_time_difference": -151.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.6, "percent_change": 4.75, "expected_wait_time_difference": -154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.6, "percent_change": 4.75, "expected_wait_time_difference": -154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.6, "percent_change": 4.75, "expected_wait_time_difference": -154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.6, "percent_change": 4.75, "expected_wait_time_difference": -154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.6, "percent_change": 4.75, "expected_wait_time_difference": -154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 4.6, "percent_change": 4.75, "expected_wait_time_difference": -154.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 5.0, "percent_change": 5.25, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.0, "percent_change": -0.32, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.0, "percent_change": -0.32, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.8, "percent_change": -0.27, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.8, "percent_change": -0.27, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.8, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.8, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.8, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.8, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30886", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997771, 40.080534 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23361", "stop_name": "Red Lion Rd & Drummond Rd - FS Route 50", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998913, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "20423", "stop_name": "Red Lion Rd & Decatur Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001173, 40.083383 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "12", "stop_name": "Decatur Rd & Drummond Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999663, 40.08669 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.0, "percent_change": -0.51, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22887", "stop_name": "Decatur Rd & Drummond Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996538, 40.08883 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "27415", "stop_name": "Drummond Rd & Decatur Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996313, 40.088802 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "27416", "stop_name": "Drummond Rd & Decatur Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995458, 40.087407 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "27417", "stop_name": "Drummond Rd & 10430 - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995026, 40.084594 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22552", "stop_name": "Drummond Rd & Red Lion Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.996468, 40.082894 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22553", "stop_name": "Drummond Rd & Red Lion Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.998522, 40.081589 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23393", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -74.997454, 40.080122 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 5.0, "percent_change": -0.53, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 5.0, "percent_change": -0.54, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 5.0, "percent_change": -0.54, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 5.0, "percent_change": -0.54, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 5.0, "percent_change": -0.54, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 5.0, "percent_change": -0.54, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 5.0, "percent_change": -0.54, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 5.0, "percent_change": -0.55, "expected_wait_time_difference": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 4.8, "percent_change": -0.48, "expected_wait_time_difference": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 4.8, "percent_change": -0.47, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.0, "percent_change": -0.71, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.0, "percent_change": -0.71, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.0, "percent_change": -0.71, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.0, "percent_change": -0.71, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.0, "percent_change": -0.71, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 5.5, "percent_change": -0.61, "expected_wait_time_difference": 16.6 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 5.5, "percent_change": -0.62, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.0, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.0, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.0, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.0, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.0, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 4.5, "percent_change": -0.64, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 4.5, "percent_change": -0.64, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 4.5, "percent_change": -0.64, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 4.5, "percent_change": -0.64, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 4.5, "percent_change": -0.67, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 4.5, "percent_change": -0.67, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 4.5, "percent_change": -0.67, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.5, "percent_change": -0.65, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 7.5, "percent_change": -0.44, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 4.0, "percent_change": -0.58, "expected_wait_time_difference": 21.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "18973", "stop_name": "Parx Race Track", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952476, 40.121008 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23376", "stop_name": "Street Rd & Tillman Dr - south", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.958111, 40.115495 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23377", "stop_name": "Street Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.954136, 40.111607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "31311", "stop_name": "Street Rd & Castle Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.952639, 40.108959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23379", "stop_name": "Street Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.951438, 40.106223 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1522", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.093267 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23890", "stop_name": "Mechanicsville Rd & Knights Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.962867, 40.093985 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23891", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.963539, 40.094442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23892", "stop_name": "Mechanicsville Rd & Medford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964846, 40.095331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23893", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96463, 40.09774 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 4.0, "percent_change": -0.6, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23894", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965207, 40.099875 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25911", "stop_name": "Chalfont Dr & Academy Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989955, 40.083871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23895", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.967437, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23904", "stop_name": "Chalfont Dr & Calera Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988258, 40.082803 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23896", "stop_name": "Medford Rd & Atmore Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969875, 40.100972 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23905", "stop_name": "Chalfont Dr & Brookview Dr - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987183, 40.082496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23897", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.970988, 40.100816 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25912", "stop_name": "Chalfont Dr & Carey Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985895, 40.082304 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23898", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.973384, 40.099869 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23906", "stop_name": "Chalfont Dr & Keswick Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984014, 40.082253 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23899", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975285, 40.098636 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23907", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983974, 40.081066 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23900", "stop_name": "Medford Rd & Academy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97595, 40.096514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23908", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984184, 40.079603 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23386", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976697, 40.096177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23909", "stop_name": "Keswick Rd & Rayland Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985771, 40.077475 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23387", "stop_name": "Academy Rd & Fairdale Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978527, 40.09497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23910", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987567, 40.07591 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22680", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.075315 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23388", "stop_name": "Academy Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980477, 40.093522 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23389", "stop_name": "Academy Rd & Brandon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982487, 40.091896 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23912", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.992377, 40.076686 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23913", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995189, 40.077195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23915", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.997595, 40.078337 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "25913", "stop_name": "Academy Rd & Red Lion Rd - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994273, 40.08195 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26120", "stop_name": "Academy Rd & Cromwell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995887, 40.081018 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26119", "stop_name": "Academy Rd & Red Lion Rd - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.997241, 40.080237 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23394", "stop_name": "Academy Rd & Morrell Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999002, 40.07844 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23395", "stop_name": "Academy Rd & Morrell Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -74.99992, 40.07731 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23396", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001028, 40.076019 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23397", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001624, 40.075263 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23398", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002125, 40.074497 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23916", "stop_name": "Academy Rd & Grant Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.005497, 40.070403 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "415", "stop_name": "Academy Rd & Grant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007883, 40.069027 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23918", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.008956, 40.067514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23917", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009597, 40.065177 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23919", "stop_name": "Academy Rd & Convent Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009623, 40.062732 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23920", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010878, 40.06254 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23921", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012559, 40.062286 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23922", "stop_name": "Convent Av & Exeter Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013613, 40.062111 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23923", "stop_name": "Convent Av & Woodbridge Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015898, 40.061637 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23924", "stop_name": "Convent Av & Willits Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01832, 40.060011 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23925", "stop_name": "Willits Rd & Cloverly Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019723, 40.060801 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23405", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062676 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23406", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023764, 40.061413 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23407", "stop_name": "Ashton Rd & Tolbut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024704, 40.060505 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23408", "stop_name": "Ashton Rd & Tolbut St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02619, 40.059037 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23409", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026904, 40.058334 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23410", "stop_name": "Ashton Rd & Old Ashton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02751, 40.057721 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23411", "stop_name": "Ashton Rd & Holme Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028414, 40.056813 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23412", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030957, 40.056821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "26134", "stop_name": "Holme Av & Winchester Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032541, 40.05696 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23413", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.03403, 40.057241 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23414", "stop_name": "Holme Av & Revere St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038882, 40.058649 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23415", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041204, 40.058031 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23416", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04274, 40.058331 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21", "stop_name": "Roosevelt Blvd & Solly Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045067, 40.058873 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22904", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045863, 40.058072 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22905", "stop_name": "Roosevelt Blvd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046957, 40.056987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22907", "stop_name": "Roosevelt Blvd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.049466, 40.054442 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22909", "stop_name": "Roosevelt Blvd & Napfle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051287, 40.052252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22910", "stop_name": "Roosevelt Blvd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051556, 40.050592 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22911", "stop_name": "Roosevelt Blvd & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051707, 40.048817 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22912", "stop_name": "Roosevelt Blvd & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052367, 40.046927 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22", "stop_name": "Roosevelt Blvd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054293, 40.045085 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22913", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.057049, 40.042514 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22915", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.05901, 40.040699 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22916", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060257, 40.039515 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22918", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062953, 40.037256 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22919", "stop_name": "Roosevelt Blvd & Harbison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064255, 40.036849 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22920", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065309, 40.03662 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22921", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067759, 40.036056 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22922", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.5, "percent_change": 3.5, "expected_wait_time_difference": -116.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069499, 40.035668 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Keswick", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "340", "stop_name": "Frankford Transit Center - Rts 20 & 50", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077562, 40.023607 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22481", "stop_name": "Roosevelt Blvd & Levick St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069644, 40.034919 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22482", "stop_name": "Roosevelt Blvd & Hellerman St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.067088, 40.03551 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22483", "stop_name": "Roosevelt Blvd & Magee Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.036039 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22484", "stop_name": "Roosevelt Blvd & Unruh Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.036684 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22486", "stop_name": "Roosevelt Blvd & Longshore Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059716, 40.038951 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22487", "stop_name": "Roosevelt Blvd & Tyson Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058492, 40.040099 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22488", "stop_name": "Roosevelt Blvd & Friendship St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056389, 40.042083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "8", "stop_name": "Roosevelt Blvd & Cottman Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053657, 40.04461 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22490", "stop_name": "Roosevelt Blvd & Guilford St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052076, 40.046087 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22491", "stop_name": "Roosevelt Blvd & Revere St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050707, 40.050036 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22494", "stop_name": "Roosevelt Blvd & Hartel Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050509, 40.051821 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22495", "stop_name": "Roosevelt Blvd & Ryan Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.048937, 40.053878 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22498", "stop_name": "Roosevelt Blvd & Rhawn St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045976, 40.056805 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22499", "stop_name": "Roosevelt Blvd & Stanwood St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045299, 40.057526 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "9", "stop_name": "Roosevelt Blvd & Holme Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.044312, 40.058496 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23335", "stop_name": "Holme Av & Fairfield St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043249, 40.058216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23336", "stop_name": "Holme Av & Revere St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.041549, 40.057693 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23337", "stop_name": "Holme Av & Revere St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.038517, 40.05838 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23338", "stop_name": "Holme Av & Winchester Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034562, 40.0571 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25907", "stop_name": "Holme Av & Winchester Av - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032933, 40.056694 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23339", "stop_name": "Holme Av & Stamford St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031202, 40.056517 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23340", "stop_name": "Holme Av & Holme Cir", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.029387, 40.056379 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23341", "stop_name": "Ashton Rd & Holme Cir - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028106, 40.056973 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23342", "stop_name": "Ashton Rd & Jenny Pl", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026928, 40.058165 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23343", "stop_name": "Ashton Rd & Jenny Pl - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026096, 40.058983 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23344", "stop_name": "Ashton Rd & Tolbut St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024455, 40.060567 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23345", "stop_name": "Ashton Rd & Maxwell St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023765, 40.061261 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23346", "stop_name": "Ashton Rd & Tremont St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.022492, 40.062533 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23839", "stop_name": "Willits Rd & Ashton Rd - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021888, 40.062763 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23692", "stop_name": "Willits Rd & Cloverly Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019912, 40.060784 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23693", "stop_name": "Convent Av & Willits Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.018023, 40.060189 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23694", "stop_name": "Convent Av & Fordham Rd - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015851, 40.061547 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23695", "stop_name": "Convent Av & Annapolis Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012808, 40.062153 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23696", "stop_name": "Convent Av & Andover Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011044, 40.062406 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23697", "stop_name": "Convent Av & Academy Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009684, 40.0625 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23698", "stop_name": "Academy Rd & Eden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009351, 40.064846 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23699", "stop_name": "Academy Rd & Holyoke Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008816, 40.067281 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "406", "stop_name": "Academy Rd & Grant Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007433, 40.069053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23700", "stop_name": "Academy Rd & Grant Av - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.00563, 40.070046 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23355", "stop_name": "Academy Rd & Glenn St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001973, 40.074273 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23356", "stop_name": "Academy Rd & President St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001507, 40.075021 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23357", "stop_name": "Academy Rd & Avalon St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000888, 40.075707 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23358", "stop_name": "Academy Rd & Avalon St - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -74.99966, 40.077229 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23359", "stop_name": "Academy Rd & Morrell Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -74.998529, 40.078555 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23703", "stop_name": "Morrell Av & Canterbury Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.997856, 40.078311 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23704", "stop_name": "Morrell Av & Chesterfield Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995426, 40.077143 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23705", "stop_name": "Morrell Av & S Keswick Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.99259, 40.076588 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "407", "stop_name": "Morrell Av & Kayford Circle - 2", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990031, 40.075303 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22569", "stop_name": "Keswick Rd & Ashfield Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988482, 40.075137 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23707", "stop_name": "Keswick Rd & Rayland Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985867, 40.077216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23708", "stop_name": "Keswick Rd & Brookview Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984079, 40.079433 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25908", "stop_name": "Kewick Rd & Helmer Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.98385, 40.080083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23709", "stop_name": "Keswick Rd & Carey Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.081003 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23710", "stop_name": "Keswick Rd & Chalfont Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983801, 40.082216 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23711", "stop_name": "Chalfont Dr & Byrne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985941, 40.082447 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23712", "stop_name": "Chalfont Dr & Calera Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988446, 40.083 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23713", "stop_name": "Chalfont Dr & Academy Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989859, 40.083987 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23727", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983894, 40.090098 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23363", "stop_name": "Academy Rd & Newberry Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981882, 40.092081 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23364", "stop_name": "Academy Rd & Woodhaven Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.980182, 40.093432 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23365", "stop_name": "Academy Rd & Fairdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978256, 40.094871 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23366", "stop_name": "Academy Rd & Byberry Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976901, 40.09583 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23723", "stop_name": "Medford Rd & Tyrone Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976015, 40.097487 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23724", "stop_name": "Medford Rd & Ancona Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975275, 40.098439 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23725", "stop_name": "Medford Rd & Belgreen Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.973445, 40.099682 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23726", "stop_name": "Medford Rd & Danley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.971202, 40.100638 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "979", "stop_name": "Medford Rd & Atmore Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969769, 40.100865 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23728", "stop_name": "Medford Rd & Lester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967675, 40.100777 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23729", "stop_name": "Medford Rd & Hollins Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965456, 40.099921 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23730", "stop_name": "Medford Rd & Orion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964881, 40.099053 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23731", "stop_name": "Medford Rd & Vinton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964806, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "25909", "stop_name": "Mechanicsville Rd & Westhampton Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964753, 40.095116 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "30758", "stop_name": "Mechanicsville Rd & Mechanicsville Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963799, 40.094443 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23733", "stop_name": "Mechanicsville Rd & Verda Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963069, 40.093959 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "409", "stop_name": "Mechanicsville Rd & Knights Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96235, 40.093465 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "20", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills via Keswick", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.2, "percent_change": 0.33, "expected_wait_time_difference": -21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.4, "percent_change": 0.33, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.4, "percent_change": 0.33, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.4, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.4, "percent_change": -0.11, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.4, "percent_change": -0.11, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.4, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.4, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.2, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.6, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.6, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.0, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.4, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.4, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.6, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.0, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.2, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.0, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.0, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.0, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.2, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.2, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.2, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.0, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.0, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.0, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.2, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.2, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.2, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.8, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.0, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.0, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.8, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.8, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.8, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.0, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.4, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.4, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.2, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.2, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.2, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.2, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.0, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.2, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.2, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.2, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.2, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.4, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.2, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.8, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.8, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.0, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.0, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 19.0, "percent_change": -0.26, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.4, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 19.4, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 19.2, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.2, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.6, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.6, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.4, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.4, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.2, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.4, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.4, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.8, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.8, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.8, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.8, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.0, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.0, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 20.0, "percent_change": -0.22, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.0, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 19.2, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.0, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.0, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 18.8, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 18.8, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.2, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.6, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.2, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.0, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.0, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 18.8, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.0, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.0, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 17.8, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 17.8, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 17.8, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 17.8, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 17.8, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 17.6, "percent_change": -0.33, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 17.6, "percent_change": -0.33, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 17.6, "percent_change": -0.34, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 17.6, "percent_change": -0.28, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 17.8, "percent_change": -0.27, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 18.0, "percent_change": -0.26, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 17.6, "percent_change": -0.28, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 17.6, "percent_change": -0.27, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.0, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 18.2, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.2, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.4, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.4, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.4, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.4, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.2, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 18.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.0, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.2, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 18.2, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.2, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.0, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.8, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.0, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.0, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 17.8, "percent_change": -0.26, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.8, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 17.8, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.4, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.4, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.4, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 17.4, "percent_change": -0.28, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.4, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.4, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.2, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.2, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.2, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.2, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.2, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.2, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.0, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.0, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.0, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.0, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.6, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.8, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.8, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.0, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.6, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.4, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.4, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.4, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.6, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 15.6, "percent_change": -0.23, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 15.4, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 15.4, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 15.4, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.6, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.8, "percent_change": -0.23, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.8, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 15.2, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 15.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 15.4, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.6, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.6, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.6, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.0, "percent_change": -0.22, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.0, "percent_change": -0.22, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 15.8, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.2, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.2, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.2, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.2, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.2, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.4, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 16.6, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.8, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 16.8, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 16.8, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.0, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.0, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.0, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.0, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.0, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.2, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.0, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.2, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.0, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.8, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 18.2, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 18.4, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.2, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 11.6, "percent_change": -0.34, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.2, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.0, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.0, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.6, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.6, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.0, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.0, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.0, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.2, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.0, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.4, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.4, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.4, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.8, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.8, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.8, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.8, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.8, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 16.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 16.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.0, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.2, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.4, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.4, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.4, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.6, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.6, "percent_change": -0.1, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.6, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.6, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.6, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.6, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.0, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.0, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.0, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 17.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 17.0, "percent_change": -0.1, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 17.0, "percent_change": -0.1, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 17.0, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 17.0, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.8, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.6, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.6, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.2, "percent_change": -0.01, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.2, "percent_change": -0.01, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.6, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.4, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.4, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.4, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.0, "percent_change": -0.17, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.0, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.2, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.2, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.2, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.2, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.2, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.4, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.4, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.4, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.6, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.6, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.6, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.8, "percent_change": -0.23, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 16.0, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.0, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 16.0, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 16.0, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.5, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 14.5, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.5, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 14.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 15.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 15.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 15.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.5, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.5, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 20.5, "arrivals_during_cuts": 15.5, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.5, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 15.5, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 11.5, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.5, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.0, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 12.0, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20972", "stop_name": "Walnut St & 3rd St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.947214 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20973", "stop_name": "Walnut St & 4th St - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.947432 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21360", "stop_name": "Walnut St & 34th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191986, 39.95285 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21361", "stop_name": "Walnut St & 36th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194665, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21362", "stop_name": "Walnut St & 37th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196649, 39.953421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21363", "stop_name": "Walnut St & 38th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.198573, 39.953639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21364", "stop_name": "Walnut St & 39th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.200143, 39.953856 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "433", "stop_name": "Walnut St & 40th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.954154 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21365", "stop_name": "Walnut St & 41st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.204994, 39.954462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21366", "stop_name": "Walnut St & 42nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.206292, 39.95462 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21367", "stop_name": "Walnut St & 43rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.20863, 39.954892 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21368", "stop_name": "Walnut St & 44th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209975, 39.955081 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21369", "stop_name": "Walnut St & 45th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211546, 39.955268 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21370", "stop_name": "Walnut St & 46th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213529, 39.955513 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31148", "stop_name": "Walnut St & Farragut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214533, 39.95563 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21371", "stop_name": "Walnut St & 47th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215513, 39.955757 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21372", "stop_name": "Walnut St & 48th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217531, 39.95601 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21374", "stop_name": "Walnut St & 49th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.219491, 39.956255 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21375", "stop_name": "Walnut St & 50th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.221463, 39.956508 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21376", "stop_name": "Walnut St & 51st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223434, 39.956743 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "434", "stop_name": "Walnut St & 52nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225394, 39.956987 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21377", "stop_name": "Walnut St & 53rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227365, 39.957231 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21378", "stop_name": "Walnut St & 54th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22916, 39.957457 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21379", "stop_name": "Walnut St & 55th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231297, 39.957729 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21380", "stop_name": "Walnut St & 56th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233386, 39.957973 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21381", "stop_name": "Walnut St & 57th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235382, 39.958226 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21382", "stop_name": "Walnut St & 58th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23733, 39.95847 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21383", "stop_name": "Walnut St & 59th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239301, 39.958705 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "435", "stop_name": "Walnut St & 60th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241273, 39.958967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "436", "stop_name": "Walnut St & 61st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243245, 39.959211 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21384", "stop_name": "Walnut St & 62nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24524, 39.959455 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21385", "stop_name": "Walnut St & 63rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.959725 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31291", "stop_name": "63rd St & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247066, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25711", "stop_name": "Market St & 63rd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247274, 39.962911 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21387", "stop_name": "Market St & Burd Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250853, 39.962997 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25706", "stop_name": "Market St & Sellers Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.252566, 39.962732 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21388", "stop_name": "Market St & Powell Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.25357, 39.962608 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21390", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.256477, 39.962175 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 8.5, "percent_change": 0.7, "expected_wait_time_difference": -12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30632", "stop_name": "Market St & Chatham Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.256619, 39.962041 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21351", "stop_name": "Market St & Marlborough Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.255118, 39.962289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21352", "stop_name": "Market St & Powell Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.253629, 39.962492 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25707", "stop_name": "Market St & Glencoe Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.252732, 39.962598 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19073", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247039, 39.962411 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "25708", "stop_name": "Chestnut St & 63rd St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.5, "percent_change": 0.89, "expected_wait_time_difference": -15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.246806, 39.961108 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19074", "stop_name": "Chestnut St & 62nd St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 9.0, "percent_change": 1.0, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.24474, 39.960837 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19075", "stop_name": "Chestnut St & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243205, 39.960639 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "419", "stop_name": "Chestnut St & 60th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.241198, 39.960388 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19076", "stop_name": "Chestnut St & 59th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239179, 39.960151 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19077", "stop_name": "Chestnut St & 58th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237196, 39.959907 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19078", "stop_name": "Chestnut St & 57th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235271, 39.95968 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19079", "stop_name": "Chestnut St & 56th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233252, 39.959421 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19080", "stop_name": "Chestnut St & 55th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231187, 39.959156 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19081", "stop_name": "Chestnut St & 54th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229026, 39.958885 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19120", "stop_name": "Chestnut St & 53rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227243, 39.958668 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "420", "stop_name": "Chestnut St & 52nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225307, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19121", "stop_name": "Chestnut St & 51st St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223336, 39.95818 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19122", "stop_name": "Chestnut St & 50th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 39.957936 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30195", "stop_name": "Chestnut St & 49th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219381, 39.9577 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30194", "stop_name": "Chestnut St & 48th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.217492, 39.957438 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19123", "stop_name": "Chestnut St & 47th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.215426, 39.957212 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30633", "stop_name": "Chestnut St & Farragut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.21441, 39.957085 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19124", "stop_name": "Chestnut St & 46th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.213419, 39.956958 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "19149", "stop_name": "Chestnut St & 45th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211471, 39.956714 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "516", "stop_name": "Chestnut St & 44th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209866, 39.956488 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "590", "stop_name": "Chestnut St & 43rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.208543, 39.956343 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "591", "stop_name": "Chestnut St & 42nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.20643, 39.956089 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "592", "stop_name": "Chestnut St & 41st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204884, 39.95589 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "421", "stop_name": "Chestnut St & 40th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202452, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "598", "stop_name": "Chestnut St & 39th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200044, 39.955292 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "622", "stop_name": "Chestnut St & 38th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 8.0, "percent_change": 0.6, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198603, 39.955111 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "623", "stop_name": "Chestnut St & 37th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196549, 39.954867 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21353", "stop_name": "Chestnut St & 36th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194566, 39.954622 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21354", "stop_name": "Chestnut St & 34th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191934, 39.954296 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "30634", "stop_name": "Chestnut St & 33rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189892, 39.954042 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.5, "percent_change": 0.55, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "21", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Columbus-Dock", "stop_id": "32259", "stop_name": "Dock St & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 9.0, "percent_change": 0.64, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14302, 39.945304 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.2, "percent_change": -0.07, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "442", "stop_name": "Limekiln Pk & Greenwood Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 40.082595 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17446", "stop_name": "Easton Rd & Limeklin Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161991, 40.09187 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16938", "stop_name": "Easton Rd & Royal Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 40.095308 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15538", "stop_name": "Easton Rd & Toxony Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156741, 40.097214 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15539", "stop_name": "Easton Rd & Waverly Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155423, 40.09855 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15540", "stop_name": "Easton Rd & Wesley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154484, 40.099476 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "1052", "stop_name": "Easton Rd & Glenside Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153558, 40.100429 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15542", "stop_name": "Easton Rd & Mt Carmel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152595, 40.101472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15543", "stop_name": "Easton Rd & Fairhill Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151193, 40.103057 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15544", "stop_name": "Easton Rd & Rosemore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149636, 40.104625 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15545", "stop_name": "Easton Rd & Oakdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148745, 40.105506 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "444", "stop_name": "Easton Rd & Keswick Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147842, 40.10645 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15547", "stop_name": "Easton Rd & Jenkintown Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.2, "percent_change": -0.75, "expected_wait_time_difference": 787.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145074, 40.109202 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.2, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.8, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "442", "stop_name": "Limekiln Pk & Greenwood Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 40.082595 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17446", "stop_name": "Easton Rd & Limeklin Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161991, 40.09187 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16938", "stop_name": "Easton Rd & Royal Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 40.095308 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15538", "stop_name": "Easton Rd & Toxony Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156741, 40.097214 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15539", "stop_name": "Easton Rd & Waverly Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155423, 40.09855 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15540", "stop_name": "Easton Rd & Wesley Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154484, 40.099476 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "1052", "stop_name": "Easton Rd & Glenside Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153558, 40.100429 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15542", "stop_name": "Easton Rd & Mt Carmel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152595, 40.101472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15543", "stop_name": "Easton Rd & Fairhill Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151193, 40.103057 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15544", "stop_name": "Easton Rd & Rosemore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149636, 40.104625 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15545", "stop_name": "Easton Rd & Oakdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148745, 40.105506 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "444", "stop_name": "Easton Rd & Keswick Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147842, 40.10645 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15547", "stop_name": "Easton Rd & Jenkintown Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145074, 40.109202 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15549", "stop_name": "Easton Rd & Cross Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143398, 40.110876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15550", "stop_name": "Easton Rd & Pleasant Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142091, 40.112221 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15551", "stop_name": "Easton Rd & Charles St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14076, 40.113566 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "28395", "stop_name": "Easton Rd & Castlewood Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140059, 40.11426 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15553", "stop_name": "Easton Rd & Hilldale Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138704, 40.11565 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15555", "stop_name": "Easton Rd & Bradfield Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137444, 40.116923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "446", "stop_name": "Easton Rd & Edgehill Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136553, 40.117805 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "28396", "stop_name": "Easton Rd & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134544, 40.119826 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15560", "stop_name": "Easton Rd & Susquehanna Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133367, 40.121019 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.2, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "28396", "stop_name": "Easton Rd & Tyson Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134544, 40.119826 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15560", "stop_name": "Easton Rd & Susquehanna Rd", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133367, 40.121019 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18584", "stop_name": "Potter St & Jacksonville Rd - FS Charter Arms Apts", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091174, 40.18749 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18585", "stop_name": "Potter St & Downey St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089722, 40.186433 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17139", "stop_name": "Downey Dr & Van Horn Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086101, 40.187976 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17140", "stop_name": "Van Horn Dr & Craven Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087536, 40.190212 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17141", "stop_name": "Van Horn Dr & Jacksonville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08867, 40.190911 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28430", "stop_name": "Jacksonville Rd & Liberty Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.19262 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28432", "stop_name": "Jacksonville Rd & Steamboat Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085133, 40.194552 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30777", "stop_name": "Street Rd & Walmart Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080046, 40.195386 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18583", "stop_name": "Jacksonville Rd & Walmart - onsite", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081732, 40.194703 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28436", "stop_name": "Street Rd & Jacksonville Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082929, 40.197144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16696", "stop_name": "Street Rd & Park Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086285, 40.199054 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16697", "stop_name": "Street Rd & Madison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089003, 40.200615 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16939", "stop_name": "Street Rd & Cathrine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091189, 40.201888 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30311", "stop_name": "Street Rd & Mearns Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093352, 40.203117 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16698", "stop_name": "Old York Rd & Street Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100122, 40.20609 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16699", "stop_name": "Old York Rd & Cypress Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100568, 40.203269 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16700", "stop_name": "Old York Rd & Henry Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100957, 40.201164 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16701", "stop_name": "Old York Rd & 9th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101588, 40.197961 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16941", "stop_name": "Old York Rd & 7th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101927, 40.196293 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16702", "stop_name": "Old York Rd & 4th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102328, 40.194143 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16703", "stop_name": "Old York Rd & 2nd Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.10274, 40.192144 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16704", "stop_name": "Old York Rd & County Line Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103344, 40.189531 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17142", "stop_name": "Old York Rd & Madison Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10401, 40.186551 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "28438", "stop_name": "Old York Rd & Crescent Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104396, 40.184945 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16942", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105194, 40.181511 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16943", "stop_name": "Old York Rd & Monument Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105448, 40.180369 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16944", "stop_name": "Old York Rd & Montgomery Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105773, 40.17912 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16945", "stop_name": "Old York Rd & Moreland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106243, 40.177408 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "456", "stop_name": "York Rd & Byberry Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107122, 40.174161 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16947", "stop_name": "Old York Rd & Lehman Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1083, 40.17295 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16706", "stop_name": "Old York Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109942, 40.171437 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16707", "stop_name": "Old York Rd & Crooked Billet Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110568, 40.169064 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16949", "stop_name": "Old York Rd & Newington Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.166654 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17144", "stop_name": "Old York Rd & Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111209, 40.163523 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30776", "stop_name": "Old York Rd & Sunset Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111764, 40.161213 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16709", "stop_name": "Old York Rd & Fitzwatertown Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111985, 40.15949 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16710", "stop_name": "Old York Rd & Lakevue Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112519, 40.156582 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16712", "stop_name": "Old York Rd & Sampson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11311, 40.154058 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16713", "stop_name": "Old York Rd & Warren St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113507, 40.15272 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16951", "stop_name": "Old York Rd & Fairhill St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114023, 40.151159 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16952", "stop_name": "Old York Rd & Lincoln Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114669, 40.149741 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16953", "stop_name": "Old York Rd & Summit Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115528, 40.148253 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16714", "stop_name": "Old York Rd & Cedar Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115852, 40.147218 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "18838", "stop_name": "Moreland Rd & Easton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117381, 40.141411 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32296", "stop_name": "Easton Rd & Davisville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119558, 40.13906 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "32631", "stop_name": "Olney Transit Center - Rts 22 80", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143828, 40.03876 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17319", "stop_name": "Broad St & Grange St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 40.041296 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17320", "stop_name": "Broad St & Nedro Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143777, 40.042794 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17321", "stop_name": "Broad St & Champlost Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.044355 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15450", "stop_name": "Broad St & Spencer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143174, 40.045649 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17323", "stop_name": "Broad St & Godfrey Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142789, 40.047353 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17324", "stop_name": "Broad St & Medary Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142463, 40.048923 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15454", "stop_name": "Broad St & Chelten Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142126, 40.050493 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15465", "stop_name": "Broad St & 67th Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.5, "percent_change": 0.38, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141018, 40.055399 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15468", "stop_name": "Broad St & 68th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.5, "percent_change": 0.38, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140777, 40.05663 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17330", "stop_name": "Broad St & 69th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.5, "percent_change": 0.38, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140439, 40.058147 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17332", "stop_name": "Broad St & 70th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140126, 40.059672 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15471", "stop_name": "Broad St & 71st Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139801, 40.061118 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17334", "stop_name": "Broad St & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139284, 40.063196 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17335", "stop_name": "Cheltenham Av & Keenan St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141726, 40.064755 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15475", "stop_name": "Cheltenham Av & Sycamore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142965, 40.065472 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15476", "stop_name": "Cheltenham Av & Euston Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.066063 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15477", "stop_name": "Cheltenham Av & Cedar Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145384, 40.066852 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15478", "stop_name": "Cheltenham Av & Penrose Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146564, 40.067533 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17341", "stop_name": "Cheltenham Av & Andrews Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148204, 40.068482 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15482", "stop_name": "Cheltenham Av & Massey Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149444, 40.069172 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "17344", "stop_name": "Cheltenham Av & Williams Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151781, 40.070481 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15486", "stop_name": "Cheltenham Av & Tulpehocken St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152666, 40.070991 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "18264", "stop_name": "Cheltenham Av & 78th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154672, 40.072165 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "15489", "stop_name": "Cheltenham Av & 79th Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 40.072927 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "89", "stop_name": "Cheltenham Av & Ogontz Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15924, 40.07471 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16930", "stop_name": "Cheltenham Av & Greenwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161826, 40.076108 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16931", "stop_name": "Cheltenham Av & Vernon Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 40.077075 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16932", "stop_name": "Cheltenham Av & Mt Pleasant Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168093, 40.079843 ] } }, +{ "type": "Feature", "properties": { "route_id": "22", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Warminster", "stop_id": "16933", "stop_name": "Cheltenham Av & Mt Airy Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170502, 40.081267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.4, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.2, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.2, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 15.2, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 15.2, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 15.0, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 15.0, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 15.0, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.8, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.4, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.4, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.4, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.4, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.4, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.4, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.2, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.2, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.4, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.4, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.4, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.4, "percent_change": 0.08, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.4, "percent_change": 0.08, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.4, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.4, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.4, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.4, "percent_change": 0.13, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.2, "percent_change": 0.11, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.2, "percent_change": 0.11, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.2, "percent_change": 0.11, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.2, "percent_change": 0.13, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.2, "percent_change": 0.13, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.2, "percent_change": 0.13, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.0, "percent_change": 0.14, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.4, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.4, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.4, "percent_change": 0.15, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.4, "percent_change": 0.15, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.4, "percent_change": 0.15, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.4, "percent_change": 0.18, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.2, "percent_change": 0.11, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.2, "percent_change": 0.17, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.2, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.2, "percent_change": 0.24, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.2, "percent_change": 0.24, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.2, "percent_change": 0.24, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.0, "percent_change": 0.21, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.0, "percent_change": 0.21, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.6, "percent_change": 0.23, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.6, "percent_change": 0.23, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.6, "percent_change": 0.27, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.6, "percent_change": 0.27, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.6, "percent_change": 0.27, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.6, "percent_change": 0.31, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 7.6, "percent_change": 0.46, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 7.6, "percent_change": 0.46, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 7.0, "percent_change": 0.35, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.8, "percent_change": 0.31, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.6, "percent_change": 0.32, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.4, "percent_change": 0.33, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.4, "percent_change": 0.33, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.4, "percent_change": 0.33, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.2, "percent_change": 0.29, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.2, "percent_change": 0.29, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.8, "percent_change": 0.26, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.8, "percent_change": 0.26, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.8, "percent_change": 0.26, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.8, "percent_change": 0.38, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.8, "percent_change": 0.38, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.8, "percent_change": 0.38, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.8, "percent_change": 0.38, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.6, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.6, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.6, "percent_change": 0.21, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.6, "percent_change": 0.29, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.6, "percent_change": 0.29, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.6, "percent_change": 0.29, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.4, "percent_change": 0.31, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.0, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.0, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.0, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.0, "percent_change": -0.25, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.4, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.4, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.4, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 13.8, "percent_change": -0.27, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.8, "percent_change": -0.26, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 13.8, "percent_change": -0.27, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 13.6, "percent_change": -0.28, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.8, "percent_change": -0.26, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.8, "percent_change": -0.26, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.8, "percent_change": -0.26, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.0, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.0, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.8, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.8, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.8, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.4, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.4, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.2, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.2, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.6, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.8, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.0, "percent_change": -0.15, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.0, "percent_change": -0.15, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.8, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.6, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.8, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.8, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.4, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.4, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.4, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.4, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.4, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.4, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.4, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.4, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.8, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.6, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.6, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.6, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.4, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.6, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.6, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.8, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.6, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.2, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.2, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.4, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.4, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.8, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.8, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.8, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.8, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.6, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.6, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.6, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.6, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.4, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.4, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.4, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.4, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.8, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.8, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.6, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.8, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.6, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.6, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.6, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.8, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 16.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 16.2, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 16.4, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 16.4, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 16.2, "percent_change": -0.08, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 16.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 16.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 16.0, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 16.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 16.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.6, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.6, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.8, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.2, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.4, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.2, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.0, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.0, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.0, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.0, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.0, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.0, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.8, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.2, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.0, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.8, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.8, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.8, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.6, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.2, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.2, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.2, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.2, "percent_change": -0.04, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.4, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 20.4, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.8, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 21.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 21.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 21.4, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.4, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 21.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 21.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 21.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 21.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 21.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 21.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 21.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 21.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 21.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 21.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 21.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.0, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 21.0, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 21.0, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 20.8, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 21.0, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 21.4, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 21.4, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 21.4, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 21.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 21.2, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 21.2, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 21.2, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 20.6, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 20.6, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 20.6, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 20.6, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 20.4, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 20.4, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 20.4, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 20.4, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.8, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.8, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.4, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.4, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.6, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.4, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.2, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.0, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.2, "percent_change": -0.3, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.2, "percent_change": -0.3, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.2, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.2, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.2, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.2, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.2, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.2, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.2, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.2, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.4, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.8, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.8, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 18.6, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 18.6, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 18.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.8, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.8, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 19.0, "percent_change": -0.26, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.0, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 17.8, "percent_change": -0.33, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.0, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.2, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.2, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.8, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.2, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.2, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 18.6, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 18.2, "percent_change": -0.34, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.0, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.4, "percent_change": -0.34, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.8, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.8, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.8, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.8, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.8, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 18.8, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 18.8, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 18.8, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 18.8, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 18.6, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 18.6, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.4, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.2, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.4, "percent_change": -0.34, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.8, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.2, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.2, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 19.4, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 19.4, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.6, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.2, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 17.0, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 17.0, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.6, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.6, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.6, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.6, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.0, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.4, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 18.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 18.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 18.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 18.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.4, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.6, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 18.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.6, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 18.6, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 18.6, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 18.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 19.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.2, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.8, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 21.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 21.0, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.6, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.6, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.6, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.6, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.8, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.0, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.2, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 20.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 20.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 20.0, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 20.0, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 20.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 20.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 20.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 20.2, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 20.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.4, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 20.2, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.6, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 20.8, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.8, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 20.6, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 20.2, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.4, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 19.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.2, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 18.0, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 18.2, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 18.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 18.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.6, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.0, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.2, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.2, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.2, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 19.2, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.4, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.4, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 19.4, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 19.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.6, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.0, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.2, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.8, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.6, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.6, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.6, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.4, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.6, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 20.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.2, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.2, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.0, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.2, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.6, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 20.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.4, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.6, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.8, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.8, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 20.8, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.6, "percent_change": -0.19, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 20.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 20.8, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 20.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 20.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 21.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 21.0, "percent_change": -0.15, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 20.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 20.8, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 20.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 20.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.6, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.6, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.8, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.8, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.8, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 20.4, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.4, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 20.4, "percent_change": -0.18, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 20.4, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.4, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.4, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 20.4, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 20.6, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 20.6, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 20.6, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 20.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 20.8, "percent_change": -0.13, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 20.8, "percent_change": -0.13, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 20.8, "percent_change": -0.13, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 20.4, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 20.4, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 20.2, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.4, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.4, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.4, "percent_change": -0.16, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 20.0, "percent_change": -0.17, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.4, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.4, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.6, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.6, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.8, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.6, "percent_change": -0.24, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 11.6, "percent_change": -0.25, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 11.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.8, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.8, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.8, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.8, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.8, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.8, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.8, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.2, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.2, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.8, "percent_change": -0.18, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.8, "percent_change": -0.18, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.2, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.2, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.2, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.2, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.2, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.2, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.0, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.0, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.8, "percent_change": -0.23, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.8, "percent_change": -0.23, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.0, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.0, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.0, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.0, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.0, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.0, "percent_change": -0.23, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.2, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.2, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.8, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.8, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.0, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.2, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.8, "percent_change": -0.25, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.0, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.2, "percent_change": -0.26, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.2, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.4, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.0, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.0, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.4, "percent_change": -0.22, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.6, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.6, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.6, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.4, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.4, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.6, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.6, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.6, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.6, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.6, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.6, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.6, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.6, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.2, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.6, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.2, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.2, "percent_change": -0.17, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.2, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.2, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.2, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.2, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.2, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.4, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.4, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.4, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.4, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.4, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.4, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.6, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.6, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.6, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.6, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.4, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.0, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.4, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.4, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.4, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.4, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.6, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.6, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.8, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.0, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.5, "percent_change": -0.41, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.0, "percent_change": -0.45, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.0, "percent_change": -0.45, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 5.5, "percent_change": -0.45, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.5, "percent_change": -0.42, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.5, "percent_change": -0.42, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 6.5, "percent_change": -0.38, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.0, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.0, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.0, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.0, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.0, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.0, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.0, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.0, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.0, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.0, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.5, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.5, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.5, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.5, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 13.0, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.5, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.5, "percent_change": -0.37, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.5, "percent_change": -0.37, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.5, "percent_change": -0.37, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "250", "stop_name": "Germantown Av & Bethlehem Pk - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20797, 40.076831 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15427", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206529, 40.076016 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15429", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20503, 40.075121 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15430", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203719, 40.074333 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15433", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202764, 40.073252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15434", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201881, 40.072009 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15435", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201092, 40.070982 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15436", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199866, 40.069542 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15437", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198982, 40.068755 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "30860", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197518, 40.067753 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15439", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.195221, 40.064884 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15440", "stop_name": "Germantown Av & McPherson St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193971, 40.063998 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15441", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193111, 40.062809 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15442", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191981, 40.061299 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15443", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191156, 40.060217 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15444", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189542, 40.058429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15460", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188211, 40.056971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15462", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187447, 40.055524 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15464", "stop_name": "Germantown Av & Carpenter Ln - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186941, 40.054648 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15466", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186236, 40.053308 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1175", "stop_name": "Germantown Av & Westview St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185754, 40.052451 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15467", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185402, 40.051789 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15494", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184673, 40.050431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15492", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184015, 40.04927 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15493", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183557, 40.048376 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15495", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182911, 40.047126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "18582", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182312, 40.045928 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15646", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181819, 40.044892 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15647", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180997, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15648", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18009, 40.042122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15649", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178878, 40.040638 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15651", "stop_name": "Germantown Av & Harvey St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177759, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15652", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1771, 40.038474 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15653", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176558, 40.037813 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15654", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175723, 40.036794 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "950", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174898, 40.035891 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15655", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173861, 40.035058 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15700", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172835, 40.034387 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15701", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170746, 40.03316 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15702", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169473, 40.032372 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15703", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167915, 40.031521 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15704", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 40.03092 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15705", "stop_name": "Germantown Av & Manheim St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165626, 40.03024 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15706", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 40.029254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15707", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 40.028341 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15708", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160733, 40.026793 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15710", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.024078 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15711", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159129, 40.022854 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15712", "stop_name": "Germantown Av & Roberts Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 40.021763 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15713", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157069, 40.020529 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15715", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 40.019187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15716", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 40.01815 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15717", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154588, 40.017132 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15718", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154001, 40.016006 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15719", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 40.01446 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "15720", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152277, 40.012673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1176", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151597, 40.011083 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "21224", "stop_name": "Germantown Av & Broad St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 40.010136 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "31613", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150954, 40.009403 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16076", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150405, 40.007608 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16080", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.5, "percent_change": 0.24, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149915, 40.006045 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1178", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149285, 40.003973 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16085", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148935, 40.00283 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16087", "stop_name": "Germantown Av & Allegheny Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 40.001097 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16097", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147519, 39.99931 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16098", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146899, 39.997774 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16099", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147153, 39.996257 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16100", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147549, 39.994759 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1179", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147956, 39.993198 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16101", "stop_name": "Germantown Av & Huntingdon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148376, 39.991601 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16102", "stop_name": "10th St & Cumberland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148418, 39.990102 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16103", "stop_name": "10th St & York St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148754, 39.988594 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16104", "stop_name": "10th St & Dauphin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.987122 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16105", "stop_name": "10th St & Susquehanna Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 39.985517 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16108", "stop_name": "12th St & Susquehanna Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152606, 39.985657 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16109", "stop_name": "12th St & Diamond St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152906, 39.98431 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16110", "stop_name": "12th St & Norris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.982856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16111", "stop_name": "12th St & Berks St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153473, 39.981384 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16112", "stop_name": "12th St & Montgomery Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15388, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16113", "stop_name": "12th St & Cecil B Moore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.978271 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16114", "stop_name": "12th St & Oxford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154529, 39.976906 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16115", "stop_name": "12th St & Jefferson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.975488 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16116", "stop_name": "12th St & Master St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.974123 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16117", "stop_name": "12th St & Thompson St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155419, 39.972856 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "1180", "stop_name": "12th St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155792, 39.971126 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16118", "stop_name": "12th St & Poplar St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156165, 39.969422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16119", "stop_name": "12th St & Parrish St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.968209 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16120", "stop_name": "12th St & Brown St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.967254 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16121", "stop_name": "12th St & Fairmount Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16122", "stop_name": "12th St & Wallace St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157187, 39.964667 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16123", "stop_name": "12th St & Green St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.963088 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16124", "stop_name": "12th St & Ridge Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157704, 39.962267 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16125", "stop_name": "12th St & Buttonwood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.961117 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16126", "stop_name": "12th St & Noble St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.960037 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16127", "stop_name": "12th St & Callowhill St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.959243 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16128", "stop_name": "12th St & Vine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.957825 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16129", "stop_name": "12th St & Race St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15911, 39.955889 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16130", "stop_name": "12th St & Arch St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "756", "stop_name": "12th St & Market St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15995, 39.952187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16131", "stop_name": "12th St & Chestnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160299, 39.950501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16132", "stop_name": "12th St & Walnut St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160624, 39.948967 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16843", "stop_name": "11th St & Walnut St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158913, 39.948579 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "16844", "stop_name": "11th St & Chestnut St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158576, 39.950105 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "11th-Market", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32331", "stop_name": "11th St & Market St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158264, 39.951603 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16845", "stop_name": "11th St & Arch St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157843, 39.953673 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16846", "stop_name": "11th St & Race St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157446, 39.955493 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16847", "stop_name": "11th St & Vine St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.956679 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17855", "stop_name": "11th St & Callowhill St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156689, 39.958847 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16849", "stop_name": "11th St & Noble St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156509, 39.959694 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16850", "stop_name": "11th St & Ridge Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156389, 39.960203 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16851", "stop_name": "11th St & Spring Garden St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1561, 39.961532 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16852", "stop_name": "11th St & Green St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.962674 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16853", "stop_name": "11th St & Wallace St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.964164 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16854", "stop_name": "11th St & Fairmount Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155211, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16855", "stop_name": "11th St & Brown St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.966554 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16856", "stop_name": "11th St & Parrish St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154754, 39.967661 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16857", "stop_name": "11th St & Poplar St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15449, 39.968838 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1185", "stop_name": "11th St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.970613 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16858", "stop_name": "11th St & Thompson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15372, 39.972415 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16862", "stop_name": "11th St & Master St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153431, 39.973718 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16863", "stop_name": "11th St & Jefferson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153143, 39.975074 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16864", "stop_name": "11th St & Oxford St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15283, 39.976501 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16865", "stop_name": "11th St & Cecil B Moore Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152541, 39.977839 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16866", "stop_name": "11th St & Montgomery Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.979364 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16867", "stop_name": "11th St & Berks St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151868, 39.980917 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16868", "stop_name": "11th St & Norris St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151543, 39.982424 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16869", "stop_name": "11th St & Diamond St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151206, 39.983896 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16870", "stop_name": "11th St & Susquehanna Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 39.985502 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16871", "stop_name": "11th St & Dauphin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150521, 39.98709 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16872", "stop_name": "11th St & York St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 39.98858 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16873", "stop_name": "11th St & Cumberland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149859, 39.990087 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16874", "stop_name": "11th St & Huntingdon St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149534, 39.991577 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16875", "stop_name": "Huntingdon St & Germantown Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148483, 39.99145 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1186", "stop_name": "Germantown Av & Lehigh Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147851, 39.992957 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16876", "stop_name": "Germantown Av & Somerset St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147431, 39.994535 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16877", "stop_name": "Germantown Av & Cambria St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.996034 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16878", "stop_name": "Germantown Av & Indiana Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.5, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146699, 39.997515 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16879", "stop_name": "Germantown Av & Glenwood Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.999131 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16880", "stop_name": "Germantown Av & Sedgley Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147915, 40.000605 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16881", "stop_name": "Germantown Av & Hilton St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 40.001624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16882", "stop_name": "Germantown Av & Westmoreland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 40.002589 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16883", "stop_name": "Germantown Av & Rising Sun Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149108, 40.003857 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16884", "stop_name": "Germantown Av & Tioga St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 40.005804 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16885", "stop_name": "Germantown Av & Venango St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15017, 40.007429 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1188", "stop_name": "Germantown Av & Erie Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15066, 40.009019 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1189", "stop_name": "Germantown Av & Butler St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151291, 40.010796 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16886", "stop_name": "Germantown Av & Pike St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151982, 40.012422 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16887", "stop_name": "Germantown Av & Lycoming St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152944, 40.014352 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16888", "stop_name": "Germantown Av & Hunting Park Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 40.015746 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16889", "stop_name": "Germantown Av & Staub St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.017167 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16890", "stop_name": "Germantown Av & Juniata St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154904, 40.017971 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16891", "stop_name": "Germantown Av & Saint Paul St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155526, 40.018963 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16892", "stop_name": "Germantown Av & Dennie St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 40.020448 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16893", "stop_name": "Germantown Av & 20th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 40.021888 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "16894", "stop_name": "Germantown Av & Windrim Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158881, 40.022719 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31460", "stop_name": "Germantown Av & Berkley St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159409, 40.023818 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17044", "stop_name": "Germantown Av & Abbottsford Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 40.026641 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17047", "stop_name": "Germantown Av & Logan St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161993, 40.028233 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17048", "stop_name": "Germantown Av & Seymour St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 40.029263 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17049", "stop_name": "Germantown Av & Wister St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164824, 40.029943 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17050", "stop_name": "Germantown Av & Ashmead St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166416, 40.030848 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17051", "stop_name": "Germantown Av & Bringhurst St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167655, 40.031538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17052", "stop_name": "Germantown Av & Penn St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 40.032326 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17053", "stop_name": "Germantown Av & Coulter St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170451, 40.033141 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17054", "stop_name": "Germantown Av & School House Ln", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172539, 40.034368 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17055", "stop_name": "Germantown Av & Armat St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 40.035013 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "949", "stop_name": "Germantown Av & Chelten Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174544, 40.035783 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17056", "stop_name": "Germantown Av & Price St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 40.036624 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17191", "stop_name": "Germantown Av & Rittenhouse St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176016, 40.03741 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17196", "stop_name": "Germantown Av & Haines St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 40.038358 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17197", "stop_name": "Germantown Av & High St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177547, 40.039261 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17200", "stop_name": "Germantown Av & Walnut Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178477, 40.040405 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17202", "stop_name": "Germantown Av & Tulpehocken St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179834, 40.042025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17206", "stop_name": "Germantown Av & Washington Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180784, 40.043212 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17207", "stop_name": "Germantown Av & Duval St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181559, 40.044676 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17208", "stop_name": "Germantown Av & Johnson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182099, 40.045865 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17210", "stop_name": "Germantown Av & Cliveden St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182675, 40.047018 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17211", "stop_name": "Germantown Av & Upsal St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183289, 40.048187 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17212", "stop_name": "Germantown Av & Sharpnack St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 40.049252 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17213", "stop_name": "Germantown Av & Hortter St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.5, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184531, 40.050538 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17215", "stop_name": "Germantown Av & Phil Ellena St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 40.051566 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1190", "stop_name": "Germantown Av & Westview St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 40.052691 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17218", "stop_name": "Germantown Av & Slocum St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185965, 40.053138 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17227", "stop_name": "Germantown Av & Carpenter Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186787, 40.054711 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17228", "stop_name": "Germantown Av & Gorgas Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187222, 40.055425 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17402", "stop_name": "Germantown Av & Sedgwick St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187951, 40.056828 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17403", "stop_name": "Germantown Av & Mt Pleasant Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18927, 40.058357 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17404", "stop_name": "Germantown Av & Mt Airy Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19092, 40.060163 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17405", "stop_name": "Germantown Av & Allens Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191721, 40.061191 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17406", "stop_name": "Germantown Av & Gowen Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19271, 40.062523 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17407", "stop_name": "Germantown Av & McPherson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 40.064346 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17408", "stop_name": "Germantown Av & Roumfort Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194961, 40.06491 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30859", "stop_name": "Germantown Av & Mermaid Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197164, 40.067672 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17410", "stop_name": "Germantown Av & Moreland Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.198627, 40.068639 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17411", "stop_name": "Germantown Av & Springfield Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.199689, 40.069569 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17412", "stop_name": "Germantown Av & Willow Grove Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.200655, 40.070695 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17770", "stop_name": "Germantown Av & Abington Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.201645, 40.071929 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17771", "stop_name": "Germantown Av & Hartwell Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202528, 40.073171 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17774", "stop_name": "Germantown Av & Southampton Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 40.074154 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17776", "stop_name": "Germantown Av & Gravers Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204746, 40.075112 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17777", "stop_name": "Germantown Av & Highland Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.206269, 40.076025 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "17778", "stop_name": "Germantown Av & Evergreen Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207178, 40.076553 ] } }, +{ "type": "Feature", "properties": { "route_id": "23", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.4, "percent_change": 0.33, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.4, "percent_change": 0.33, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.2, "percent_change": 0.22, "expected_wait_time_difference": -21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23681", "stop_name": "2nd St Pk & Rozel Av - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045314, 40.169346 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23682", "stop_name": "2nd St Pk & Madison Av - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045844, 40.167589 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23683", "stop_name": "Jaymore Rd & 2nd St Pk - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047283, 40.164273 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23684", "stop_name": "James Way & Jaymor Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053196, 40.165978 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23685", "stop_name": "James Way & County Line Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056827, 40.164748 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25525", "stop_name": "County Line Rd & Mann Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.055007, 40.161681 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31091", "stop_name": "County Line Rd & Somers Dr - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.05215, 40.159968 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25526", "stop_name": "County Line Rd & Huntingdon Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048963, 40.158039 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23714", "stop_name": "Huntingdon Pk & Barnswallow Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050323, 40.156205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23686", "stop_name": "Huntingdon Pk & Wright Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051932, 40.154148 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25527", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053741, 40.152502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23687", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.055976, 40.150848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23688", "stop_name": "Huntingdon Pk & Spur Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059603, 40.147842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25528", "stop_name": "Huntingdon Pk & Cathedral Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061895, 40.135121 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23715", "stop_name": "Huntingdon Pk & Alnwick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061963, 40.133398 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25529", "stop_name": "Huntingdon Pk & Alden Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061935, 40.131827 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23716", "stop_name": "Huntingdon Pk & Buck Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062323, 40.127812 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23690", "stop_name": "Huntingdon Pk & Fettersmill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063083, 40.124949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23691", "stop_name": "Huntingdon Pk & Old Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067288, 40.11982 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.2, "percent_change": -0.18, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.2, "percent_change": -0.18, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.2, "percent_change": -0.18, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.2, "percent_change": -0.18, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.6, "percent_change": -0.33, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23681", "stop_name": "2nd St Pk & Rozel Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045314, 40.169346 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23682", "stop_name": "2nd St Pk & Madison Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045844, 40.167589 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23683", "stop_name": "Jaymore Rd & 2nd St Pk - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047283, 40.164273 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23684", "stop_name": "James Way & Jaymor Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053196, 40.165978 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23685", "stop_name": "James Way & County Line Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056827, 40.164748 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25525", "stop_name": "County Line Rd & Mann Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055007, 40.161681 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31091", "stop_name": "County Line Rd & Somers Dr - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05215, 40.159968 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.2, "percent_change": -0.24, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25526", "stop_name": "County Line Rd & Huntingdon Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048963, 40.158039 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23714", "stop_name": "Huntingdon Pk & Barnswallow Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050323, 40.156205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23686", "stop_name": "Huntingdon Pk & Wright Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051932, 40.154148 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25527", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053741, 40.152502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23687", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055976, 40.150848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23688", "stop_name": "Huntingdon Pk & Spur Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059603, 40.147842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25528", "stop_name": "Huntingdon Pk & Cathedral Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061895, 40.135121 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23715", "stop_name": "Huntingdon Pk & Alnwick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061963, 40.133398 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25529", "stop_name": "Huntingdon Pk & Alden Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061935, 40.131827 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23716", "stop_name": "Huntingdon Pk & Buck Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062323, 40.127812 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23690", "stop_name": "Huntingdon Pk & Fettersmill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063083, 40.124949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23691", "stop_name": "Huntingdon Pk & Old Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067288, 40.11982 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23681", "stop_name": "2nd St Pk & Rozel Av - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045314, 40.169346 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23682", "stop_name": "2nd St Pk & Madison Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045844, 40.167589 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23683", "stop_name": "Jaymore Rd & 2nd St Pk - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047283, 40.164273 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23684", "stop_name": "James Way & Jaymor Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053196, 40.165978 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23685", "stop_name": "James Way & County Line Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056827, 40.164748 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25525", "stop_name": "County Line Rd & Mann Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.055007, 40.161681 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31091", "stop_name": "County Line Rd & Somers Dr - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05215, 40.159968 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25526", "stop_name": "County Line Rd & Huntingdon Pk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048963, 40.158039 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23714", "stop_name": "Huntingdon Pk & Barnswallow Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050323, 40.156205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23686", "stop_name": "Huntingdon Pk & Wright Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051932, 40.154148 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25527", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053741, 40.152502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23687", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.055976, 40.150848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23688", "stop_name": "Huntingdon Pk & Spur Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.059603, 40.147842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25528", "stop_name": "Huntingdon Pk & Cathedral Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061895, 40.135121 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23715", "stop_name": "Huntingdon Pk & Alnwick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061963, 40.133398 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25529", "stop_name": "Huntingdon Pk & Alden Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061935, 40.131827 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23716", "stop_name": "Huntingdon Pk & Buck Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062323, 40.127812 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23690", "stop_name": "Huntingdon Pk & Fettersmill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063083, 40.124949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23691", "stop_name": "Huntingdon Pk & Old Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067288, 40.11982 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23681", "stop_name": "2nd St Pk & Rozel Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045314, 40.169346 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23682", "stop_name": "2nd St Pk & Madison Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045844, 40.167589 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23683", "stop_name": "Jaymore Rd & 2nd St Pk - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047283, 40.164273 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23684", "stop_name": "James Way & Jaymor Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053196, 40.165978 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23685", "stop_name": "James Way & County Line Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056827, 40.164748 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25525", "stop_name": "County Line Rd & Mann Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055007, 40.161681 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31091", "stop_name": "County Line Rd & Somers Dr - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05215, 40.159968 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25526", "stop_name": "County Line Rd & Huntingdon Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048963, 40.158039 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23714", "stop_name": "Huntingdon Pk & Barnswallow Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050323, 40.156205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23686", "stop_name": "Huntingdon Pk & Wright Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051932, 40.154148 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25527", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053741, 40.152502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23687", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055976, 40.150848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23688", "stop_name": "Huntingdon Pk & Spur Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059603, 40.147842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25528", "stop_name": "Huntingdon Pk & Cathedral Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061895, 40.135121 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23715", "stop_name": "Huntingdon Pk & Alnwick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061963, 40.133398 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25529", "stop_name": "Huntingdon Pk & Alden Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061935, 40.131827 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23716", "stop_name": "Huntingdon Pk & Buck Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062323, 40.127812 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23690", "stop_name": "Huntingdon Pk & Fettersmill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063083, 40.124949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23691", "stop_name": "Huntingdon Pk & Old Welsh Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067288, 40.11982 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23681", "stop_name": "2nd St Pk & Rozel Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045314, 40.169346 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23682", "stop_name": "2nd St Pk & Madison Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045844, 40.167589 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23683", "stop_name": "Jaymore Rd & 2nd St Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047283, 40.164273 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23684", "stop_name": "James Way & Jaymor Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053196, 40.165978 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23685", "stop_name": "James Way & County Line Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056827, 40.164748 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25525", "stop_name": "County Line Rd & Mann Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055007, 40.161681 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31091", "stop_name": "County Line Rd & Somers Dr - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05215, 40.159968 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25526", "stop_name": "County Line Rd & Huntingdon Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048963, 40.158039 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23714", "stop_name": "Huntingdon Pk & Barnswallow Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050323, 40.156205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23686", "stop_name": "Huntingdon Pk & Wright Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051932, 40.154148 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25527", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053741, 40.152502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23687", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055976, 40.150848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23688", "stop_name": "Huntingdon Pk & Spur Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059603, 40.147842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25528", "stop_name": "Huntingdon Pk & Cathedral Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061895, 40.135121 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23715", "stop_name": "Huntingdon Pk & Alnwick Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061963, 40.133398 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25529", "stop_name": "Huntingdon Pk & Alden Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061935, 40.131827 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23716", "stop_name": "Huntingdon Pk & Buck Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062323, 40.127812 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23690", "stop_name": "Huntingdon Pk & Fettersmill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063083, 40.124949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23691", "stop_name": "Huntingdon Pk & Old Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067288, 40.11982 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 5.5, "percent_change": -0.45, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 5.5, "percent_change": -0.45, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 5.5, "percent_change": -0.45, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 5.5, "percent_change": -0.45, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23681", "stop_name": "2nd St Pk & Rozel Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045314, 40.169346 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23682", "stop_name": "2nd St Pk & Madison Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045844, 40.167589 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23683", "stop_name": "Jaymore Rd & 2nd St Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047283, 40.164273 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23684", "stop_name": "James Way & Jaymor Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053196, 40.165978 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23685", "stop_name": "James Way & County Line Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056827, 40.164748 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25525", "stop_name": "County Line Rd & Mann Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055007, 40.161681 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31091", "stop_name": "County Line Rd & Somers Dr - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05215, 40.159968 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25526", "stop_name": "County Line Rd & Huntingdon Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048963, 40.158039 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23714", "stop_name": "Huntingdon Pk & Barnswallow Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050323, 40.156205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23686", "stop_name": "Huntingdon Pk & Wright Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051932, 40.154148 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25527", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053741, 40.152502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23687", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055976, 40.150848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23688", "stop_name": "Huntingdon Pk & Spur Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059603, 40.147842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25528", "stop_name": "Huntingdon Pk & Cathedral Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061895, 40.135121 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23715", "stop_name": "Huntingdon Pk & Alnwick Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061963, 40.133398 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25529", "stop_name": "Huntingdon Pk & Alden Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061935, 40.131827 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23716", "stop_name": "Huntingdon Pk & Buck Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062323, 40.127812 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23690", "stop_name": "Huntingdon Pk & Fettersmill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063083, 40.124949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23691", "stop_name": "Huntingdon Pk & Old Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067288, 40.11982 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23636", "stop_name": "Gloria Dei Manor", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.123421 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23638", "stop_name": "Huntingdon Pk & Philmont Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067124, 40.119579 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23639", "stop_name": "Huntingdon Pk & Red Lion Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.12502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23640", "stop_name": "Huntingdon Pk & Buck Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062107, 40.128436 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25498", "stop_name": "Huntingdon Pk & Alden Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061793, 40.131818 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23649", "stop_name": "Huntingdon Pk & Tomlinson Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06181, 40.133282 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23648", "stop_name": "Huntingdon Pk & College Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061766, 40.134835 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23675", "stop_name": "Huntingdon Pk & Byberry Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057855, 40.149301 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23676", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.150697 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25499", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053754, 40.15235 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25500", "stop_name": "Huntingdon Pk & Wright Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051743, 40.154183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "31431", "stop_name": "Huntingdon Pk & Barn Swallow La - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050133, 40.156258 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23651", "stop_name": "County Line Rd & Huntingdon Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049222, 40.158379 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25502", "stop_name": "County Line Rd & Mann Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055774, 40.162228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23650", "stop_name": "County Line Rd & James Way", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058738, 40.164004 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "25503", "stop_name": "James Way & County Line Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056828, 40.164641 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23652", "stop_name": "James Way & Jaymor Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052425, 40.166297 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23653", "stop_name": "Jaymor Rd & 2nd St Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047438, 40.164185 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23654", "stop_name": "2nd St Pk & Madison Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045798, 40.167322 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23655", "stop_name": "2nd St Pk & Rozel Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045244, 40.169176 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23656", "stop_name": "2nd St Pk & Knowles Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044712, 40.17104 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23657", "stop_name": "2nd St Pk & Hampton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044012, 40.173555 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "23658", "stop_name": "Street Rd & Knowles Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039153, 40.1718 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fox Chase", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "471", "stop_name": "Knowles Av & 2nd St Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043727, 40.171412 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23681", "stop_name": "2nd St Pk & Rozel Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045314, 40.169346 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23682", "stop_name": "2nd St Pk & Madison Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045844, 40.167589 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23683", "stop_name": "Jaymore Rd & 2nd St Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047283, 40.164273 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23684", "stop_name": "James Way & Jaymor Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053196, 40.165978 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23685", "stop_name": "James Way & County Line Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056827, 40.164748 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25525", "stop_name": "County Line Rd & Mann Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055007, 40.161681 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31091", "stop_name": "County Line Rd & Somers Dr - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05215, 40.159968 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25526", "stop_name": "County Line Rd & Huntingdon Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048963, 40.158039 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23714", "stop_name": "Huntingdon Pk & Barnswallow Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050323, 40.156205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23686", "stop_name": "Huntingdon Pk & Wright Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051932, 40.154148 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25527", "stop_name": "Huntingdon Pk & Albidale Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053741, 40.152502 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23687", "stop_name": "Huntingdon Pk & Warfield Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055976, 40.150848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23688", "stop_name": "Huntingdon Pk & Spur Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059603, 40.147842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25528", "stop_name": "Huntingdon Pk & Cathedral Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061895, 40.135121 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23715", "stop_name": "Huntingdon Pk & Alnwick Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061963, 40.133398 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25529", "stop_name": "Huntingdon Pk & Alden Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061935, 40.131827 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23716", "stop_name": "Huntingdon Pk & Buck Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062323, 40.127812 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23690", "stop_name": "Huntingdon Pk & Fettersmill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063083, 40.124949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23691", "stop_name": "Huntingdon Pk & Old Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067288, 40.11982 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "21961", "stop_name": "Frankford Transit Center - Rt 24", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078087, 40.022662 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "30219", "stop_name": "Penn St & Pratt St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079926, 40.023729 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23594", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08114, 40.024339 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23595", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082555, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23596", "stop_name": "Pratt St & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084642, 40.026304 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23597", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085891, 40.027003 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23598", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086988, 40.027604 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23592", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088073, 40.028223 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23599", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089169, 40.028833 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23600", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090112, 40.029344 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23601", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091445, 40.030071 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23602", "stop_name": "Pratt St & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092883, 40.03086 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23603", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032062 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23604", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090614, 40.033317 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23605", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089378, 40.034564 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23606", "stop_name": "Summerdale Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088154, 40.035828 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22847", "stop_name": "Oxford Av & Devereaux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088257, 40.041611 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23607", "stop_name": "Oxford Av & Martins Mills Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088919, 40.044175 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23608", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090317, 40.046044 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23609", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090916, 40.046876 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23610", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091206, 40.048028 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23611", "stop_name": "Martins Mill Rd & Lawndale St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091342, 40.049403 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23612", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091503, 40.05034 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25492", "stop_name": "Martins Mill Rd & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091699, 40.051305 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23613", "stop_name": "Martins Mill Rd & Fanshawne St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091908, 40.05226 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23614", "stop_name": "Martins Mill Rd & Rising Sun Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092069, 40.053064 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "375", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090786, 40.054435 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15869", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089574, 40.055655 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15870", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088362, 40.056856 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "31104", "stop_name": "Rising Sun Av & Princeton Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087589, 40.057666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "32059", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08709, 40.058183 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "15872", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085914, 40.05934 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "1029", "stop_name": "Central Av & Cottman Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090083, 40.065501 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23616", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089049, 40.066533 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23617", "stop_name": "Central Av & Shelmire Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087041, 40.068518 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23618", "stop_name": "Hasbrook Av & Central Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085293, 40.070263 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23619", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084989, 40.072154 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25494", "stop_name": "Hasbrook Av & Chandler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084878, 40.07293 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23620", "stop_name": "Oxford Av & Borbeck Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084672, 40.074099 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "467", "stop_name": "Oxford Av & Loney St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084959, 40.075903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23542", "stop_name": "Huntingdon Pk & Berkley Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.09365, 40.086735 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23622", "stop_name": "Huntingdon Pk & Rockledge Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093527, 40.090162 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23623", "stop_name": "Huntingdon Pk & Rockledge Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093191, 40.091294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25495", "stop_name": "Huntingdon Pk & Roseland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092888, 40.092695 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23624", "stop_name": "Huntingdon Pk & Sioux Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092455, 40.094247 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23625", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09171, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23626", "stop_name": "Huntingdon Pk & Linton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090817, 40.097848 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23627", "stop_name": "Huntingdon Pk & Hoyt Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08744, 40.101195 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23628", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.103137 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23629", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084696, 40.105793 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23630", "stop_name": "Huntingdon Pk & Moredon Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083828, 40.106817 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23631", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081226, 40.108738 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "1117", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080408, 40.10903 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "22410", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07603, 40.111303 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "31660", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072099, 40.113987 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "25497", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070876, 40.114868 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "23634", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068054, 40.118153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "30310", "stop_name": "Old Welsh Rd & Walton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068667, 40.120949 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fox Chase", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "470", "stop_name": "Old Welsh Rd Gloria Dei Towers", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07178, 40.121056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23637", "stop_name": "Old Welsh Rd & Walton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.120314 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23717", "stop_name": "Huntingdon Pk & Chestnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068231, 40.118359 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23718", "stop_name": "Huntingdon Pk & Welsh Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07097, 40.115046 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23633", "stop_name": "Huntingdon Pk & Moreland Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072074, 40.114255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22402", "stop_name": "Huntingdon Pk & Meadowbrook Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075898, 40.111651 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23740", "stop_name": "Huntingdon Pk & Holy Redeemer Hos - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080941, 40.10905 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23741", "stop_name": "Huntingdon Pk & Holy Redeemer Hosp - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082222, 40.108482 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31432", "stop_name": "Huntingdon Pk & St Joseph Manor", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082946, 40.107993 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23742", "stop_name": "Huntingdon Pk & Moredon Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084849, 40.106026 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23743", "stop_name": "Huntingdon Pk & Meetinghouse Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085916, 40.10328 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23744", "stop_name": "Huntingdon Pk & King Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087463, 40.101356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23745", "stop_name": "Huntingdon Pk & Susquehanna St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091244, 40.097626 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23746", "stop_name": "Huntingdon Pk & Arthur Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09279, 40.093471 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23749", "stop_name": "Oxford Av & Pine Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085343, 40.077198 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "476", "stop_name": "Oxford Av & Loney St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085101, 40.075885 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16382", "stop_name": "Oxford Av & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084872, 40.07434 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23750", "stop_name": "Hasbrook Av & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085106, 40.072351 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23751", "stop_name": "Hasbrook Av & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085411, 40.070316 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23752", "stop_name": "Central Av & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086707, 40.069035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23753", "stop_name": "Central Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.068536 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23754", "stop_name": "Central Av & Tudor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.066667 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "477", "stop_name": "Central Av & Cottman Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089856, 40.065875 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16431", "stop_name": "Rising Sun Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085937, 40.059491 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16432", "stop_name": "Rising Sun Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087149, 40.058272 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16433", "stop_name": "Rising Sun Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088385, 40.057008 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16434", "stop_name": "Rising Sun Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089585, 40.055788 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "378", "stop_name": "Rising Sun Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090797, 40.054569 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23756", "stop_name": "Martins Mill & Rising Sun - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092177, 40.052904 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23757", "stop_name": "Martins Mill Rd & Fanshawe St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092026, 40.052153 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23758", "stop_name": "Martins Mill Rd & Gilham St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091714, 40.05068 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30548", "stop_name": "Martins Mill & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091518, 40.049653 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23760", "stop_name": "Martins Mill Rd & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091359, 40.048171 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23761", "stop_name": "Martins Mill Rd & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09121, 40.047251 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23762", "stop_name": "Martins Mill Rd & Montour St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0906, 40.046179 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23763", "stop_name": "Summerdale Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089401, 40.034733 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23764", "stop_name": "Summerdale Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090625, 40.033469 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23765", "stop_name": "Summerdale Av & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091837, 40.032205 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23766", "stop_name": "Pratt St & Summdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092825, 40.030708 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23767", "stop_name": "Pratt St & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091728, 40.030107 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23768", "stop_name": "Pratt St & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090219, 40.029255 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23769", "stop_name": "Pratt St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089158, 40.02869 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23770", "stop_name": "Pratt St & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088356, 40.028224 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23771", "stop_name": "Pratt St & Rutland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087201, 40.027587 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23772", "stop_name": "Pratt St & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086104, 40.026986 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23773", "stop_name": "Pratt St & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084454, 40.026035 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23774", "stop_name": "Pratt St & Oakland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082839, 40.025147 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23775", "stop_name": "Pratt St & Saul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081412, 40.024349 ] } }, +{ "type": "Feature", "properties": { "route_id": "24", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.4, "percent_change": 0.34, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 9.2, "percent_change": 0.35, "expected_wait_time_difference": -8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 9.2, "percent_change": 0.35, "expected_wait_time_difference": -8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 9.2, "percent_change": 0.35, "expected_wait_time_difference": -8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 9.2, "percent_change": 0.35, "expected_wait_time_difference": -8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 9.4, "percent_change": 0.38, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 9.6, "percent_change": 0.41, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 9.6, "percent_change": 0.45, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 9.6, "percent_change": 0.45, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.4, "percent_change": 0.47, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.0, "percent_change": 0.41, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 9.0, "percent_change": 0.45, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 9.0, "percent_change": 0.5, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.0, "percent_change": 0.61, "expected_wait_time_difference": -14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.0, "percent_change": 0.61, "expected_wait_time_difference": -14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.0, "percent_change": 0.61, "expected_wait_time_difference": -14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.0, "percent_change": 0.61, "expected_wait_time_difference": -14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 8.6, "percent_change": 0.54, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 8.2, "percent_change": 0.46, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 8.0, "percent_change": 0.43, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 8.0, "percent_change": 0.43, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.8, "percent_change": 0.39, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.8, "percent_change": 0.39, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.8, "percent_change": 0.39, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.6, "percent_change": 0.36, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.6, "percent_change": 0.36, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.4, "percent_change": 0.32, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.4, "percent_change": 0.32, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.4, "percent_change": 0.32, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.4, "percent_change": 0.32, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.2, "percent_change": 0.29, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.2, "percent_change": 0.29, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 6.2, "percent_change": 0.35, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 6.2, "percent_change": 0.35, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 6.0, "percent_change": 0.3, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 6.0, "percent_change": 0.3, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 6.0, "percent_change": 0.36, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.0, "percent_change": 0.32, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.0, "percent_change": 0.32, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.0, "percent_change": 0.32, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.0, "percent_change": 0.32, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.0, "percent_change": 0.32, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.0, "percent_change": 0.43, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 4.0, "percent_change": 0.82, "expected_wait_time_difference": -43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.2, "percent_change": 0.6, "expected_wait_time_difference": -39.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.2, "percent_change": 0.6, "expected_wait_time_difference": -39.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15767", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.02758 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15768", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062982, 40.024663 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31670", "stop_name": "Harbison Av & Higbee St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063116, 40.023753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15769", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063276, 40.022575 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15770", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06372, 40.018979 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15771", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065109, 40.017698 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15772", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066721, 40.016855 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27722", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068243, 40.015092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15773", "stop_name": "Harbison Av & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068687, 40.01371 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "502", "stop_name": "Torresdale Av & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070321, 40.013251 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.8, "percent_change": 0.33, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27681", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068234, 40.014512 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15811", "stop_name": "Harbison Av & Ditman St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068066, 40.014949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15812", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.066794, 40.016561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15813", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06517, 40.01744 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27682", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063712, 40.018257 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15816", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063198, 40.021754 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15821", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062783, 40.024212 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31511", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062391, 40.026973 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15825", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062651, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 12.4, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.8, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.4, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.4, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.4, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.4, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.4, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.4, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.2, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.6, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.6, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 15.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 13.2, "percent_change": 0.12, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.4, "percent_change": 0.18, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.4, "percent_change": 0.21, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.8, "percent_change": 0.23, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.8, "percent_change": 0.17, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.8, "percent_change": 0.17, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.2, "percent_change": 0.22, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.2, "percent_change": 0.22, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.6, "percent_change": 0.1, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.6, "percent_change": 0.1, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.6, "percent_change": 0.1, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.8, "percent_change": 0.38, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15767", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.02758 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15768", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062982, 40.024663 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31670", "stop_name": "Harbison Av & Higbee St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063116, 40.023753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15769", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063276, 40.022575 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15770", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06372, 40.018979 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15771", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065109, 40.017698 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 6.0, "percent_change": 0.36, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15772", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066721, 40.016855 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27722", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068243, 40.015092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15773", "stop_name": "Harbison Av & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068687, 40.01371 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "502", "stop_name": "Torresdale Av & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070321, 40.013251 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.2, "percent_change": 0.5, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.6, "percent_change": 0.21, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27681", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068234, 40.014512 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15811", "stop_name": "Harbison Av & Ditman St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068066, 40.014949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15812", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066794, 40.016561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15813", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06517, 40.01744 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27682", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063712, 40.018257 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15816", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063198, 40.021754 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15821", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062783, 40.024212 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31511", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062391, 40.026973 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15825", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062651, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.6, "percent_change": 0.27, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.6, "percent_change": 0.23, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.4, "percent_change": 0.19, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.4, "percent_change": 0.19, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -360.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.6, "percent_change": 0.19, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.4, "percent_change": 0.42, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.4, "percent_change": 0.42, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.6, "percent_change": 0.47, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.6, "percent_change": 0.47, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.6, "percent_change": 0.47, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.6, "percent_change": 0.47, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.8, "percent_change": 0.45, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.8, "percent_change": 0.61, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 5.8, "percent_change": 0.71, "expected_wait_time_difference": -11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.8, "percent_change": 0.81, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.8, "percent_change": 0.81, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.8, "percent_change": 0.81, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.8, "percent_change": 0.81, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.8, "percent_change": 0.81, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.8, "percent_change": 0.81, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.8, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.2, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.6, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.6, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.4, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.6, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.8, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.8, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.8, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.6, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.6, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.2, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.0, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.2, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.4, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.2, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.2, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.2, "percent_change": -0.24, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.4, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.4, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.4, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.2, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 15.0, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 15.0, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15767", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.02758 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15768", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062982, 40.024663 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31670", "stop_name": "Harbison Av & Higbee St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063116, 40.023753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15769", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063276, 40.022575 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15770", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06372, 40.018979 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15771", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065109, 40.017698 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15772", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066721, 40.016855 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27722", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068243, 40.015092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15773", "stop_name": "Harbison Av & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068687, 40.01371 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "502", "stop_name": "Torresdale Av & Bridge St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070321, 40.013251 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.2, "percent_change": -0.21, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.8, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.4, "percent_change": -0.43, "expected_wait_time_difference": 19.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 6.2, "percent_change": -0.39, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.6, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.2, "percent_change": -0.35, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.6, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.2, "percent_change": -0.35, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.0, "percent_change": -0.15, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27681", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068234, 40.014512 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15811", "stop_name": "Harbison Av & Ditman St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068066, 40.014949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15812", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066794, 40.016561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15813", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06517, 40.01744 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27682", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063712, 40.018257 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15816", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063198, 40.021754 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15821", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062783, 40.024212 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31511", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062391, 40.026973 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15825", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062651, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.6, "percent_change": -0.31, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.6, "percent_change": -0.31, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.6, "percent_change": -0.31, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.6, "percent_change": -0.31, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.0, "percent_change": -0.42, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.0, "percent_change": -0.46, "expected_wait_time_difference": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.0, "percent_change": -0.46, "expected_wait_time_difference": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.0, "percent_change": -0.46, "expected_wait_time_difference": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.0, "percent_change": -0.46, "expected_wait_time_difference": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 18.0, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 17.6, "percent_change": 0.09, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 18.4, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 18.0, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 18.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.4, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.6, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.6, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 19.6, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.8, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 19.8, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.0, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.0, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.2, "percent_change": 0.07, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.6, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.8, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.8, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.8, "percent_change": 0.13, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.6, "percent_change": 0.12, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 20.6, "percent_change": 0.13, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.6, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.4, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.4, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.4, "percent_change": 0.11, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.2, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 20.2, "percent_change": 0.1, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 20.2, "percent_change": 0.09, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 20.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.0, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 20.0, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 19.8, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 19.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.2, "percent_change": 0.17, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.2, "percent_change": 0.17, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.2, "percent_change": 0.17, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.2, "percent_change": 0.14, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.6, "percent_change": 0.23, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.6, "percent_change": 0.23, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.8, "percent_change": 0.23, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.8, "percent_change": 0.23, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.8, "percent_change": 0.23, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.8, "percent_change": 0.23, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.8, "percent_change": 0.23, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.8, "percent_change": 0.18, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.8, "percent_change": 0.18, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15767", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.02758 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.8, "percent_change": 0.3, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15768", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062982, 40.024663 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.8, "percent_change": 0.3, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31670", "stop_name": "Harbison Av & Higbee St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063116, 40.023753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15769", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063276, 40.022575 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.8, "percent_change": 0.3, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15770", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06372, 40.018979 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.8, "percent_change": 0.3, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15771", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065109, 40.017698 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15772", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066721, 40.016855 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27722", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068243, 40.015092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15773", "stop_name": "Harbison Av & Torresdale Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068687, 40.01371 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "502", "stop_name": "Torresdale Av & Bridge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070321, 40.013251 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27681", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068234, 40.014512 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15811", "stop_name": "Harbison Av & Ditman St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068066, 40.014949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15812", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066794, 40.016561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15813", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06517, 40.01744 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27682", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063712, 40.018257 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15816", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063198, 40.021754 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15821", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.2, "percent_change": 0.44, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062783, 40.024212 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31511", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.2, "percent_change": 0.37, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062391, 40.026973 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15825", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.6, "percent_change": 0.47, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062651, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.6, "percent_change": 0.47, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.8, "percent_change": 0.53, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.0, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.0, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.0, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.0, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.0, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.6, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.8, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.0, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.8, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.8, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.8, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.0, "percent_change": -0.14, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.6, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15767", "stop_name": "Harbison Av & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062577, 40.02758 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15768", "stop_name": "Harbison Av & Benner St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062982, 40.024663 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31670", "stop_name": "Harbison Av & Higbee St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063116, 40.023753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15769", "stop_name": "Harbison Av & Comly St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063276, 40.022575 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15770", "stop_name": "Harbison Av & Van Kirk St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06372, 40.018979 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15771", "stop_name": "Harbison Av & Cheltenham Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065109, 40.017698 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15772", "stop_name": "Harbison Av & Sanger St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066721, 40.016855 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27722", "stop_name": "Harbison Av & Kennedy St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068243, 40.015092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15773", "stop_name": "Harbison Av & Torresdale Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068687, 40.01371 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "502", "stop_name": "Torresdale Av & Bridge St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070321, 40.013251 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.2, "percent_change": -0.12, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.4, "percent_change": -0.26, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.4, "percent_change": -0.26, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30996", "stop_name": "Olney Av & Rising Sun Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115093, 40.034443 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15722", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113634, 40.032806 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15724", "stop_name": "Tabor Rd & Olney Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111574, 40.030828 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15725", "stop_name": "Tabor Rd & Garland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.109147, 40.031679 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15726", "stop_name": "Tabor Rd & Adams", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106942, 40.033021 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15727", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105944, 40.034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15728", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104733, 40.03522 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15729", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.10161, 40.038175 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15730", "stop_name": "Tabor Av & Sanger St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100565, 40.039092 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15731", "stop_name": "Tabor Av & Rosaile St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098737, 40.040649 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15732", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097966, 40.041298 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15733", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096601, 40.042446 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15734", "stop_name": "Tabor Av & Benner St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095246, 40.043826 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15735", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094201, 40.04493 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15736", "stop_name": "Tabor Av & Robbins St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093036, 40.046167 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "499", "stop_name": "Tabor Av & Levick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091895, 40.047396 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15737", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091175, 40.047037 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15738", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088475, 40.045548 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27720", "stop_name": "Levick St & Dorcas St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086835, 40.044642 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15739", "stop_name": "Algon Av & Levick St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084865, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15745", "stop_name": "Algon Av & Magee Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082348, 40.045915 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15746", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080461, 40.044883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27721", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078692, 40.043888 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15747", "stop_name": "Magee Av & Cranford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07677, 40.042847 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15748", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075119, 40.041941 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15749", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073103, 40.040784 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15750", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071323, 40.039788 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15751", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06953, 40.038783 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30585", "stop_name": "Bustleton Av & Magee Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067796, 40.038172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15754", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065308, 40.039164 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15755", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065075, 40.038351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15756", "stop_name": "Harbison Av & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064622, 40.036859 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15757", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06425, 40.035502 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15758", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063915, 40.033965 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15759", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063454, 40.031795 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15760", "stop_name": "Harbison Av & Robbins Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062992, 40.029652 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15657", "stop_name": "Morris St & Price St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182804, 40.030114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15658", "stop_name": "Morris St & Rittenhouse St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183653, 40.030615 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15659", "stop_name": "Pulaski Av & Rittenhouse St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182326, 40.031577 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "31344", "stop_name": "Pulaski Av & Chelten Av - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181359, 40.030995 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15660", "stop_name": "Pulaski Av & Chelten Av - 2", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180368, 40.030404 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15668", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169869, 40.040486 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15669", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168753, 40.041581 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15670", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167211, 40.043086 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15671", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166107, 40.044173 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "497", "stop_name": "Chelten Av & Chew Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 40.045366 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15586", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 40.044166 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15587", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161404, 40.043297 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15779", "stop_name": "Chew Av & Penn Blvd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158797, 40.041694 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15782", "stop_name": "Olney Av & Elkins Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 40.040843 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15786", "stop_name": "Olney Av & 20th St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040296 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15789", "stop_name": "Olney Av & 20th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154218, 40.039426 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15791", "stop_name": "Olney Av & 18th St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15241, 40.03919 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15792", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150212, 40.038935 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15793", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148628, 40.038949 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15794", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146677, 40.03899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "372", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144962, 40.03903 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "32636", "stop_name": "Olney Av & Broad St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 40.038823 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15795", "stop_name": "Olney Av & 13th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142446, 40.038516 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15796", "stop_name": "Olney Av & 12th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140816, 40.038146 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15798", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139564, 40.037867 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15799", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138016, 40.037515 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15800", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136587, 40.037182 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15814", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1342, 40.036846 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15815", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132569, 40.036654 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15817", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130667, 40.0364 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15818", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128741, 40.036154 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15819", "stop_name": "Olney Av & 3rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127748, 40.036027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15820", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.035727 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15822", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123979, 40.035545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15697", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121545, 40.035236 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1128", "stop_name": "Battersby St & Devereaux Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063992, 40.028307 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "15762", "stop_name": "Battersby St & Frankford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065014, 40.027186 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center via Frankford Ave", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21211", "stop_name": "Frankford Transit Center - Rts 8 & 26", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078115, 40.024224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27715", "stop_name": "Olney Square - 1 Conway", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118888, 40.037228 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30998", "stop_name": "Olney Square - 2 DollarTree", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1175, 40.038224 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "30999", "stop_name": "Olney Square - 3 ShopRite", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119356, 40.038345 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "32094", "stop_name": "Olney Square - 4 Post Office", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120069, 40.037561 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15829", "stop_name": "Battersby St & Frankford Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "1108", "stop_name": "Battersby St & Devereux Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063826, 40.028262 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15831", "stop_name": "Battersby St & Harbison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.029214 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15840", "stop_name": "Harbison Av & Levick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063101, 40.031312 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15844", "stop_name": "Harbison Av & Hellerman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063539, 40.033491 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15846", "stop_name": "Harbison Av & Magee Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063978, 40.035608 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15849", "stop_name": "Harbison Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064385, 40.036975 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15853", "stop_name": "Harbison Av & Unruh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06464, 40.037913 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15854", "stop_name": "Harbison Av & Bradford St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065024, 40.039172 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15855", "stop_name": "Bustleton Av & Harbison Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065798, 40.040299 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15857", "stop_name": "Magee Av & Eastwood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069353, 40.038792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15858", "stop_name": "Magee Av & Horrocks St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071145, 40.039797 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15859", "stop_name": "Magee Av & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072926, 40.040792 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15860", "stop_name": "Magee Av & Castor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074906, 40.041923 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "27685", "stop_name": "Magee Av & Loretto Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076451, 40.042766 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15861", "stop_name": "Magee Av & Frontenac St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078468, 40.043869 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15862", "stop_name": "Magee Av & Summerdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080248, 40.044874 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15863", "stop_name": "Algon Av & Magee Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08249, 40.045951 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15864", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08376, 40.044928 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15865", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085042, 40.043896 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15866", "stop_name": "Levick St & Oxford Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087012, 40.044848 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15867", "stop_name": "Levick St & Oxford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088179, 40.045485 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15868", "stop_name": "Levick St & Martins Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 40.047027 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "507", "stop_name": "Tabor Av & Levick St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092049, 40.047378 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15873", "stop_name": "Tabor Av & Robbins Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093035, 40.046328 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15883", "stop_name": "Tabor Av & Devereaux Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094188, 40.04509 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15884", "stop_name": "Tabor Av & Benner St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095376, 40.043835 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15885", "stop_name": "Tabor Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0966, 40.042589 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15886", "stop_name": "Tabor Av & Van Kirk St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097965, 40.041441 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15887", "stop_name": "Tabor Av & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099342, 40.040293 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15888", "stop_name": "Tabor Av & Sanger St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100731, 40.039101 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15889", "stop_name": "Tabor Av & Godfrey Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101585, 40.038362 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15890", "stop_name": "Tabor Av & Harrison St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104744, 40.035399 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15891", "stop_name": "Tabor Av & Foulkrod St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105955, 40.03417 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15892", "stop_name": "Tabor Av & Adams Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106905, 40.033209 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15893", "stop_name": "Tabor Av & Garland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108992, 40.03183 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15894", "stop_name": "Tabor Av & Olney Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111952, 40.030883 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15895", "stop_name": "Olney Av & Clarkson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113398, 40.032716 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15899", "stop_name": "Olney Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123695, 40.035634 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16959", "stop_name": "Olney Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125302, 40.035825 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16960", "stop_name": "Olney Av & American St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126873, 40.036034 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16961", "stop_name": "Olney Av & 4th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128551, 40.036243 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16962", "stop_name": "Olney Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130383, 40.036489 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16963", "stop_name": "Olney Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132392, 40.036734 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16964", "stop_name": "Olney Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134046, 40.036944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16965", "stop_name": "Olney Av & Wagner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136138, 40.037216 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16966", "stop_name": "Olney Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137744, 40.037568 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15907", "stop_name": "Olney Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 40.037929 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15908", "stop_name": "Olney Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140957, 40.038281 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "381", "stop_name": "Olney Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142493, 40.038623 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15910", "stop_name": "Olney Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144371, 40.039047 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15911", "stop_name": "Olney Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146511, 40.039114 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15912", "stop_name": "Olney Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148474, 40.039065 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15913", "stop_name": "Olney Av & Ogontz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149798, 40.039041 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15914", "stop_name": "Olney Av & 18th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 40.039279 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15915", "stop_name": "Olney Av & 20th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 40.039551 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15916", "stop_name": "Olney Av & 20st St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 40.040421 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15917", "stop_name": "Olney Av & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 40.041165 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15918", "stop_name": "Olney Av & Penn Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15895, 40.041908 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15919", "stop_name": "Chew Av & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 40.043306 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "16979", "stop_name": "Chew Av & Locust Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162631, 40.044174 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "21228", "stop_name": "Chelten Av & Chew Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 40.045375 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15920", "stop_name": "Chelten Av & McMahon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166071, 40.044351 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15921", "stop_name": "Chelten Av & Musgrave St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 40.043265 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15922", "stop_name": "Chelten Av & Magnolia St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16867, 40.041804 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15923", "stop_name": "Chelten Av & Morton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169761, 40.040735 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15924", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171589, 40.038954 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "26", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pulaski-Rittenhouse", "stop_id": "496", "stop_name": "Chelten Av & Morris St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180925, 40.029851 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.2, "percent_change": -0.67, "expected_wait_time_difference": 700.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.8, "percent_change": -0.36, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.0, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.0, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.6, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.8, "percent_change": -0.12, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.6, "percent_change": -0.1, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.6, "percent_change": -0.1, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.6, "percent_change": -0.1, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.2, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.2, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.2, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.6, "percent_change": -0.33, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.6, "percent_change": -0.34, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.4, "percent_change": -0.3, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.6, "percent_change": -0.31, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.0, "percent_change": -0.29, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.0, "percent_change": -0.29, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.0, "percent_change": -0.32, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.4, "percent_change": -0.25, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.4, "percent_change": -0.37, "expected_wait_time_difference": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.4, "percent_change": -0.37, "expected_wait_time_difference": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.4, "percent_change": -0.37, "expected_wait_time_difference": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.4, "percent_change": -0.37, "expected_wait_time_difference": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 2.6, "percent_change": -0.41, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 2.6, "percent_change": -0.41, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.6, "percent_change": -0.43, "expected_wait_time_difference": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.6, "percent_change": -0.43, "expected_wait_time_difference": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "524", "stop_name": "Rhawn St & Torresdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025376, 40.035766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23503", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02595, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23504", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026908, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23505", "stop_name": "Rhawn St & Edrick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027492, 40.039995 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23506", "stop_name": "Rhawn St & Frankford Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028182, 40.041327 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23507", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028839, 40.042257 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23508", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029696, 40.043385 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25994", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030435, 40.044342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23509", "stop_name": "Rhawn St & Rowland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.045648 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23510", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031528, 40.047773 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23511", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035945, 40.050919 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23512", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.040166, 40.0532 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23513", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041864, 40.054124 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23514", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042595, 40.05451 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23515", "stop_name": "Rhawn St & Fairfield St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045154, 40.055901 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "525", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046203, 40.056467 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23516", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047335, 40.057077 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23517", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048444, 40.057679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23518", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050472, 40.058783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23519", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051922, 40.059563 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23520", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054069, 40.060748 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "526", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.055944, 40.06178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23521", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.057594, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23522", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.059528, 40.064022 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23523", "stop_name": "Rhawn St & Summerdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.061225, 40.06508 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25995", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062947, 40.066156 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25996", "stop_name": "Rhawn St & Dorcas St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064409, 40.067026 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23524", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066083, 40.068058 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30218", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067215, 40.068721 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23525", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068903, 40.069556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23526", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070342, 40.070256 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23527", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072183, 40.071154 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23528", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073953, 40.072016 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1465", "stop_name": "Rhawn St & Verree Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076192, 40.073178 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23529", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077457, 40.073936 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23530", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.074878 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23531", "stop_name": "Rhawn St & Ridgeway St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080736, 40.075873 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23532", "stop_name": "Rhawn St & Jeanes St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082365, 40.076583 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23533", "stop_name": "Rhawn St & Elberon Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083518, 40.076813 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "527", "stop_name": "Rhawn St & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085, 40.07717 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23534", "stop_name": "Huntingdon Pk & Burholme Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086379, 40.078254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23621", "stop_name": "Huntingdon Pk & Robbins Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087934, 40.079606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23536", "stop_name": "Huntingdon Pk & Jarrett Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088876, 40.080456 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23537", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089925, 40.081343 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23539", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091386, 40.082587 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23540", "stop_name": "Huntingdon Pk & Penn Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.09247, 40.083509 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23541", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093387, 40.084735 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23543", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093659, 40.087288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23544", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093725, 40.088449 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23545", "stop_name": "Cedar Rd & Old Huntingdon Pk - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094297, 40.090101 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23546", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095414, 40.088926 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23548", "stop_name": "Cedar Rd & Gibson Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.097126, 40.087181 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23549", "stop_name": "Cedar Rd & Fox Chase Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.098517, 40.085766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25530", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100301, 40.086288 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23551", "stop_name": "Fox Chase Rd & Kirkwood Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.101931, 40.086819 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "469", "stop_name": "Fox Chase Rd & Forrest Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.104147, 40.08861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30763", "stop_name": "Forrest Av & Fox Chase Rd- FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105753, 40.089444 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23553", "stop_name": "Forrest Av & Douglas Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.110746, 40.086788 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23554", "stop_name": "Forrest Av & Willow Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 40.08622 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23555", "stop_name": "Forrest Av & Jenkintown Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11404, 40.085716 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17490", "stop_name": "Jenkintown Rd & Forrest Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114787, 40.085281 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17492", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114058, 40.084128 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17493", "stop_name": "Jenkintown Rd & Cadwalader Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113695, 40.083306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17494", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116399, 40.081858 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1055", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116874, 40.081404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "32209", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118288, 40.079979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23556", "stop_name": "Cadwalader Av & Marvin Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119808, 40.078306 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23557", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120931, 40.076183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23558", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122416, 40.074679 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23559", "stop_name": "Cadwalader Av & Church Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123842, 40.073254 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23560", "stop_name": "High School Rd & Church Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123229, 40.072556 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23561", "stop_name": "High School Rd & Montgomery Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12652, 40.072065 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23562", "stop_name": "Harrison Av & Montgomery Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12669, 40.07103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23563", "stop_name": "Montgomery Av & Gerard Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126871, 40.070139 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23564", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126382, 40.068423 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23565", "stop_name": "Montgomery Av & Union Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125834, 40.066404 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23566", "stop_name": "Union Av & Mountain Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12716, 40.066211 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23567", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 40.064462 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23568", "stop_name": "Mountain Av & Stratford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12798, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23569", "stop_name": "Mountain Av & Sharpless Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128847, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23570", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13085, 40.060543 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23571", "stop_name": "Mountain Av & Cheltenham Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133099, 40.059977 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "25997", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135976, 40.059386 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23572", "stop_name": "12th St & Lakeside Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136854, 40.058594 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23573", "stop_name": "12th St & 69th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13693, 40.057425 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23574", "stop_name": "69th Av & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 40.057253 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23575", "stop_name": "11th St & Oak Ln Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136301, 40.05513 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23576", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136735, 40.053113 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23577", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137072, 40.051561 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23578", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137419, 40.049863 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "23579", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137759, 40.048537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23418", "stop_name": "Champlost St & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138014, 40.043781 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23419", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137808, 40.045146 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23420", "stop_name": "11th St & Godfrey Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137507, 40.046537 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23421", "stop_name": "11th St & Medary Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 40.048287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23422", "stop_name": "11th St & Chelten Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1374, 40.049473 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23423", "stop_name": "11th St & 65th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136979, 40.051329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23424", "stop_name": "11th St & 66th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136629, 40.05289 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23425", "stop_name": "11th St & Oak Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136207, 40.054844 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23426", "stop_name": "11th St & 69th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135677, 40.057217 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23427", "stop_name": "69th Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136741, 40.057407 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23428", "stop_name": "12th St & Lakeside Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136594, 40.058486 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23429", "stop_name": "70th Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136308, 40.059191 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23430", "stop_name": "70th Av & Cheltenham Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133514, 40.059755 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23431", "stop_name": "Mountain Av & Valley Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130993, 40.060374 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23432", "stop_name": "Mountain Av & Sharpless Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128634, 40.061511 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23433", "stop_name": "Mountain Av & Stratford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127767, 40.062384 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23434", "stop_name": "Mountain Av & Prospect Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126968, 40.063979 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23435", "stop_name": "Mountain Av & Union Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127149, 40.066059 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23436", "stop_name": "Union Av & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125823, 40.066208 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23437", "stop_name": "Montgomery Av & Ashbourne Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126181, 40.068244 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23438", "stop_name": "Montgomery Av & Gerard Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126706, 40.070057 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "532", "stop_name": "Montgomery Av & Harrison Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126513, 40.070958 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23439", "stop_name": "Montgomery Av & High School Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126461, 40.07193 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23440", "stop_name": "High School Rd & Church Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123052, 40.072502 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23441", "stop_name": "Church Rd & Cadwalader Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123676, 40.073147 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23442", "stop_name": "Cadwalader Av & Waring Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122429, 40.074447 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23443", "stop_name": "Cadwalader Av & Shoemaker Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120908, 40.075987 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23444", "stop_name": "Cadwalader Av & Marvin Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119632, 40.078287 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23445", "stop_name": "Cadwalader Av & Brookside Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118265, 40.079783 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23446", "stop_name": "Cadwalader Av & Township Line Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116923, 40.081127 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17723", "stop_name": "Cadwalader Av & Cypress Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116435, 40.081644 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17779", "stop_name": "Cadwalader Av & Jenkintown Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113672, 40.083136 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17780", "stop_name": "Jenkintown Rd & Tulpehocken Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113834, 40.08402 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17781", "stop_name": "Jenkintown Rd & Forrest Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114703, 40.085406 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23447", "stop_name": "Forrest Av & Willow Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111813, 40.086121 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23449", "stop_name": "Forrest Av & Douglas Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110569, 40.086725 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "533", "stop_name": "Forrest Av & Fox Chase Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105421, 40.089488 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25532", "stop_name": "Fox Chase Rd & Forrest Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103642, 40.08785 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23450", "stop_name": "Fox Chase Rd & Kirkwood St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.086667 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25533", "stop_name": "Fox Chase Rd & Roseland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100502, 40.086226 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25992", "stop_name": "Cedar Rd & Fox Chase Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098316, 40.085792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23453", "stop_name": "Cedar Rd & Gibson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097115, 40.087047 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23454", "stop_name": "Cedar Rd & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095403, 40.088792 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23455", "stop_name": "Cedar Rd & Old Huntingdon Pk", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094262, 40.089923 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23456", "stop_name": "Huntingdon Pk & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093878, 40.088565 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23457", "stop_name": "Huntingdon Pk & San Gabriel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093846, 40.087842 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32620", "stop_name": "Huntingdon Pk & Pasadena Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093802, 40.087056 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23459", "stop_name": "Huntingdon Pk & Shady Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093611, 40.084887 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23461", "stop_name": "Huntingdon Pk & Penn Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092565, 40.08342 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23462", "stop_name": "Huntingdon Pk & Central Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091575, 40.082606 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23464", "stop_name": "Huntingdon Pk & Sylvania Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090126, 40.081352 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23465", "stop_name": "Huntingdon Pk & Fox St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087805, 40.079356 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23466", "stop_name": "Huntingdon Pk & Fillmore St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087016, 40.078666 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23467", "stop_name": "Huntingdon Pk & Burholme Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.078102 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23468", "stop_name": "Rhawn St & Elberon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083323, 40.076675 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23469", "stop_name": "Rhawn St & Rockwell Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082295, 40.076431 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23470", "stop_name": "Rhawn St & Ridgeway St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080713, 40.075694 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23471", "stop_name": "Rhawn St & Halstead St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079333, 40.074861 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23472", "stop_name": "Rhawn St & Ferndale St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077741, 40.073928 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23473", "stop_name": "Rhawn St & Verree Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076054, 40.072924 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23474", "stop_name": "Rhawn St & Rising Sun Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07419, 40.07199 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23475", "stop_name": "Rhawn St & Bingham St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072443, 40.071137 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23476", "stop_name": "Rhawn St & Tabor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070579, 40.07023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23477", "stop_name": "Rhawn St & Ripley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06908, 40.069503 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23478", "stop_name": "Rhawn St & Dungan Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067511, 40.068731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23479", "stop_name": "Rhawn St & Meadowbrook Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065742, 40.0677 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23480", "stop_name": "Rhawn St & Dorcas St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064586, 40.067018 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23481", "stop_name": "Rhawn St & Algon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063183, 40.066157 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23482", "stop_name": "Rhawn St & Sumerdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061474, 40.065081 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23483", "stop_name": "Rhawn St & Frontenac St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059776, 40.064023 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23484", "stop_name": "Rhawn St & Loretto Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057843, 40.062794 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "535", "stop_name": "Rhawn St & Castor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056298, 40.061826 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23485", "stop_name": "Rhawn St & Large St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054329, 40.060731 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23486", "stop_name": "Rhawn St & Bustleton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052183, 40.059546 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23487", "stop_name": "Rhawn St & Eastwood St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050732, 40.058766 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23488", "stop_name": "Rhawn St & Bradford St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04881, 40.057715 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "536", "stop_name": "Rhawn St & Roosevelt Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047147, 40.056818 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23489", "stop_name": "Rhawn St & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046275, 40.056351 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23490", "stop_name": "Rhawn St & Calvert St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044647, 40.055463 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23491", "stop_name": "Rhawn St & Revere St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042985, 40.054538 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23492", "stop_name": "Rhawn St & Brous Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042124, 40.054071 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23493", "stop_name": "Rhawn St & Lexington Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040473, 40.053183 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23494", "stop_name": "Rhawn St & Holmehurst Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036169, 40.050893 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31549", "stop_name": "Rhawn St & Cresco Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031691, 40.048148 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22447", "stop_name": "Rhawn St & Rowland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031704, 40.045774 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23496", "stop_name": "Rhawn St & Crispin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030671, 40.044414 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23497", "stop_name": "Rhawn St & Leon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.043457 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23498", "stop_name": "Rhawn St & Craig St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029075, 40.042329 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23499", "stop_name": "Rhawn St & Frankford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028265, 40.041184 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23500", "stop_name": "Rhawn St & Erdrick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027716, 40.040103 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23501", "stop_name": "Rhawn St & Walker St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02712, 40.038833 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "23502", "stop_name": "Rhawn St & Jackson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.036956 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "537", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025307, 40.035373 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "28", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 15.0, "percent_change": 0.25, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 14.2, "percent_change": 0.27, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 14.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 14.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 14.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 14.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 14.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 14.0, "percent_change": 0.23, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 14.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.4, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.2, "percent_change": 0.09, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.2, "percent_change": 0.25, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.2, "percent_change": 0.25, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.0, "percent_change": 0.23, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 13.0, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 13.0, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 13.0, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 13.0, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 13.0, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.8, "percent_change": 0.23, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.8, "percent_change": 0.23, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.8, "percent_change": 0.23, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.8, "percent_change": 0.23, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.8, "percent_change": 0.23, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 12.8, "percent_change": 0.25, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 12.8, "percent_change": 0.25, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 12.8, "percent_change": 0.25, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 12.4, "percent_change": 0.22, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 12.4, "percent_change": 0.24, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 12.0, "percent_change": 0.22, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 12.0, "percent_change": 0.25, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 12.0, "percent_change": 0.28, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 12.0, "percent_change": 0.28, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 12.0, "percent_change": 0.28, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 12.0, "percent_change": 0.28, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 12.0, "percent_change": 0.28, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 12.0, "percent_change": 0.3, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 12.0, "percent_change": 0.3, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 12.0, "percent_change": 0.33, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 12.0, "percent_change": 0.33, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 12.0, "percent_change": 0.33, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 12.0, "percent_change": 0.36, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 12.0, "percent_change": 0.36, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 12.0, "percent_change": 0.4, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 12.0, "percent_change": 0.4, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 12.0, "percent_change": 0.43, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 12.0, "percent_change": 0.43, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 12.0, "percent_change": 0.43, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 12.0, "percent_change": 0.43, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 12.0, "percent_change": 0.43, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 12.0, "percent_change": 0.43, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.6, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.6, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.8, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.8, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.8, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.6, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.6, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.6, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 16.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 16.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.8, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.8, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.2, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.8, "percent_change": 0.09, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.8, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.8, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.8, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.4, "percent_change": 0.09, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.4, "percent_change": -0.15, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.8, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.8, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.0, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.0, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.6, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.6, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.0, "percent_change": -0.08, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.0, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.0, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.0, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.0, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.4, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.4, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.2, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.0, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.2, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.8, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.8, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.4, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.2, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.0, "percent_change": -0.3, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.2, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.2, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.2, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.8, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.2, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.6, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.2, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.0, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.0, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.0, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.2, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.2, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.2, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.6, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.4, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.4, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.4, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.8, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.8, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 14.8, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.8, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.8, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.8, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.8, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.8, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.8, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 15.0, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.8, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.2, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 15.4, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 15.4, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 15.4, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.8, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.8, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.8, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.8, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.6, "percent_change": -0.26, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.4, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.4, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.4, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.0, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.8, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.0, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.2, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.4, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.4, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 14.4, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.4, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 14.4, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.8, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.2, "percent_change": -0.3, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.0, "percent_change": -0.31, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.4, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.4, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.6, "percent_change": -0.32, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.6, "percent_change": -0.32, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 14.6, "percent_change": -0.32, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.4, "percent_change": -0.31, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.4, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.4, "percent_change": -0.32, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.4, "percent_change": -0.32, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.4, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.6, "percent_change": -0.31, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.8, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 15.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.8, "percent_change": -0.27, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.6, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.6, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.4, "percent_change": -0.29, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.2, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 16.4, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.4, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.4, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 16.4, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.0, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 17.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 17.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 17.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.0, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 16.8, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.8, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 17.6, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 17.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.6, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.6, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.2, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.8, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.8, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.8, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.6, "percent_change": -0.2, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 15.6, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.2, "percent_change": -0.19, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.8, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.8, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.0, "percent_change": -0.15, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.0, "percent_change": -0.15, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 17.2, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 17.2, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 17.2, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.6, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.6, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.6, "percent_change": -0.2, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.8, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.8, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.2, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.4, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.4, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 17.4, "percent_change": -0.14, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 17.6, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.6, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.6, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.8, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.8, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.8, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.6, "percent_change": -0.19, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.6, "percent_change": -0.2, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.0, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.0, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.6, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.2, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.2, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.4, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.8, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.8, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.6, "percent_change": -0.25, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.4, "percent_change": -0.27, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.4, "percent_change": -0.27, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.2, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.8, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.8, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.8, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.0, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.0, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.2, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.2, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.2, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.4, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.4, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.4, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.6, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.6, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.6, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.8, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.8, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.0, "percent_change": -0.2, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.8, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.6, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.6, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.2, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.2, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.2, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.2, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.2, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 11.6, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.8, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 11.8, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 11.8, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 11.8, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 11.8, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.8, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.4, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.2, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.2, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.2, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.2, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.2, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.2, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 12.2, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.5, "percent_change": -0.36, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.5, "percent_change": -0.36, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.5, "percent_change": -0.36, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.5, "percent_change": -0.36, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.5, "percent_change": -0.36, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 15.0, "percent_change": -0.33, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.5, "percent_change": -0.36, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 14.0, "percent_change": -0.39, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 14.0, "percent_change": -0.39, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.0, "percent_change": -0.38, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.0, "percent_change": -0.38, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.0, "percent_change": -0.38, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 13.5, "percent_change": -0.39, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 13.5, "percent_change": -0.39, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 13.5, "percent_change": -0.37, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 13.5, "percent_change": -0.37, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 13.5, "percent_change": -0.37, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 15.0, "percent_change": -0.35, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 15.0, "percent_change": -0.35, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 15.0, "percent_change": -0.33, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 15.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 15.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 15.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 15.0, "percent_change": -0.35, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 15.0, "percent_change": -0.36, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 15.0, "percent_change": -0.36, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 15.0, "percent_change": -0.36, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 15.0, "percent_change": -0.36, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 15.0, "percent_change": -0.36, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 15.0, "percent_change": -0.36, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 15.0, "percent_change": -0.38, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 15.0, "percent_change": -0.39, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 15.5, "percent_change": -0.37, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 15.5, "percent_change": -0.35, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 14.5, "percent_change": -0.4, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 14.5, "percent_change": -0.4, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 14.5, "percent_change": -0.4, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 14.5, "percent_change": -0.4, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 14.5, "percent_change": -0.4, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 14.5, "percent_change": -0.4, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 14.5, "percent_change": -0.4, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 14.0, "percent_change": -0.39, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 14.0, "percent_change": -0.39, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.0, "percent_change": -0.38, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 14.5, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.5, "percent_change": -0.34, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 14.0, "percent_change": -0.36, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 14.0, "percent_change": -0.38, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 14.0, "percent_change": -0.39, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 14.0, "percent_change": -0.39, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 14.0, "percent_change": -0.39, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 14.5, "percent_change": -0.38, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.5, "percent_change": -0.38, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.5, "percent_change": -0.4, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.5, "percent_change": -0.4, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.0, "percent_change": -0.44, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.0, "percent_change": -0.44, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 10.0, "percent_change": -0.46, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 10.0, "percent_change": -0.46, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.5, "percent_change": -0.4, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.5, "percent_change": -0.4, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.0, "percent_change": -0.37, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.5, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 11.5, "percent_change": -0.3, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.5, "percent_change": -0.38, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.5, "percent_change": -0.38, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.5, "percent_change": -0.38, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.5, "percent_change": -0.32, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.0, "percent_change": -0.38, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.5, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.0, "percent_change": -0.41, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 10.0, "percent_change": -0.39, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 10.0, "percent_change": -0.39, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.5, "percent_change": -0.44, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.5, "percent_change": -0.44, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.5, "percent_change": -0.44, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.5, "percent_change": -0.44, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.5, "percent_change": -0.44, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 9.5, "percent_change": -0.46, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.0, "percent_change": -0.44, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.0, "percent_change": -0.44, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.0, "percent_change": -0.44, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.0, "percent_change": -0.44, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 10.0, "percent_change": -0.43, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.0, "percent_change": -0.41, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10341", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.951382 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10257", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156563, 39.951573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "8941", "stop_name": "JFK Blvd & 20th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17279, 39.954633 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2807", "stop_name": "20th St & Fairmount Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170099, 39.967149 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2801", "stop_name": "20th St & Brown St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169726, 39.96896 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2828", "stop_name": "20th St & Parrish St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169486, 39.970093 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2834", "stop_name": "20th St & Poplar St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.971313 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "595", "stop_name": "20th St & Girard Av - MBFS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168873, 39.972921 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14918", "stop_name": "College Av & Ridge Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.973302 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2783", "stop_name": "19th St & Thompson St - MBNS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167026, 39.974015 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2761", "stop_name": "19th St & Master St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166726, 39.975424 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2756", "stop_name": "19th St & Jefferson St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166426, 39.976789 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2769", "stop_name": "19th St & Oxford St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166113, 39.978199 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14919", "stop_name": "19th St & Cecil B Moore Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165813, 39.979608 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2764", "stop_name": "19th St & Montgomery Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165466, 39.981176 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2740", "stop_name": "19th St & Berks St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165152, 39.982605 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2767", "stop_name": "19th St & Norris St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164804, 39.98414 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2749", "stop_name": "19th St & Diamond St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164479, 39.985656 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14922", "stop_name": "Diamond St & 20th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16599, 39.98599 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "6770", "stop_name": "Diamond St & 21st St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16788, 39.986253 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3101", "stop_name": "21st St & Susquehanna Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167591, 39.98768 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3160", "stop_name": "22nd St & Sedgley Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.992483 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3131", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167863, 39.993948 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "596", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.995498 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3163", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167178, 39.997113 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3109", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16683, 39.99862 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3133", "stop_name": "22nd St & Indiana Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 40.000092 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3116", "stop_name": "22nd St & Clearfield St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166193, 40.001573 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "597", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165844, 40.00317 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "2847", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165531, 40.004743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3148", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165183, 40.006257 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "3170", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164858, 40.007747 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "30808", "stop_name": "22nd St & Venango St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164781, 40.009415 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "23rd-Venango", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "13905", "stop_name": "23rd St & Venango St Loop", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 40.009811 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "8712", "stop_name": "Hunting Park Av & 22nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164575, 40.010888 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2843", "stop_name": "22nd St & Venango St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 40.009451 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3171", "stop_name": "22nd St & Tioga St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164976, 40.007934 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3149", "stop_name": "22nd St & Ontario St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 40.006427 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2846", "stop_name": "22nd St & Westmoreland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165625, 40.004955 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3105", "stop_name": "22nd St & Allegheny Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16595, 40.003393 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3115", "stop_name": "22nd St & Clearfield Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166322, 40.001743 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3128", "stop_name": "22nd St & Fox St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 40.000548 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3110", "stop_name": "22nd St & Cambria St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.99879 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30809", "stop_name": "22nd St & Somerset St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167308, 39.997283 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "589", "stop_name": "22nd St & Lehigh Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167644, 39.995739 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3132", "stop_name": "22nd St & Huntingdon St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167993, 39.994098 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3119", "stop_name": "22nd St & Cumberland St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168293, 39.992751 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2852", "stop_name": "22nd St & York St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.991154 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3120", "stop_name": "22nd St & Dauphin St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168978, 39.989628 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3168", "stop_name": "22nd St & Susquehanna Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.988032 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3121", "stop_name": "22nd St & Diamond St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169686, 39.986479 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3146", "stop_name": "22nd St & Norris St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170011, 39.984954 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3108", "stop_name": "22nd St & Berks St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170347, 39.983464 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3142", "stop_name": "22nd St & Montgomery Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.981974 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3112", "stop_name": "22nd St & Cecil B Moore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170984, 39.98044 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "3158", "stop_name": "22nd St & Ridge Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.979931 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "12320", "stop_name": "Ridge Av & Oxford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.978957 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "12293", "stop_name": "Ridge Av & Jefferson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169566, 39.977367 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "12307", "stop_name": "Ridge Av & Master St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168709, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "18426", "stop_name": "Ridge Av & 19th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167371, 39.973507 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "1206", "stop_name": "19th St & Girard Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167528, 39.972543 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2773", "stop_name": "19th St & Poplar St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167804, 39.97125 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2770", "stop_name": "19th St & Parrish St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168045, 39.970045 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2742", "stop_name": "19th St & Brown St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168285, 39.968975 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2751", "stop_name": "19th St & Fairmount Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168634, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "14910", "stop_name": "19th St & Wallace St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168886, 39.966227 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2754", "stop_name": "19th St & Green St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964871 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2780", "stop_name": "19th St & Spring Garden St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.963604 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2755", "stop_name": "19th St & Hamilton St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169751, 39.962132 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2743", "stop_name": "19th St & Callowhill St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170063, 39.960678 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "2784", "stop_name": "19th St & Vine St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170411, 39.959197 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "14911", "stop_name": "19th St & Cherry St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171024, 39.956405 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "14912", "stop_name": "19th St & & Arch St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171216, 39.955495 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "31348", "stop_name": "19th St & JFK Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.954559 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "33", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "638", "stop_name": "5th St & Market St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14876, 39.951047 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22219", "stop_name": "Parkside Av & 42nd St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209439, 39.976238 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22220", "stop_name": "Parkside Av & 41st St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.207008, 39.975341 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "635", "stop_name": "Parkside Av & 40th St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.204495, 39.974418 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22221", "stop_name": "40th St & Poplar St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.204134, 39.972739 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22223", "stop_name": "40th St & Ogden St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203542, 39.969543 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22224", "stop_name": "40th St & Parrish St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203332, 39.968507 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22225", "stop_name": "40th St & Brown St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203146, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22330", "stop_name": "Brown St & Union St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.20206, 39.967425 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22331", "stop_name": "Brown St & 39th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200571, 39.96761 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22332", "stop_name": "Brown St & 38th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.198326, 39.967864 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22333", "stop_name": "Brown St & 37th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196885, 39.968031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22334", "stop_name": "Mantua av & 36th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19542, 39.968029 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22322", "stop_name": "Mantua Av & 35th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19378, 39.967445 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "636", "stop_name": "Mantua Av & 34th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19227, 39.966898 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22323", "stop_name": "34th St & Wallace St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191909, 39.965273 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22324", "stop_name": "34th St & Haverford Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191689, 39.964104 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.4, "percent_change": -0.26, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22221", "stop_name": "40th St & Poplar St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.204134, 39.972739 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22223", "stop_name": "40th St & Ogden St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.203542, 39.969543 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22224", "stop_name": "40th St & Parrish St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.203332, 39.968507 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22225", "stop_name": "40th St & Brown St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.203146, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22330", "stop_name": "Brown St & Union St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20206, 39.967425 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22331", "stop_name": "Brown St & 39th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200571, 39.96761 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22332", "stop_name": "Brown St & 38th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.198326, 39.967864 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22333", "stop_name": "Brown St & 37th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.196885, 39.968031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22334", "stop_name": "Mantua av & 36th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19542, 39.968029 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22322", "stop_name": "Mantua Av & 35th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19378, 39.967445 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "636", "stop_name": "Mantua Av & 34th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 6.4, "percent_change": 31.0, "expected_wait_time_difference": -435.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19227, 39.966898 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22323", "stop_name": "34th St & Wallace St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 6.4, "percent_change": 15.0, "expected_wait_time_difference": -210.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191909, 39.965273 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22324", "stop_name": "34th St & Haverford Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 6.4, "percent_change": 15.0, "expected_wait_time_difference": -210.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191689, 39.964104 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 8.2, "percent_change": -0.39, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 8.8, "percent_change": -0.31, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.6, "percent_change": -0.35, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.6, "percent_change": -0.35, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.4, "percent_change": -0.36, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.4, "percent_change": -0.36, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.4, "percent_change": -0.36, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.8, "percent_change": -0.32, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.2, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.2, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.2, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.0, "percent_change": -0.22, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.4, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.2, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.2, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22219", "stop_name": "Parkside Av & 42nd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209439, 39.976238 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22220", "stop_name": "Parkside Av & 41st St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207008, 39.975341 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "635", "stop_name": "Parkside Av & 40th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204495, 39.974418 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22221", "stop_name": "40th St & Poplar St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204134, 39.972739 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22223", "stop_name": "40th St & Ogden St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203542, 39.969543 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22224", "stop_name": "40th St & Parrish St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203332, 39.968507 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22225", "stop_name": "40th St & Brown St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203146, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22330", "stop_name": "Brown St & Union St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20206, 39.967425 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22331", "stop_name": "Brown St & 39th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200571, 39.96761 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22332", "stop_name": "Brown St & 38th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198326, 39.967864 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22333", "stop_name": "Brown St & 37th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196885, 39.968031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22334", "stop_name": "Mantua av & 36th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19542, 39.968029 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22322", "stop_name": "Mantua Av & 35th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19378, 39.967445 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "636", "stop_name": "Mantua Av & 34th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19227, 39.966898 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22323", "stop_name": "34th St & Wallace St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191909, 39.965273 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22324", "stop_name": "34th St & Haverford Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191689, 39.964104 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22219", "stop_name": "Parkside Av & 42nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209439, 39.976238 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22220", "stop_name": "Parkside Av & 41st St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207008, 39.975341 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "635", "stop_name": "Parkside Av & 40th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204495, 39.974418 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22221", "stop_name": "40th St & Poplar St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204134, 39.972739 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22223", "stop_name": "40th St & Ogden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203542, 39.969543 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22224", "stop_name": "40th St & Parrish St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203332, 39.968507 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22225", "stop_name": "40th St & Brown St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203146, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22330", "stop_name": "Brown St & Union St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20206, 39.967425 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22331", "stop_name": "Brown St & 39th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200571, 39.96761 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22332", "stop_name": "Brown St & 38th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198326, 39.967864 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22333", "stop_name": "Brown St & 37th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196885, 39.968031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22334", "stop_name": "Mantua av & 36th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19542, 39.968029 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22322", "stop_name": "Mantua Av & 35th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19378, 39.967445 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "636", "stop_name": "Mantua Av & 34th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19227, 39.966898 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22323", "stop_name": "34th St & Wallace St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191909, 39.965273 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Market", "stop_id": "22324", "stop_name": "34th St & Haverford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191689, 39.964104 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22219", "stop_name": "Parkside Av & 42nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.0, "percent_change": 7.0, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209439, 39.976238 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22220", "stop_name": "Parkside Av & 41st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.207008, 39.975341 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "635", "stop_name": "Parkside Av & 40th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204495, 39.974418 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22221", "stop_name": "40th St & Poplar St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204134, 39.972739 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22223", "stop_name": "40th St & Ogden St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.203542, 39.969543 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22224", "stop_name": "40th St & Parrish St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -154.3 }, "geometry": { "type": "Point", "coordinates": [ -75.203332, 39.968507 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22225", "stop_name": "40th St & Brown St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.0, "percent_change": 7.0, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203146, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22330", "stop_name": "Brown St & Union St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.0, "percent_change": 7.0, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.20206, 39.967425 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22331", "stop_name": "Brown St & 39th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.0, "percent_change": 7.0, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200571, 39.96761 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22332", "stop_name": "Brown St & 38th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.5, "percent_change": 8.0, "expected_wait_time_difference": -160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198326, 39.967864 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22333", "stop_name": "Brown St & 37th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.5, "percent_change": 8.0, "expected_wait_time_difference": -160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196885, 39.968031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22334", "stop_name": "Mantua av & 36th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.5, "percent_change": 8.0, "expected_wait_time_difference": -160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19542, 39.968029 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22322", "stop_name": "Mantua Av & 35th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.5, "percent_change": 8.0, "expected_wait_time_difference": -160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19378, 39.967445 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "636", "stop_name": "Mantua Av & 34th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.5, "percent_change": 8.0, "expected_wait_time_difference": -160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19227, 39.966898 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22323", "stop_name": "34th St & Wallace St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.5, "percent_change": 8.0, "expected_wait_time_difference": -160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191909, 39.965273 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Market", "stop_id": "22324", "stop_name": "34th St & Haverford Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 4.5, "percent_change": 8.0, "expected_wait_time_difference": -160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191689, 39.964104 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "28", "stop_name": "Wissahickon Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.20724, 40.014897 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22302", "stop_name": "Presidential & City Line Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 40.00795 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "634", "stop_name": "Presidential Blvd & Winding Dr - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209487, 40.006954 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30832", "stop_name": "Conshohocken Av & E Country Club Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202368, 40.004402 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22304", "stop_name": "Conshohocken Av & E Country Club -", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203198, 40.003529 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22305", "stop_name": "Conshohocken Av & E Cntry Club MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.204286, 40.003263 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22306", "stop_name": "Conshohocken Av & W Cntry Club - 1 MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.204936, 40.003166 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25991", "stop_name": "Conshohocken Av & W Cntry Club - 2 MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 40.002945 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22307", "stop_name": "Conshohocken Av & W Country Club", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207786, 40.002734 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30935", "stop_name": "Conshohocken Av & Cranston Rd - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210422, 40.002319 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22309", "stop_name": "Cranston Rd & Conshohocken - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211144, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22310", "stop_name": "Cranston Rd & Lankenau Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209873, 40.000426 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22311", "stop_name": "Ford Rd & Cranston Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210004, 39.999801 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22312", "stop_name": "Ford Rd & Cranstaton Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211339, 40.000143 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22313", "stop_name": "Ford Rd & Balwynne Park Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213181, 40.000583 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22314", "stop_name": "Ford Rd & Monument Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215259, 40.001122 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25776", "stop_name": "Ford Rd & Belmont Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218849, 40.001994 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22315", "stop_name": "Belmont Av & Sherwood Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.220173, 40.001737 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22316", "stop_name": "Belmont Av & Sherwood Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219939, 40.000996 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22207", "stop_name": "Belmont Av & Conshohocken Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219635, 39.999987 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "26002", "stop_name": "Belmont Av & Conshohocken Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219447, 39.999335 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22206", "stop_name": "Belmont Av & Monument Rd - 1 MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21898, 39.997576 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25979", "stop_name": "Belmont Av & Monument Rd - 2 MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218805, 39.996951 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22208", "stop_name": "Belmont Av & Monument Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218431, 39.995469 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22317", "stop_name": "Belmont Av & Parkside Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218174, 39.994523 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22318", "stop_name": "Belmont Av & Fairmount Park Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217741, 39.993031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22319", "stop_name": "Belmont Av & S Georges Hill Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215824, 39.985861 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22320", "stop_name": "Belmont Av & Lansdowne Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214772, 39.982174 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22321", "stop_name": "Belmont Av & S Concourse Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214281, 39.980379 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "30833", "stop_name": "Parkside Av & Belmont Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212849, 39.977502 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "25809", "stop_name": "Parkside Av & W Memorial Hall Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211409, 39.976973 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22219", "stop_name": "Parkside Av & 42nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209439, 39.976238 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22220", "stop_name": "Parkside Av & 41st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207008, 39.975341 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "635", "stop_name": "Parkside Av & 40th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204495, 39.974418 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22221", "stop_name": "40th St & Poplar St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.204134, 39.972739 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22223", "stop_name": "40th St & Ogden St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203542, 39.969543 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22224", "stop_name": "40th St & Parrish St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203332, 39.968507 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22225", "stop_name": "40th St & Brown St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.203146, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22330", "stop_name": "Brown St & Union St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20206, 39.967425 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22331", "stop_name": "Brown St & 39th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200571, 39.96761 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22332", "stop_name": "Brown St & 38th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198326, 39.967864 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22333", "stop_name": "Brown St & 37th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.196885, 39.968031 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22334", "stop_name": "Mantua av & 36th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19542, 39.968029 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22322", "stop_name": "Mantua Av & 35th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19378, 39.967445 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "636", "stop_name": "Mantua Av & 34th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19227, 39.966898 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22323", "stop_name": "34th St & Wallace St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191909, 39.965273 ] } }, +{ "type": "Feature", "properties": { "route_id": "38", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Market", "stop_id": "22324", "stop_name": "34th St & Haverford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191689, 39.964104 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.0, "percent_change": 0.11, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.0, "percent_change": 0.11, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.0, "percent_change": 0.11, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.0, "percent_change": 0.11, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.4, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.2, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.2, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.2, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.4, "percent_change": 0.17, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.4, "percent_change": 0.17, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.6, "percent_change": 0.16, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.6, "percent_change": 0.16, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.4, "percent_change": -0.24, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 8.8, "percent_change": -0.29, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 8.8, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 8.8, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.0, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.0, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.4, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.4, "percent_change": -0.09, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.4, "percent_change": -0.09, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.4, "percent_change": -0.09, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.4, "percent_change": -0.2, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.4, "percent_change": -0.2, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.2, "percent_change": -0.24, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.4, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.4, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.4, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.2, "percent_change": -0.24, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.2, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.0, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.0, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.8, "percent_change": -0.23, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.8, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.6, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.6, "percent_change": -0.09, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.2, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.8, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.6, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.6, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.0, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.8, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 11.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.2, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.2, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.2, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.2, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.2, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.2, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.2, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.5, "percent_change": 0.38, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.5, "percent_change": 0.24, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.5, "percent_change": 0.31, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.5, "percent_change": 0.31, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.5, "percent_change": 0.24, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16339", "stop_name": "Huntingdon St & Emery St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115846, 39.975834 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16340", "stop_name": "Huntingdon St & Edgemont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116634, 39.976728 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16341", "stop_name": "Huntingdon St & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117116, 39.977283 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16342", "stop_name": "Huntingdon St & Aramingo Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118515, 39.978848 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16343", "stop_name": "Huntingdon St & Moyer St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 39.979492 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16344", "stop_name": "Huntingdon St & Cedar St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120019, 39.98061 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16345", "stop_name": "Huntingdon St & Memphis St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120854, 39.98154 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16346", "stop_name": "Huntingdon St & Tulip St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121442, 39.982202 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16348", "stop_name": "Huntingdon St & Sepviva St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121971, 39.982837 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16349", "stop_name": "Huntingdon St & Trenton Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122618, 39.98349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16350", "stop_name": "Huntingdon St & Frankford Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124017, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16351", "stop_name": "Huntingdon St & Coral St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12464, 39.985798 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16352", "stop_name": "Huntingdon St & Emerald St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125451, 39.986764 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16353", "stop_name": "Huntingdon St & Jasper St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126333, 39.987721 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16354", "stop_name": "Huntingdon St & Kensington Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127167, 39.988785 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16355", "stop_name": "Kensington Av & Cumberland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 39.987666 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19017", "stop_name": "Kensington Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131607, 39.98652 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "651", "stop_name": "Susquehanna Av & Hope St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132979, 39.983319 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16358", "stop_name": "Susquehanna Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134396, 39.983528 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16359", "stop_name": "Susquehanna Av & Hancock St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135306, 39.983637 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16360", "stop_name": "Susquehanna Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136415, 39.983773 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16361", "stop_name": "Susquehanna Av & American St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137655, 39.983946 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16362", "stop_name": "Susquehanna Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.984109 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16363", "stop_name": "Susquehanna Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139899, 39.984237 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16364", "stop_name": "Susquehanna Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141741, 39.984473 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16365", "stop_name": "Susquehanna Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143736, 39.984754 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "27966", "stop_name": "Susquehanna Av & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.985118 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16367", "stop_name": "Susquehanna Av & 9th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147633, 39.985254 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16368", "stop_name": "Susquehanna Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149227, 39.985445 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16369", "stop_name": "Susquehanna Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150786, 39.985645 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16370", "stop_name": "Susquehanna Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.985862 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16371", "stop_name": "Susquehanna Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153939, 39.98608 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "653", "stop_name": "Susquehanna Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156053, 39.986308 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16372", "stop_name": "Susquehanna Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.98657 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16373", "stop_name": "Susquehanna Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159371, 39.986779 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16374", "stop_name": "Susquehanna Av & 17th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.98697 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16375", "stop_name": "Susquehanna Av & 18th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162489, 39.987169 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16376", "stop_name": "Susquehanna Av & 19th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164059, 39.98736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16377", "stop_name": "Susquehanna Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165642, 39.987569 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16378", "stop_name": "Susquehanna Av & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167519, 39.987823 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14924", "stop_name": "21st St & Dauphin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167243, 39.989223 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14752", "stop_name": "York St & 21st St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167283, 39.990937 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14754", "stop_name": "York St & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.991055 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16385", "stop_name": "York St & Sedgley Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170602, 39.991363 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16386", "stop_name": "York St & 24th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17163, 39.991499 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16387", "stop_name": "York St & 25th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.991708 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16388", "stop_name": "York St & 26th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174759, 39.991907 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16389", "stop_name": "York St & 27th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176743, 39.992161 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16390", "stop_name": "York St & 28th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177818, 39.992306 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16391", "stop_name": "York St & 29th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179471, 39.992515 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "644", "stop_name": "33rd St & Dauphin St Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18609, 39.992001 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31553", "stop_name": "Dauphin St & Ridge Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.991661 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16213", "stop_name": "Dauphin St & 28th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178379, 39.990736 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16214", "stop_name": "Dauphin St & 27th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177021, 39.990546 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16215", "stop_name": "Dauphin St & 26th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175391, 39.990347 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16216", "stop_name": "Dauphin St & 25th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173738, 39.990138 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16217", "stop_name": "Dauphin St & Glenwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17036, 39.989685 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21136", "stop_name": "Dauphin St & 22nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16899, 39.989512 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16218", "stop_name": "Dauphin St & 21st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167372, 39.989322 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16219", "stop_name": "Dauphin St & 20th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165506, 39.989041 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16220", "stop_name": "Dauphin St & 19th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163924, 39.988841 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16221", "stop_name": "Dauphin St & 18th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.988642 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16222", "stop_name": "Dauphin St & 17th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.988442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16223", "stop_name": "Dauphin St & 16th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159212, 39.988242 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16224", "stop_name": "Dauphin St & 15th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157641, 39.988034 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "646", "stop_name": "Dauphin St & Broad St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.987861 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16225", "stop_name": "Dauphin St & 13th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.987543 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16226", "stop_name": "Dauphin St & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.987352 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16227", "stop_name": "Dauphin St & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 39.987144 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16228", "stop_name": "Dauphin St & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149068, 39.986953 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16229", "stop_name": "Dauphin St & 9th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147509, 39.986753 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16230", "stop_name": "Dauphin St & 8th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146529, 39.986617 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "647", "stop_name": "Dauphin St & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145254, 39.986462 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "9380", "stop_name": "Lehigh Av & Lawrence St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139383, 39.991947 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16316", "stop_name": "Lehigh Av & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13845, 39.991828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "30803", "stop_name": "Lehigh Av & American St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136395, 39.991556 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "31462", "stop_name": "Dauphin St & American St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137153, 39.985381 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16321", "stop_name": "Dauphin St & Palethorp St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.985236 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16322", "stop_name": "Dauphin St & Hancock St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135181, 39.985136 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16323", "stop_name": "Dauphin St & Mascher St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.985018 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21150", "stop_name": "Dauphin St & Front St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132347, 39.984745 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16325", "stop_name": "Jasper St & York St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131117, 39.985233 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16326", "stop_name": "Jasper St & Cumberland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128796, 39.986442 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16327", "stop_name": "Cumberland St & Emerald St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128008, 39.98561 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16328", "stop_name": "Cumberland St & Coral St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.984644 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16329", "stop_name": "Cumberland St & Amber St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12635, 39.983705 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16330", "stop_name": "Cumberland St & Frankford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125985, 39.983311 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16331", "stop_name": "Cumberland St & Trenton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12521, 39.982417 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16332", "stop_name": "Cumberland St & Sepviva St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124586, 39.981701 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16333", "stop_name": "Cumberland St & Tulip St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123999, 39.981039 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16334", "stop_name": "Cumberland St & Memphis St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123422, 39.980386 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16335", "stop_name": "Cumberland St & Cedar St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122611, 39.979456 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16336", "stop_name": "Cumberland St & Gaul St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121741, 39.97849 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16337", "stop_name": "Cumberland St & Almond St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.977828 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "16338", "stop_name": "Cumberland St & Aramingo Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11999, 39.976514 ] } }, +{ "type": "Feature", "properties": { "route_id": "39", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Cumberland", "stop_id": "21225", "stop_name": "Cumberland St & Richmond St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118227, 39.974296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.2, "percent_change": 0.22, "expected_wait_time_difference": -21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.2, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.2, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.4, "percent_change": -0.26, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.2, "percent_change": -0.28, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.4, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.0, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.4, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.4, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.4, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.4, "percent_change": 0.48, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.6, "percent_change": 0.52, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.6, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.0, "percent_change": 0.21, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.2, "percent_change": 0.16, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.4, "percent_change": 0.19, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.4, "percent_change": 0.19, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.4, "percent_change": 0.19, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.4, "percent_change": 0.19, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.4, "percent_change": 0.19, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.0, "percent_change": 0.08, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23804", "stop_name": "Richmond St & Lefevre St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071044, 39.998517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24000", "stop_name": "Lefevre St & Salmon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071525, 39.999385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24001", "stop_name": "Lefevre St & Thompson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07244, 40.000619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24002", "stop_name": "Lefevre St & Almond St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073086, 40.001513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24003", "stop_name": "Lefevre St & Miller St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073943, 40.002658 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24109", "stop_name": "Lefevre St & Pearce St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075456, 40.004813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24005", "stop_name": "Margaret St & Stiles St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075863, 40.006296 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31195", "stop_name": "Margaret St & Tacony St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076128, 40.0076 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24007", "stop_name": "Margaret St & Worth St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076602, 40.009788 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24008", "stop_name": "Margaret St & Torresdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076973, 40.011244 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31090", "stop_name": "Margaret St & Ditman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077355, 40.012842 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24571", "stop_name": "Margaret St & Tackawanna St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078225, 40.013835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24570", "stop_name": "Margaret St & Mulberry St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.079392, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24572", "stop_name": "Margaret St & Duffield St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080877, 40.015298 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24573", "stop_name": "Margaret St & Darrah St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08228, 40.016069 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "30465", "stop_name": "Margaret St & Frankford Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083576, 40.016778 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24574", "stop_name": "Arrott St & Adams Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094799, 40.023261 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24575", "stop_name": "Adams Av & Ramona Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095354, 40.024004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24576", "stop_name": "Adams Av & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096878, 40.025971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23292", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098525, 40.027823 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24", "stop_name": "Roosevelt Blvd & Tower Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101085, 40.029484 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23298", "stop_name": "Roosevelt Blvd & Garland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106426, 40.029414 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23301", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.109907, 40.028316 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "23300", "stop_name": "Roosevelt Blvd & Bingham St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114533, 40.027302 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "124", "stop_name": "Roosevelt Blvd & C St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117076, 40.026924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24577", "stop_name": "C St & Ashdale St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117637, 40.028603 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "113", "stop_name": "Fisher Av & Rising Sun Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.030329 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24578", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120359, 40.030547 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24579", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122273, 40.030766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24580", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124246, 40.031029 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24581", "stop_name": "2nd St & Fisher Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.031026 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24582", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12677, 40.029759 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24583", "stop_name": "2nd St & Lindley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127594, 40.027682 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24584", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129211, 40.028444 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24585", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 40.028589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "207", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132058, 40.028835 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24586", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134031, 40.029063 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31072", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135709, 40.029281 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24589", "stop_name": "Lindley Av & Franklin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136347, 40.029354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31073", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136973, 40.029453 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24587", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137907, 40.029589 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24588", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 40.029772 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24590", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141109, 40.029971 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24592", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142692, 40.030145 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24593", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 40.030229 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "208", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146367, 40.03059 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24594", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148104, 40.030898 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24595", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149663, 40.031098 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24596", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152204, 40.031433 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24597", "stop_name": "Lindley Av & Belfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154686, 40.031546 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24598", "stop_name": "Belfield Av & 20th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 40.036386 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24599", "stop_name": "Belfield Av & Wister St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158721, 40.036758 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24600", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160341, 40.036887 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24601", "stop_name": "Belfield Av & Armstrong St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161759, 40.036979 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24602", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24603", "stop_name": "Belfield Av & Church Ln - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 40.037175 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24604", "stop_name": "Belfield Av & Church Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167598, 40.037464 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24605", "stop_name": "Baynton St & Morton St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168746, 40.037226 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "24606", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170445, 40.038068 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "209", "stop_name": "Chelten Av & Baynton St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171857, 40.038671 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15925", "stop_name": "Chelten Av & Lena St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173072, 40.03752 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15926", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17389, 40.036763 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31000", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174685, 40.035944 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15663", "stop_name": "Chelten Av & Greene St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176726, 40.03402 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15929", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177734, 40.033004 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15661", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178849, 40.0319 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "15931", "stop_name": "Chelten Av & Pulaski Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180261, 40.030537 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "31669", "stop_name": "Chelten Av & Morris St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181423, 40.02937 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chelten-Wissahickon", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "210", "stop_name": "Chelten Av & Wissahickon Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 40.02799 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "212", "stop_name": "Wissahickon Av & School House Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181909, 40.025757 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27967", "stop_name": "School House Ln & Wissahickon - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181341, 40.025863 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24340", "stop_name": "School House Ln & Morris St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179301, 40.027813 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24341", "stop_name": "School House Ln & Pulaski Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17815, 40.028962 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24342", "stop_name": "Pulaski Av & Chelten Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180119, 40.030385 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21953", "stop_name": "Chelten Av & Wayne Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178933, 40.031641 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15672", "stop_name": "Chelten Av & Knox St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177711, 40.032808 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "21954", "stop_name": "Chelten Av & Greene St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17656, 40.034002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15664", "stop_name": "Chelten Av & Germantown Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174781, 40.035676 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15665", "stop_name": "Chelten Av & Kenyon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173891, 40.036549 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "15666", "stop_name": "Chelten Av & Lena St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172989, 40.037431 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "213", "stop_name": "Chelten Av & Baynton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171649, 40.038722 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24343", "stop_name": "Baynton St & Armat St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170705, 40.038086 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24344", "stop_name": "Baynton St & Church Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 40.037109 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24354", "stop_name": "Belfield Av & Penn St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165767, 40.037032 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24355", "stop_name": "Belfield Av & Penn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164396, 40.036797 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27968", "stop_name": "Belfield Av & Armstrong St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161783, 40.036854 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24356", "stop_name": "Belfield Av & Armstrong St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160589, 40.03678 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24357", "stop_name": "Belfield Av & Wister St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158521, 40.036642 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24358", "stop_name": "Belfield Av & 20th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 40.036279 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24368", "stop_name": "Lindley Av & Belfield Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154485, 40.031447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24370", "stop_name": "Lindley Av & Ogontz Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152571, 40.031354 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24371", "stop_name": "Lindley Av & 17th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151472, 40.031209 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "214", "stop_name": "Lindley Av & 16th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.031009 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24406", "stop_name": "Lindley Av & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 40.0308 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "215", "stop_name": "Lindley Av & Broad St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146722, 40.030591 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24410", "stop_name": "Lindley Av & Old York Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 40.030206 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24411", "stop_name": "Lindley Av & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144513, 40.030113 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24412", "stop_name": "Lindley Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 40.03002 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24413", "stop_name": "Lindley Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141334, 40.029874 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24414", "stop_name": "Lindley Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139751, 40.029674 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24415", "stop_name": "Lindley Av & 9th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138132, 40.029492 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24416", "stop_name": "Lindley Av & 8th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137186, 40.029364 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24417", "stop_name": "Lindley Av & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135934, 40.029183 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24418", "stop_name": "Lindley Av & 6th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134256, 40.028965 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "216", "stop_name": "Lindley Av & 5th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132283, 40.028737 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24419", "stop_name": "Lindley Av & 4th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130416, 40.028474 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24420", "stop_name": "Lindley Av & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129436, 40.028347 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24421", "stop_name": "2nd St & Lindley Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 40.02769 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24422", "stop_name": "2nd St & Duncannon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126641, 40.029563 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24423", "stop_name": "2nd St & Fisher Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126303, 40.031115 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24425", "stop_name": "Fisher Av & Mascher St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124471, 40.030932 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24427", "stop_name": "Fisher Av & Front St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122557, 40.030668 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24428", "stop_name": "Fisher Av & A St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120608, 40.030449 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "118", "stop_name": "Fisher Av & Rising Sun Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118635, 40.030195 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30949", "stop_name": "C St & Ashland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117837, 40.028729 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "119", "stop_name": "C St & Roosevelt Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117407, 40.026943 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "22409", "stop_name": "Roosevelt Blvd & C St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11689, 40.026254 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23313", "stop_name": "Roosevelt Blvd & Rorer St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114525, 40.026579 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23314", "stop_name": "Roosevelt Blvd & F St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.110064, 40.027513 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23316", "stop_name": "Roosevelt Blvd & Whitaker Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106074, 40.028779 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30824", "stop_name": "Roosevelt Blvd & Adams Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.102089, 40.029171 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "23319", "stop_name": "Roosevelt Blvd & Langdon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099224, 40.027378 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24447", "stop_name": "Adams Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.096998, 40.025703 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24448", "stop_name": "Adams Av & Arrott St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095082, 40.023271 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24450", "stop_name": "Adams Av & Castor Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093992, 40.021242 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24452", "stop_name": "Adams Av & Orthodox St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094485, 40.019619 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "218", "stop_name": "Orthodox St & Frankford Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085654, 40.014784 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24454", "stop_name": "Orthodox St & Paul St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084747, 40.014309 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24456", "stop_name": "Orthodox St & Hedge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083332, 40.013573 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24467", "stop_name": "Orthodox St & Mulberry St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081811, 40.012739 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24477", "stop_name": "Orthodox St & Tackawanna St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.011924 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24478", "stop_name": "Orthodox St & Torresdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079447, 40.010447 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24010", "stop_name": "Orthodox St & Worth St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.009428 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24011", "stop_name": "Orthodox St & Tacony St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078268, 40.00749 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "30895", "stop_name": "Orthodox St & Melrose St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078129, 40.006793 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24012", "stop_name": "Orthodox St & Stiles St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077979, 40.006123 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24013", "stop_name": "Orthodox St & Bermuda St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077667, 40.004766 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24014", "stop_name": "Orthodox St & Aramingo Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077459, 40.003801 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24015", "stop_name": "Orthodox St & Belgrade St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076693, 40.000818 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24016", "stop_name": "Orthodox St & Almond St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076071, 40.000094 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24017", "stop_name": "Orthodox St & Thompson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07533, 39.99927 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "24018", "stop_name": "Orthodox St & Salmon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074284, 39.998089 ] } }, +{ "type": "Feature", "properties": { "route_id": "41", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Orthodox", "stop_id": "488", "stop_name": "Orthodox St & Richmond St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073614, 39.997338 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 5.6, "percent_change": -0.36, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.6, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.4, "percent_change": -0.36, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.4, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.4, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.4, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.4, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.4, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.4, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.6, "percent_change": -0.35, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.4, "percent_change": -0.16, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.4, "percent_change": -0.11, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.8, "percent_change": -0.31, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.2, "percent_change": -0.33, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.2, "percent_change": -0.33, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.2, "percent_change": -0.3, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.2, "percent_change": -0.3, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.0, "percent_change": -0.31, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.0, "percent_change": -0.31, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.8, "percent_change": -0.31, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.4, "percent_change": -0.19, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.4, "percent_change": -0.19, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.4, "percent_change": -0.19, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.4, "percent_change": -0.19, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 5.8, "percent_change": -0.34, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.4, "percent_change": -0.22, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.4, "percent_change": -0.22, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.6, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.4, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.4, "percent_change": -0.36, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.4, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.2, "percent_change": -0.38, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.4, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.0, "percent_change": -0.39, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.0, "percent_change": -0.39, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.2, "percent_change": -0.33, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.2, "percent_change": -0.33, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.2, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.2, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.2, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.2, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.6, "percent_change": -0.25, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 13.4, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.8, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.6, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.6, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.4, "percent_change": -0.28, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.4, "percent_change": -0.28, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.6, "percent_change": -0.28, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.6, "percent_change": -0.28, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.6, "percent_change": -0.28, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.4, "percent_change": -0.29, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.4, "percent_change": -0.29, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.4, "percent_change": -0.3, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.4, "percent_change": -0.3, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.4, "percent_change": -0.3, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 11.8, "percent_change": -0.33, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 11.8, "percent_change": -0.33, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 11.6, "percent_change": -0.34, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.6, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.8, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.8, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.6, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.4, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.4, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.4, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.6, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.6, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.0, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 12.2, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 12.2, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.2, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.2, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.2, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.2, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 12.2, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.2, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.2, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.2, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.2, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.2, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.8, "percent_change": -0.31, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.8, "percent_change": -0.31, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.2, "percent_change": -0.21, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.8, "percent_change": -0.32, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 8.8, "percent_change": -0.35, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 8.8, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 8.8, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.2, "percent_change": -0.38, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.0, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.2, "percent_change": -0.38, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.0, "percent_change": -0.39, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.0, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.0, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.0, "percent_change": -0.39, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.0, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.0, "percent_change": -0.39, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 8.8, "percent_change": -0.41, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.0, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.0, "percent_change": -0.35, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.0, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.0, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.2, "percent_change": -0.36, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.0, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.8, "percent_change": -0.34, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.0, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.8, "percent_change": -0.34, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.0, "percent_change": -0.22, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.6, "percent_change": -0.35, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.0, "percent_change": -0.22, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.6, "percent_change": -0.34, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.6, "percent_change": -0.34, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.6, "percent_change": -0.34, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.2, "percent_change": -0.36, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.2, "percent_change": -0.38, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.2, "percent_change": -0.37, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.0, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.0, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.8, "percent_change": -0.37, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.0, "percent_change": -0.27, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.8, "percent_change": -0.38, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.8, "percent_change": -0.38, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.8, "percent_change": -0.38, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.0, "percent_change": -0.27, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 8.8, "percent_change": -0.39, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 8.8, "percent_change": -0.39, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.0, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.4, "percent_change": -0.41, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.2, "percent_change": -0.42, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.2, "percent_change": -0.41, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.4, "percent_change": -0.4, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.6, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.4, "percent_change": -0.4, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.6, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 8.4, "percent_change": -0.38, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 8.4, "percent_change": -0.37, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.6, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.6, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 8.2, "percent_change": -0.34, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 8.2, "percent_change": -0.34, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 8.2, "percent_change": -0.34, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 8.2, "percent_change": -0.4, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.8, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.8, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.6, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.6, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.6, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.6, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.6, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.4, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.4, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.2, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.2, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.0, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.6, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.4, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.6, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 19.6, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.6, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.6, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.4, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.4, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.2, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.0, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.8, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.8, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.6, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 18.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 18.4, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 18.2, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.0, "percent_change": -0.34, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.0, "percent_change": -0.34, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.0, "percent_change": -0.35, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.4, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.4, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.2, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.4, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.2, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.4, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.2, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.4, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.4, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.2, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.2, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.6, "percent_change": -0.28, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.6, "percent_change": -0.28, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.8, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.8, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.0, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.2, "percent_change": -0.09, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.2, "percent_change": -0.09, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.2, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.2, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.2, "percent_change": -0.27, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.2, "percent_change": -0.28, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.2, "percent_change": -0.25, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.2, "percent_change": -0.28, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.6, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.8, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.0, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.6, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.2, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.2, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.2, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.2, "percent_change": -0.09, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.2, "percent_change": -0.09, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.0, "percent_change": -0.15, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.0, "percent_change": -0.15, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.0, "percent_change": -0.15, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.8, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.6, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.6, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.6, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.4, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.0, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.0, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.2, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.4, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.6, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.8, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.0, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.2, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.2, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.4, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.0, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 16.6, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 16.6, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 16.6, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 17.2, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 17.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 17.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 17.6, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 17.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.6, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.8, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.4, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 17.2, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 17.2, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 17.2, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 17.4, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.4, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 17.8, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 18.0, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 8.8, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 8.8, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 8.8, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.4, "percent_change": -0.29, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.4, "percent_change": -0.29, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.2, "percent_change": -0.33, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.4, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.6, "percent_change": -0.28, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.6, "percent_change": -0.28, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.2, "percent_change": -0.21, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.2, "percent_change": -0.21, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.2, "percent_change": -0.21, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.2, "percent_change": -0.21, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.4, "percent_change": -0.22, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.4, "percent_change": -0.22, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.4, "percent_change": -0.22, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.4, "percent_change": -0.24, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.4, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.6, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.2, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.2, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.2, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.2, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.0, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.0, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.8, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.2, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.8, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.6, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.8, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 16.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.8, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 4.0, "percent_change": 1.67, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 4.0, "percent_change": 1.67, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 16.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.0, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.5, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.5, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.5, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 7.0, "percent_change": 1.0, "expected_wait_time_difference": -17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 7.5, "percent_change": 1.14, "expected_wait_time_difference": -18.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 7.5, "percent_change": 1.14, "expected_wait_time_difference": -18.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 7.5, "percent_change": 1.14, "expected_wait_time_difference": -18.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.5, "percent_change": 0.88, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.5, "percent_change": 0.44, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.5, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.5, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.0, "percent_change": 0.08, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 13.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22104", "stop_name": "Marshall Rd & Gilpin Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265689, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22131", "stop_name": "Marshall Rd & Long Ln - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.264153, 39.952287 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26097", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.263455, 39.952635 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22132", "stop_name": "Marshall Rd & Grace Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26251, 39.953026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "19608", "stop_name": "Marshall Rd & Hampden Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26134, 39.95323 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22106", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.259899, 39.953451 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22135", "stop_name": "Marshall Rd & 69th Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.258646, 39.95369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22105", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.257251, 39.954429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22107", "stop_name": "Marshall Rd & Kent Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255126, 39.954239 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26100", "stop_name": "Marshall Rd & Harrison Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253117, 39.954923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26102", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251828, 39.955412 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22108", "stop_name": "Marshall Rd & Church Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250207, 39.956704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22109", "stop_name": "Spruce St & Cobbs Creek - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247667, 39.957227 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22136", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246002, 39.957019 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22110", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244018, 39.956802 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26108", "stop_name": "61st St & Spruce St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243806, 39.956668 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "670", "stop_name": "Spruce St & 60th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242, 39.956513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22111", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240005, 39.956261 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22112", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238057, 39.956026 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22113", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236097, 39.955782 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22114", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234078, 39.955529 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22115", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232048, 39.955284 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22116", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229887, 39.955004 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22117", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228081, 39.954787 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "671", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226121, 39.954534 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22118", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224126, 39.95429 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22119", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222167, 39.954037 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22120", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220195, 39.953793 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22121", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218247, 39.953566 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22122", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216252, 39.953313 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "26111", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214257, 39.95306 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22123", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212286, 39.952815 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22124", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210657, 39.952616 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22125", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20937, 39.952453 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22126", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207009, 39.952181 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22127", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205687, 39.952027 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "672", "stop_name": "Spruce St & 40th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202795, 39.951647 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22128", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200871, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22129", "stop_name": "Spruce St & 38th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19949, 39.951231 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21435", "stop_name": "University Av & Baltimore Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199415, 39.94883 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "31743", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19884, 39.947731 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32416", "stop_name": "33rd st & Chestnut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189691, 39.953925 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21356", "stop_name": "Chestnut St & 32nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18759, 39.953779 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "21357", "stop_name": "Chestnut St & 31st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185359, 39.95348 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20976", "stop_name": "Chestnut St & 30th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 39.953289 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "32637", "stop_name": "Chestnut St & Schuykill Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18203, 39.953072 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6067", "stop_name": "Chestnut St & 23rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178276, 39.952591 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6066", "stop_name": "Chestnut St & 22nd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176754, 39.952392 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6065", "stop_name": "Chestnut St & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175502, 39.952229 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6064", "stop_name": "Chestnut St & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.952001 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14906", "stop_name": "Chestnut St & 19th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.95182 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6062", "stop_name": "Chestnut St & 18th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.951602 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6061", "stop_name": "Chestnut St & 17th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168869, 39.951385 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14907", "stop_name": "Chestnut St & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167311, 39.951203 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6060", "stop_name": "Chestnut St & 15th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165717, 39.951012 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6115", "stop_name": "Chestnut St & Broad St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164041, 39.950804 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6059", "stop_name": "Chestnut St & 13th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161881, 39.95054 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6058", "stop_name": "Chestnut St & 12th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.950349 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6057", "stop_name": "Chestnut St & 11th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158765, 39.950168 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14908", "stop_name": "Chestnut St & 10th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.949959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6114", "stop_name": "Chestnut St & 9th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155661, 39.949768 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6113", "stop_name": "Chestnut St & 8th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.949568 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6112", "stop_name": "Chestnut St & 7th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152486, 39.949377 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "6111", "stop_name": "Chestnut St & 6th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150916, 39.949187 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "14909", "stop_name": "Chestnut St & 4th St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 39.948868 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20970", "stop_name": "Chestnut St & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146148, 39.948587 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20971", "stop_name": "Chestnut St & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.948333 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "20974", "stop_name": "2nd St & Walnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144466, 39.946959 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "2nd-Spruce", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22137", "stop_name": "38th Parellel Pl & Dock St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.944967 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "673", "stop_name": "Spruce St & 2nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144747, 39.944523 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "25095", "stop_name": "Spruce St & 3rd St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147048, 39.944831 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22139", "stop_name": "Spruce St & 4th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148299, 39.944977 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22140", "stop_name": "Spruce St & 5th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149916, 39.945177 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14880", "stop_name": "Walnut St & 5th St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14973, 39.947586 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14881", "stop_name": "Walnut St & 7th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.947923 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14882", "stop_name": "Walnut St & 8th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154061, 39.948131 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14883", "stop_name": "Walnut St & 9th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155666, 39.948322 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14884", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.948513 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14885", "stop_name": "Walnut St & 11th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15883, 39.948704 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14886", "stop_name": "Walnut St & 12th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.948895 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14887", "stop_name": "Walnut St & 13th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 11.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162005, 39.949086 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "130", "stop_name": "Walnut St & Broad St - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 11.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.949303 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14079", "stop_name": "Walnut St & 15th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 11.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165805, 39.949576 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14080", "stop_name": "Walnut St & 16th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167399, 39.949775 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14081", "stop_name": "Walnut St & 17th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168968, 39.949975 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14084", "stop_name": "Walnut St & 18th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170456, 39.950148 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14085", "stop_name": "Walnut St & 19th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172108, 39.950374 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14086", "stop_name": "Walnut St & 20th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.950574 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14088", "stop_name": "Walnut St & 21st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175531, 39.95081 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "14089", "stop_name": "Walnut St & 22nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177172, 39.951 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "131", "stop_name": "Walnut St & 23rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178305, 39.951145 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "19542", "stop_name": "Walnut St & 24th St - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179615, 39.951326 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "432", "stop_name": "Walnut St & 30th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184278, 39.95188 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "25704", "stop_name": "Walnut St & 32nd St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187984, 39.952369 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21359", "stop_name": "Walnut St & 33rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189826, 39.952596 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "30815", "stop_name": "Civic Center Blvd & Health Sciences", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197108, 39.946389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21230", "stop_name": "University Av & Curie Blvd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.198557, 39.947614 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "21451", "stop_name": "University Av & VA Medical Center", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199343, 39.949142 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22143", "stop_name": "Spruce St & 39th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200623, 39.9515 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "674", "stop_name": "Spruce St & 40th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.951799 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22147", "stop_name": "Spruce St & 41st St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.205462, 39.952125 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22151", "stop_name": "Spruce St & 42nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.206796, 39.952288 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22154", "stop_name": "Spruce St & 43rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209145, 39.952551 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22156", "stop_name": "Spruce St & 44th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.210432, 39.952714 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22158", "stop_name": "Spruce St & 45th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212061, 39.952913 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22160", "stop_name": "Spruce St & 46th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214044, 39.953166 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22190", "stop_name": "Spruce St & 47th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.216028, 39.953411 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22191", "stop_name": "Spruce St & 48th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218023, 39.953664 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22192", "stop_name": "Spruce St & 49th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21997, 39.95389 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22193", "stop_name": "Spruce St & 50th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.221942, 39.954135 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22161", "stop_name": "Spruce St & 51st St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223902, 39.954388 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "675", "stop_name": "Spruce St & 52nd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225897, 39.954632 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22163", "stop_name": "Spruce St & 53rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227856, 39.954885 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22165", "stop_name": "Spruce St & 54th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229662, 39.955102 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22166", "stop_name": "Spruce St & 55th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231823, 39.955382 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22167", "stop_name": "Spruce St & 56th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233771, 39.955644 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22168", "stop_name": "Spruce St & 57th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235801, 39.955879 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22169", "stop_name": "Spruce St & 58th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237761, 39.956141 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22170", "stop_name": "Spruce St & 59th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239744, 39.956376 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "676", "stop_name": "Spruce St & 60th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241763, 39.956629 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22171", "stop_name": "Spruce St & 61st St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243711, 39.956873 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22172", "stop_name": "Spruce St & 62nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245706, 39.957099 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26118", "stop_name": "61st St & Spruce St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243983, 39.956695 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22175", "stop_name": "Spruce St & 63rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247737, 39.957343 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "669", "stop_name": "61St & Pine St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244163, 39.955651 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22180", "stop_name": "Marshall Rd & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250254, 39.956829 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "437", "stop_name": "61st St & Pine St Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244423, 39.955544 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26121", "stop_name": "Marshall Rd & Powell Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251698, 39.955564 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26122", "stop_name": "Marshall Rd & Powell Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253282, 39.954968 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22181", "stop_name": "Marshall Rd & Harrison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.254653, 39.954443 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22182", "stop_name": "Marshall Rd & Rocklyn Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25718, 39.954599 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22183", "stop_name": "Marshall Rd & 69th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258386, 39.953922 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22184", "stop_name": "Marshall Rd & Millbank Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.260135, 39.953514 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22186", "stop_name": "Marshall Rd & Grace Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262497, 39.953124 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "22187", "stop_name": "Marshall Rd & Long Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263928, 39.952537 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26123", "stop_name": "Marshall Rd & Sherbrook Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26628, 39.951487 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26124", "stop_name": "Sherbrook Blvd & Margate - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267649, 39.951917 ] } }, +{ "type": "Feature", "properties": { "route_id": "42", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wycombe", "stop_id": "26125", "stop_name": "Wycombe Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267791, 39.951775 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 0.6, "percent_change": -0.62, "expected_wait_time_difference": 218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.6, "percent_change": 3.33, "expected_wait_time_difference": -269.2 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.6, "percent_change": 3.33, "expected_wait_time_difference": -269.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.4, "percent_change": 3.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.4, "percent_change": 3.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.4, "percent_change": 3.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.4, "percent_change": 3.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.4, "percent_change": 3.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.4, "percent_change": 3.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.4, "percent_change": 3.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.2, "percent_change": 2.67, "expected_wait_time_difference": -254.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.2, "percent_change": 2.67, "expected_wait_time_difference": -254.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.8, "percent_change": 2.0, "expected_wait_time_difference": -233.3 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.8, "percent_change": 2.0, "expected_wait_time_difference": -233.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.8, "percent_change": -0.43, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.8, "percent_change": -0.43, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.4, "percent_change": -0.27, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.6, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.8, "percent_change": -0.24, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.8, "percent_change": -0.24, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.8, "percent_change": -0.24, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.0, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.6, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 7.2, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 7.2, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.2, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.2, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.2, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.4, "percent_change": -0.27, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.8, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.2, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.2, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.6, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.6, "percent_change": 1.71, "expected_wait_time_difference": -20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 7.4, "percent_change": 1.64, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.4, "percent_change": 1.33, "expected_wait_time_difference": -85.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.2, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.2, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.2, "percent_change": 0.5, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.2, "percent_change": 0.5, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.2, "percent_change": 0.5, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.6, "percent_change": 0.58, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.2, "percent_change": 0.5, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.4, "percent_change": 0.54, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 7.4, "percent_change": 0.76, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 7.6, "percent_change": 0.81, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "1537", "stop_name": "30th St & Market St - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.6, "percent_change": 0.65, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18319, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18447", "stop_name": "Market St & 21st St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174789, 39.953691 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18448", "stop_name": "Market St & 20th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.953509 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10275", "stop_name": "Market St & 19th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.953319 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.2, "percent_change": 0.57, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.0, "percent_change": 0.52, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.0, "percent_change": 0.52, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.0, "percent_change": 0.59, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.2, "percent_change": 0.64, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.6, "percent_change": 0.73, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.8, "percent_change": 0.77, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.8, "percent_change": 0.77, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.8, "percent_change": 0.77, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10329", "stop_name": "Market St & 6th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.8, "percent_change": 0.77, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150544, 39.950703 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 8.0, "percent_change": 0.82, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "14930", "stop_name": "Market St & 4th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 8.0, "percent_change": 0.82, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147428, 39.950312 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21318", "stop_name": "Market St & 3rd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 8.0, "percent_change": 0.82, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14587, 39.950103 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 8.0, "percent_change": 0.9, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 8.0, "percent_change": 0.9, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.4, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.4, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.2, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.6, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.2, "percent_change": -0.18, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.2, "percent_change": -0.21, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.8, "percent_change": -0.22, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.8, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.8, "percent_change": -0.22, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.0, "percent_change": -0.15, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.2, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.2, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.4, "percent_change": 0.61, "expected_wait_time_difference": -12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.4, "percent_change": 0.68, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.6, "percent_change": 0.73, "expected_wait_time_difference": -14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 7.6, "percent_change": 0.73, "expected_wait_time_difference": -14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -117.4 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.4, "percent_change": 0.81, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.4, "percent_change": 0.74, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.4, "percent_change": 0.74, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.2, "percent_change": 0.7, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.2, "percent_change": 0.7, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.2, "percent_change": 0.7, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.2, "percent_change": 0.7, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.4, "percent_change": 0.81, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.4, "percent_change": 0.81, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.4, "percent_change": 0.81, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.4, "percent_change": 0.81, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.6, "percent_change": 0.85, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.6, "percent_change": 0.78, "expected_wait_time_difference": -12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.6, "percent_change": 0.78, "expected_wait_time_difference": -12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.6, "percent_change": 0.71, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.6, "percent_change": 0.71, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 9.6, "percent_change": 0.6, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.6, "percent_change": 0.66, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "1537", "stop_name": "30th St & Market St - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.6, "percent_change": 0.71, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18319, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.4, "percent_change": 0.68, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.4, "percent_change": 0.68, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.4, "percent_change": 0.62, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.4, "percent_change": 0.62, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18447", "stop_name": "Market St & 21st St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.4, "percent_change": 0.62, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174789, 39.953691 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18448", "stop_name": "Market St & 20th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.4, "percent_change": 0.62, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.953509 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10275", "stop_name": "Market St & 19th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.4, "percent_change": 0.68, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.953319 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.4, "percent_change": 0.68, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.6, "percent_change": 0.71, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 9.2, "percent_change": 0.64, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10329", "stop_name": "Market St & 6th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150544, 39.950703 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "14930", "stop_name": "Market St & 4th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147428, 39.950312 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21318", "stop_name": "Market St & 3rd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14587, 39.950103 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 9.0, "percent_change": 0.5, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 9.0, "percent_change": 0.55, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 9.6, "percent_change": -0.37, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 7.8, "percent_change": -0.49, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 7.8, "percent_change": -0.49, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 9.8, "percent_change": -0.36, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.0, "percent_change": -0.34, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 10.2, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 10.2, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.4, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.4, "percent_change": -0.27, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.8, "percent_change": -0.26, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.8, "percent_change": -0.26, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.8, "percent_change": -0.26, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.8, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.4, "percent_change": -0.37, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.8, "percent_change": -0.35, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 9.8, "percent_change": -0.36, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 9.8, "percent_change": -0.36, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.6, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.6, "percent_change": -0.27, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.6, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.6, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.6, "percent_change": -0.17, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 11.4, "percent_change": 1.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 3.4, "percent_change": 3.25, "expected_wait_time_difference": -114.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.8, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.8, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.4, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.6, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.6, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.6, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.6, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.6, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.6, "percent_change": 0.41, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.6, "percent_change": 0.41, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.6, "percent_change": 0.41, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.6, "percent_change": 0.41, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.6, "percent_change": 0.41, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.8, "percent_change": 0.44, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.8, "percent_change": 0.44, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.8, "percent_change": 0.44, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 12.2, "percent_change": 0.49, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 12.2, "percent_change": 0.49, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 12.2, "percent_change": 0.49, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 12.4, "percent_change": 0.51, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 12.6, "percent_change": 0.54, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 12.6, "percent_change": 0.54, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.6, "percent_change": 0.57, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.6, "percent_change": 0.57, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.6, "percent_change": 0.57, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.6, "percent_change": 0.57, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 11.6, "percent_change": 0.53, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 11.4, "percent_change": 0.5, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 11.2, "percent_change": 0.47, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 11.0, "percent_change": 0.45, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 10.8, "percent_change": 0.42, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 10.6, "percent_change": 0.39, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 10.6, "percent_change": 0.36, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "1537", "stop_name": "30th St & Market St - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.2, "percent_change": 0.38, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18319, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.2, "percent_change": 0.38, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.2, "percent_change": 0.38, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.2, "percent_change": 0.38, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.4, "percent_change": 0.41, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18447", "stop_name": "Market St & 21st St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.4, "percent_change": 0.41, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174789, 39.953691 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18448", "stop_name": "Market St & 20th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.4, "percent_change": 0.41, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.953509 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10275", "stop_name": "Market St & 19th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.4, "percent_change": 0.41, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.953319 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.4, "percent_change": 0.41, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.8, "percent_change": 0.46, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.2, "percent_change": 0.51, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.2, "percent_change": 0.51, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.2, "percent_change": 0.51, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10329", "stop_name": "Market St & 6th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150544, 39.950703 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "14930", "stop_name": "Market St & 4th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147428, 39.950312 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21318", "stop_name": "Market St & 3rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14587, 39.950103 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.2, "percent_change": 0.51, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.0, "percent_change": -0.31, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 4.0, "percent_change": -0.44, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 4.0, "percent_change": -0.44, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.2, "percent_change": -0.28, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.2, "percent_change": -0.28, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.4, "percent_change": -0.29, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.4, "percent_change": -0.29, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.4, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.4, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.4, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.4, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.4, "percent_change": -0.32, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.4, "percent_change": -0.36, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.4, "percent_change": -0.36, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.4, "percent_change": -0.36, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.4, "percent_change": -0.36, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.4, "percent_change": -0.36, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 5.4, "percent_change": -0.36, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.4, "percent_change": -0.34, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.6, "percent_change": -0.38, "expected_wait_time_difference": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.6, "percent_change": -0.38, "expected_wait_time_difference": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 5.6, "percent_change": -0.39, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 5.6, "percent_change": -0.39, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.6, "percent_change": -0.4, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 5.8, "percent_change": -0.4, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 5.8, "percent_change": -0.4, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 5.8, "percent_change": -0.4, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 5.8, "percent_change": -0.34, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.6, "percent_change": -0.28, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.4, "percent_change": 1.44, "expected_wait_time_difference": -49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.2, "percent_change": 1.33, "expected_wait_time_difference": -47.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.6, "percent_change": 1.56, "expected_wait_time_difference": -50.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 4.8, "percent_change": 1.67, "expected_wait_time_difference": -52.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 5.0, "percent_change": 1.78, "expected_wait_time_difference": -53.3 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 5.2, "percent_change": 1.89, "expected_wait_time_difference": -54.5 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 5.4, "percent_change": 2.0, "expected_wait_time_difference": -55.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 5.4, "percent_change": 2.0, "expected_wait_time_difference": -55.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "1537", "stop_name": "30th St & Market St - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18319, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18447", "stop_name": "Market St & 21st St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174789, 39.953691 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18448", "stop_name": "Market St & 20th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.953509 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10275", "stop_name": "Market St & 19th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.4, "percent_change": 0.93, "expected_wait_time_difference": -25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.953319 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.6, "percent_change": 1.0, "expected_wait_time_difference": -26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.6, "percent_change": 1.0, "expected_wait_time_difference": -26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.6, "percent_change": 1.0, "expected_wait_time_difference": -26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.8, "percent_change": 1.07, "expected_wait_time_difference": -27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.8, "percent_change": 1.07, "expected_wait_time_difference": -27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10329", "stop_name": "Market St & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150544, 39.950703 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "14930", "stop_name": "Market St & 4th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147428, 39.950312 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21318", "stop_name": "Market St & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14587, 39.950103 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.8, "percent_change": 0.93, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.5, "percent_change": 4.0, "expected_wait_time_difference": -144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 3.0, "percent_change": -0.68, "expected_wait_time_difference": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 3.0, "percent_change": -0.68, "expected_wait_time_difference": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.5, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 8.0, "percent_change": 1.0, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 8.0, "percent_change": 1.0, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 8.0, "percent_change": 1.0, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 8.0, "percent_change": 1.29, "expected_wait_time_difference": -24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 8.0, "percent_change": 1.0, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "1537", "stop_name": "30th St & Market St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18319, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18447", "stop_name": "Market St & 21st St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174789, 39.953691 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18448", "stop_name": "Market St & 20th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.953509 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10275", "stop_name": "Market St & 19th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.953319 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.0, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10329", "stop_name": "Market St & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150544, 39.950703 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "14930", "stop_name": "Market St & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147428, 39.950312 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "21318", "stop_name": "Market St & 3rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14587, 39.950103 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Front-Market", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 7.5, "percent_change": 0.67, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "705", "stop_name": "Montgomery Av & Haverford Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.252311, 40.008588 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29576", "stop_name": "Montgomery Av & Meeting House Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.255003, 40.0096 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29577", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.256868, 40.010272 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29578", "stop_name": "Montgomery Av & Brookhurst Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258911, 40.010989 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29579", "stop_name": "Montgomery Av & Old Gulph Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262678, 40.012351 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30227", "stop_name": "Montgomery Av & Bryn Mawr Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265595, 40.01339 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30853", "stop_name": "Montgomery Av & Mc Clenaghan Mill R", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.267096, 40.013552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21995", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271103, 40.013531 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21996", "stop_name": "Montgomery Av & Gypsy Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272853, 40.01306 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21997", "stop_name": "Montgomery Av & Cherry Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274403, 40.012205 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21998", "stop_name": "Montgomery Av & Wister Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276085, 40.010645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21999", "stop_name": "Montgomery Av & Owen Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.277966, 40.009514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "22000", "stop_name": "Montgomery Av & Church Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.281041, 40.008705 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32218", "stop_name": "Montgomery Av & Llanfair Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.283923, 40.009209 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "32219", "stop_name": "Montgomery Av & Glenn Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.286795, 40.009328 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18884", "stop_name": "Montgomery Av & Saint Georges Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.288887, 40.009411 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "1537", "stop_name": "30th St & Market St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18319, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18447", "stop_name": "Market St & 21st St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174789, 39.953691 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18448", "stop_name": "Market St & 20th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.953509 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10275", "stop_name": "Market St & 19th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.953319 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.5, "percent_change": 0.57, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10329", "stop_name": "Market St & 6th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150544, 39.950703 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "14930", "stop_name": "Market St & 4th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147428, 39.950312 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "21318", "stop_name": "Market St & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14587, 39.950103 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Front-Market", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "14931", "stop_name": "Arch St & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143147, 39.951971 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4467", "stop_name": "Arch St & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145082, 39.952208 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3492", "stop_name": "Arch St & 4th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 39.952444 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "4469", "stop_name": "Arch St & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14834, 39.952617 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30080", "stop_name": "Market St & 7th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152951, 39.951146 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31178", "stop_name": "Market St & 8th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15445, 39.951318 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30081", "stop_name": "Market St & 9th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.951501 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17833", "stop_name": "Market St & 10th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.951745 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10262", "stop_name": "Market St & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.951954 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30082", "stop_name": "Market St & 12th St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.952063 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "17842", "stop_name": "JFK Blvd & 15th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164763, 39.953652 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8936", "stop_name": "JFK Blvd & 17th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168056, 39.954061 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8938", "stop_name": "JFK Blvd & 18th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169567, 39.954251 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "8939", "stop_name": "JFK Blvd & 19th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171208, 39.95446 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "2821", "stop_name": "20th St & Market St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173194, 39.95392 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "30576", "stop_name": "Schuylkill Av & JFK Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180877, 39.95514 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "703", "stop_name": "City Av & Presidential Blv - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211763, 40.008238 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20558", "stop_name": "City Av & Monument Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21426, 40.007091 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6252", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.00614 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6255", "stop_name": "City Av & Kings Grant Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218284, 40.005242 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "952", "stop_name": "City Av & Belmont Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222237, 40.003303 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "6236", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224023, 40.00244 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20559", "stop_name": "City Av & Conshohocken State Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225964, 40.001524 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "1169", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228626, 40.000287 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20561", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230851, 39.99922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3555", "stop_name": "52nd St & City Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233088, 39.997769 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "29553", "stop_name": "52nd St & Rexford Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232205, 39.996536 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "3566", "stop_name": "52nd St & Overbrook Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231605, 39.995615 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "11506", "stop_name": "Overbrook Av & 54th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233853, 39.994851 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "20589", "stop_name": "54th St & City Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235135, 39.99696 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21977", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236207, 39.997961 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21978", "stop_name": "Old Lancaster Rd & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238635, 40.000276 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21979", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239766, 40.00167 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21980", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241108, 40.003511 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "31340", "stop_name": "Montgomery Av & Parsons Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243785, 40.005827 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21982", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246595, 40.00675 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Ardmore via Montgomery Ave", "stop_id": "21983", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249878, 40.00779 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18880", "stop_name": "Coulter Av & Glenn Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286384, 40.007864 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18882", "stop_name": "Llanfair Rd & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284019, 40.008646 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "32216", "stop_name": "Montgomery Av & Church Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280616, 40.008482 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "31209", "stop_name": "Montgomery Av & Owen Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277813, 40.009433 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "30545", "stop_name": "Montgomery Av & Penn Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274522, 40.011946 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "32217", "stop_name": "Montgomery Av & Wynnewood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273007, 40.012846 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21889", "stop_name": "Montgomery Av & Hansell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271316, 40.013388 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21890", "stop_name": "Montgomery Av & Essex Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267332, 40.013445 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29582", "stop_name": "Montgomery Av & Narberth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262596, 40.012181 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29583", "stop_name": "Montgomery Av & Iona Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259608, 40.011088 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29584", "stop_name": "Montgomery Av & Woodbine Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257247, 40.010264 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "29585", "stop_name": "Montgomery Av & Meetinghouse Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.255499, 40.009645 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "696", "stop_name": "Montgomery Av & Haverford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.252335, 40.008427 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21897", "stop_name": "Montgomery Av & Merion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250115, 40.007719 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21898", "stop_name": "Montgomery Av & Winding Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246997, 40.006733 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21899", "stop_name": "Montgomery Av & Bowman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24584, 40.006383 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21900", "stop_name": "Montgomery Av & Old Lancaster", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24316, 40.005379 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21901", "stop_name": "Old Lancaster Rd & Gramercy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241345, 40.003592 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21902", "stop_name": "Old Lancaster Rd & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240002, 40.001751 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21903", "stop_name": "Old Lancaster Rd & Latch Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238471, 39.999919 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21904", "stop_name": "Old Lancaster Rd & Edgehill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23655, 39.998087 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "30592", "stop_name": "Old Lancaster Rd & City Line Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235548, 39.99721 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20592", "stop_name": "City Av & 52nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233289, 39.997965 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6232", "stop_name": "City Av & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231017, 39.999024 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "30187", "stop_name": "City Av & Bala Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228958, 39.999922 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6233", "stop_name": "City Av & Conshohocken Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225834, 40.00147 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6237", "stop_name": "City Av & 47th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222947, 40.002813 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20587", "stop_name": "City Av & Belmont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22019, 40.004111 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6251", "stop_name": "City Av & Kings Grant Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217752, 40.005214 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "6234", "stop_name": "City Av & Decker Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215468, 40.006299 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20550", "stop_name": "City Av & Monument Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214024, 40.006939 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "699", "stop_name": "City Av & Presidential Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 40.008193 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "1537", "stop_name": "30th St & Market St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18319, 39.955591 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18447", "stop_name": "Market St & 21st St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174789, 39.953691 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18448", "stop_name": "Market St & 20th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.953509 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10275", "stop_name": "Market St & 19th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.953319 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10272", "stop_name": "Market St & 18th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170173, 39.953119 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18451", "stop_name": "Market St & 16th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167045, 39.952738 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10255", "stop_name": "Market St & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.951512 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10340", "stop_name": "Market St & 9th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155714, 39.95133 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10331", "stop_name": "Market St & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152149, 39.950876 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10329", "stop_name": "Market St & 6th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150544, 39.950703 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "14930", "stop_name": "Market St & 4th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147428, 39.950312 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "21318", "stop_name": "Market St & 3rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14587, 39.950103 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "44", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Front-Market", "stop_id": "69", "stop_name": "Front St & Market St Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.949765 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.2, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.2, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.0, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.0, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.6, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.6, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.6, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.6, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.2, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.2, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.2, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 12.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 12.0, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 12.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 12.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.0, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 17.6, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 17.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 17.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 17.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.2, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.2, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 17.0, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 17.0, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 16.0, "percent_change": 0.13, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 16.0, "percent_change": 0.13, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.4, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.4, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.8, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.6, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.6, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.2, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.2, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.2, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.6, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 14.6, "percent_change": 0.14, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 14.4, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 14.2, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 14.2, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 14.2, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.8, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.8, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.8, "percent_change": 0.13, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.8, "percent_change": 0.13, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.8, "percent_change": 0.13, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 13.6, "percent_change": 0.17, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 13.6, "percent_change": 0.17, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 13.4, "percent_change": 0.16, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 13.4, "percent_change": 0.16, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 13.0, "percent_change": 0.14, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 13.0, "percent_change": 0.14, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 13.0, "percent_change": 0.14, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.8, "percent_change": 0.12, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.6, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.6, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.6, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.6, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.6, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.6, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.6, "percent_change": 0.12, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.4, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.4, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.4, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 12.4, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.0, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.4, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.4, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.4, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.4, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.0, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.2, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.2, "percent_change": -0.11, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.2, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.0, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.2, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.6, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.6, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.6, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.8, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.8, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.8, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.0, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.4, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.4, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.4, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.6, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.6, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.0, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.2, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.2, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.2, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.2, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.2, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.2, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.2, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.2, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.4, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.0, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.2, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.2, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.2, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.4, "percent_change": -0.21, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.8, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.8, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.8, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 13.8, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.6, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.8, "percent_change": -0.19, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.8, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.8, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.4, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.2, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.4, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.8, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 9.6, "percent_change": -0.41, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 9.4, "percent_change": -0.43, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 9.4, "percent_change": -0.43, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 9.6, "percent_change": -0.42, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 9.6, "percent_change": -0.42, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.2, "percent_change": -0.4, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.6, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.6, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.8, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.8, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 13.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.8, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.0, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.2, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.2, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.2, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.0, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.4, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 13.6, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -360.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.2, "percent_change": 5.0, "expected_wait_time_difference": -375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.6, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.6, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.8, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.8, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.4, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 14.0, "percent_change": -0.5, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 14.2, "percent_change": -0.49, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 14.0, "percent_change": -0.5, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 13.8, "percent_change": -0.5, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 13.8, "percent_change": -0.5, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 13.8, "percent_change": -0.5, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 14.2, "percent_change": -0.49, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 15.8, "percent_change": -0.43, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 15.8, "percent_change": -0.43, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 15.8, "percent_change": -0.43, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.0, "percent_change": -0.42, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 18.0, "percent_change": -0.34, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 17.8, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 17.8, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 17.8, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 17.8, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.8, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.6, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 17.4, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 17.2, "percent_change": -0.38, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 17.2, "percent_change": -0.39, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.2, "percent_change": -0.37, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 16.4, "percent_change": -0.4, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 16.8, "percent_change": -0.38, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.4, "percent_change": -0.36, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.6, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.8, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.6, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 17.0, "percent_change": -0.38, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 17.0, "percent_change": -0.39, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 17.0, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 17.0, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 17.0, "percent_change": -0.4, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 17.0, "percent_change": -0.4, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 16.8, "percent_change": -0.4, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 16.4, "percent_change": -0.41, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 17.2, "percent_change": -0.3, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 17.2, "percent_change": -0.3, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 17.0, "percent_change": -0.3, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 17.0, "percent_change": -0.29, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 17.2, "percent_change": -0.28, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 17.2, "percent_change": -0.33, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 17.0, "percent_change": -0.38, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.8, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.6, "percent_change": -0.4, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 16.8, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 16.4, "percent_change": -0.38, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 16.6, "percent_change": -0.38, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.6, "percent_change": -0.4, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.4, "percent_change": -0.41, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 16.2, "percent_change": -0.42, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 16.2, "percent_change": -0.42, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.2, "percent_change": -0.41, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 16.4, "percent_change": -0.41, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 16.4, "percent_change": -0.41, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.4, "percent_change": -0.41, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.4, "percent_change": -0.41, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.6, "percent_change": -0.4, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 16.6, "percent_change": -0.39, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 16.4, "percent_change": -0.39, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 16.0, "percent_change": -0.28, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.6, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 19.6, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 19.6, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 19.4, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 29.4, "arrivals_during_cuts": 20.0, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 29.4, "arrivals_during_cuts": 20.2, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 28.8, "arrivals_during_cuts": 20.0, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 28.8, "arrivals_during_cuts": 20.4, "percent_change": -0.29, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 20.2, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 20.4, "percent_change": -0.29, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 20.4, "percent_change": -0.29, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 20.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 19.8, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 20.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 29.2, "arrivals_during_cuts": 20.0, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 29.0, "arrivals_during_cuts": 20.0, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 29.4, "arrivals_during_cuts": 20.0, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 29.2, "arrivals_during_cuts": 19.8, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 29.2, "arrivals_during_cuts": 19.8, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 29.0, "arrivals_during_cuts": 19.6, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 28.8, "arrivals_during_cuts": 19.4, "percent_change": -0.33, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 28.8, "arrivals_during_cuts": 19.4, "percent_change": -0.33, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 28.8, "arrivals_during_cuts": 19.2, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 19.2, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 19.2, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 13.0, "percent_change": -0.53, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 13.0, "percent_change": -0.53, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 13.0, "percent_change": -0.53, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 12.8, "percent_change": -0.54, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 12.8, "percent_change": -0.54, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.2, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.6, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.6, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.4, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.4, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.4, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.4, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.4, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.4, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.4, "percent_change": -0.35, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 9.0, "percent_change": -0.68, "expected_wait_time_difference": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 9.2, "percent_change": -0.67, "expected_wait_time_difference": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 9.2, "percent_change": -0.67, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 9.0, "percent_change": -0.67, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 9.0, "percent_change": -0.67, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 12.6, "percent_change": -0.55, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.8, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 15.8, "percent_change": -0.42, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 15.8, "percent_change": -0.42, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 16.0, "percent_change": -0.42, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.6, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 18.8, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 28.6, "arrivals_during_cuts": 18.8, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 18.8, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 18.8, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.8, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.6, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 18.6, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 18.2, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.8, "percent_change": -0.32, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.0, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 19.0, "percent_change": -0.31, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 19.2, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.2, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.6, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 28.4, "arrivals_during_cuts": 19.8, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.8, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.8, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 28.0, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 28.2, "arrivals_during_cuts": 19.4, "percent_change": -0.31, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 19.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 27.8, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.4, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.4, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 27.6, "arrivals_during_cuts": 18.2, "percent_change": -0.34, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 17.6, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.4, "percent_change": -0.36, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.4, "percent_change": -0.36, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.4, "percent_change": -0.36, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 17.4, "percent_change": -0.36, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 14.2, "percent_change": -0.36, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 13.4, "percent_change": -0.39, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.6, "percent_change": -0.21, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.6, "percent_change": -0.2, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.6, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.4, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.8, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.8, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.8, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.0, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 18.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 18.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 18.2, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 18.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 18.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 18.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 18.2, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 18.8, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 19.4, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 19.4, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 19.2, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 19.4, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.4, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.6, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 19.2, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 19.2, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.2, "percent_change": -0.15, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 18.6, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 18.8, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.8, "percent_change": -0.18, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 19.8, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 19.4, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.4, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.2, "percent_change": -0.14, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.2, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 19.4, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 19.4, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.4, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 19.4, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 19.4, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 19.4, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 19.6, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 19.6, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 19.4, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 19.4, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.6, "percent_change": -0.12, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 19.8, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 19.8, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.6, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.8, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.8, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 20.8, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.8, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.6, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.6, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 20.6, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 20.6, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 20.6, "percent_change": -0.06, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 20.8, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 21.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 21.0, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.6, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 20.6, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 20.6, "percent_change": -0.07, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.6, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 20.6, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 20.6, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 19.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 16.4, "percent_change": 0.21, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.6, "percent_change": -0.27, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.8, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.8, "percent_change": -0.26, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.8, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.8, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 16.8, "percent_change": -0.28, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 16.6, "percent_change": -0.28, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 16.6, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 16.6, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 16.6, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.2, "percent_change": -0.25, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.4, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.4, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.6, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.6, "percent_change": -0.25, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.8, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 17.8, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 18.0, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.2, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.6, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.6, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.6, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.4, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.6, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.6, "percent_change": -0.22, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 19.0, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 19.0, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 18.8, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 19.0, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 18.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 18.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 18.6, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 18.6, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.6, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.6, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 10.6, "percent_change": -0.56, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 10.6, "percent_change": -0.57, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 10.8, "percent_change": -0.56, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 10.8, "percent_change": -0.56, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 10.8, "percent_change": -0.56, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 13.0, "percent_change": -0.47, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 18.6, "percent_change": -0.24, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 24.4, "arrivals_during_cuts": 18.8, "percent_change": -0.23, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 15.8, "percent_change": -0.35, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 15.8, "percent_change": -0.35, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 15.8, "percent_change": -0.35, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 18.8, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 19.6, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 24.6, "arrivals_during_cuts": 19.6, "percent_change": -0.2, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 19.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 24.8, "arrivals_during_cuts": 19.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 19.6, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 19.8, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 19.8, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 20.0, "percent_change": -0.21, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.0, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.0, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 20.0, "percent_change": -0.21, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.0, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.0, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 19.8, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 19.8, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 19.6, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 19.4, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.4, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.4, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 19.6, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.6, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.6, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.6, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.8, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.0, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 20.4, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 20.4, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 20.4, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 20.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 4.6, "percent_change": -0.72, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 4.6, "percent_change": -0.71, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 4.6, "percent_change": -0.71, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 4.6, "percent_change": -0.71, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 4.6, "percent_change": -0.71, "expected_wait_time_difference": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 4.8, "percent_change": -0.69, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 4.8, "percent_change": -0.69, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 4.8, "percent_change": -0.69, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 4.8, "percent_change": -0.69, "expected_wait_time_difference": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.4, "percent_change": -0.24, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.8, "percent_change": -0.23, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.6, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.8, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.8, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.8, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.8, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.6, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.6, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.6, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.4, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.4, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.4, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.8, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.4, "percent_change": -0.1, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.4, "percent_change": -0.1, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.4, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.4, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.4, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.4, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.2, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.2, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.2, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.2, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.2, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.0, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.0, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 15.0, "percent_change": -0.16, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.8, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.2, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.2, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.8, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.8, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 11.6, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.4, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.4, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.6, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.6, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 11.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.0, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.2, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.2, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.4, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.4, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.4, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.4, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.6, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.6, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 6.4, "percent_change": -0.54, "expected_wait_time_difference": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 6.4, "percent_change": -0.54, "expected_wait_time_difference": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.4, "percent_change": -0.54, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.6, "percent_change": -0.53, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 6.6, "percent_change": -0.54, "expected_wait_time_difference": 12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.4, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.4, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.4, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.6, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.6, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.0, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.2, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.4, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 4.4, "percent_change": -0.65, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 4.2, "percent_change": -0.68, "expected_wait_time_difference": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 4.2, "percent_change": -0.67, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 4.2, "percent_change": -0.66, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 4.2, "percent_change": -0.67, "expected_wait_time_difference": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 4.2, "percent_change": -0.67, "expected_wait_time_difference": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 4.2, "percent_change": -0.67, "expected_wait_time_difference": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 4.0, "percent_change": -0.7, "expected_wait_time_difference": 26.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 4.0, "percent_change": -0.7, "expected_wait_time_difference": 26.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.2, "percent_change": -0.36, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.5, "percent_change": 0.38, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.5, "percent_change": -0.42, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.0, "percent_change": -0.41, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.0, "percent_change": -0.41, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.0, "percent_change": -0.41, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.5, "percent_change": 0.46, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.5, "percent_change": 0.44, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 9.0, "percent_change": 1.0, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 9.0, "percent_change": 1.0, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 9.0, "percent_change": 1.0, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 8.5, "percent_change": 0.7, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 9.0, "percent_change": 0.38, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 16.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 14.0, "percent_change": -0.1, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 14.0, "percent_change": -0.15, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.5, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 16.5, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.5, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.5, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.5, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.5, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 16.5, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 16.5, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 16.5, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 16.5, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.5, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.0, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 17.5, "percent_change": 0.13, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.5, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 17.5, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 16.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.5, "percent_change": 0.23, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.5, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.5, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.5, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 17.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 17.5, "percent_change": 0.67, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 17.5, "percent_change": 0.67, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 17.5, "percent_change": 0.67, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 17.5, "percent_change": 0.67, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 17.5, "percent_change": 0.67, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 18.0, "percent_change": 0.12, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 8.0, "percent_change": -0.54, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 8.0, "percent_change": -0.53, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 8.5, "percent_change": -0.48, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 8.5, "percent_change": -0.48, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 8.5, "percent_change": -0.48, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 9.0, "percent_change": -0.45, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 17.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 17.5, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 10.5, "percent_change": -0.36, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 10.5, "percent_change": -0.36, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.5, "percent_change": -0.38, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 18.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 18.0, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.5, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.5, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.0, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.5, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.5, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.5, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.5, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 15.5, "percent_change": -0.11, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.5, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.5, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 15.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 15.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 15.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 15.5, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.5, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.5, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.5, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.5, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.5, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.5, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 16.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.5, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.5, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.5, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.5, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 13.0, "percent_change": 0.13, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.5, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 11.0, "percent_change": 0.29, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.0, "percent_change": -0.48, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.0, "percent_change": -0.48, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.0, "percent_change": -0.48, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.0, "percent_change": -0.48, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.0, "percent_change": -0.48, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 5.0, "percent_change": -0.57, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 5.0, "percent_change": -0.57, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 5.0, "percent_change": -0.57, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.5, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.5, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.5, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.5, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.5, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.5, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.5, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.5, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.5, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.5, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.5, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.5, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.0, "percent_change": 0.09, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.0, "percent_change": 0.09, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.5, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "30864", "stop_name": "7th St & Oregon Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.5, "percent_change": 0.24, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159722, 39.915559 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18491", "stop_name": "7th St & Shunk St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159482, 39.916612 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18492", "stop_name": "7th St & Porter St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159218, 39.917861 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18493", "stop_name": "7th St & Ritner St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158941, 39.91911 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18494", "stop_name": "7th St & Wolf St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.920359 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18495", "stop_name": "7th St & Jackson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158413, 39.921599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "733", "stop_name": "7th St & Snyder Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158137, 39.922776 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18496", "stop_name": "7th St & McKean St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.924025 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18497", "stop_name": "7th St & Mifflin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.925256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18498", "stop_name": "7th St & Moore St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.926469 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18499", "stop_name": "7th St & Morris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.927691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18500", "stop_name": "7th St & Tasker St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156779, 39.928904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18501", "stop_name": "7th St & Dickinson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.930109 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18502", "stop_name": "7th St & Reed St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156227, 39.93134 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18503", "stop_name": "7th St & Wharton St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.932571 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18504", "stop_name": "7th St & Federal St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.933784 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "734", "stop_name": "7th St & Washington Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155326, 39.935434 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18505", "stop_name": "7th St & Carpenter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155085, 39.936621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18506", "stop_name": "7th St & Christian St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.5, "percent_change": 0.17, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.938057 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18508", "stop_name": "7th St & Fitzwater St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154269, 39.940233 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18509", "stop_name": "7th St & Bainbridge St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154029, 39.941268 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18510", "stop_name": "7th St & South St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.942107 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18511", "stop_name": "7th St & Lombard St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153644, 39.943133 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18512", "stop_name": "7th St & Pine St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.944042 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18513", "stop_name": "7th St & Spruce St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153115, 39.945452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18514", "stop_name": "Washington Sq & Locust St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153382, 39.946738 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18515", "stop_name": "7th St & Walnut St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152811, 39.947745 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18516", "stop_name": "7th St & Chestnut St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152298, 39.94919 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "735", "stop_name": "7th St & Market St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151949, 39.950795 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18517", "stop_name": "7th St & Arch St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151492, 39.952883 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18518", "stop_name": "7th St & Race St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151199, 39.955252 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18519", "stop_name": "7th St & Vine St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151278, 39.956452 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18520", "stop_name": "7th St & Willow St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150289, 39.958601 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26056", "stop_name": "7th St & Willow St - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150084, 39.959582 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "736", "stop_name": "7th St & Spring Garden St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149782, 39.961286 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18521", "stop_name": "7th St & Green St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.96225 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "24337", "stop_name": "7th St & Wallace St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149457, 39.963044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18522", "stop_name": "7th St & Fairmount Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26057", "stop_name": "7th St & Brown St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149107, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18523", "stop_name": "7th St & Brown St - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 39.966273 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26065", "stop_name": "7th St & Poplar St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148564, 39.967763 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18524", "stop_name": "7th St & Poplar St - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148323, 39.969021 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "737", "stop_name": "7th St & Girard Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148082, 39.970314 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18525", "stop_name": "7th St & Thompson St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14784, 39.97167 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18526", "stop_name": "7th St & Master St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147611, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18527", "stop_name": "7th St & Jefferson St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147334, 39.974293 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18528", "stop_name": "7th St & Oxford St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14708, 39.975756 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18529", "stop_name": "7th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146766, 39.977407 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18530", "stop_name": "7th St & Montgomery Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146513, 39.978709 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18531", "stop_name": "7th St & Berks St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146259, 39.980226 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18532", "stop_name": "7th St & Norris St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.9817 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18533", "stop_name": "7th St & Diamond St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145656, 39.98319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "738", "stop_name": "7th St & Susquehanna Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.984767 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18534", "stop_name": "7th St & Dauphin St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145088, 39.986366 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16231", "stop_name": "Dauphin St & 6th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143612, 39.986217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16232", "stop_name": "Dauphin St & 5th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141593, 39.985981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18537", "stop_name": "5th St & York St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141138, 39.987426 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "16234", "stop_name": "5th St & Cumberland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140825, 39.988915 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18539", "stop_name": "5th St & Huntingdon St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.990414 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18540", "stop_name": "5th St & Lehigh Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140151, 39.992002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18541", "stop_name": "5th St & Somerset St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139802, 39.993548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18542", "stop_name": "5th St & Cambria St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13944, 39.995073 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18543", "stop_name": "5th St & Indiana St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13914, 39.996554 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18544", "stop_name": "5th St & Clearfield St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138803, 39.998044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26058", "stop_name": "5th St & Allegheny Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138466, 39.999665 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18545", "stop_name": "5th St & Westmoreland St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138129, 40.001217 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18546", "stop_name": "5th St & Ontario St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137792, 40.002691 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18547", "stop_name": "5th St & Sedgley Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13737, 40.004556 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18549", "stop_name": "5th St & Venango St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137129, 40.005704 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "741", "stop_name": "5th St & Erie Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136816, 40.007238 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18550", "stop_name": "5th St & Butler St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136443, 40.008888 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26059", "stop_name": "5th St & Rising Sun Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13619, 40.010012 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18552", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135804, 40.011868 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18553", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135455, 40.013411 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18555", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 40.014945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18556", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134769, 40.016533 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18557", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 40.018032 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18558", "stop_name": "5th St & Wingohocking St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134118, 40.019522 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18559", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133973, 40.020253 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "742", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133455, 40.022608 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "22162", "stop_name": "5th St & Roosevelt Blvd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133286, 40.023447 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18562", "stop_name": "5th St & Roosevelt Blvd - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133081, 40.024357 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18563", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132769, 40.025695 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18564", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.027176 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18565", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13213, 40.028701 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18566", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131792, 40.030235 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18567", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131455, 40.031755 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18568", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131129, 40.033295 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18569", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130816, 40.034651 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18570", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130454, 40.036346 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18571", "stop_name": "5th St & Chew Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 40.037889 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "26064", "stop_name": "5th St & Grange St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129719, 40.039682 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18572", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12943, 40.040958 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18573", "stop_name": "5th St & Champlost Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129104, 40.042483 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "18574", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128779, 40.043991 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "744", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.0, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128429, 40.045552 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "5th-Godrey", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.5, "percent_change": 0.31, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "722", "stop_name": "Godfrey Loop - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127989, 40.046292 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16237", "stop_name": "5th St & Spencer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128908, 40.044205 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16238", "stop_name": "5th St & Champlost St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129234, 40.042698 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16239", "stop_name": "5th St & Nedro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.5, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129559, 40.041172 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16240", "stop_name": "5th St & Grange St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129897, 40.039647 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16241", "stop_name": "5th St & Chew St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130234, 40.038104 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16242", "stop_name": "5th St & Olney Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130584, 40.03656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16243", "stop_name": "5th St & Tabor Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 40.034866 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16244", "stop_name": "5th St & Somerville Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131247, 40.03351 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16245", "stop_name": "5th St & Fisher Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131584, 40.031993 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16246", "stop_name": "5th St & Duncannon Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131909, 40.03045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16247", "stop_name": "5th St & Lindley Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132259, 40.028862 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26043", "stop_name": "5th St & Ruscomb St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132573, 40.027345 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16248", "stop_name": "5th St & Rockland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 40.025865 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16249", "stop_name": "5th St & Loudon St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133247, 40.024375 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "723", "stop_name": "5th St & Wyoming Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133584, 40.022823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16251", "stop_name": "5th St & Annsbury St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134102, 40.020423 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16253", "stop_name": "5th St & Cayuga St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134573, 40.018202 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16254", "stop_name": "5th St & Bristol St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134898, 40.016703 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16255", "stop_name": "5th St & Hunting Park Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135247, 40.015115 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16256", "stop_name": "5th St & Lycoming St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135596, 40.013528 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16257", "stop_name": "5th St & Luzerne St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 40.012056 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16258", "stop_name": "5th St & Pike St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136247, 40.010548 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26044", "stop_name": "Rising Sun Av & Randolph St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137422, 40.009382 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "724", "stop_name": "6th St & Erie Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138894, 40.007796 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16260", "stop_name": "6th St & Venango St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.5, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139255, 40.006128 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16261", "stop_name": "6th St & Tioga St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13958, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26045", "stop_name": "6th St & Sedgley Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139737, 40.003925 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16262", "stop_name": "6th St & Glenwood Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140146, 40.002016 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16263", "stop_name": "6th St & Allegheny Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.5, "percent_change": 0.24, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140579, 40.000062 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26046", "stop_name": "6th St & Clearfield St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.5, "percent_change": 0.24, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140928, 39.998492 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16264", "stop_name": "6th St & Indiana Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.997002 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16265", "stop_name": "6th St & Cambria St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141578, 39.995531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26047", "stop_name": "6th St & Somerset St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141903, 39.994014 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16266", "stop_name": "6th St & Lehigh Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 10.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142252, 39.992453 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16267", "stop_name": "6th St & Huntingdon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14259, 39.990847 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26048", "stop_name": "6th St & Cumberland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142926, 39.989349 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16268", "stop_name": "6th St & York St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143251, 39.98785 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16269", "stop_name": "6th St & Dauphin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143588, 39.986342 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16270", "stop_name": "6th St & Susquehanna Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143925, 39.984835 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21133", "stop_name": "Susquehanna Av & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145342, 39.984945 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "725", "stop_name": "8th St & Susquehanna Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146914, 39.984904 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30192", "stop_name": "8th St & Diamond St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147179, 39.983557 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16273", "stop_name": "8th St & Norris St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147492, 39.982076 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16274", "stop_name": "8th St & Berks St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147841, 39.980595 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16275", "stop_name": "8th St & Montgomery Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148154, 39.979097 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16276", "stop_name": "8th St & Cecil B Moore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148478, 39.97758 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26050", "stop_name": "8th St & Cecil B Moore Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148599, 39.976982 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16277", "stop_name": "8th St & Oxford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148779, 39.976171 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16278", "stop_name": "8th St & Jefferson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149104, 39.974726 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16279", "stop_name": "8th St & Master St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 39.973352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26051", "stop_name": "8th St & Thompson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149705, 39.972139 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16280", "stop_name": "Thompson St & Franklin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148844, 39.971824 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16281", "stop_name": "Franklin St & Girard Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149037, 39.970602 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20999", "stop_name": "Girard Av & 8th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149853, 39.970568 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16282", "stop_name": "8th St & Poplar St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 39.968044 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16283", "stop_name": "8th St & Brown St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151136, 39.9656 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26052", "stop_name": "8th St & Fairmount Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15134, 39.96461 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16284", "stop_name": "8th St & Wallace St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151569, 39.963584 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16285", "stop_name": "8th St & Green St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151797, 39.962531 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20855", "stop_name": "8th St & Spring Garden St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.961683 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24339", "stop_name": "8th St & Noble St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151938, 39.959693 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18441", "stop_name": "8th St & Callowhill St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.958435 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18442", "stop_name": "8th St & Race St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152806, 39.955188 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16288", "stop_name": "8th St & Cherry St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153022, 39.954198 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16289", "stop_name": "8th St & Arch St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153215, 39.953297 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "728", "stop_name": "8th St & Market St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153624, 39.951343 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16290", "stop_name": "8th St & Chestnut St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153984, 39.949711 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30992", "stop_name": "8th St & Walnut St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154381, 39.947864 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16292", "stop_name": "8th St & Locust St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154549, 39.947088 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16293", "stop_name": "8th St & Spruce St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.5, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154826, 39.945822 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16294", "stop_name": "8th St & Pine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.944403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16295", "stop_name": "8th St & Lombard St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155331, 39.94352 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16296", "stop_name": "8th St & South St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155559, 39.942485 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26053", "stop_name": "8th St & Bainbridge St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.941638 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16297", "stop_name": "8th St & Fitzwater St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155955, 39.940657 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16298", "stop_name": "8th St & Catharine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156172, 39.939666 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16299", "stop_name": "8th St & Christian St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156376, 39.938667 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16300", "stop_name": "8th St & Carpenter St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.937294 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "729", "stop_name": "8th St & Washington Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.936045 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24345", "stop_name": "8th St & Passyunk Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157133, 39.935215 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16301", "stop_name": "8th St & Federal St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.934145 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16302", "stop_name": "8th St & Wharton St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157638, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16303", "stop_name": "8th St & Reed St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.931718 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16304", "stop_name": "8th St & Dickinson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.930505 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16305", "stop_name": "8th St & Tasker St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158454, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16306", "stop_name": "8th St & Morris St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928061 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16307", "stop_name": "8th St & Moore St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.926839 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21227", "stop_name": "8th St & Mifflin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159283, 39.925599 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16309", "stop_name": "8th St & McKean St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.924403 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "730", "stop_name": "8th St & Snyder Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159799, 39.92319 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16310", "stop_name": "8th St & Jackson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160076, 39.921959 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16311", "stop_name": "8th St & Wolf St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.920737 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16312", "stop_name": "8th St & Ritner St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160604, 39.91947 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16313", "stop_name": "8th St & Porter St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160869, 39.91823 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16314", "stop_name": "8th St & Shunk St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.916981 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21253", "stop_name": "8th St & Oregon Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161409, 39.915706 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "47", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.5, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.6, "percent_change": -0.26, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.0, "percent_change": -0.24, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.6, "percent_change": -0.26, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.6, "percent_change": -0.26, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.6, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.6, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.6, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.6, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.2, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.2, "percent_change": -0.37, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.6, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.0, "percent_change": -0.34, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.0, "percent_change": -0.34, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.0, "percent_change": -0.34, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 6.0, "percent_change": -0.43, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 6.0, "percent_change": -0.41, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 6.0, "percent_change": -0.41, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.6, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.6, "percent_change": -0.31, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.6, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.6, "percent_change": -0.33, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 6.8, "percent_change": -0.35, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 6.6, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 6.6, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 6.6, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 6.6, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 6.8, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.8, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.8, "percent_change": -0.38, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.2, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.6, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.6, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.4, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.4, "percent_change": -0.29, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.2, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.2, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 7.0, "percent_change": -0.38, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 7.0, "percent_change": -0.38, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 6.8, "percent_change": -0.39, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 7.0, "percent_change": -0.38, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 7.0, "percent_change": -0.38, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 7.2, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.2, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.2, "percent_change": -0.35, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.4, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.2, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.4, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.6, "percent_change": -0.33, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.8, "percent_change": -0.32, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.8, "percent_change": -0.32, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.2, "percent_change": -0.28, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.2, "percent_change": -0.28, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.2, "percent_change": -0.28, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 10.2, "percent_change": -0.31, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.2, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.0, "percent_change": -0.3, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.0, "percent_change": -0.3, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.0, "percent_change": -0.3, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.0, "percent_change": -0.3, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.0, "percent_change": -0.3, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.0, "percent_change": -0.3, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.2, "percent_change": -0.42, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.2, "percent_change": -0.41, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.8, "percent_change": -0.44, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 7.8, "percent_change": -0.43, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.2, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 8.8, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 8.8, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 8.6, "percent_change": -0.38, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 8.6, "percent_change": -0.37, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 8.6, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.6, "percent_change": -0.35, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 8.8, "percent_change": -0.34, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 8.8, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.6, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.8, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.2, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.2, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.2, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.8, "percent_change": -0.4, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.8, "percent_change": -0.4, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.8, "percent_change": -0.4, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 7.8, "percent_change": -0.41, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 7.8, "percent_change": -0.41, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 7.8, "percent_change": -0.38, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 7.8, "percent_change": -0.38, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 7.8, "percent_change": -0.38, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.6, "percent_change": -0.2, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.0, "percent_change": -0.27, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.0, "percent_change": -0.27, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.0, "percent_change": -0.22, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.2, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.6, "percent_change": -0.2, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.8, "percent_change": -0.23, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.8, "percent_change": -0.23, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.2, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.2, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.4, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.4, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.4, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.4, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.4, "percent_change": -0.32, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.4, "percent_change": -0.34, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.4, "percent_change": -0.34, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.2, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.6, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.6, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.6, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.6, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.8, "percent_change": -0.34, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.8, "percent_change": -0.35, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 9.8, "percent_change": -0.36, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 9.8, "percent_change": -0.36, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.2, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 10.2, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.6, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.8, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 10.6, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.4, "percent_change": -0.32, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.4, "percent_change": -0.32, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.0, "percent_change": -0.34, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.2, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.6, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.4, "percent_change": -0.32, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.4, "percent_change": -0.32, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 10.4, "percent_change": -0.3, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.4, "percent_change": -0.32, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.4, "percent_change": -0.32, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 10.4, "percent_change": -0.32, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.8, "percent_change": -0.31, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.8, "percent_change": -0.32, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.2, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.4, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.0, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.0, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.0, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.6, "percent_change": -0.32, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.6, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.6, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.6, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.4, "percent_change": -0.35, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 9.8, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 9.8, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 10.0, "percent_change": -0.35, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.2, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.2, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.2, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.2, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.0, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.0, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 10.0, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.8, "percent_change": -0.34, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.8, "percent_change": -0.34, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.8, "percent_change": -0.34, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.6, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.6, "percent_change": -0.36, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.8, "percent_change": -0.35, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.2, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.2, "percent_change": -0.32, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 10.2, "percent_change": -0.31, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.8, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.8, "percent_change": -0.33, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.4, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.4, "percent_change": -0.27, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.4, "percent_change": -0.27, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.4, "percent_change": -0.28, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.4, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.4, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.4, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.4, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.4, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.4, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.4, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.4, "percent_change": -0.25, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.4, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.4, "percent_change": -0.26, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.0, "percent_change": -0.19, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.0, "percent_change": -0.19, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.2, "percent_change": -0.21, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.2, "percent_change": -0.31, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.8, "percent_change": -0.22, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.8, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.0, "percent_change": -0.23, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.0, "percent_change": -0.23, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.0, "percent_change": -0.25, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.5, "percent_change": -0.24, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 7.5, "percent_change": -0.42, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.5, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 8.0, "percent_change": 0.78, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16043", "stop_name": "Dauphin St & 32nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184839, 39.991561 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16210", "stop_name": "Dauphin St & 31st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183256, 39.991389 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16211", "stop_name": "Dauphin St & 30th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18165, 39.991171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16212", "stop_name": "Dauphin St & 29th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.990963 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2907", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180309, 39.989482 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3196", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180645, 39.987912 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "747", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180838, 39.98693 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25202", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181066, 39.985913 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "20430", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181594, 39.983505 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2887", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181966, 39.981881 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2901", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182266, 39.980445 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2891", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182578, 39.979017 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2895", "stop_name": "29th St & Master St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182878, 39.977661 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2908", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183154, 39.976386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "92", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183527, 39.974628 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2903", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183826, 39.973344 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2899", "stop_name": "29th St & Ogden St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.972353 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "2902", "stop_name": "29th St & Pennsylvania Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184235, 39.971408 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32489", "stop_name": "Pennsylvania Av & 27th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181714, 39.969198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32490", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178792, 39.967354 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32491", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177138, 39.967333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32492", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.967294 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32493", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174126, 39.967264 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32494", "stop_name": "21st St & Wallace St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172286, 39.966707 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32495", "stop_name": "21st St & Green St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172621, 39.965333 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32496", "stop_name": "21st St & Spring Garden St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172898, 39.96404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32497", "stop_name": "21st St & Hamilton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "16569", "stop_name": "21st St & Ben Franklin Pkwy", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.960659 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30106", "stop_name": "21st St & Ben Franklin Pkwy - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173894, 39.959553 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3103", "stop_name": "21st St & Winter St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174026, 39.958892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3098", "stop_name": "21st St & Race St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.957742 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "3092", "stop_name": "21st St & Arch St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174675, 39.955931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25204", "stop_name": "21st St & Market St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.953915 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "10281", "stop_name": "Market St & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1765, 39.954069 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21536", "stop_name": "Market St & 24th St - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17938, 39.954432 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30577", "stop_name": "Market St & Schuylkill Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181469, 39.954668 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32508", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185353, 39.955167 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30653", "stop_name": "Market St & JFK Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186935, 39.955348 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "573", "stop_name": "Market St & 33rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.189072, 39.95562 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21486", "stop_name": "34th St & Market St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.955705 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21448", "stop_name": "34th St & Chestnut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191839, 39.954474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21449", "stop_name": "34th St & Walnut St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192247, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21450", "stop_name": "34th St & Spruce St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192619, 39.950638 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "31393", "stop_name": "34th St & Convention Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192956, 39.948871 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "21439", "stop_name": "Civic Center Blvd & Osler Cir", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.947456 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30313", "stop_name": "Civic Center Blvd & W Service Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19595, 39.946896 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25039", "stop_name": "Grays Ferry Av & 33rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.197344, 39.93933 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25041", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194983, 39.938995 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25042", "stop_name": "Grays Ferry Av & 30th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193366, 39.938992 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "25043", "stop_name": "Grays Ferry Av & 29th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191807, 39.938998 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30369", "stop_name": "29th St & Wharton St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19212, 39.937392 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "30368", "stop_name": "29th St & Reed St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19236, 39.936188 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32485", "stop_name": "29th St & Tasker St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192852, 39.933735 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32486", "stop_name": "29th St & Morris St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193116, 39.93253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32487", "stop_name": "29th St & Mifflin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193655, 39.930086 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32488", "stop_name": "29th St & McKean St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193919, 39.928855 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "29th-Snyder", "stop_id": "32480", "stop_name": "29th St & Snyder Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194182, 39.92765 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32481", "stop_name": "Vare Av & Snyder Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.195316, 39.92759 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32499", "stop_name": "30th St & Mifflin St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.195201, 39.930116 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32506", "stop_name": "30th St & Morris St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194627, 39.932506 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32514", "stop_name": "30th St & Tasker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194363, 39.933711 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32507", "stop_name": "30th St & Reed St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193824, 39.936173 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32509", "stop_name": "30th St & Wharton St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 39.937386 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25921", "stop_name": "30th St & Grays Ferry Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.938938 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25108", "stop_name": "Grays Ferry Av & 31st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194794, 39.939245 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25109", "stop_name": "Grays Ferry Av & 32nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.5, "percent_change": 0.5, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196364, 39.939373 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25110", "stop_name": "Grays Ferry Av & 33rd St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.197201, 39.939544 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21437", "stop_name": "Health Sciences Dr & Civic Ctr Blvd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.196768, 39.945808 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21438", "stop_name": "Civic Center Blvd & Convention Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.192671, 39.949112 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21441", "stop_name": "33rd St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191912, 39.95011 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21442", "stop_name": "33rd St & Locust St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190503, 39.951249 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21443", "stop_name": "33rd St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190003, 39.9524 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30196", "stop_name": "33rd St & Chestnut St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189595, 39.954434 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21445", "stop_name": "33rd St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.955362 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21527", "stop_name": "Market St & 32nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.955404 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21528", "stop_name": "Market St & 31st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185436, 39.955051 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "21529", "stop_name": "Market St & Schuylkill Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181541, 39.954552 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10285", "stop_name": "Market St & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179251, 39.954253 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "10283", "stop_name": "Market St & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177929, 39.95409 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "20644", "stop_name": "Market St & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.953899 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32501", "stop_name": "20th St & JFK Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172944, 39.954463 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14916", "stop_name": "20th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.955507 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2836", "stop_name": "20th St & Race St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172331, 39.957345 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2799", "stop_name": "20th St & Ben Franklin Pkwy", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172027, 39.958695 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14917", "stop_name": "20th St & Wood St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.959923 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2802", "stop_name": "20th St & Callowhill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17154, 39.960717 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2812", "stop_name": "20th St & Hamilton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171204, 39.962171 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14920", "stop_name": "20th St & Spring Garden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170904, 39.963491 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2811", "stop_name": "20th St & Green St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170615, 39.964892 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14921", "stop_name": "20th St & Wallace St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.966283 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32502", "stop_name": "Fairmount Av & Corinthian Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171575, 39.967312 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32503", "stop_name": "Fairmount Av & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173831, 39.967371 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25158", "stop_name": "Fairmount Av & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.967391 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25160", "stop_name": "Fairmount Av & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176854, 39.96743 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30102", "stop_name": "Fairmount Av & 25th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178508, 39.967452 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "19699", "stop_name": "Pennsylvania Av & 26th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180065, 39.967874 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "15955", "stop_name": "Pennsylvania Av & 27th St - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18109, 39.968724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32504", "stop_name": "Pennsylvania Av & 29th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184023, 39.971247 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "32505", "stop_name": "29th St & Poplar St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183721, 39.973093 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "751", "stop_name": "29th St & Girard Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183433, 39.974423 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14942", "stop_name": "29th St & Thompson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183049, 39.976198 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "14943", "stop_name": "29th St & Master St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182773, 39.977474 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3201", "stop_name": "29th St & Jefferson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.978839 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2900", "stop_name": "29th St & Oxford St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182161, 39.980257 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2886", "stop_name": "29th St & Cecil B Moore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18186, 39.981685 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2896", "stop_name": "29th St & Montgomery Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181505, 39.983197 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "25184", "stop_name": "29th St & Sedgley Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180948, 39.98577 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "30103", "stop_name": "29th St & Ridge Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180768, 39.986654 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "3195", "stop_name": "29th St & Diamond St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18054, 39.987724 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "2906", "stop_name": "29th St & Susquehanna Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.989259 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "752", "stop_name": "29th St & Dauphin St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.0, "percent_change": 0.2, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179855, 39.990882 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16392", "stop_name": "York St & 30th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181089, 39.992732 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16393", "stop_name": "York St & 31st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182684, 39.992932 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16394", "stop_name": "York St & 32nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 9.5, "percent_change": 0.27, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184243, 39.993131 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "656", "stop_name": "York St & 33rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18592, 39.993349 ] } }, +{ "type": "Feature", "properties": { "route_id": "49", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "33rd-Dauphin", "stop_id": "16549", "stop_name": "33rd St & Dauphin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.5, "percent_change": 0.19, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186433, 39.991984 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.2, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.2, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "30844", "stop_name": "50th St & Parkside Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219328, 39.979825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.2, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21754", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221392, 39.980775 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.4, "percent_change": -0.16, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21757", "stop_name": "52nd St & Columbia Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224748, 39.980566 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "31270", "stop_name": "52nd St & Jefferson St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225341, 39.979594 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.2, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.0, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.0, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.0, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.8, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.8, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.8, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.6, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.6, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.4, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.2, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.0, "percent_change": -0.22, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.0, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.8, "percent_change": -0.29, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 10.2, "percent_change": -0.26, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 10.2, "percent_change": -0.25, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 10.2, "percent_change": -0.25, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.0, "percent_change": 2.33, "expected_wait_time_difference": -245.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.0, "percent_change": 2.33, "expected_wait_time_difference": -245.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.0, "percent_change": 2.33, "expected_wait_time_difference": -245.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.0, "percent_change": 2.33, "expected_wait_time_difference": -245.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 2.0, "percent_change": 4.0, "expected_wait_time_difference": -420.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 2.0, "percent_change": 9.0, "expected_wait_time_difference": -945.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 2.0, "percent_change": 9.0, "expected_wait_time_difference": -945.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.2, "percent_change": 0.28, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.2, "percent_change": 0.28, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30844", "stop_name": "50th St & Parkside Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219328, 39.979825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 9.2, "percent_change": 0.24, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21754", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.221392, 39.980775 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 9.2, "percent_change": 0.24, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21757", "stop_name": "52nd St & Columbia Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224748, 39.980566 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.6, "percent_change": 0.33, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "31270", "stop_name": "52nd St & Jefferson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225341, 39.979594 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 9.6, "percent_change": 0.3, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.6, "percent_change": 0.33, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 3.0, "percent_change": -0.63, "expected_wait_time_difference": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 3.0, "percent_change": -0.64, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.6, "percent_change": 0.33, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.6, "percent_change": 0.33, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 3.0, "percent_change": -0.63, "expected_wait_time_difference": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.6, "percent_change": 0.33, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.6, "percent_change": 0.33, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.6, "percent_change": 0.33, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.4, "percent_change": 0.31, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.2, "percent_change": 0.24, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -93.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.4, "percent_change": 0.27, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.4, "percent_change": 0.27, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.0, "percent_change": -0.62, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.4, "percent_change": 0.27, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 9.0, "percent_change": 0.36, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 9.0, "percent_change": 0.36, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.6, "percent_change": 0.3, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 3.0, "percent_change": -0.59, "expected_wait_time_difference": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.8, "percent_change": 0.29, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.8, "percent_change": 0.22, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 3.0, "percent_change": -0.61, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.2, "percent_change": 0.33, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.2, "percent_change": 0.33, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.2, "percent_change": 0.33, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.2, "percent_change": 0.33, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.8, "percent_change": 0.13, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.2, "percent_change": 0.33, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.2, "percent_change": 0.33, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.8, "percent_change": 0.16, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.2, "percent_change": -0.15, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.8, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.4, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.4, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.6, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.0, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.0, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.2, "percent_change": -0.38, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.2, "percent_change": -0.41, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.2, "percent_change": -0.43, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.2, "percent_change": -0.45, "expected_wait_time_difference": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.2, "percent_change": -0.47, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.2, "percent_change": -0.47, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21721", "stop_name": "52nd St & Heston St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.0, "percent_change": -0.84, "expected_wait_time_difference": 75.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225069, 39.979772 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.2, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21722", "stop_name": "52nd St & Parkside Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.2, "percent_change": -0.81, "expected_wait_time_difference": 60.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224037, 39.98143 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21724", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.2, "percent_change": -0.81, "expected_wait_time_difference": 60.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221581, 39.980721 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21725", "stop_name": "Parkside Av & 50th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 49.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219422, 39.979923 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.8, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.4, "percent_change": -0.77, "expected_wait_time_difference": 49.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21721", "stop_name": "52nd St & Heston St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225069, 39.979772 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.6, "percent_change": -0.32, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21722", "stop_name": "52nd St & Parkside Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224037, 39.98143 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.6, "percent_change": -0.32, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21724", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221581, 39.980721 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21725", "stop_name": "Parkside Av & 50th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219422, 39.979923 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 2.2, "percent_change": -0.7, "expected_wait_time_difference": 47.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30844", "stop_name": "50th St & Parkside Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 2.0, "percent_change": -0.73, "expected_wait_time_difference": 54.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219328, 39.979825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21754", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 2.0, "percent_change": -0.73, "expected_wait_time_difference": 54.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221392, 39.980775 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21757", "stop_name": "52nd St & Columbia Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 2.0, "percent_change": -0.73, "expected_wait_time_difference": 54.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224748, 39.980566 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "31270", "stop_name": "52nd St & Jefferson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 2.0, "percent_change": -0.73, "expected_wait_time_difference": 54.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225341, 39.979594 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.2, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.8, "percent_change": -0.75, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.2, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.8, "percent_change": -0.75, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.8, "percent_change": -0.75, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.2, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.2, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 1.8, "percent_change": -0.76, "expected_wait_time_difference": 63.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.2, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 1.8, "percent_change": -0.77, "expected_wait_time_difference": 64.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 2.0, "percent_change": -0.73, "expected_wait_time_difference": 54.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.2, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.8, "percent_change": -0.75, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 1.8, "percent_change": -0.75, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 1.8, "percent_change": -0.76, "expected_wait_time_difference": 63.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 1.8, "percent_change": -0.76, "expected_wait_time_difference": 63.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 1.8, "percent_change": -0.77, "expected_wait_time_difference": 64.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 1.8, "percent_change": -0.78, "expected_wait_time_difference": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.6, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 1.8, "percent_change": -0.78, "expected_wait_time_difference": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 1.8, "percent_change": -0.78, "expected_wait_time_difference": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.4, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 1.8, "percent_change": -0.78, "expected_wait_time_difference": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 1.8, "percent_change": -0.78, "expected_wait_time_difference": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.8, "percent_change": -0.79, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.8, "percent_change": -0.12, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.8, "percent_change": -0.79, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.8, "percent_change": -0.79, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.8, "percent_change": -0.79, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.8, "percent_change": -0.79, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.6, "percent_change": -0.81, "expected_wait_time_difference": 75.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.6, "percent_change": -0.81, "expected_wait_time_difference": 75.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.6, "percent_change": -0.81, "expected_wait_time_difference": 75.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.6, "percent_change": -0.81, "expected_wait_time_difference": 75.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.4, "percent_change": -0.83, "expected_wait_time_difference": 89.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 1.4, "percent_change": -0.83, "expected_wait_time_difference": 89.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 1.4, "percent_change": -0.84, "expected_wait_time_difference": 89.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 1.2, "percent_change": -0.86, "expected_wait_time_difference": 107.6 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 1.2, "percent_change": -0.85, "expected_wait_time_difference": 105.8 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.2, "percent_change": -0.85, "expected_wait_time_difference": 106.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.2, "percent_change": -0.85, "expected_wait_time_difference": 106.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.2, "percent_change": -0.85, "expected_wait_time_difference": 106.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.2, "percent_change": -0.85, "expected_wait_time_difference": 106.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.2, "percent_change": -0.85, "expected_wait_time_difference": 106.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 1.2, "percent_change": -0.85, "expected_wait_time_difference": 106.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.8, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.8, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 19.8, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 19.8, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 20.0, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.0, "percent_change": -0.26, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 20.2, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 20.2, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.8, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 19.4, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 19.6, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 20.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 20.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 20.0, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 20.2, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 25.6, "arrivals_during_cuts": 20.2, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 20.2, "percent_change": -0.22, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 20.0, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 19.6, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.6, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.2, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.2, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.0, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 18.8, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.8, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.6, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.6, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.6, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 18.8, "percent_change": -0.28, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 19.4, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.4, "percent_change": -0.25, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21721", "stop_name": "52nd St & Heston St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 0.8, "percent_change": -0.91, "expected_wait_time_difference": 170.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225069, 39.979772 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21722", "stop_name": "52nd St & Parkside Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 0.8, "percent_change": -0.91, "expected_wait_time_difference": 170.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224037, 39.98143 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21724", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 0.8, "percent_change": -0.91, "expected_wait_time_difference": 170.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221581, 39.980721 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21725", "stop_name": "Parkside Av & 50th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 0.8, "percent_change": -0.91, "expected_wait_time_difference": 170.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219422, 39.979923 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 0.8, "percent_change": -0.91, "expected_wait_time_difference": 170.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.4, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 9.6, "percent_change": 0.5, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.4, "percent_change": 0.31, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 9.4, "percent_change": 0.27, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 12.6, "percent_change": 0.17, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.2, "percent_change": 0.29, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 12.6, "percent_change": 0.17, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30844", "stop_name": "50th St & Parkside Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.4, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219328, 39.979825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.6, "percent_change": 0.19, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21754", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.4, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221392, 39.980775 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.8, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21757", "stop_name": "52nd St & Columbia Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.4, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224748, 39.980566 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.0, "percent_change": 0.23, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "31270", "stop_name": "52nd St & Jefferson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.4, "percent_change": 0.28, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225341, 39.979594 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.4, "percent_change": 0.19, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.2, "percent_change": 0.24, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.2, "percent_change": 0.24, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.2, "percent_change": 0.24, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.2, "percent_change": 0.24, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.2, "percent_change": 0.19, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.2, "percent_change": 0.19, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.8, "percent_change": 0.26, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.8, "percent_change": 0.26, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.8, "percent_change": 0.26, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.8, "percent_change": 0.26, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.0, "percent_change": 0.25, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.4, "percent_change": 0.19, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.4, "percent_change": 0.19, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.6, "percent_change": 0.32, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.6, "percent_change": 0.32, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.6, "percent_change": 0.32, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.6, "percent_change": 0.27, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 18.2, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 18.2, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 18.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 18.2, "percent_change": -0.11, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.8, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.8, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.2, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.4, "percent_change": -0.14, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.4, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.4, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 18.4, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 18.4, "percent_change": -0.12, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.6, "percent_change": -0.13, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.0, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 19.0, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.0, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.0, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.0, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 19.2, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 19.0, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 19.0, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 18.8, "percent_change": -0.1, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 19.0, "percent_change": -0.09, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 19.0, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21721", "stop_name": "52nd St & Heston St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225069, 39.979772 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21722", "stop_name": "52nd St & Parkside Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224037, 39.98143 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.4, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21724", "stop_name": "Parkside Av & 51st St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.221581, 39.980721 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21725", "stop_name": "Parkside Av & 50th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219422, 39.979923 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "30771", "stop_name": "50th & Parkside Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219687, 39.978201 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.2, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 6.4, "percent_change": 0.52, "expected_wait_time_difference": -9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 6.8, "percent_change": 0.48, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 6.8, "percent_change": 0.62, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.4, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 13.2, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.6, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 13.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.6, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.4, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 13.8, "percent_change": -0.13, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.2, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 15.0, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.2, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.4, "percent_change": -0.17, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 16.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.0, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 16.0, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 16.0, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 16.0, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 16.0, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.2, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.2, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.2, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.4, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.4, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.4, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.4, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.4, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.4, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.6, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 16.6, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.6, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.6, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.6, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 16.4, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.4, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.4, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.6, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.2, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.4, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.2, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.2, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 16.2, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 16.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.6, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.5, "percent_change": -0.54, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.5, "percent_change": -0.54, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 6.0, "percent_change": -0.57, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 6.0, "percent_change": -0.56, "expected_wait_time_difference": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 5.5, "percent_change": -0.56, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.5, "percent_change": -0.54, "expected_wait_time_difference": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.5, "percent_change": -0.54, "expected_wait_time_difference": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.5, "percent_change": -0.54, "expected_wait_time_difference": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.5, "percent_change": -0.54, "expected_wait_time_difference": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.5, "percent_change": -0.54, "expected_wait_time_difference": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.5, "percent_change": -0.54, "expected_wait_time_difference": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.5, "percent_change": -0.54, "expected_wait_time_difference": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.0, "percent_change": -0.58, "expected_wait_time_difference": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.0, "percent_change": -0.58, "expected_wait_time_difference": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.0, "percent_change": -0.58, "expected_wait_time_difference": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.0, "percent_change": -0.58, "expected_wait_time_difference": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.0, "percent_change": -0.58, "expected_wait_time_difference": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 5.0, "percent_change": -0.58, "expected_wait_time_difference": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 4.0, "percent_change": -0.62, "expected_wait_time_difference": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 4.5, "percent_change": -0.53, "expected_wait_time_difference": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 18.5, "percent_change": -0.26, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.5, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 19.0, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 18.5, "percent_change": -0.26, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 18.5, "percent_change": -0.26, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 18.5, "percent_change": -0.26, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 17.5, "percent_change": -0.3, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 25.0, "arrivals_during_cuts": 17.5, "percent_change": -0.3, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 17.5, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 17.5, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 17.5, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 17.5, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 17.5, "percent_change": -0.29, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 24.5, "arrivals_during_cuts": 18.0, "percent_change": -0.27, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 18.0, "percent_change": -0.2, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 18.0, "percent_change": -0.2, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 18.0, "percent_change": -0.2, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 18.0, "percent_change": -0.2, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 18.0, "percent_change": -0.2, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.0, "percent_change": -0.25, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.0, "percent_change": -0.25, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 18.5, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 18.5, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 18.5, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 18.5, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 18.5, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.0, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.0, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.5, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.5, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.0, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.0, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.0, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 18.0, "percent_change": -0.23, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 23.5, "arrivals_during_cuts": 18.0, "percent_change": -0.23, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 5.0, "percent_change": -0.52, "expected_wait_time_difference": 15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "6239", "stop_name": "City Av & 53rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234365, 39.997449 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 13.5, "percent_change": -0.23, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 13.5, "percent_change": -0.25, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.5, "percent_change": -0.47, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.5, "percent_change": -0.47, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.0, "percent_change": -0.41, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.0, "percent_change": -0.41, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.0, "percent_change": -0.41, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 11.5, "percent_change": -0.38, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 11.5, "percent_change": -0.39, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 11.5, "percent_change": -0.39, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 11.5, "percent_change": -0.39, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.0, "percent_change": -0.37, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.0, "percent_change": -0.32, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.0, "percent_change": -0.32, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.0, "percent_change": -0.33, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.0, "percent_change": -0.33, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 12.5, "percent_change": -0.36, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.0, "percent_change": -0.32, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 18.5, "arrivals_during_cuts": 12.5, "percent_change": -0.32, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.5, "percent_change": -0.34, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.5, "percent_change": -0.31, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.5, "percent_change": -0.31, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.5, "percent_change": -0.31, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.5, "percent_change": -0.31, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.5, "percent_change": -0.31, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.0, "percent_change": -0.33, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.0, "percent_change": -0.33, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.0, "percent_change": -0.33, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 19.5, "arrivals_during_cuts": 13.0, "percent_change": -0.33, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "31039", "stop_name": "Parkwest Town Center", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 2.5, "percent_change": -0.69, "expected_wait_time_difference": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222733, 39.978715 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.5, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21683", "stop_name": "54th St & Overbrook Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 11.0, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234136, 39.994888 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21684", "stop_name": "54th St & Woodbine Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.5, "percent_change": -0.25, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233789, 39.992335 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21685", "stop_name": "54th St & Woodcrest Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.5, "percent_change": -0.25, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233604, 39.990799 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21686", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23303, 39.988995 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21687", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232514, 39.987468 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21688", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231975, 39.985941 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "22217", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231365, 39.984155 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21689", "stop_name": "54th St & Upland Way", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230826, 39.982575 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21690", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230321, 39.981771 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "25982", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228269, 39.980438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21691", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227301, 39.980097 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "22218", "stop_name": "Jefferson St & 52nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225507, 39.979443 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21692", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22692, 39.977017 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21693", "stop_name": "52nd St & Media St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.975812 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21694", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 39.974107 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21695", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226176, 39.97275 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "767", "stop_name": "52nd St & Girard Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 39.971241 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21696", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22543, 39.969313 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21697", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225186, 39.967929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21698", "stop_name": "52nd St & Parrish St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224954, 39.966411 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "768", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224651, 39.964697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21699", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224325, 39.963153 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21700", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224696, 39.961404 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "769", "stop_name": "52nd St & Market St - south", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224948, 39.9602 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21701", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225283, 39.958567 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21702", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.957059 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21703", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225906, 39.955569 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21704", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226133, 39.954427 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21705", "stop_name": "52nd St & Pine St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226313, 39.953633 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21706", "stop_name": "52nd St & Larchwood St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226612, 39.952098 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21707", "stop_name": "52nd St & Cedar Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226936, 39.950564 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21708", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227318, 39.948797 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "771", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227498, 39.94787 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21709", "stop_name": "Whitby Av & 53rd St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228731, 39.946006 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21710", "stop_name": "54th St & Whitby Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229501, 39.945133 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21711", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 39.944158 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21712", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226945, 39.942969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21713", "stop_name": "54th St & Warrington St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225661, 39.941887 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21714", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224295, 39.940724 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "776", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.5, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223058, 39.939696 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21715", "stop_name": "54th St & Kingsessing Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221798, 39.938659 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21716", "stop_name": "Greenway Av & 54th St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.220018, 39.937522 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21717", "stop_name": "Greenway Av & 53rd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218883, 39.938306 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21718", "stop_name": "Greenway Av & 52nd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21751, 39.939267 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21719", "stop_name": "Greenway Av & 51st St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216374, 39.940069 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21720", "stop_name": "Greenway Av & 50th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.5, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 39.940959 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "30185", "stop_name": "Greenway Av & 49th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 39.941832 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "49th-Woodland", "stop_id": "21256", "stop_name": "49th St & Woodland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212759, 39.940866 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "317", "stop_name": "Woodland Av & 50th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213848, 39.940064 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20741", "stop_name": "Woodland Av & 51st St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215102, 39.939192 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20742", "stop_name": "Woodland Av & 52nd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216214, 39.938408 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20743", "stop_name": "Woodland Av & 53rd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217598, 39.937438 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21727", "stop_name": "54th St & Woodland Av - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219112, 39.93653 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21728", "stop_name": "54th St & Greenway Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220113, 39.93738 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21730", "stop_name": "54th St & Kingsessing Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221727, 39.938739 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21257", "stop_name": "54th St & Chester Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222775, 39.93958 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21731", "stop_name": "54th St & Springfield Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224035, 39.940697 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21732", "stop_name": "54th St & Warrington Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225437, 39.94186 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21733", "stop_name": "54th St & Florence Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226685, 39.942951 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21734", "stop_name": "54th St & Willows Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.0, "percent_change": -0.2, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 39.94414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21735", "stop_name": "54th St & Whitby Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229418, 39.945258 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21736", "stop_name": "Whitby Av & 53rd St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228756, 39.94581 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "25520", "stop_name": "Whitby Av & 52nd St - MBNS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227454, 39.946727 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "777", "stop_name": "52nd St & Baltimore Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227262, 39.947709 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21737", "stop_name": "52nd St & Catherine St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227081, 39.949118 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21738", "stop_name": "52nd St & Cedar Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.950626 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21739", "stop_name": "52nd St & Larchwood Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226483, 39.951929 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21740", "stop_name": "52nd St & Pine St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226124, 39.953695 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21741", "stop_name": "52nd St & Spruce St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225884, 39.954748 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21742", "stop_name": "52nd St & Locust St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225645, 39.955979 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21743", "stop_name": "52nd St & Walnut St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225453, 39.956854 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "3574", "stop_name": "52nd St & Chestnut St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225154, 39.958361 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "779", "stop_name": "52nd St & Market St - north", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224878, 39.959825 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21744", "stop_name": "52nd St & Arch St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224459, 39.961725 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21745", "stop_name": "52nd St & Race St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224196, 39.962992 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "780", "stop_name": "52nd St & Haverford Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.5, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224591, 39.965197 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21746", "stop_name": "52nd St & Parrish St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.5, "percent_change": -0.26, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224812, 39.966536 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21747", "stop_name": "52nd St & Westminster Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225078, 39.968286 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21748", "stop_name": "52nd St & Wyalusing Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225358, 39.969678 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "781", "stop_name": "52nd St & Girard Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225743, 39.971339 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21749", "stop_name": "52nd St & Thompson St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22608, 39.973116 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21750", "stop_name": "52nd St & Master St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226301, 39.974401 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21751", "stop_name": "52nd St & Warren St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226673, 39.976455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21752", "stop_name": "52nd St & Lancaster Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226422, 39.977632 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21758", "stop_name": "Jefferson St & 52nd St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225554, 39.979577 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21759", "stop_name": "Jefferson St & Lindenwood St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227041, 39.980123 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "22290", "stop_name": "Jefferson St & 53rd St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227997, 39.980455 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21760", "stop_name": "54th St & Oxford St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229967, 39.981467 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21761", "stop_name": "54th St & Columbia Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230602, 39.982414 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21762", "stop_name": "54th St & Montgomery Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231165, 39.984003 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21763", "stop_name": "54th St & Berks St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231774, 39.985789 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21764", "stop_name": "54th St & Lebanon Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232314, 39.987325 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21765", "stop_name": "54th St & Gainor Rd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 39.988852 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "21766", "stop_name": "54th St & Woodcrest Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233462, 39.990826 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "31610", "stop_name": "Cardinal Av & City Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241441, 39.994024 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "20591", "stop_name": "City Av & 54th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235383, 39.996969 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "52", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "54th-City", "stop_id": "30138", "stop_name": "54th St & City Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23457, 39.995986 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.0, "percent_change": -0.27, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.2, "percent_change": -0.3, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.4, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.8, "percent_change": -0.36, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 7.2, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 7.2, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 7.2, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 7.2, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 7.2, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 7.2, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.2, "percent_change": -0.35, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.2, "percent_change": -0.35, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.2, "percent_change": -0.35, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.4, "percent_change": -0.33, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.4, "percent_change": -0.33, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.6, "percent_change": -0.31, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.8, "percent_change": -0.28, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.6, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.6, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 7.6, "percent_change": -0.28, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.6, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.6, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.6, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.6, "percent_change": -0.3, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.8, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.4, "percent_change": -0.16, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.4, "percent_change": -0.16, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.8, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.8, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 6.8, "percent_change": 2.78, "expected_wait_time_difference": -61.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 6.8, "percent_change": 2.4, "expected_wait_time_difference": -52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 5.5, "percent_change": 2.67, "expected_wait_time_difference": -43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 8.0, "percent_change": 0.45, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16459", "stop_name": "Sedgwick St & Wayne Av Loop", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.200113, 40.044257 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "788", "stop_name": "Wayne Av & Carpenter Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199182, 40.043444 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16460", "stop_name": "Wayne Av & Westview St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.198025, 40.042754 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16461", "stop_name": "Wayne Av & Arbutus St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.196017, 40.042144 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16462", "stop_name": "Wayne Av & Springer St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194423, 40.041587 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16463", "stop_name": "Wayne Av & Hortter St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.194049, 40.04015 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16464", "stop_name": "Wayne Av & Lincoln Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.192078, 40.039191 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17029", "stop_name": "Wayne Av & Cliveden St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.191298, 40.038886 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17039", "stop_name": "Wayne Av & Johnson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.190165, 40.038232 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28549", "stop_name": "Wayne Av & Johnson St - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188797, 40.037426 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16466", "stop_name": "Wayne Av & Washington Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.187605, 40.036719 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16467", "stop_name": "Wayne Av & Tulpehocken St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186437, 40.036012 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16468", "stop_name": "Wayne Av & Walnut Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.18449, 40.034874 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16469", "stop_name": "Wayne Av & Harvey St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183051, 40.034041 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16470", "stop_name": "Wayne Av & Rittenhouse St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.033074 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "31352", "stop_name": "Wayne Av & Chelten Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179086, 40.031775 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16471", "stop_name": "Wayne Av & School House Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176833, 40.030495 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16472", "stop_name": "Wayne Av & Coulter St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174744, 40.029277 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16473", "stop_name": "Wayne Av & Queen Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172668, 40.028059 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16474", "stop_name": "Wayne Av & Hansberry St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171182, 40.027234 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "790", "stop_name": "Wayne Av & Manheim St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 40.026204 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16475", "stop_name": "Wayne Av & Seymour St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 40.025389 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16476", "stop_name": "Wayne Av & Logan St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166274, 40.024556 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16477", "stop_name": "Wayne Av & Abbottsford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 40.023713 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16478", "stop_name": "Wayne Av & Apsley St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16336, 40.022943 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "791", "stop_name": "Wayne Av & Berkley St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162239, 40.022334 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28550", "stop_name": "Wayne Av & Clarissa St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160423, 40.021339 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "28551", "stop_name": "Clarissa St & Wayne Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160567, 40.02075 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16479", "stop_name": "Clarissa St & Dennie St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 40.019036 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16480", "stop_name": "Clarissa St & Bristol St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159172, 40.017731 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16481", "stop_name": "Clarissa St & Juniata St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158372, 40.016694 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16482", "stop_name": "Clarissa St & Hunting Park Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156843, 40.014762 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16483", "stop_name": "18th St & Pike St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 40.01321 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "12058", "stop_name": "Pulaski Av & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 40.011155 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "2675", "stop_name": "17th St & Erie Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15608, 40.010048 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17037", "stop_name": "Erie Av & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154794, 40.009644 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17038", "stop_name": "Erie Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 40.009408 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "21260", "stop_name": "Erie Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151439, 40.009208 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17419", "stop_name": "Erie Av & Elder St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149844, 40.009053 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16489", "stop_name": "Erie Av & Old York Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147706, 40.008727 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17421", "stop_name": "Erie Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145994, 40.008491 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16491", "stop_name": "10th St & Erie Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 40.008505 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16492", "stop_name": "10th St & Butler St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143896, 40.00987 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16493", "stop_name": "10th St & Pike St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143583, 40.011324 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "16494", "stop_name": "10th St & Luzerne St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 40.012795 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17372", "stop_name": "9th St & Lycoming St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 7.0, "percent_change": 2.5, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141409, 40.01413 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "17374", "stop_name": "9th St & Hunting Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 7.0, "percent_change": 2.5, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 40.015736 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32313", "stop_name": "Hunting Park Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 7.0, "percent_change": 2.5, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138981, 40.015472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32314", "stop_name": "Hunting Park Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 7.0, "percent_change": 2.5, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137315, 40.015263 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32315", "stop_name": "Hunting Park Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 7.0, "percent_change": 2.5, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13533, 40.014991 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32317", "stop_name": "Hunting Park Av & American St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 7.0, "percent_change": 2.5, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131267, 40.014472 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32318", "stop_name": "Hunting Park Av & Front St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 7.0, "percent_change": 1.8, "expected_wait_time_difference": -38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12614, 40.0138 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32369", "stop_name": "Hunting Park Av & Macalester St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 7.0, "percent_change": 1.8, "expected_wait_time_difference": -38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122324, 40.013299 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "32320", "stop_name": "Hunting Park Av & Whitaker Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 7.0, "percent_change": 1.33, "expected_wait_time_difference": -28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119678, 40.012972 ] } }, +{ "type": "Feature", "properties": { "route_id": "53", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20391", "stop_name": "Hunting Park Av & G St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 7.0, "percent_change": 1.33, "expected_wait_time_difference": -28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114115, 40.012279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.6, "percent_change": 1.0, "expected_wait_time_difference": -131.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.6, "percent_change": 1.67, "expected_wait_time_difference": -218.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.2, "percent_change": 0.5, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.6, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.4, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.4, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.4, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.4, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "817", "stop_name": "Turnpike Dr & Angelo's", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103115, 40.161958 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.6, "percent_change": -0.24, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.0, "percent_change": -0.23, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.2, "percent_change": -0.31, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.4, "percent_change": -0.25, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.4, "percent_change": 0.42, "expected_wait_time_difference": -11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.0, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 15.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 15.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 15.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.4, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.4, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.4, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "817", "stop_name": "Turnpike Dr & Angelo's", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103115, 40.161958 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.2, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.2, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.2, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.4, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.2, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.2, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.2, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 12.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.8, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.8, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.8, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.8, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 12.8, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.2, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.6, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.6, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.6, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.4, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.4, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.4, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.4, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.4, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.2, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.2, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.2, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.2, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.2, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 14.0, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.0, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.2, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 14.2, "percent_change": 0.09, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.8, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.8, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 14.2, "percent_change": 0.11, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.6, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 13.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 11.4, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "817", "stop_name": "Turnpike Dr & Angelo's", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.103115, 40.161958 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 2.8, "percent_change": -0.36, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32425", "stop_name": "Titus Av & Bunnell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143448, 40.219878 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32426", "stop_name": "County Line Rd & Easton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139687, 40.211979 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16802", "stop_name": "Easton Rd & Fitzwatertown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122054, 40.155987 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16803", "stop_name": "Easton Rd & Russell Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12172, 40.153927 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16804", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121548, 40.152757 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16805", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121209, 40.15173 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16806", "stop_name": "Easton Rd & Dallas Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120751, 40.15081 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16807", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119835, 40.149076 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16809", "stop_name": "Easton Rd & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118658, 40.147261 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16811", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117327, 40.145696 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16814", "stop_name": "Easton Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11675, 40.144953 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30431", "stop_name": "Easton Rd & Old York Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.142721 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30155", "stop_name": "Easton Rd & Moreland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117049, 40.141678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30428", "stop_name": "Moreland Rd & Easton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117274, 40.141643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 73.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 73.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 73.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.2, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.6, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.6, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 1.8, "percent_change": -0.71, "expected_wait_time_difference": 59.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 1.8, "percent_change": -0.68, "expected_wait_time_difference": 56.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 2.0, "percent_change": -0.63, "expected_wait_time_difference": 47.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 2.0, "percent_change": -0.63, "expected_wait_time_difference": 47.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.0, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.5, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.5, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.5, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.5, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.5, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.5, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 12.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 12.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.5, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.5, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "19064", "stop_name": "Old York Rd & Grange Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144337, 40.041724 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16595", "stop_name": "Old York Rd & Nedro Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144344, 40.042858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11217", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 40.044483 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16597", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145182, 40.046171 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16598", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145401, 40.04776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16599", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 40.04858 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16602", "stop_name": "Old York Rd & Medary Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144067, 40.049971 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16604", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143592, 40.050675 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15455", "stop_name": "Broad St & 65th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141777, 40.051965 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "15463", "stop_name": "Broad St & 66th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141416, 40.053463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16611", "stop_name": "Old York Rd & Broad St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 40.054908 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16612", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139926, 40.056477 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16613", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139045, 40.057903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16614", "stop_name": "Old York Rd & Lakeside Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138604, 40.058625 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16615", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138152, 40.059364 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16616", "stop_name": "Old York Rd & 71st Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.060817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "806", "stop_name": "Old York Rd & Cheltenham Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136414, 40.062109 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16618", "stop_name": "Old York Rd & Valley Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135914, 40.062974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27455", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134864, 40.065131 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16619", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134526, 40.066853 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16620", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.068816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16621", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133788, 40.070868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16622", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131626, 40.073014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16623", "stop_name": "Old York Rd & Chelten Hills Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129538, 40.074499 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16624", "stop_name": "Old York Rd & Stahr Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128219, 40.07588 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16625", "stop_name": "Old York Rd & Church Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12734, 40.076824 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16626", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126376, 40.07808 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27456", "stop_name": "Old York Rd & Foxcroft Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126893, 40.08183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16629", "stop_name": "Old York Rd & Meetinghouse Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127477, 40.083518 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16630", "stop_name": "Old York Rd & Breyer Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127836, 40.085277 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "18595", "stop_name": "Old York Rd & Township Line Rd- MBN", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127808, 40.086357 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16632", "stop_name": "Old York Rd & Lenox Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127161, 40.088391 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "11334", "stop_name": "Old York Rd & Pavilion Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126504, 40.089897 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "17456", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125452, 40.092448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16635", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125595, 40.094938 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16636", "stop_name": "Old York Rd & West Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125744, 40.096027 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16637", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125776, 40.096795 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16638", "stop_name": "Old York Rd & Vista Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125793, 40.098536 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16639", "stop_name": "Old York Rd & Rydal Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125847, 40.099687 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16640", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125625, 40.101677 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16641", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125464, 40.103542 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16642", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124902, 40.104817 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "807", "stop_name": "Old York Rd & Fairway - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123185, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31020", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123338, 40.110758 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16645", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122977, 40.112256 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27464", "stop_name": "Old York Rd & Adams Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122356, 40.11337 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16646", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12176, 40.114404 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27465", "stop_name": "Old York Rd & Eckard Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120746, 40.116214 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16647", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120174, 40.117167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16648", "stop_name": "Old York Rd & Woodland Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119232, 40.118816 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16649", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11817, 40.120706 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16650", "stop_name": "Old York Rd & Rockwell Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117202, 40.122828 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16651", "stop_name": "Old York Rd & London Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117162, 40.123917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16652", "stop_name": "Old York Rd & Jericho Rd - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11718, 40.125238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "808", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116946, 40.127228 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16653", "stop_name": "Old York Rd & Butler Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11645, 40.129601 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16654", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116186, 40.130591 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16655", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115633, 40.132374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16656", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 40.134622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16657", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114483, 40.13546 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16659", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112681, 40.138713 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16660", "stop_name": "Old York Rd & Quigley Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111964, 40.140202 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16661", "stop_name": "Old York Rd & Church St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11197, 40.141487 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16663", "stop_name": "Old York Rd & Memorial Park/Easton Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115441, 40.143701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27466", "stop_name": "Park Av & Easton Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.14433 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "20846", "stop_name": "Park Av & Moreland Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11915, 40.143183 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16667", "stop_name": "Easton Rd & Center Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11702, 40.145543 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16670", "stop_name": "Easton Rd & Allison Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118822, 40.14769 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16671", "stop_name": "Easton Rd & Barrett Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119598, 40.148968 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16673", "stop_name": "Easton Rd & Lincoln Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120409, 40.150514 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16674", "stop_name": "Easton Rd & Ellis Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120972, 40.151622 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16675", "stop_name": "Easton Rd & Gilpin Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121382, 40.152775 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16676", "stop_name": "Easton Rd & Russell Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121554, 40.153936 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16677", "stop_name": "Easton Rd & Fitzwatertown Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121724, 40.155873 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27467", "stop_name": "Easton Rd & Fitzwatertown Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.157874 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16678", "stop_name": "Easton Rd & Wyandotte Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122903, 40.159741 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16679", "stop_name": "Easton Rd & Maryland Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123639, 40.162063 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16680", "stop_name": "Easton Rd & Linden Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126781, 40.169818 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16681", "stop_name": "Easton Rd & Blair Mill Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127988, 40.172883 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27469", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12803, 40.174097 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27470", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128116, 40.176204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16682", "stop_name": "Easton Rd & Horsham Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128216, 40.177766 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27471", "stop_name": "Easton Rd & Birch Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130456, 40.180244 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16683", "stop_name": "Easton Rd & Meetinghouse Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131371, 40.182558 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16685", "stop_name": "Easton Rd & Columbia Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1331, 40.185641 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27472", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133865, 40.186857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27473", "stop_name": "Easton Rd & Maple Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 40.189503 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27474", "stop_name": "Easton Rd & Maple Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137295, 40.194077 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27475", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137902, 40.196194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27476", "stop_name": "Easton Rd & Moreland Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139229, 40.202177 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31725", "stop_name": "Easton Rd & County Line Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139711, 40.205999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16686", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139309, 40.211532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27477", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139462, 40.21463 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16687", "stop_name": "Easton Rd & Paul Valley Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139616, 40.218672 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32335", "stop_name": "Easton Rd & Paul Valley - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139803, 40.221209 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27814", "stop_name": "Easton Rd & Paul Valley Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139912, 40.223646 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "30182", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138776, 40.229026 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27478", "stop_name": "Easton Rd & Street Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137684, 40.232174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27479", "stop_name": "Easton Rd & Valley Sq Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137178, 40.234119 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27480", "stop_name": "Easton Rd & Georges Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136901, 40.235341 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16688", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136462, 40.238098 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16689", "stop_name": "Easton Rd & K St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136339, 40.242115 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16690", "stop_name": "Easton Rd & Oxford Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 40.245354 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16691", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133077, 40.251176 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16692", "stop_name": "Easton Rd & Kelly Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130803, 40.26448 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32070", "stop_name": "Easton Rd & Kelly Dr - 1 MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130703, 40.265801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27482", "stop_name": "Easton Rd & Kelly Dr - 2 MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130004, 40.268361 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27481", "stop_name": "Easton Rd & Almshouse Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129147, 40.271127 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16693", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128117, 40.274266 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16694", "stop_name": "Easton Rd & Edison Furlong Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125941, 40.281089 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27483", "stop_name": "Easton Rd & Sauerman Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127574, 40.290511 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "31726", "stop_name": "Easton Rd & Sauerman Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127586, 40.293233 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16695", "stop_name": "Main St & Steeplechase Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128322, 40.301572 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16750", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128752, 40.303832 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27484", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129144, 40.306537 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16754", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129963, 40.30919 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16755", "stop_name": "Main St & State St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130411, 40.309941 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16757", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130506, 40.312905 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16758", "stop_name": "Main St & Union St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130545, 40.314798 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16759", "stop_name": "Main St & Spruce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13055, 40.316547 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16760", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130588, 40.31869 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16761", "stop_name": "Main St & East St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130646, 40.321877 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "16762", "stop_name": "Main St & Fonthill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130233, 40.324179 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "27485", "stop_name": "Main St & Chapman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12993, 40.325615 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "32223", "stop_name": "Main St & Swamp Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129372, 40.328479 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Cross Keys via Doylestown", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32417", "stop_name": "Valley Square Blvd & Main St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134163, 40.229238 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "809", "stop_name": "Willow Grove Park Mall", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 0.5, "percent_change": -0.86, "expected_wait_time_difference": 257.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122493, 40.142263 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "814", "stop_name": "Cross Keys Center Doylestown", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133338, 40.334014 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16764", "stop_name": "Main St & Swamp Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129535, 40.329167 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31567", "stop_name": "Moreland Rd & Park Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 107.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119672, 40.142801 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27486", "stop_name": "Main St & Chapman Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 40.325785 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30429", "stop_name": "Easton Rd & Moreland Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116788, 40.141776 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16765", "stop_name": "Main St & Fonthill Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130363, 40.324349 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30430", "stop_name": "Easton Rd & Old York Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116299, 40.14248 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17443", "stop_name": "Old York Rd & Davisville Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114769, 40.143074 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32038", "stop_name": "Main St & Old Dublin Pk", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130774, 40.322439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16767", "stop_name": "Main St & Veterans Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130787, 40.319378 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17444", "stop_name": "Old York Rd & Cherry St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112902, 40.14223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16768", "stop_name": "Main St & Spruce St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 40.316699 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17445", "stop_name": "Old York Rd & Church St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112102, 40.141122 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16769", "stop_name": "Main St & Union St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130723, 40.31495 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17447", "stop_name": "Old York Rd & Quigley Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112224, 40.140194 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16770", "stop_name": "Main St & Broad St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13067, 40.313307 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17450", "stop_name": "Old York Rd & Moreland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11275, 40.139195 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16772", "stop_name": "Main St & State St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130636, 40.310085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17452", "stop_name": "Old York Rd & Parkview Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114636, 40.135719 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16773", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130212, 40.309298 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17454", "stop_name": "Old York Rd & Old Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115101, 40.134917 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16775", "stop_name": "Main St & Bridge St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 40.306743 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17457", "stop_name": "Old York Rd & Rubicam Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115881, 40.132571 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16777", "stop_name": "Main St & Hart Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128929, 40.303984 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17459", "stop_name": "Old York Rd & Chester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116397, 40.130904 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17460", "stop_name": "Old York Rd & Hamilton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11677, 40.129521 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30183", "stop_name": "Main St & Clemens Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128686, 40.30251 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27487", "stop_name": "Main St & Commerce Ctr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127799, 40.293359 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "821", "stop_name": "Old York Rd & Edgehill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11717, 40.127505 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17461", "stop_name": "Old York Rd & Jericho Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11745, 40.125747 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27488", "stop_name": "Main St & New Britain Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128829, 40.291085 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16785", "stop_name": "Easton Rd & Edison Furlong Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126145, 40.280643 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17463", "stop_name": "Old York Rd & London Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117469, 40.124078 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17466", "stop_name": "Old York Rd & Rockwell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117523, 40.122614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27489", "stop_name": "Easton Rd & Almshouse Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128341, 40.274525 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16786", "stop_name": "Easton Rd & Almshouse Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 40.270913 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17467", "stop_name": "Old York Rd & Keith Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118323, 40.120956 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27490", "stop_name": "Easton Rd & Almshouse Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130397, 40.268023 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27533", "stop_name": "Old York Rd & Woodland Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119587, 40.118764 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16788", "stop_name": "Easton Rd & Kelly Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131007, 40.26399 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17468", "stop_name": "Old York Rd & Horace Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120243, 40.117605 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16789", "stop_name": "Easton Rd & Bristol Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1333, 40.251614 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17469", "stop_name": "Old York Rd & Guernsey Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.116223 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16790", "stop_name": "Easton Rd & Freedom Way", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136113, 40.245328 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17470", "stop_name": "Old York Rd & Susquehanna Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121913, 40.11469 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27491", "stop_name": "Easton Rd & Upper Barness Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136492, 40.242374 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27534", "stop_name": "Old York Rd & Brook Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123153, 40.112516 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16791", "stop_name": "Easton Rd & Shetland Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136603, 40.238554 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17472", "stop_name": "Old York Rd & Canterbury Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123633, 40.110892 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27492", "stop_name": "Easton Rd & Oakfield Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137236, 40.234548 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "822", "stop_name": "Old York Rd & Harte Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123934, 40.107037 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17473", "stop_name": "Old York Rd & Baeder Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125079, 40.105032 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27493", "stop_name": "Easton Rd & Street Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137969, 40.232184 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17474", "stop_name": "Old York Rd & Rodman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125723, 40.103668 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31021", "stop_name": "Easton Rd & Street Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138665, 40.229999 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17475", "stop_name": "Old York Rd & Madeira Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125908, 40.101901 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "816", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139353, 40.228292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17476", "stop_name": "Old York Rd & Cloverly Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.100241 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27494", "stop_name": "Easton Rd & Titus Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140077, 40.223789 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16792", "stop_name": "Easton Rd & Titus Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139906, 40.219272 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17477", "stop_name": "Old York Rd & Hillside Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12598, 40.099036 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17478", "stop_name": "Old York Rd & Homestead Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12593, 40.096903 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27495", "stop_name": "Easton Rd & Titus Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139748, 40.21738 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17479", "stop_name": "Old York Rd & West Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12591, 40.095948 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27496", "stop_name": "Easton Rd & County Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139496, 40.212211 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17480", "stop_name": "Old York Rd & Greenwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12583, 40.095207 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27497", "stop_name": "Easton Rd & County Line Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139851, 40.206392 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16715", "stop_name": "Easton Rd & Moreland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138138, 40.196435 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17481", "stop_name": "Old York Rd & Washington Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12539, 40.093028 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27499", "stop_name": "Easton Rd & Maple Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137028, 40.192532 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "30720", "stop_name": "Old York Rd & Wyncote Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126668, 40.090192 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16794", "stop_name": "Easton Rd & Maple Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13549, 40.189137 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17727", "stop_name": "Old York Rd & Township Line Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12797, 40.087268 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17487", "stop_name": "Old York Rd & Bryer Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12812, 40.085439 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27502", "stop_name": "Easton Rd & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 40.186974 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16795", "stop_name": "Easton Rd & Homestead Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132759, 40.184846 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17514", "stop_name": "Old York Rd & Meetinghouse Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127689, 40.083246 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16796", "stop_name": "Easton Rd & Norristown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131714, 40.182701 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17517", "stop_name": "Old York Rd & Foxcroft Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1272, 40.081902 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16797", "stop_name": "Easton Rd & Horsham Rd - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130623, 40.179994 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31023", "stop_name": "Old York Rd & Green Briar Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126791, 40.080678 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27505", "stop_name": "Easton Rd & Horsham Rd - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128524, 40.177749 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32221", "stop_name": "Old York Rd & Forrest Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126744, 40.077867 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17521", "stop_name": "Old York Rd & Church Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127873, 40.076575 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31022", "stop_name": "Easton Rd & Ruth Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128293, 40.176356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17524", "stop_name": "Old York Rd & Elkins Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129465, 40.074937 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27506", "stop_name": "Easton Rd & Fair Oaks Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128195, 40.174204 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16798", "stop_name": "Easton Rd & New Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128134, 40.171884 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17526", "stop_name": "Old York Rd & Spring Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131684, 40.073273 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17530", "stop_name": "Old York Rd & Ashbourne Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133738, 40.071386 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27507", "stop_name": "Easton Rd & Sycamore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12649, 40.168613 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17531", "stop_name": "Old York Rd & Academy Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134458, 40.069013 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "27508", "stop_name": "Easton Rd & Sycamore Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125761, 40.167174 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16799", "stop_name": "Easton Rd & Maryland Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123913, 40.161894 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17534", "stop_name": "Old York Rd & Melrose Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 40.066988 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16800", "stop_name": "Easton Rd & Wyandotte Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123316, 40.160054 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17536", "stop_name": "Old York Rd & Develon Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134919, 40.066203 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17539", "stop_name": "Old York Rd & Beech Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135159, 40.065311 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17542", "stop_name": "Old York Rd & Willow Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13584, 40.06367 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "823", "stop_name": "Old York Rd & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17545", "stop_name": "Old York Rd & 71st Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13746, 40.0608 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17547", "stop_name": "Old York Rd & 70th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13821, 40.059552 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17550", "stop_name": "Old York Rd & 69th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139103, 40.05809 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17555", "stop_name": "Old York Rd & 68th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 40.056664 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31343", "stop_name": "Old York Rd & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140841, 40.055292 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21530", "stop_name": "Old York Rd & 66th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 40.05375 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16923", "stop_name": "Old York Rd & 65th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142663, 40.052279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16924", "stop_name": "Old York Rd & Chelten Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143603, 40.05088 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17573", "stop_name": "Old York Rd & Medary Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144221, 40.049944 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "21221", "stop_name": "Old York Rd & Stenton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144971, 40.048786 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16925", "stop_name": "Old York Rd & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145495, 40.047868 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "17201", "stop_name": "Old York Rd & Church Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 40.046279 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "16926", "stop_name": "Old York Rd & Champlost Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144715, 40.044671 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "31758", "stop_name": "Nedro Av & Broad St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144048, 40.042857 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "10940", "stop_name": "Nedro Av & Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 40.042703 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11624", "stop_name": "Park Av & Grange St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14312, 40.041356 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "11623", "stop_name": "Park Av & Chew Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143446, 40.039812 ] } }, +{ "type": "Feature", "properties": { "route_id": "55", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Olney Transit Center", "stop_id": "32628", "stop_name": "Olney Transit Center - Rt 55", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144301, 40.038859 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.6, "percent_change": 0.29, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24981", "stop_name": "Columbus Blvd & Packer Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138698, 39.907498 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24982", "stop_name": "Delaware Av & Oregon Av - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138193, 39.909898 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.2, "percent_change": -0.75, "expected_wait_time_difference": 787.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.6, "percent_change": -0.5, "expected_wait_time_difference": 175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.0, "percent_change": 0.21, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.2, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.2, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.2, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30869", "stop_name": "Oregon Av & Weccacoe Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141001, 39.912867 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18142", "stop_name": "Oregon Av & Columbus Blvd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138961, 39.912577 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24979", "stop_name": "Delaware Av & Oregon Av - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138818, 39.909845 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24980", "stop_name": "Columbus Blvd Av & Packer Terminal", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139311, 39.90758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24981", "stop_name": "Columbus Blvd & Packer Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138698, 39.907498 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24981", "stop_name": "Columbus Blvd & Packer Av - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138698, 39.907498 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.2, "percent_change": -0.22, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24982", "stop_name": "Delaware Av & Oregon Av - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138193, 39.909898 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.8, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.0, "percent_change": -0.1, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 11.0, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.6, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.2, "percent_change": -0.15, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.8, "percent_change": 0.4, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.4, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.4, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.2, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.6, "percent_change": -0.16, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.6, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.8, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.8, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.8, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.8, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.2, "percent_change": -0.18, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 0.2, "percent_change": -0.92, "expected_wait_time_difference": 415.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 0.2, "percent_change": -0.92, "expected_wait_time_difference": 415.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 55.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 55.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.0, "percent_change": -0.62, "expected_wait_time_difference": 55.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.0, "percent_change": -0.64, "expected_wait_time_difference": 57.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.2, "percent_change": -0.57, "expected_wait_time_difference": 42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.6, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 1.2, "percent_change": -0.62, "expected_wait_time_difference": 46.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 1.2, "percent_change": -0.62, "expected_wait_time_difference": 46.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 1.2, "percent_change": -0.62, "expected_wait_time_difference": 46.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.6, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.6, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 1.2, "percent_change": -0.62, "expected_wait_time_difference": 46.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 1.2, "percent_change": -0.62, "expected_wait_time_difference": 46.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.4, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 1.6, "percent_change": -0.53, "expected_wait_time_difference": 29.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 1.8, "percent_change": -0.47, "expected_wait_time_difference": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.2, "percent_change": -0.32, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.2, "percent_change": -0.32, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.2, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.6, "percent_change": -0.26, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.6, "percent_change": -0.26, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.6, "percent_change": 0.5, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.4, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.4, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.2, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.4, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.4, "percent_change": -0.33, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.2, "percent_change": -0.34, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.2, "percent_change": -0.31, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.2, "percent_change": -0.3, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.2, "percent_change": -0.3, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.2, "percent_change": -0.28, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.4, "percent_change": -0.26, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.6, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.4, "percent_change": -0.16, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.4, "percent_change": -0.16, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.4, "percent_change": -0.16, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30869", "stop_name": "Oregon Av & Weccacoe Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141001, 39.912867 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18142", "stop_name": "Oregon Av & Columbus Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138961, 39.912577 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24979", "stop_name": "Delaware Av & Oregon Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138818, 39.909845 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.2, "percent_change": -0.24, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24980", "stop_name": "Columbus Blvd Av & Packer Terminal", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139311, 39.90758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24981", "stop_name": "Columbus Blvd & Packer Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138698, 39.907498 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.2, "percent_change": -0.24, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.2, "percent_change": -0.26, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.6, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.6, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30869", "stop_name": "Oregon Av & Weccacoe Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141001, 39.912867 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18142", "stop_name": "Oregon Av & Columbus Blvd", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138961, 39.912577 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24979", "stop_name": "Delaware Av & Oregon Av - MBFS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138818, 39.909845 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24980", "stop_name": "Columbus Blvd Av & Packer Terminal", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139311, 39.90758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24981", "stop_name": "Columbus Blvd & Packer Av - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138698, 39.907498 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.2, "percent_change": -0.2, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 17.8, "percent_change": -0.23, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 17.4, "percent_change": -0.24, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.0, "percent_change": -0.16, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.2, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.2, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.2, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.4, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 19.4, "percent_change": -0.16, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 19.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 19.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 20.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 20.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 20.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 20.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.8, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.8, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 18.6, "percent_change": -0.18, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.4, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.4, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.2, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.4, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.4, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 18.4, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 18.2, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 18.6, "percent_change": -0.18, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.8, "percent_change": -0.18, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 19.0, "percent_change": -0.16, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.4, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.6, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 19.0, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.8, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 18.6, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.6, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.6, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.6, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.4, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.4, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 18.8, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 18.8, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 18.2, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 18.6, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 15.6, "percent_change": -0.33, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 14.4, "percent_change": -0.38, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 14.6, "percent_change": -0.38, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 14.6, "percent_change": -0.38, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.2, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.2, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.2, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.2, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.2, "percent_change": -0.25, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.4, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.4, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 18.8, "percent_change": -0.22, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.8, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.0, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.0, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.0, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 19.0, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 19.0, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.8, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.8, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.8, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.8, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 18.6, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 23.6, "arrivals_during_cuts": 18.6, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.0, "percent_change": -0.24, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.2, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.2, "percent_change": -0.24, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.4, "percent_change": -0.23, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.4, "percent_change": -0.23, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 18.8, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 18.8, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.0, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 19.0, "percent_change": -0.18, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 23.4, "arrivals_during_cuts": 19.0, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 19.0, "percent_change": -0.18, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 18.8, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 18.6, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 18.6, "percent_change": -0.2, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 18.4, "percent_change": -0.21, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 18.6, "percent_change": -0.19, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.4, "percent_change": -0.24, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.0, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.0, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.0, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.4, "percent_change": -0.23, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.6, "percent_change": -0.21, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.6, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.6, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 9.0, "percent_change": 0.5, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.8, "percent_change": -0.24, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.4, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.4, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.4, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.0, "percent_change": -0.24, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.4, "percent_change": -0.19, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.8, "percent_change": -0.14, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.4, "percent_change": -0.19, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.8, "percent_change": -0.12, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.6, "percent_change": -0.16, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.8, "percent_change": -0.12, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.8, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.6, "percent_change": -0.2, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.2, "percent_change": -0.23, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.0, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.2, "percent_change": -0.25, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.2, "percent_change": -0.26, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.4, "percent_change": -0.27, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.6, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.2, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.6, "percent_change": -0.27, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.6, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.8, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.0, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.8, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.0, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.8, "percent_change": -0.2, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.0, "percent_change": -0.29, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.8, "percent_change": -0.2, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.8, "percent_change": -0.2, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.8, "percent_change": -0.2, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.2, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.4, "percent_change": -0.24, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.4, "percent_change": -0.24, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.2, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.4, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.6, "percent_change": -0.27, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.6, "percent_change": -0.27, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.2, "percent_change": -0.28, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.2, "percent_change": -0.3, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.6, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.6, "percent_change": -0.24, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.6, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24981", "stop_name": "Columbus Blvd & Packer Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138698, 39.907498 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.6, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24982", "stop_name": "Delaware Av & Oregon Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138193, 39.909898 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.2, "percent_change": 0.09, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.6, "percent_change": 0.11, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.8, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.8, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.8, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.8, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.0, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 16.0, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 16.0, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 16.0, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.8, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.8, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.4, "percent_change": 0.05, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.8, "percent_change": 0.08, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.8, "percent_change": 0.1, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.6, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.6, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.6, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.6, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.4, "percent_change": 0.1, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.4, "percent_change": 0.08, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 15.0, "percent_change": 0.06, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.4, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.4, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.4, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.2, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.2, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.4, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.4, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 15.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 15.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.0, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 16.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 16.0, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.0, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.8, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.2, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.2, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.6, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.6, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.2, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.2, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.6, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.2, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.2, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.2, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.4, "percent_change": -0.13, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.4, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.8, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.6, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.6, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.4, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.0, "percent_change": -0.21, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.4, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.4, "percent_change": -0.16, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.6, "percent_change": -0.13, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.4, "percent_change": -0.16, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.4, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30869", "stop_name": "Oregon Av & Weccacoe Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141001, 39.912867 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18142", "stop_name": "Oregon Av & Columbus Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138961, 39.912577 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24979", "stop_name": "Delaware Av & Oregon Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138818, 39.909845 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24980", "stop_name": "Columbus Blvd Av & Packer Terminal", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139311, 39.90758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24981", "stop_name": "Columbus Blvd & Packer Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138698, 39.907498 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.6, "percent_change": -0.1, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.4, "percent_change": -0.07, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.8, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.0, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.0, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.4, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.2, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.6, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.8, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.8, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.8, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.8, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 12.8, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 12.8, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 12.8, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 12.8, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.8, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.8, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.8, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.8, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 12.8, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 12.8, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.0, "percent_change": 0.17, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.2, "percent_change": 0.09, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.2, "percent_change": 0.09, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.2, "percent_change": 0.09, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.2, "percent_change": 0.09, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.2, "percent_change": 0.09, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.4, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.2, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.4, "percent_change": 0.09, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.0, "percent_change": 0.39, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.2, "percent_change": 0.42, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.2, "percent_change": 0.42, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.2, "percent_change": 0.16, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.2, "percent_change": 0.16, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.2, "percent_change": 0.13, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.8, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.8, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.6, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.2, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.5, "percent_change": 0.83, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.0, "percent_change": 1.5, "expected_wait_time_difference": -63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.5, "percent_change": 0.8, "expected_wait_time_difference": -37.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.5, "percent_change": 0.8, "expected_wait_time_difference": -37.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.0, "percent_change": 1.5, "expected_wait_time_difference": -63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.0, "percent_change": 1.5, "expected_wait_time_difference": -63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.0, "percent_change": 1.5, "expected_wait_time_difference": -63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.0, "percent_change": 1.5, "expected_wait_time_difference": -63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.0, "percent_change": 1.5, "expected_wait_time_difference": -63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 3.5, "percent_change": -0.53, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 3.5, "percent_change": -0.53, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 3.5, "percent_change": -0.53, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 3.0, "percent_change": -0.6, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 3.0, "percent_change": -0.6, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 3.0, "percent_change": -0.6, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 3.0, "percent_change": -0.6, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 9.5, "percent_change": -0.34, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 9.5, "percent_change": -0.34, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 7.5, "percent_change": -0.48, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 7.5, "percent_change": -0.48, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 7.5, "percent_change": -0.48, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 8.0, "percent_change": -0.45, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 8.0, "percent_change": -0.45, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.0, "percent_change": -0.43, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.0, "percent_change": -0.43, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 7.5, "percent_change": -0.46, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 8.5, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.5, "percent_change": -0.37, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 10.0, "percent_change": -0.26, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.5, "percent_change": -0.4, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.5, "percent_change": -0.41, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.5, "percent_change": -0.41, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 6.5, "percent_change": -0.41, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.5, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24973", "stop_name": "Whitman Plaza - 2", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.91373 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "855", "stop_name": "2nd St & Oregon Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.914515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17371", "stop_name": "2nd St & Shunk St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1512, 39.915532 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17373", "stop_name": "2nd St & Porter St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150924, 39.916807 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17376", "stop_name": "2nd St & Ritner St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150659, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17378", "stop_name": "2nd St & Wolf St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150383, 39.919305 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17380", "stop_name": "2nd St & Jackson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150118, 39.920554 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17383", "stop_name": "2nd St & Snyder Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149866, 39.921758 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17385", "stop_name": "Snyder Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150963, 39.922028 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24279", "stop_name": "Snyder Av & Moyamensing Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.922283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17391", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.923326 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17392", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152039, 39.924503 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17395", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151586, 39.925716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17397", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151133, 39.926884 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17399", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150668, 39.928088 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17401", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929283 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17533", "stop_name": "3rd St & Reed St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.930469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17535", "stop_name": "3rd St & Wharton St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149674, 39.931709 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17538", "stop_name": "3rd St & Federal St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.932949 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "856", "stop_name": "3rd St & Ellsworth St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149229, 39.93368 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17541", "stop_name": "3rd St & Carpenter St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.935072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17543", "stop_name": "3rd St & Christian St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148616, 39.936419 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17544", "stop_name": "3rd St & Queen St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148448, 39.937204 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17546", "stop_name": "3rd St & Catharine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148304, 39.937855 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17548", "stop_name": "3rd St & Fitzwater St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148087, 39.938801 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24866", "stop_name": "3rd St & Monroe St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147919, 39.939559 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17552", "stop_name": "3rd St & Bainbridge St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147727, 39.940469 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17554", "stop_name": "3rd St & South St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147534, 39.941325 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17557", "stop_name": "3rd St & Lombard St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147318, 39.942333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17558", "stop_name": "3rd St & Pine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147125, 39.943261 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17560", "stop_name": "3rd St & Spruce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.944688 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17564", "stop_name": "3rd St & Walnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.947007 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17567", "stop_name": "3rd St & Chestnut St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145959, 39.948542 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "857", "stop_name": "3rd St & Market St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145646, 39.950023 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17571", "stop_name": "3rd St & Arch St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145177, 39.952092 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17575", "stop_name": "3rd St & Race St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.953849 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17579", "stop_name": "3rd St & Vine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144395, 39.955767 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17581", "stop_name": "3rd St & Callowhill St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14407, 39.957382 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17602", "stop_name": "3rd St & Willow St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14383, 39.958426 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "70", "stop_name": "3rd St & Spring Garden St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14336, 39.960629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24867", "stop_name": "3rd St & Green St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143239, 39.961298 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17604", "stop_name": "3rd St & Fairmount Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143047, 39.962262 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17605", "stop_name": "3rd St & Brown St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142818, 39.963296 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17606", "stop_name": "3rd St & Poplar St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142481, 39.964875 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17607", "stop_name": "3rd St & Wildey St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142156, 39.966481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17608", "stop_name": "3rd St & George St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141915, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21959", "stop_name": "3rd St & Girard Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14147, 39.969639 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17609", "stop_name": "3rd St & Thompson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141217, 39.970843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17617", "stop_name": "Germantown Av & Master St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141329, 39.972361 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17618", "stop_name": "Germantown Av & Jefferson St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141655, 39.973575 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24868", "stop_name": "Germantown Av & Oxford St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142097, 39.975129 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24891", "stop_name": "Oxford St & 3rd St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140881, 39.974993 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17619", "stop_name": "Oxford St & American St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139913, 39.974874 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17620", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139364, 39.976247 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17625", "stop_name": "American St & Berks St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138714, 39.979227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17626", "stop_name": "American St & Norris St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138401, 39.980734 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17628", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138076, 39.982215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17629", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137739, 39.983803 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17630", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137389, 39.985391 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17632", "stop_name": "American St & York St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137076, 39.986899 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17633", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136763, 39.988388 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17635", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13645, 39.989878 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "18596", "stop_name": "American St & Lehigh Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1361, 39.991493 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17647", "stop_name": "Lehigh Av & 2nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135144, 39.991374 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17648", "stop_name": "Lehigh Av & Mascher St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132971, 39.991093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31728", "stop_name": "Front St & Lehigh Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130749, 39.991159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17650", "stop_name": "Front St & Somerset St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.0, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 39.992399 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17651", "stop_name": "Front St & Cambria St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130159, 39.993888 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24965", "stop_name": "Front St & Indiana St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129857, 39.995378 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17652", "stop_name": "Front St & Clearfield St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129556, 39.996868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17653", "stop_name": "Front St & Allegheny Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12923, 39.99842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17654", "stop_name": "Front St & Westmoreland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128869, 40.000026 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24966", "stop_name": "Front St & Ontario St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128532, 40.001515 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17655", "stop_name": "Front St & Tioga St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12823, 40.003014 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17656", "stop_name": "Front St & Venango St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 40.004227 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "861", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127313, 40.00743 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17657", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12659, 40.010721 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17658", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125964, 40.013594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24967", "stop_name": "Front St & Hunting Park Av - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125565, 40.015583 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17659", "stop_name": "Front St & Wingohocking St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125336, 40.016689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17661", "stop_name": "Wingohocking St & Front St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125541, 40.018555 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17662", "stop_name": "Wingohocking St & Rising Sun Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127053, 40.018764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "925", "stop_name": "Rising Sun Av & Courtland St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126539, 40.02003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "862", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125705, 40.02159 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17663", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12441, 40.02306 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17664", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123187, 40.024476 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17665", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122628, 40.025126 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17666", "stop_name": "Rising Sun Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121571, 40.026346 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17667", "stop_name": "Rising Sun Av & Sheldon St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12068, 40.027451 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17668", "stop_name": "Rising Sun Av & Ashdale St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 8.0, "percent_change": -0.16, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120014, 40.028226 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17669", "stop_name": "Rising Sun Av & C St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118446, 40.030132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17670", "stop_name": "Rising Sun Av & Geneva Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.03153 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17671", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116081, 40.032937 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15896", "stop_name": "Olney Av & Arbor St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115376, 40.034587 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16739", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117479, 40.034842 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "15898", "stop_name": "Olney Av & Front St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121308, 40.035333 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17672", "stop_name": "Front St & Chew Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12103, 40.036752 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17673", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120692, 40.038313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17674", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120378, 40.039829 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17675", "stop_name": "Front St & Champlost St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120052, 40.041319 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24819", "stop_name": "Champlost Av & Ella St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117819, 40.041072 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24820", "stop_name": "Champlost Av & Hammond Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115773, 40.041067 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24968", "stop_name": "Crescentville Rd & Adams Av - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113066, 40.04372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24969", "stop_name": "Crescentville & Walnut Prk Dr - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11286, 40.044764 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17678", "stop_name": "Crescentville Rd & Walnut Park Dr - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112474, 40.046521 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17680", "stop_name": "Cheltenham Av & Rowland Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112834, 40.047897 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17685", "stop_name": "Cheltenham Av & Bellmawr Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117281, 40.050425 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17687", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118496, 40.05116 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "864", "stop_name": "2nd St & Cheltenham Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122321, 40.052704 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17699", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122599, 40.051205 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17701", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12289, 40.049689 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17702", "stop_name": "2nd St & 64th Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123193, 40.047931 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17703", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123423, 40.046638 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17704", "stop_name": "2nd St & Godfrey Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123631, 40.04513 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24697", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125486, 40.045313 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "24698", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126514, 40.04544 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "865", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128287, 40.045694 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.5, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "844", "stop_name": "Olney Av & Rising Sun Av Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115425, 40.03414 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "842", "stop_name": "Godfrey Av & 5th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128607, 40.045606 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17930", "stop_name": "Godfrey Av & 4th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126739, 40.045343 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17931", "stop_name": "Godfrey Av & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125711, 40.045215 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17932", "stop_name": "2nd St & Godfrey Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123465, 40.045174 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17936", "stop_name": "2nd St & Chelten Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123258, 40.046459 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17937", "stop_name": "2nd St & 64th Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122991, 40.048029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17938", "stop_name": "2nd St & 65th Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122737, 40.049528 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17939", "stop_name": "2nd St & 66th Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.122458, 40.051044 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "843", "stop_name": "Cheltenham Av & 2nd St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121566, 40.05276 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17941", "stop_name": "Cheltenham Av & Covington Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118756, 40.051142 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17942", "stop_name": "Cheltenham Av & 7 Oaks Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117235, 40.050264 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17944", "stop_name": "Cheltenham Av & Crescentville Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112906, 40.04779 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17949", "stop_name": "Crescentville Rd & Walnut Park Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112664, 40.046441 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25242", "stop_name": "Crescentville Rd & Walnut ParkDr - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.112966, 40.044943 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "25243", "stop_name": "Crescentville Rd & Adams Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113231, 40.043774 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24692", "stop_name": "Crescentville Av & Adams Ave - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.114018, 40.042384 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24693", "stop_name": "Crescentville Av & Hammond Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115583, 40.041263 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17952", "stop_name": "Champlost St & A St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118078, 40.041234 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17954", "stop_name": "Front St & Champlost St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12023, 40.041257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17955", "stop_name": "Front St & Nedro Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120507, 40.039999 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17956", "stop_name": "Front St & Grange St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.120821, 40.038483 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17958", "stop_name": "Front St & Chew St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121147, 40.03693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15823", "stop_name": "Front St & Olney Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121485, 40.03545 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "15698", "stop_name": "Olney Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117693, 40.034753 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30868", "stop_name": "Rising Sun Av & Olney Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115378, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17960", "stop_name": "Rising Sun Av & Clarkson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116115, 40.033134 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17961", "stop_name": "Rising Sun Av & Somerville Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117316, 40.031726 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17962", "stop_name": "Rising Sun Av & Tabor Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118231, 40.030631 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17963", "stop_name": "Rising Sun Av & Wellens Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119075, 40.029598 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17964", "stop_name": "Rising Sun Av & Duncannon Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120049, 40.028422 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17965", "stop_name": "Rising Sun Av & Ruscomb St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.120774, 40.027558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17966", "stop_name": "Rising Sun Av & Roosevelt Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121867, 40.026231 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17967", "stop_name": "Rising Sun Av & Rockland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.123221, 40.024672 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17968", "stop_name": "Rising Sun Av & Loudon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023256 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "845", "stop_name": "Rising Sun Av & Wyoming Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125621, 40.021902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17969", "stop_name": "Rising Sun Av & Saber St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126872, 40.019629 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "17970", "stop_name": "Wingohocking St & Rising Sun Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126793, 40.018612 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18051", "stop_name": "Wingohocking St & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125175, 40.018403 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18052", "stop_name": "Front St & Wingohocking St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125514, 40.016556 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18053", "stop_name": "Front St & Hunting Park Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126021, 40.014013 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18054", "stop_name": "Front St & Luzerne St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126647, 40.011212 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "846", "stop_name": "Front St & Erie Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 40.00793 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "26259", "stop_name": "Erie Av & Roberto Clemente Walk", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130021, 40.00716 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "31541", "stop_name": "2nd St & Erie Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131761, 40.006432 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18056", "stop_name": "2nd St & Glenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132147, 40.004621 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18057", "stop_name": "2nd St & Tioga St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13234, 40.003693 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18058", "stop_name": "2nd St & Ontario St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132653, 40.002186 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18059", "stop_name": "2nd St & Westmoreland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132967, 40.000705 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18060", "stop_name": "2nd St & Allegheny Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133304, 39.999188 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18061", "stop_name": "2nd St & Clearfield St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133653, 39.997485 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18062", "stop_name": "2nd St & Indiana Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133955, 39.996066 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18063", "stop_name": "2nd St & Cambria St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13428, 39.994594 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18064", "stop_name": "2nd St & Somerset St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134593, 39.993069 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18065", "stop_name": "2nd St & Lehigh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134942, 39.991526 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16318", "stop_name": "American St & Lehigh Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136326, 39.991225 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18066", "stop_name": "American St & Huntingdon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136579, 39.990048 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16319", "stop_name": "American St & Cumberland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136892, 39.988558 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "16320", "stop_name": "American St & York St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137205, 39.987068 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18074", "stop_name": "American St & Dauphin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137519, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18075", "stop_name": "American St & Susquehanna Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137868, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18076", "stop_name": "American St & Diamond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138205, 39.982385 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18077", "stop_name": "American St & Norris St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13853, 39.980904 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18078", "stop_name": "American St & Berks St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138843, 39.979397 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18079", "stop_name": "American St & Cecil B Moore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139493, 39.976417 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18080", "stop_name": "American St & Oxford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139794, 39.974981 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18081", "stop_name": "American St & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140023, 39.973902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18082", "stop_name": "American St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140324, 39.972671 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18083", "stop_name": "American St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140153, 39.971091 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "21190", "stop_name": "2nd St & Girard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139603, 39.969742 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "20994", "stop_name": "Girard Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.0, "percent_change": 0.75, "expected_wait_time_difference": -16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141386, 39.969799 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "849", "stop_name": "4th St & Girard Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.5, "percent_change": 0.88, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143217, 39.969795 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18085", "stop_name": "4th St & George St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.5, "percent_change": 0.88, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143602, 39.968011 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18086", "stop_name": "4th St & Poplar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.5, "percent_change": 0.88, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.965736 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18087", "stop_name": "4th St & Brown St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144469, 39.963836 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18088", "stop_name": "4th St & Fairmount Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.962783 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18089", "stop_name": "4th St & Spring Garden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145023, 39.961195 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24971", "stop_name": "4th St & Noble St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.959509 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18090", "stop_name": "4th St & Callowhill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145745, 39.957761 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18091", "stop_name": "4th St & Vine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146083, 39.956128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18092", "stop_name": "4th St & Race St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14648, 39.954291 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18093", "stop_name": "4th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146853, 39.952497 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "850", "stop_name": "4th St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147309, 39.950481 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18094", "stop_name": "4th St & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147634, 39.94892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18095", "stop_name": "4th St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148006, 39.947413 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18098", "stop_name": "4th St & Locust St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148283, 39.946128 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18099", "stop_name": "4th St & Spruce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148512, 39.94504 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18100", "stop_name": "4th St & Pine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 39.943613 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18101", "stop_name": "4th St & Lombard St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149028, 39.942712 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18102", "stop_name": "4th St & South St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.941695 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18103", "stop_name": "4th St & Bainbridge St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149425, 39.940892 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "30314", "stop_name": "4th St & Monroe St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149618, 39.940009 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18104", "stop_name": "4th St & Fitzwater St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149786, 39.939251 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18105", "stop_name": "4th St & Catharine St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14999, 39.938323 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18114", "stop_name": "4th St & Queen St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150146, 39.937645 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18115", "stop_name": "4th St & Christian St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.937003 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18116", "stop_name": "4th St & Carpenter Way - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150675, 39.93529 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "851", "stop_name": "4th St & Washington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 39.934407 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24681", "stop_name": "Washington Av & 3rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14944, 39.934029 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "24682", "stop_name": "Washington Av & Moyamensing Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.933893 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18119", "stop_name": "Moyamensing Av & Federal St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148771, 39.93301 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18120", "stop_name": "Moyamensing Av & Wharton St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149378, 39.931824 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18121", "stop_name": "Moyamensing Av & Reed St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149902, 39.930647 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18122", "stop_name": "Moyamensing Av & Dickinson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15032, 39.929452 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18123", "stop_name": "Moyamensing Av & Tasker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150749, 39.928257 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18124", "stop_name": "Moyamensing Av & Morris St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 39.927063 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18125", "stop_name": "Moyamensing Av & Moore St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15168, 39.925868 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18126", "stop_name": "Moyamensing Av & Mifflin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152145, 39.924682 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18127", "stop_name": "Moyamensing Av & McKean St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152633, 39.923505 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18128", "stop_name": "Moyamensing Av & Snyder Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153121, 39.922372 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18129", "stop_name": "4th St & Jackson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153787, 39.921151 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18130", "stop_name": "4th St & Wolf St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.919902 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18131", "stop_name": "4th St & Ritner St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154328, 39.918653 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18132", "stop_name": "4th St & Porter St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154569, 39.917396 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "18133", "stop_name": "4th St & Shunk St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.916165 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "853", "stop_name": "4th St & Oregon Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155098, 39.914871 ] } }, +{ "type": "Feature", "properties": { "route_id": "57", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Whitman Plaza", "stop_id": "99", "stop_name": "Whitman Plaza - 1", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.912812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 1.4, "percent_change": -0.46, "expected_wait_time_difference": 69.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -525.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -525.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.2, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.4, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.2, "percent_change": -0.15, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.4, "percent_change": -0.18, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.0, "percent_change": -0.19, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.6, "percent_change": -0.23, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.4, "percent_change": -0.22, "expected_wait_time_difference": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.0, "percent_change": -0.32, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.0, "percent_change": -0.32, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.6, "percent_change": -0.47, "expected_wait_time_difference": 61.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.6, "percent_change": -0.43, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.6, "percent_change": -0.43, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.6, "percent_change": -0.43, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.6, "percent_change": -0.43, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.6, "percent_change": -0.43, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.6, "percent_change": -0.43, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 1.6, "percent_change": -0.43, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.6, "percent_change": -0.33, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.6, "percent_change": -0.33, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.6, "percent_change": -0.33, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.6, "percent_change": -0.27, "expected_wait_time_difference": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 4.6, "percent_change": 1.87, "expected_wait_time_difference": -36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 4.6, "percent_change": 1.87, "expected_wait_time_difference": -36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 4.6, "percent_change": 1.87, "expected_wait_time_difference": -36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 4.6, "percent_change": 1.87, "expected_wait_time_difference": -36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 4.6, "percent_change": 1.87, "expected_wait_time_difference": -36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.4, "percent_change": -0.37, "expected_wait_time_difference": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.4, "percent_change": -0.35, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.4, "percent_change": -0.35, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.4, "percent_change": -0.35, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.4, "percent_change": -0.35, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.4, "percent_change": -0.43, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.4, "percent_change": -0.43, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.4, "percent_change": -0.43, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.4, "percent_change": -0.43, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.6, "percent_change": -0.4, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.6, "percent_change": -0.4, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.2, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.2, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.2, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.2, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.2, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.0, "percent_change": -0.35, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.4, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.4, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.4, "percent_change": -0.37, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.4, "percent_change": -0.37, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.4, "percent_change": -0.4, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.4, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.4, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.4, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.6, "percent_change": -0.43, "expected_wait_time_difference": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.6, "percent_change": -0.43, "expected_wait_time_difference": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.8, "percent_change": -0.39, "expected_wait_time_difference": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.0, "percent_change": -0.23, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.8, "percent_change": -0.3, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.2, "percent_change": -0.28, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 10.0, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.2, "percent_change": -0.24, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.6, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.6, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.2, "percent_change": -0.16, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.4, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.6, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 11.6, "percent_change": -0.15, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.6, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 12.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 11.8, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.0, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 12.0, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.0, "percent_change": -0.1, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 12.0, "percent_change": -0.1, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.8, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.4, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.6, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.6, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.6, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.6, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 11.6, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 11.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.6, "percent_change": -0.17, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.6, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.4, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.4, "percent_change": -0.18, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.8, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.8, "percent_change": -0.27, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.6, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.6, "percent_change": -0.31, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.6, "percent_change": -0.31, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.6, "percent_change": -0.31, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.6, "percent_change": -0.36, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 4.6, "percent_change": -0.41, "expected_wait_time_difference": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 4.6, "percent_change": -0.39, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 5.8, "percent_change": 1.64, "expected_wait_time_difference": -42.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 5.8, "percent_change": 1.64, "expected_wait_time_difference": -42.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 4.6, "percent_change": -0.38, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 5.8, "percent_change": 1.64, "expected_wait_time_difference": -42.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 4.6, "percent_change": -0.38, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 5.8, "percent_change": 1.64, "expected_wait_time_difference": -42.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 4.6, "percent_change": -0.38, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 5.8, "percent_change": 1.23, "expected_wait_time_difference": -31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 4.6, "percent_change": -0.38, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.6, "percent_change": -0.28, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.4, "percent_change": -0.31, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 3.8, "percent_change": -0.39, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.0, "percent_change": -0.35, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.4, "percent_change": -0.33, "expected_wait_time_difference": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.6, "percent_change": -0.26, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.0, "percent_change": -0.24, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.8, "percent_change": -0.23, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.6, "percent_change": -0.32, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.6, "percent_change": -0.32, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.6, "percent_change": -0.32, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.6, "percent_change": -0.32, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.4, "percent_change": -0.33, "expected_wait_time_difference": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.2, "percent_change": -0.36, "expected_wait_time_difference": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.2, "percent_change": -0.36, "expected_wait_time_difference": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.2, "percent_change": -0.34, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.2, "percent_change": -0.34, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.2, "percent_change": -0.34, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.2, "percent_change": -0.34, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.2, "percent_change": -0.34, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.0, "percent_change": -0.35, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.0, "percent_change": -0.35, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.8, "percent_change": -0.37, "expected_wait_time_difference": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.2, "percent_change": 0.5, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.2, "percent_change": 0.5, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.4, "percent_change": 0.75, "expected_wait_time_difference": -80.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.4, "percent_change": 0.75, "expected_wait_time_difference": -80.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.4, "percent_change": 0.75, "expected_wait_time_difference": -80.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.4, "percent_change": 0.75, "expected_wait_time_difference": -80.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.4, "percent_change": 0.75, "expected_wait_time_difference": -80.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.8, "percent_change": 1.25, "expected_wait_time_difference": -104.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 3.8, "percent_change": -0.34, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.8, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.6, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 16.8, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 16.8, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.8, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.8, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.8, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.6, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.8, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.6, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.6, "percent_change": -0.19, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.4, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.4, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.4, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.2, "percent_change": -0.23, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 16.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 15.8, "percent_change": -0.25, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.0, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.0, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.0, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.0, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.0, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.0, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.0, "percent_change": -0.23, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 16.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.4, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.2, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.2, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.2, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 16.2, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.8, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.8, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.0, "percent_change": -0.21, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.2, "percent_change": -0.22, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.2, "percent_change": -0.22, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.0, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.6, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.6, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.6, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.6, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.6, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.6, "percent_change": -0.26, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.4, "percent_change": -0.28, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.4, "percent_change": -0.28, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.4, "percent_change": -0.28, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 10.4, "percent_change": -0.28, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.4, "percent_change": -0.27, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 10.2, "percent_change": -0.28, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.2, "percent_change": -0.27, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.2, "percent_change": -0.27, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.8, "percent_change": -0.29, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.4, "percent_change": -0.27, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.4, "percent_change": -0.23, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.4, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.6, "percent_change": 0.1, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.6, "percent_change": 0.1, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.6, "percent_change": 0.1, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.8, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.2, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.2, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.2, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.2, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.2, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.2, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.2, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.0, "percent_change": -0.72, "expected_wait_time_difference": 86.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.0, "percent_change": 0.58, "expected_wait_time_difference": -11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.6, "percent_change": 0.56, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.0, "percent_change": -0.72, "expected_wait_time_difference": 86.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.6, "percent_change": 0.33, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.0, "percent_change": -0.72, "expected_wait_time_difference": 86.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.6, "percent_change": 0.33, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.0, "percent_change": -0.72, "expected_wait_time_difference": 86.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.0, "percent_change": -0.72, "expected_wait_time_difference": 86.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.2, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.0, "percent_change": -0.72, "expected_wait_time_difference": 86.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.0, "percent_change": -0.72, "expected_wait_time_difference": 86.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.0, "percent_change": -0.74, "expected_wait_time_difference": 88.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.0, "percent_change": -0.74, "expected_wait_time_difference": 88.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.0, "percent_change": -0.74, "expected_wait_time_difference": 88.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.6, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.0, "percent_change": -0.74, "expected_wait_time_difference": 88.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.0, "percent_change": -0.74, "expected_wait_time_difference": 88.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.0, "percent_change": -0.74, "expected_wait_time_difference": 88.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.0, "percent_change": -0.74, "expected_wait_time_difference": 88.4 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.6, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.6, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.6, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.2, "percent_change": -0.68, "expected_wait_time_difference": 68.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.4, "percent_change": -0.63, "expected_wait_time_difference": 54.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.6, "percent_change": -0.58, "expected_wait_time_difference": 43.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.6, "percent_change": -0.58, "expected_wait_time_difference": 43.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 1.6, "percent_change": -0.58, "expected_wait_time_difference": 43.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.6, "percent_change": -0.6, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 1.6, "percent_change": -0.64, "expected_wait_time_difference": 47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 1.8, "percent_change": -0.61, "expected_wait_time_difference": 40.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.4, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.6, "percent_change": 0.18, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.8, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.4, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.4, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.4, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.2, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.2, "percent_change": -0.17, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.4, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.4, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.4, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.4, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.4, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.6, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.6, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.8, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.2, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.2, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.2, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.2, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.2, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.2, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.4, "percent_change": -0.1, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.4, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.4, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.4, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.4, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.4, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.4, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.2, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.2, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.2, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.2, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.2, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.4, "percent_change": -0.19, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.2, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.0, "percent_change": -0.29, "expected_wait_time_difference": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.0, "percent_change": -0.58, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.6, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.6, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.6, "percent_change": -0.08, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.0, "percent_change": -0.55, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.8, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.0, "percent_change": -0.19, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.8, "percent_change": -0.09, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 56.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.0, "percent_change": -0.18, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.2, "percent_change": -0.16, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.4, "percent_change": -0.22, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.4, "percent_change": -0.2, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.4, "percent_change": -0.2, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.6, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.4, "percent_change": -0.21, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.2, "percent_change": -0.23, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 10.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 10.0, "percent_change": -0.24, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.0, "percent_change": -0.35, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.0, "percent_change": -0.35, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 7.0, "percent_change": -0.35, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.4, "percent_change": 0.42, "expected_wait_time_difference": -18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.6, "percent_change": 0.5, "expected_wait_time_difference": -20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.4, "percent_change": -0.36, "expected_wait_time_difference": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.4, "percent_change": -0.36, "expected_wait_time_difference": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.4, "percent_change": -0.36, "expected_wait_time_difference": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.4, "percent_change": -0.36, "expected_wait_time_difference": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.4, "percent_change": -0.36, "expected_wait_time_difference": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 4.6, "percent_change": -0.38, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.4, "percent_change": -0.36, "expected_wait_time_difference": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.6, "percent_change": -0.33, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.6, "percent_change": -0.33, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.6, "percent_change": -0.33, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.0, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.5, "percent_change": -0.55, "expected_wait_time_difference": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 12.0, "percent_change": -0.33, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 11.5, "percent_change": -0.34, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 17.5, "arrivals_during_cuts": 12.5, "percent_change": -0.29, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.0, "percent_change": -0.42, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.0, "percent_change": -0.42, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.0, "percent_change": -0.42, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.0, "percent_change": -0.42, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.0, "percent_change": -0.42, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 6.5, "percent_change": -0.48, "expected_wait_time_difference": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 6.5, "percent_change": -0.48, "expected_wait_time_difference": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 6.5, "percent_change": -0.48, "expected_wait_time_difference": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 6.5, "percent_change": -0.48, "expected_wait_time_difference": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 6.5, "percent_change": -0.46, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 6.5, "percent_change": -0.46, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 6.5, "percent_change": -0.46, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 6.5, "percent_change": -0.46, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.5, "percent_change": -0.43, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.5, "percent_change": -0.43, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.0, "percent_change": -0.36, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.5, "percent_change": -0.5, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 5.5, "percent_change": -0.35, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23133", "stop_name": "Tomlinson Rd & Gifford St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02452, 40.113933 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26145", "stop_name": "County Line Rd & Barcalow Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010535, 40.135299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "20621", "stop_name": "Overhill Av & County Line Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014171, 40.137088 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23134", "stop_name": "Tomlinson Rd & Ferndale St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027009, 40.115369 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23659", "stop_name": "Rockhill Rd & U S 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960794, 40.139605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22626", "stop_name": "Overhill Av & Buxmont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01528, 40.135761 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25034", "stop_name": "Rockhill Rd & Overlook Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963389, 40.141105 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26140", "stop_name": "Tomlinson Rd & Audubon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029041, 40.115991 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22627", "stop_name": "Overhill Av & Smithfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01506, 40.134931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23136", "stop_name": "Tomlinson Rd & Kevin Ct", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031001, 40.116979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23189", "stop_name": "Old Lincoln Hwy & Northbrook Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964504, 40.142555 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22628", "stop_name": "Overhill Av & Simms St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01478, 40.134144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23137", "stop_name": "Tomlinson Rd & Greiner Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033454, 40.118495 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23190", "stop_name": "Old Lincoln Hwy & Northbrook - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96112, 40.143944 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23139", "stop_name": "Tomlinson Rd & Philmont Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035047, 40.119473 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23191", "stop_name": "Bristol Rd & Old Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958022, 40.145102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26153", "stop_name": "Overhill Av & Barcalow St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013641, 40.132507 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23140", "stop_name": "Tomlinson Rd & Rennard St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036379, 40.120361 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23192", "stop_name": "Bristol Rd & Old Lincoln Hwy - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959326, 40.146811 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23141", "stop_name": "Rennard St & Gardner St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034968, 40.120928 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23193", "stop_name": "Bristol Rd & Grove Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960336, 40.148083 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23142", "stop_name": "Rennard St & Rennard Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033829, 40.121335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23194", "stop_name": "Bristol Rd & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961392, 40.14947 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23143", "stop_name": "Rennard St & Greiner Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031896, 40.121953 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23195", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963923, 40.151738 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23144", "stop_name": "Rennard St & Larkspur St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029494, 40.121758 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23196", "stop_name": "Bristol Rd & Marshall Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965492, 40.152716 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23197", "stop_name": "Bristol Rd & Lonsdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966778, 40.153462 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26141", "stop_name": "Rennard St & Audubon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02796, 40.120959 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23145", "stop_name": "Rennard St & Ferndale St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024798, 40.1192 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23199", "stop_name": "Bristol Rd & Hilton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969161, 40.154845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23146", "stop_name": "Rennard St & Gifford St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022296, 40.117879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23200", "stop_name": "Brownsville Rd & Elizabeth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971432, 40.15538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23201", "stop_name": "Brownsville Rd & Sycamore Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973088, 40.153699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "873", "stop_name": "Rennard St & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020101, 40.116721 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23202", "stop_name": "Brownsville Rd & Andrews Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973685, 40.153023 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23203", "stop_name": "Brownsville Rd & Clearview Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974937, 40.151715 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "876", "stop_name": "Elmwood Av & Brownsville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975626, 40.151307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23204", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977868, 40.152538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23205", "stop_name": "Elmwood Av & Forrest Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979532, 40.15349 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23206", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982222, 40.155035 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23207", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984158, 40.15614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23208", "stop_name": "Elmwood Av & Poplar St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986199, 40.157299 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23209", "stop_name": "Elmwood Av & Anna Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98759, 40.158446 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23210", "stop_name": "Elmwood Av & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988768, 40.159405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23211", "stop_name": "Elmwood Av & Bridgetown Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989558, 40.159979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23212", "stop_name": "Bridgetown Pk & Henry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990937, 40.159127 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30229", "stop_name": "Red Lion Rd & Haldeman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018588, 40.097293 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23213", "stop_name": "Bridgetown Pk & Bertha St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993019, 40.157679 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23331", "stop_name": "Haldeman Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02019, 40.097103 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23332", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022214, 40.096877 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26152", "stop_name": "Bridgetown Pk & Lillian St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.993898, 40.157245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23214", "stop_name": "Bridgetown Pk & Helen St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99594, 40.156377 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23333", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02519, 40.09595 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23215", "stop_name": "Bridgetown Pk & Revere St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998243, 40.155403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23334", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027691, 40.095154 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23216", "stop_name": "Bridgetown Pk & Buck Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999858, 40.154668 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23330", "stop_name": "Haldeman Av & Bustleton Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02973, 40.094518 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23217", "stop_name": "Bridgetown Pk & Bustleton Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000891, 40.154207 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23218", "stop_name": "Bustleton Av & Ruth St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001943, 40.152542 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23219", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002472, 40.151205 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23220", "stop_name": "Bustleton Av & Street Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002905, 40.150126 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30650", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003182, 40.149413 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23222", "stop_name": "Bustleton Av & Roland Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003735, 40.147978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23223", "stop_name": "Bustleton Av & Park Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004216, 40.14673 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23224", "stop_name": "Bustleton Av & Forge Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004721, 40.145411 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23225", "stop_name": "Bustleton Av & Pinehill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005479, 40.143396 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23226", "stop_name": "Bustleton Av & Does Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006068, 40.141881 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23227", "stop_name": "Bustleton Av & Woodland Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006742, 40.14016 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23228", "stop_name": "Bustleton Av & Bridle Path Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007379, 40.138458 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23229", "stop_name": "Bustleton Av & County Line Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008258, 40.136042 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "877", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008964, 40.134661 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23230", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01082, 40.133131 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23231", "stop_name": "Bustleton Av & Philmont Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012678, 40.131156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23232", "stop_name": "Bustleton Av & Petoni Pl", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01384, 40.128937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23233", "stop_name": "Bustleton Av & Petoni Pl - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014082, 40.127974 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23234", "stop_name": "Bustleton Av & Denise Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014579, 40.126057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32638", "stop_name": "Bustleton Av & Lindenhurst St-Trevose Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014785, 40.125156 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23235", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015374, 40.123641 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23236", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016271, 40.122037 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23237", "stop_name": "Bustleton Av & Leo Mall Driveway - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017192, 40.120416 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23238", "stop_name": "Bustleton Av & Leo Mall Driveway - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017598, 40.119774 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23239", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018064, 40.119008 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "879", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019804, 40.116845 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23240", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.020447, 40.116187 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23241", "stop_name": "Bustleton Av & Burgess St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021662, 40.114932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "878", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023057, 40.113142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23242", "stop_name": "Bustleton Av & Gifford St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024357, 40.111272 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23243", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025121, 40.110159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "880", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026553, 40.108057 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26155", "stop_name": "Bustleton Av & Gorman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027788, 40.105169 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1489", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028472, 40.103574 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26159", "stop_name": "Bustleton Av & Northeast Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030282, 40.09942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26160", "stop_name": "Bustleton Av & Norwalk Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030514, 40.098153 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26162", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030603, 40.096976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23250", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031332, 40.093577 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23251", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032742, 40.091109 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23252", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033554, 40.089693 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23253", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034639, 40.088339 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23254", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035793, 40.087111 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26164", "stop_name": "Bustleton Av & Grant Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036994, 40.086017 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23255", "stop_name": "Welsh Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038248, 40.083888 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23256", "stop_name": "Welsh Rd & Old Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037865, 40.082575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23257", "stop_name": "Old Bustleton Av & Welsh Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039126, 40.08124 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23258", "stop_name": "Old Bustleton Av & Asmbassador - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040458, 40.079914 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23259", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04116, 40.079211 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23260", "stop_name": "Old Bustleton Av & Winchester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043087, 40.077289 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23261", "stop_name": "Bustleton Av & Benton St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046341, 40.0748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23262", "stop_name": "Bustleton Av & Tolbut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047187, 40.073785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23263", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048258, 40.072503 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23264", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049555, 40.071079 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26165", "stop_name": "Bustleton Av & Bergen St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050901, 40.069405 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23269", "stop_name": "Bustleton Av & Fox Chase Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051279, 40.067246 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "882", "stop_name": "Bustleton Av & Strahle St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051391, 40.066086 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23274", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051574, 40.065025 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23275", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.06324 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23277", "stop_name": "Bustleton Av & Stanwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051924, 40.061465 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23278", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052099, 40.059644 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23279", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052758, 40.058174 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23280", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053404, 40.056614 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23281", "stop_name": "Bustleton Av & Glendale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054123, 40.054813 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23282", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054981, 40.053575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23283", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056052, 40.052311 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23284", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057159, 40.05102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23285", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058122, 40.049907 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1488", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059883, 40.04785 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23286", "stop_name": "Bustleton Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060735, 40.04547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23288", "stop_name": "Bustleton Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061936, 40.044206 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23289", "stop_name": "Bustleton Av & Tyson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06316, 40.042978 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23291", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064348, 40.041767 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30997", "stop_name": "Bustleton Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065584, 40.040539 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15856", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066808, 40.03932 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "505", "stop_name": "Bustleton Av & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06802, 40.038128 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23293", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069303, 40.036917 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23295", "stop_name": "Bustleton Av & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070539, 40.035707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23297", "stop_name": "Bustleton Av & Robbins Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071647, 40.033979 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1129", "stop_name": "Bustleton Av & Deveraux Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072279, 40.032892 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22468", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073079, 40.031386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "338", "stop_name": "Bustleton Av & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073784, 40.029879 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22469", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074489, 40.028373 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22470", "stop_name": "Bustleton Av & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075523, 40.027189 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "867", "stop_name": "Frankford Transit Center - Rt 58", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077826, 40.022875 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22335", "stop_name": "Bustleton Av & Cheltenham Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07537, 40.027144 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22336", "stop_name": "Bustleton Av & Van Kirk St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074466, 40.028212 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "326", "stop_name": "Bustleton Av & Comly St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073642, 40.029915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22337", "stop_name": "Bustleton Av & Benner St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07302, 40.031252 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1107", "stop_name": "Bustleton Av & Devereux Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072269, 40.03266 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23039", "stop_name": "Bustleton Av & Robbins Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071434, 40.034121 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23040", "stop_name": "Bustleton Av & Levick St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069958, 40.036098 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23041", "stop_name": "Bustleton Av & Hellerman St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069292, 40.036748 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "21956", "stop_name": "Bustleton Av & Magee St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068045, 40.037931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15752", "stop_name": "Bustleton Av & Unruh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.066797, 40.039142 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15753", "stop_name": "Bustleton Av & Harbison Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065716, 40.040245 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23042", "stop_name": "Bustleton Av & Longshore Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064349, 40.041589 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23043", "stop_name": "Bustleton Av & Tyson Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062959, 40.042995 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23044", "stop_name": "Bustleton Av & Princeton St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.061925, 40.044036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23045", "stop_name": "Bustleton Av & Saint Vincent St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060581, 40.045567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "868", "stop_name": "Bustleton Av & Cottman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.059897, 40.047547 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23100", "stop_name": "Bustleton Av & Bleigh Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.058219, 40.049586 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23099", "stop_name": "Bustleton Av & Shelmire Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057124, 40.050868 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23101", "stop_name": "Bustleton Av & Oakmont St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056565, 40.051527 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23102", "stop_name": "Bustleton Av & Faunce St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056018, 40.052159 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23103", "stop_name": "Bustleton Av & Napfle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.5, "percent_change": 0.31, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054947, 40.053423 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23104", "stop_name": "Bustleton Av & Hartel Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053946, 40.054893 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23105", "stop_name": "Bustleton Av & Borbeck Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053347, 40.056381 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23106", "stop_name": "Bustleton Av & Loney St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052712, 40.057924 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23107", "stop_name": "Bustleton Av & Rhawn St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052018, 40.059403 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23108", "stop_name": "Bustleton Av & Stanwood St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051759, 40.061464 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23109", "stop_name": "Bustleton Av & Solly Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051632, 40.062981 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23110", "stop_name": "Bustleton Av & Hoffnagle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051445, 40.064828 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23111", "stop_name": "Bustleton Av & Strahle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051153, 40.066478 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23112", "stop_name": "Bustleton Av & Bergen St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050581, 40.069386 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23113", "stop_name": "Bustleton Av & Tustin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04945, 40.070775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23114", "stop_name": "Bustleton Av & Mower St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048153, 40.072199 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23115", "stop_name": "Bustleton Av & Tolbut St - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046725, 40.0739 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23116", "stop_name": "Bustleton Av & Benton St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045987, 40.074799 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26128", "stop_name": "Bustleton Av & Winchester Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043879, 40.077363 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23117", "stop_name": "Old Bustleton Av & Winchester - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042803, 40.07736 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23118", "stop_name": "Old Bustleton Av & Gregg St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041803, 40.078356 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26129", "stop_name": "Old Bustleton Av & Gregg St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041149, 40.079006 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23119", "stop_name": "Old Bustleton Av & Ambassador St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.040257, 40.079905 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26130", "stop_name": "Old Bustleton Av & Ambassador St - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039044, 40.081115 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23120", "stop_name": "Old Bustleton Av & Welsh Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037866, 40.082307 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22379", "stop_name": "Welsh Rd & Bustleton Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038094, 40.083941 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23121", "stop_name": "Bustleton Av & Grant Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036877, 40.085782 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23122", "stop_name": "Bustleton Av & Murray St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03577, 40.086915 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23123", "stop_name": "Bustleton Av & Fulmer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034616, 40.088143 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26131", "stop_name": "Bustleton Av & Lott St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033508, 40.089469 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23124", "stop_name": "Bustleton Av & Bowler St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032648, 40.090931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26132", "stop_name": "Bustleton Av & President St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.5, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031262, 40.093399 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23125", "stop_name": "Haldeman Av & Bustleton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029932, 40.094314 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26136", "stop_name": "Bustleton Av & Norwalk Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030324, 40.098278 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23126", "stop_name": "Haldeman Av & Clark St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02781, 40.094976 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26137", "stop_name": "Bustleton Av & Norwalk Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030044, 40.09958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23127", "stop_name": "Haldeman Av & Conwell Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025309, 40.095772 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26138", "stop_name": "Bustleton Av & Red Lion Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028763, 40.102254 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23128", "stop_name": "Haldeman Av & Montour St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022334, 40.096699 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "870", "stop_name": "Red Lion Rd & Haldeman Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.018412, 40.097472 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23129", "stop_name": "Bustleton Av & Proctor Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028271, 40.103448 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23678", "stop_name": "Bustleton Av & Burgess St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02158, 40.114771 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23130", "stop_name": "Bustleton Av & Gorman St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027504, 40.105231 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23680", "stop_name": "Bustleton Av & Larkspur St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.020472, 40.115937 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23679", "stop_name": "Bustleton Av & Rennard St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019865, 40.116568 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23131", "stop_name": "Bustleton Av & Lawler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025135, 40.109882 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23147", "stop_name": "Bustleton Av & Hendrix St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017994, 40.118829 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23132", "stop_name": "Bustleton Av & Kelvin Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024311, 40.111085 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23148", "stop_name": "Bustleton Av & Leo Mall Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017408, 40.119791 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23149", "stop_name": "Bustleton Av & Somerton Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.016153, 40.121894 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23677", "stop_name": "Bustleton Av & Tomlinson Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023058, 40.112901 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23150", "stop_name": "Bustleton Av & Byberry Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015375, 40.123435 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "872", "stop_name": "Tomlinson Rd & Bustleton Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02373, 40.113457 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23151", "stop_name": "Bustleton Av & Trevose Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014883, 40.124567 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23152", "stop_name": "Bustleton Av & Denise Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014389, 40.126119 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23153", "stop_name": "Bustleton Av & Hazell Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014207, 40.126841 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23154", "stop_name": "Bustleton Av & Poquessing Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013746, 40.128696 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23155", "stop_name": "Bustleton Av & Philmont Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012202, 40.131592 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26143", "stop_name": "Bustleton Av & Southampton Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.010845, 40.132935 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26144", "stop_name": "Bustleton Av & Southampton Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009989, 40.133602 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1097", "stop_name": "County Line Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009792, 40.134851 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "874", "stop_name": "Bustleton Av & County Line", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009168, 40.134224 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26147", "stop_name": "Bustleton Av & County Line Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008104, 40.135996 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23157", "stop_name": "Bustleton Av & Dolton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007394, 40.137931 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23158", "stop_name": "Bustleton Av & Woodland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006624, 40.13999 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23159", "stop_name": "Bustleton Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00583, 40.142058 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23160", "stop_name": "Bustleton Av & Pine Hill Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005277, 40.143467 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23161", "stop_name": "Bustleton Av & 5th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004531, 40.145455 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23162", "stop_name": "Bustleton Av & Park Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003906, 40.147068 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23163", "stop_name": "Bustleton Av & Stoltz Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003076, 40.149234 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23164", "stop_name": "Bustleton Av & Street Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002619, 40.150375 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23165", "stop_name": "Bustleton Pk & Ruth St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001766, 40.152523 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23166", "stop_name": "Bustleton Pk & Bridgetown Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001369, 40.153584 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "26151", "stop_name": "Bridgetown Pk & Jay St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999693, 40.154605 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23167", "stop_name": "Bridgetown Pk & Arbor Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997152, 40.15573 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23168", "stop_name": "Bridgetown Pk & Milton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995287, 40.156536 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23169", "stop_name": "Bridgetown Pk & Bertha St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992829, 40.157643 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23170", "stop_name": "Bridgetown Pk & Myrtle Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991545, 40.158486 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23171", "stop_name": "Bridgetown Pk & Elmwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989832, 40.159775 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23172", "stop_name": "Elmwood Av & Anna Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98765, 40.15833 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23173", "stop_name": "Elmwood Av & Poplar St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986448, 40.157335 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23174", "stop_name": "Elmwood Av & Meadowbrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9843, 40.156096 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23175", "stop_name": "Elmwood Av & Oak Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982459, 40.155036 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23176", "stop_name": "Elmwood Av & Forest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979793, 40.153491 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23177", "stop_name": "Elmwood Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978129, 40.152521 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "875", "stop_name": "Elmwood Av & Brownsville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97558, 40.151102 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23178", "stop_name": "Brownsville Rd & Magnolia Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973579, 40.152951 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23179", "stop_name": "Brownsville Rd & Somers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972411, 40.154152 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23180", "stop_name": "Brownsville Rd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971016, 40.155557 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23181", "stop_name": "Bristol Rd & Chestnut Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969398, 40.154837 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23182", "stop_name": "Bristol Rd & Spruce Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966177, 40.152942 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25007", "stop_name": "Bristol Rd & Fulton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96416, 40.151747 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23183", "stop_name": "Bristol Rd & Pine St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961476, 40.149336 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23184", "stop_name": "Bristol Rd & Grove Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960419, 40.147958 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23185", "stop_name": "Bristol Rd & Old Lincoln Hwy", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958118, 40.145022 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23186", "stop_name": "Old Lincoln Hwy & Bristol Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960906, 40.14414 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23187", "stop_name": "Old Lincoln Hwy & Northbrook Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964527, 40.142707 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23188", "stop_name": "Rockhill Rd & Overlook Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963567, 40.140936 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23070", "stop_name": "Rockhill Rd & Horizon Corp Ctr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961326, 40.139625 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "25933", "stop_name": "Rockhill Rd & US1 Exit Ramp", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959109, 40.138331 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "23071", "stop_name": "Rockhill Rd & Neshaminy Blvd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95725, 40.136575 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30759", "stop_name": "Neshaminy Blvd & Rockhill Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.955361, 40.135729 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "58", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 16.2, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.2, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.8, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 16.0, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.6, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.6, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 15.6, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 15.6, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 15.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.4, "percent_change": 0.07, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 15.0, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.6, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.4, "percent_change": 0.09, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.6, "percent_change": 0.11, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.4, "percent_change": 0.09, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.2, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 13.4, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 18.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.2, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 18.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 18.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 18.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 18.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.2, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 17.0, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.0, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 16.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.8, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.8, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.2, "percent_change": -0.01, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.2, "percent_change": -0.01, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.2, "percent_change": -0.01, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 14.4, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.2, "percent_change": -0.01, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.4, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 10.4, "percent_change": -0.36, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.8, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 11.6, "percent_change": -0.34, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 11.6, "percent_change": -0.34, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.0, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.0, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 12.0, "percent_change": -0.32, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 12.0, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 12.0, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.8, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.4, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.4, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.4, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.4, "percent_change": -0.34, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 11.6, "percent_change": -0.33, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 12.0, "percent_change": -0.31, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.8, "percent_change": -0.38, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.8, "percent_change": -0.38, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.8, "percent_change": -0.37, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.8, "percent_change": -0.38, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.8, "percent_change": -0.38, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 10.6, "percent_change": -0.39, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 11.0, "percent_change": -0.35, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.8, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.8, "percent_change": -0.36, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.8, "percent_change": -0.37, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 10.6, "percent_change": -0.4, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 10.6, "percent_change": -0.4, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 10.6, "percent_change": -0.4, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.6, "percent_change": -0.38, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.6, "percent_change": -0.38, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.6, "percent_change": -0.38, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 10.6, "percent_change": -0.38, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 10.6, "percent_change": -0.38, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 10.6, "percent_change": -0.36, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 10.6, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.8, "percent_change": -0.32, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.0, "percent_change": -0.31, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.4, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 10.4, "percent_change": -0.35, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.0, "percent_change": -0.28, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.4, "percent_change": -0.25, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.6, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.6, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.8, "percent_change": -0.22, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.0, "percent_change": -0.33, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.2, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.2, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.2, "percent_change": -0.32, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 12.0, "percent_change": -0.24, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.8, "percent_change": -0.28, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 11.8, "percent_change": -0.29, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.4, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.4, "percent_change": -0.3, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 11.6, "percent_change": -0.29, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.8, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.8, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.8, "percent_change": -0.26, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 11.8, "percent_change": -0.27, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 13.6, "percent_change": -0.34, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 13.6, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 13.6, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.6, "percent_change": -0.32, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.6, "percent_change": -0.32, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.6, "percent_change": -0.32, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.6, "percent_change": -0.32, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.6, "percent_change": -0.32, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.6, "percent_change": -0.32, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.0, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.0, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 14.0, "percent_change": -0.31, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.0, "percent_change": -0.31, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 13.8, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.8, "percent_change": -0.31, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 13.8, "percent_change": -0.3, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 13.6, "percent_change": -0.31, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 14.0, "percent_change": -0.28, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.8, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.8, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.0, "percent_change": -0.27, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.0, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.0, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.0, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.0, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.0, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.0, "percent_change": -0.26, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.8, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.8, "percent_change": -0.26, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.6, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.6, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.4, "percent_change": -0.3, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.6, "percent_change": -0.29, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.8, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.8, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.8, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.8, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.8, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.8, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.8, "percent_change": -0.29, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 19.6, "arrivals_during_cuts": 13.8, "percent_change": -0.3, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 13.8, "percent_change": -0.3, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 13.6, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 19.8, "arrivals_during_cuts": 13.6, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 13.4, "percent_change": -0.34, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 13.2, "percent_change": -0.35, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.2, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.2, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 13.2, "percent_change": -0.34, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.8, "percent_change": -0.33, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 12.8, "percent_change": -0.33, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.2, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.2, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.2, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.4, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.6, "percent_change": -0.31, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 15.0, "percent_change": -0.29, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.6, "percent_change": -0.3, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.4, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.4, "percent_change": -0.33, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 14.4, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 14.4, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.2, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 14.0, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.0, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.0, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.2, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.0, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 14.0, "percent_change": -0.31, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 14.0, "percent_change": -0.32, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.0, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 13.8, "percent_change": -0.35, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 14.0, "percent_change": -0.33, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.0, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.0, "percent_change": -0.34, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 13.8, "percent_change": -0.35, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 13.8, "percent_change": -0.35, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 13.8, "percent_change": -0.35, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 13.4, "percent_change": -0.36, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 13.4, "percent_change": -0.36, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.0, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.0, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 16.0, "percent_change": -0.21, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 20.6, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.4, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 17.4, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.6, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 17.2, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.2, "percent_change": -0.18, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 17.6, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 17.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.6, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.6, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 17.6, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 17.6, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 17.6, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 17.6, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.6, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.8, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.6, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.4, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.4, "percent_change": -0.17, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 17.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 17.4, "percent_change": -0.18, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 17.2, "percent_change": -0.2, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 17.4, "percent_change": -0.19, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.0, "percent_change": -0.17, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.2, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 18.2, "percent_change": -0.16, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.2, "percent_change": -0.15, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 18.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 18.0, "percent_change": -0.13, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 17.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.4, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 17.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 17.2, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.2, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.2, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.8, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.6, "percent_change": -0.1, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.8, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.8, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 16.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 16.8, "percent_change": -0.08, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.0, "percent_change": -0.09, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 17.4, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 17.8, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 17.8, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 17.8, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.2, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.2, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.2, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.0, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.0, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 18.2, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 18.2, "percent_change": -0.05, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 18.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 17.8, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 17.6, "percent_change": -0.08, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 17.6, "percent_change": -0.08, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 17.8, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 17.8, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 17.8, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 16.4, "percent_change": -0.15, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 16.4, "percent_change": -0.11, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.8, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.8, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.6, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.6, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.6, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.6, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 11.6, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.6, "percent_change": -0.24, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.2, "percent_change": -0.26, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.2, "percent_change": -0.26, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.2, "percent_change": -0.26, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 11.4, "percent_change": -0.25, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.2, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 11.2, "percent_change": -0.28, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.6, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.6, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 11.6, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 11.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 11.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 11.8, "percent_change": -0.23, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.0, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.0, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.0, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.0, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 12.0, "percent_change": -0.21, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 12.0, "percent_change": -0.22, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.2, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.4, "percent_change": -0.22, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.6, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.6, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.6, "percent_change": -0.21, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.6, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.6, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 12.6, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.6, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 12.8, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.0, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.0, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.0, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.0, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 11.0, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.0, "percent_change": -0.24, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.2, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 11.2, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.2, "percent_change": -0.22, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.4, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.4, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.4, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 11.8, "percent_change": -0.18, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.0, "percent_change": -0.19, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.2, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.2, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.0, "percent_change": -0.18, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.4, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.4, "percent_change": -0.16, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 11.2, "percent_change": -0.24, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 11.2, "percent_change": -0.2, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.5, "percent_change": -0.32, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 7.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.5, "percent_change": -0.25, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.0, "percent_change": -0.44, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.0, "percent_change": -0.44, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.5, "percent_change": -0.4, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.0, "percent_change": -0.39, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 7.5, "percent_change": -0.35, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.0, "percent_change": -0.48, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 6.0, "percent_change": -0.48, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.5, "percent_change": -0.14, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.5, "percent_change": -0.17, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.0, "percent_change": -0.14, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 11.0, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.0, "percent_change": -0.23, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.0, "percent_change": -0.38, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.5, "percent_change": -0.32, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.5, "percent_change": -0.37, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 8.0, "percent_change": -0.41, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 7.5, "percent_change": -0.38, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.5, "percent_change": -0.29, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.0, "percent_change": -0.33, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 8.0, "percent_change": -0.36, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 8.0, "percent_change": -0.3, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "12196", "stop_name": "Richmond St & Allegheny Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101437, 39.983053 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30799", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102882, 39.984708 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4355", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.103611, 39.985522 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4358", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104258, 39.986264 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3743", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104963, 39.987061 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4356", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106244, 39.988501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30800", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.107232, 39.989637 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4360", "stop_name": "Allegheny Av & Collins St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.109042, 39.99165 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3739", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110171, 39.992965 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15003", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111264, 39.994208 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4366", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11211, 39.995156 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4367", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113263, 39.996453 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3742", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115353, 39.996815 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4365", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117301, 39.99707 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4362", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119226, 39.997316 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4361", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121163, 39.997562 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4359", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123112, 39.997798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4357", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125273, 39.998098 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4354", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127245, 39.998344 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3740", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.129111, 39.998598 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30801", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131131, 39.998835 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4342", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133127, 39.999108 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "15004", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135524, 39.999435 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20599", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138371, 39.999798 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3914", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.14039, 40.000044 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4352", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 40.000253 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4353", "stop_name": "Allegheny Av & Glenwood Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143459, 40.001006 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "13021", "stop_name": "Sedgley Av & 10th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 40.00168 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3744", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148044, 40.001034 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4327", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150595, 40.001388 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20600", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152745, 40.001634 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4328", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154422, 40.001851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4329", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 40.00206 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4330", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 40.002269 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4331", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160729, 40.002668 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4332", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162312, 40.002868 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4333", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164166, 40.003113 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4334", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165773, 40.003322 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4335", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167415, 40.003521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "3738", "stop_name": "Allegheny Av & Fox St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168844, 40.003721 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4337", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 40.003939 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "898", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 40.004138 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "20607", "stop_name": "Allegheny & 27th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.173451, 40.00431 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4340", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.004501 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "14950", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176794, 40.004719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "275", "stop_name": "Allegheny Av & Hunting Park Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 40.004963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4344", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179936, 40.005145 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4345", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181566, 40.005335 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4346", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.183231, 40.005544 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4349", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184779, 40.005761 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "4350", "stop_name": "Allegheny Av & 35th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186362, 40.00596 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "35th-Allegheny", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30112", "stop_name": "35th St & Allegheny Av Loop", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186728, 40.006059 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15005", "stop_name": "Allegheny Av & 34th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185027, 40.005681 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15006", "stop_name": "Allegheny Av & 33rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183456, 40.005473 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15007", "stop_name": "Allegheny Av & 32nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181826, 40.005247 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "24646", "stop_name": "Allegheny Av & Napa St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180491, 40.005074 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15009", "stop_name": "Allegheny Av & 29th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17703, 40.00463 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "14951", "stop_name": "Allegheny Av & 28th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175388, 40.004421 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "4339", "stop_name": "Allegheny Av & 27th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173959, 40.004249 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20601", "stop_name": "Allegheny Av & 26th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172376, 40.00404 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15011", "stop_name": "Allegheny Av & 25th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170793, 40.003841 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15012", "stop_name": "Allegheny Av & 24th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 40.003641 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15013", "stop_name": "Allegheny Av & 23rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16764, 40.003424 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20602", "stop_name": "Allegheny Av & 22nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 40.003224 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15014", "stop_name": "Allegheny Av & 21st St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16445, 40.003024 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15015", "stop_name": "Allegheny Av & 20th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 40.00277 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15016", "stop_name": "Allegheny Av & 19th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 40.002571 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15018", "stop_name": "Allegheny Av & 17th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157859, 40.002171 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15019", "stop_name": "Allegheny Av & 16th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 40.001963 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15020", "stop_name": "Allegheny Av & 15th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154706, 40.001763 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20603", "stop_name": "Allegheny Av & Broad St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153064, 40.001545 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15021", "stop_name": "Allegheny Av & 13th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.00129 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15022", "stop_name": "Allegheny Av & Germantown Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 40.000936 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15023", "stop_name": "Sedgley Av & 9th St - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145158, 40.001661 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15024", "stop_name": "Allegheny Av & Glenwood Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143519, 40.00081 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30793", "stop_name": "Allegheny Av & 7th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142316, 40.000164 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30794", "stop_name": "Allegheny Av & 6th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140698, 39.999946 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20604", "stop_name": "Allegheny Av & 5th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138666, 39.99971 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15025", "stop_name": "Allegheny Av & 3rd St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135749, 39.999337 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15026", "stop_name": "Allegheny Av & 2nd St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133399, 39.99901 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30795", "stop_name": "Allegheny Av & Mascher St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131403, 39.998747 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15027", "stop_name": "Allegheny Av & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129419, 39.99851 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15028", "stop_name": "Allegheny Av & A St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127517, 39.998255 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15029", "stop_name": "Allegheny Av & B St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.125581, 39.998001 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15030", "stop_name": "Allegheny Av & C St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123348, 39.997719 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15031", "stop_name": "Allegheny Av & D St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121376, 39.997464 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15032", "stop_name": "Allegheny Av & E St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119451, 39.997218 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15033", "stop_name": "Allegheny Av & F St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.117514, 39.996972 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15034", "stop_name": "Allegheny Av & G St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.115601, 39.996718 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "20605", "stop_name": "Allegheny Av & Kensington Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1137, 39.996481 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15035", "stop_name": "Allegheny Av & Jasper St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112358, 39.99521 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15036", "stop_name": "Allegheny Av & Emerald St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111524, 39.994262 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15037", "stop_name": "Allegheny Av & Frankford Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11043, 39.993019 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30796", "stop_name": "Allegheny Av & Amber St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109678, 39.99216 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15039", "stop_name": "Allegheny Av & Tulip St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.107491, 39.989691 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15040", "stop_name": "Allegheny Av & Aramingo Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106492, 39.988546 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15041", "stop_name": "Allegheny Av & Gaul St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105246, 39.987097 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15042", "stop_name": "Allegheny Av & Belgrade St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104517, 39.986319 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15043", "stop_name": "Allegheny Av & Almond St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103871, 39.985576 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "30797", "stop_name": "Allegheny Av & Thompson St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.103142, 39.984762 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "15044", "stop_name": "Allegheny Av & Emery St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101873, 39.983331 ] } }, +{ "type": "Feature", "properties": { "route_id": "60", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Richmond-Westmoreland", "stop_id": "341", "stop_name": "Richmond St & Westmoreland St Loop", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099553, 39.984253 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.6, "percent_change": 0.39, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "30857", "stop_name": "Lancaster Av & Malvern Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246015, 39.984329 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.8, "percent_change": -0.26, "expected_wait_time_difference": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28299", "stop_name": "Lancaster Av & 60th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241612, 39.982752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.6, "percent_change": 0.39, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.6, "percent_change": 0.39, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.6, "percent_change": 0.43, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.8, "percent_change": 0.42, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.8, "percent_change": 0.42, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -525.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -525.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.8, "percent_change": 0.33, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.8, "percent_change": 0.38, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.4, "percent_change": 0.31, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.4, "percent_change": 0.31, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.6, "percent_change": 0.31, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.6, "percent_change": 0.36, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 0.8, "percent_change": -0.5, "expected_wait_time_difference": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 7.6, "percent_change": 0.36, "expected_wait_time_difference": -9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 7.4, "percent_change": 0.37, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 7.2, "percent_change": 0.38, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 7.0, "percent_change": 0.46, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.8, "percent_change": 0.36, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.2, "percent_change": 0.24, "expected_wait_time_difference": -8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.8, "percent_change": 0.9, "expected_wait_time_difference": -49.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.6, "percent_change": 0.8, "expected_wait_time_difference": -46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.6, "percent_change": 0.8, "expected_wait_time_difference": -46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.6, "percent_change": 0.8, "expected_wait_time_difference": -46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 3.4, "percent_change": 3.25, "expected_wait_time_difference": -200.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 3.4, "percent_change": 3.25, "expected_wait_time_difference": -200.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -787.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -787.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.4, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.4, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 17.4, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 17.4, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 17.4, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 17.4, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.4, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.4, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.4, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.4, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.4, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.4, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.6, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.6, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.6, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.2, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 17.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.8, "percent_change": 0.01, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 16.6, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.6, "percent_change": 0.48, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.6, "percent_change": 0.48, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.6, "percent_change": 0.48, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.6, "percent_change": 0.48, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.6, "percent_change": 0.48, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.0, "percent_change": 0.43, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 15.8, "percent_change": 0.41, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 15.8, "percent_change": 0.41, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 15.8, "percent_change": 0.41, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 15.8, "percent_change": 0.41, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.8, "percent_change": 0.44, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.8, "percent_change": 0.44, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.8, "percent_change": 0.44, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.8, "percent_change": 0.44, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.6, "percent_change": 0.42, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.4, "percent_change": 0.4, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.2, "percent_change": 0.38, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.2, "percent_change": 0.38, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.2, "percent_change": 0.38, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.2, "percent_change": 0.38, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.2, "percent_change": 0.38, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.2, "percent_change": 0.38, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.0, "percent_change": 0.36, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 15.0, "percent_change": 0.36, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 15.0, "percent_change": 0.39, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 15.0, "percent_change": 0.42, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 15.0, "percent_change": 0.42, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 15.0, "percent_change": 0.42, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 15.0, "percent_change": 0.42, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 14.8, "percent_change": 0.4, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 14.6, "percent_change": 0.4, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.6, "percent_change": 0.46, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.4, "percent_change": 0.44, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.2, "percent_change": 0.42, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.2, "percent_change": 0.42, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.2, "percent_change": 0.42, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.2, "percent_change": 0.42, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.2, "percent_change": 0.42, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.2, "percent_change": 0.42, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 14.0, "percent_change": 0.4, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 13.6, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 13.6, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 13.6, "percent_change": 0.36, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 13.4, "percent_change": 0.37, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 13.4, "percent_change": 0.4, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 13.4, "percent_change": 0.4, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 13.4, "percent_change": 0.43, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 3.0, "percent_change": 2.75, "expected_wait_time_difference": -192.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.6, "percent_change": 0.17, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.6, "percent_change": 0.2, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.6, "percent_change": 0.23, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.8, "percent_change": 0.47, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28199", "stop_name": "Lancaster Av & 60th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241328, 39.982787 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20610", "stop_name": "Malvern Av & 63rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.247009, 39.983697 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.8, "percent_change": 0.47, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.8, "percent_change": 0.47, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30857", "stop_name": "Lancaster Av & Malvern Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246015, 39.984329 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.8, "percent_change": 0.47, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.8, "percent_change": 0.47, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.8, "percent_change": 0.47, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 8.8, "percent_change": 0.52, "expected_wait_time_difference": -12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 8.8, "percent_change": 0.52, "expected_wait_time_difference": -12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 8.6, "percent_change": 0.48, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 8.2, "percent_change": 0.41, "expected_wait_time_difference": -10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.4, "percent_change": 0.75, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.6, "percent_change": 0.32, "expected_wait_time_difference": -10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.4, "percent_change": 0.75, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.2, "percent_change": -0.24, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.8, "percent_change": -0.33, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.2, "percent_change": -0.24, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.2, "percent_change": -0.24, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 10.0, "percent_change": 0.79, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 10.0, "percent_change": 0.85, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.2, "percent_change": -0.24, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 10.0, "percent_change": 0.85, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 10.0, "percent_change": 0.85, "expected_wait_time_difference": -7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 10.2, "percent_change": 0.59, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.8, "percent_change": 0.5, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.8, "percent_change": 0.5, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.6, "percent_change": 0.47, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.0, "percent_change": 0.53, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.0, "percent_change": 0.53, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.2, "percent_change": 0.56, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.0, "percent_change": 0.53, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 11.0, "percent_change": 0.53, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.2, "percent_change": 0.44, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.2, "percent_change": 0.44, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.2, "percent_change": 0.44, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.0, "percent_change": 0.41, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.0, "percent_change": 0.49, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 11.2, "percent_change": 0.47, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.2, "percent_change": 0.51, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 11.2, "percent_change": 0.51, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 11.4, "percent_change": 0.5, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.6, "percent_change": 0.49, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 11.8, "percent_change": 1.27, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.6, "percent_change": 0.49, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 11.6, "percent_change": 0.49, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 4.0, "percent_change": 0.82, "expected_wait_time_difference": -18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 10.8, "percent_change": 0.42, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 10.8, "percent_change": 0.42, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 10.8, "percent_change": 0.42, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.8, "percent_change": 0.5, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.8, "percent_change": 0.5, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.6, "percent_change": 0.47, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 10.6, "percent_change": 0.47, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 10.8, "percent_change": 0.54, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 11.2, "percent_change": 0.75, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 11.2, "percent_change": 0.75, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 11.4, "percent_change": 0.78, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 11.4, "percent_change": 0.78, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.2, "percent_change": 0.7, "expected_wait_time_difference": -5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.6, "percent_change": 0.76, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 11.8, "percent_change": 0.84, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 12.0, "percent_change": 0.82, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 12.0, "percent_change": 0.76, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 12.0, "percent_change": 0.76, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 12.0, "percent_change": 0.76, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 12.0, "percent_change": 0.76, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 12.0, "percent_change": 0.76, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 12.0, "percent_change": 0.76, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.0, "percent_change": 0.71, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.0, "percent_change": 0.71, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.2, "percent_change": 0.74, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.2, "percent_change": 0.74, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 12.4, "percent_change": 0.72, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 12.4, "percent_change": 0.72, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 12.6, "percent_change": 0.7, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 12.6, "percent_change": 0.7, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 12.6, "percent_change": 0.7, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 12.6, "percent_change": 0.66, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 12.6, "percent_change": 0.66, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 12.6, "percent_change": 0.7, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 12.6, "percent_change": 0.75, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.6, "percent_change": 0.8, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.8, "percent_change": 0.83, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.8, "percent_change": 0.83, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 12.8, "percent_change": 0.83, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 13.0, "percent_change": 0.91, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.0, "percent_change": 0.84, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.0, "percent_change": 0.84, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.0, "percent_change": 0.84, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 3.0, "percent_change": 4.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.0, "percent_change": 0.84, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 3.0, "percent_change": 6.5, "expected_wait_time_difference": -195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.0, "percent_change": 0.84, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 3.0, "percent_change": 6.5, "expected_wait_time_difference": -195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.6, "percent_change": 0.83, "expected_wait_time_difference": -11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 5.8, "percent_change": 1.64, "expected_wait_time_difference": -25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 3.0, "percent_change": 6.5, "expected_wait_time_difference": -195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.6, "percent_change": 0.83, "expected_wait_time_difference": -11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 3.0, "percent_change": 6.5, "expected_wait_time_difference": -195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.6, "percent_change": 0.94, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.6, "percent_change": 1.2, "expected_wait_time_difference": -16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 2.8, "percent_change": 6.0, "expected_wait_time_difference": -192.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.4, "percent_change": 1.13, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 2.8, "percent_change": 6.0, "expected_wait_time_difference": -192.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 2.8, "percent_change": 6.0, "expected_wait_time_difference": -192.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 2.4, "percent_change": 5.0, "expected_wait_time_difference": -187.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 2.4, "percent_change": 5.0, "expected_wait_time_difference": -187.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.6, "percent_change": 0.2, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.6, "percent_change": 0.2, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.6, "percent_change": 0.2, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.6, "percent_change": 0.17, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.4, "percent_change": 0.15, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.6, "percent_change": 0.17, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.6, "percent_change": 0.17, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.6, "percent_change": 0.2, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.6, "percent_change": 0.23, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.4, "percent_change": 0.24, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.0, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.8, "percent_change": -0.25, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.0, "percent_change": -0.22, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.2, "percent_change": 0.1, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.4, "percent_change": 0.12, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.6, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.6, "percent_change": 0.17, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.4, "percent_change": 0.13, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.6, "percent_change": 0.18, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.6, "percent_change": 0.2, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.8, "percent_change": 0.23, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.0, "percent_change": 0.31, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.0, "percent_change": 0.31, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.0, "percent_change": 0.31, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.0, "percent_change": 0.34, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.0, "percent_change": 0.34, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.0, "percent_change": 0.34, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.2, "percent_change": 0.37, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 11.2, "percent_change": 0.37, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 11.0, "percent_change": 0.31, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.0, "percent_change": 0.28, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.4, "percent_change": 0.21, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 10.8, "percent_change": 0.23, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.8, "percent_change": 0.17, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.0, "percent_change": 0.2, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.0, "percent_change": 0.2, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.0, "percent_change": 0.2, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.0, "percent_change": 0.2, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.0, "percent_change": 0.22, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.0, "percent_change": 0.22, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.0, "percent_change": 0.22, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 11.2, "percent_change": 0.27, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 11.6, "percent_change": 0.32, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 11.6, "percent_change": 0.32, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 11.6, "percent_change": 0.32, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.8, "percent_change": 0.31, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.6, "percent_change": 0.76, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.6, "percent_change": 0.76, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.6, "percent_change": 0.76, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.6, "percent_change": 0.76, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.6, "percent_change": 0.76, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 11.6, "percent_change": 0.76, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 11.6, "percent_change": 0.71, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 11.6, "percent_change": 0.71, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 11.6, "percent_change": 0.71, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 9.8, "percent_change": 0.44, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.4, "percent_change": 0.95, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.2, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.0, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.2, "percent_change": -0.16, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.2, "percent_change": 0.24, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.2, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.2, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 15.2, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.2, "percent_change": -0.09, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.2, "percent_change": -0.09, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.8, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.8, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.4, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.2, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.2, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.0, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.0, "percent_change": -0.23, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 13.8, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.0, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.0, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.0, "percent_change": -0.25, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 14.0, "percent_change": 0.23, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.8, "percent_change": -0.2, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.8, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.8, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 15.0, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 15.0, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 15.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.8, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.6, "percent_change": -0.2, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.6, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 14.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.2, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.2, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.2, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.2, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.2, "percent_change": -0.08, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.0, "percent_change": -0.23, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.2, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.0, "percent_change": -0.23, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.2, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.8, "percent_change": -0.27, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.8, "percent_change": -0.27, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.0, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.8, "percent_change": -0.27, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.8, "percent_change": -0.27, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.8, "percent_change": -0.27, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.2, "percent_change": 0.21, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.2, "percent_change": -0.48, "expected_wait_time_difference": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.0, "percent_change": -0.23, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.2, "percent_change": 0.21, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.2, "percent_change": -0.19, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.2, "percent_change": 0.21, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 4.4, "percent_change": 0.83, "expected_wait_time_difference": -28.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 9.2, "percent_change": 0.24, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.4, "percent_change": 0.69, "expected_wait_time_difference": -23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 4.0, "percent_change": -0.46, "expected_wait_time_difference": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 9.2, "percent_change": 0.24, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.4, "percent_change": 0.69, "expected_wait_time_difference": -23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.2, "percent_change": -0.54, "expected_wait_time_difference": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.2, "percent_change": 0.28, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.4, "percent_change": 0.69, "expected_wait_time_difference": -23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 3.2, "percent_change": -0.53, "expected_wait_time_difference": 24.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.4, "percent_change": 0.69, "expected_wait_time_difference": -23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 3.2, "percent_change": -0.53, "expected_wait_time_difference": 24.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 2.6, "percent_change": -0.54, "expected_wait_time_difference": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 2.6, "percent_change": -0.55, "expected_wait_time_difference": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.2, "percent_change": 0.62, "expected_wait_time_difference": -22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.2, "percent_change": 0.62, "expected_wait_time_difference": -22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.2, "percent_change": 0.62, "expected_wait_time_difference": -22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.4, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 10.2, "percent_change": -0.19, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.0, "percent_change": -0.31, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.2, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.2, "percent_change": -0.31, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.4, "percent_change": -0.29, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.4, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.2, "percent_change": -0.27, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.8, "percent_change": -0.13, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.0, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 8.8, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.0, "percent_change": -0.24, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.0, "percent_change": -0.24, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.8, "percent_change": -0.22, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.8, "percent_change": -0.27, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.0, "percent_change": -0.26, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 9.8, "percent_change": -0.21, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.8, "percent_change": -0.27, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.8, "percent_change": -0.27, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 9.8, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.8, "percent_change": -0.27, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.8, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.8, "percent_change": -0.21, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.6, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.8, "percent_change": -0.17, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.0, "percent_change": -0.15, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 10.2, "percent_change": -0.18, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.6, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.2, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.6, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.4, "percent_change": -0.24, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.4, "percent_change": -0.24, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.4, "percent_change": -0.24, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.4, "percent_change": -0.24, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.0, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.0, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.6, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.6, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.6, "percent_change": -0.16, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.6, "percent_change": -0.16, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.6, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.4, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.6, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.4, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.4, "percent_change": -0.18, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.2, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.2, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.2, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.2, "percent_change": -0.18, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.8, "percent_change": -0.17, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 5.0, "percent_change": 1.78, "expected_wait_time_difference": -53.3 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.0, "percent_change": -0.42, "expected_wait_time_difference": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 5.0, "percent_change": 1.78, "expected_wait_time_difference": -53.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 4.8, "percent_change": 2.0, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 4.8, "percent_change": 2.0, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.2, "percent_change": -0.12, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.2, "percent_change": -0.12, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.2, "percent_change": -0.12, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 12.4, "arrivals_during_cuts": 13.8, "percent_change": 0.11, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 13.8, "percent_change": 0.13, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.8, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.0, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 15.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 15.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 15.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 16.0, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 16.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 17.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 17.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 17.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 17.2, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 17.0, "percent_change": 0.08, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.4, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 16.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 16.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 16.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 16.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 16.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 17.2, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.4, "percent_change": 0.18, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.4, "percent_change": 0.18, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.4, "percent_change": 0.19, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.4, "percent_change": 0.18, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.4, "percent_change": 0.18, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.4, "percent_change": 0.16, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.4, "percent_change": 0.16, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 17.4, "percent_change": 0.16, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.2, "percent_change": 0.16, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.2, "percent_change": 0.16, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.2, "percent_change": 0.16, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.2, "percent_change": 0.17, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.2, "percent_change": 0.16, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 17.2, "percent_change": 0.19, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 17.2, "percent_change": 0.19, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.4, "percent_change": 0.29, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.4, "percent_change": 0.29, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.4, "percent_change": 0.29, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.4, "percent_change": 0.29, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.4, "percent_change": 0.29, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.6, "percent_change": 0.35, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.6, "percent_change": 0.35, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.6, "percent_change": 0.35, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 16.4, "percent_change": 0.15, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.8, "percent_change": 0.41, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 16.6, "percent_change": 0.17, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.8, "percent_change": 0.41, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 16.6, "percent_change": 0.17, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.8, "percent_change": 0.41, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.8, "percent_change": 0.5, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 15.8, "percent_change": 0.39, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.8, "percent_change": 0.5, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.8, "percent_change": 0.56, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.6, "percent_change": 0.39, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.8, "percent_change": 0.5, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.8, "percent_change": 0.56, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.8, "percent_change": 0.42, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 4.8, "percent_change": 1.0, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.8, "percent_change": 0.56, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.8, "percent_change": 0.42, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.8, "percent_change": 0.73, "expected_wait_time_difference": -23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 9.0, "percent_change": 0.45, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.8, "percent_change": 0.56, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.8, "percent_change": 0.73, "expected_wait_time_difference": -23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 8.8, "percent_change": 0.42, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.8, "percent_change": 0.56, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.8, "percent_change": 0.73, "expected_wait_time_difference": -23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.8, "percent_change": 0.34, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.4, "percent_change": 0.85, "expected_wait_time_difference": -13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.8, "percent_change": 0.26, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.8, "percent_change": 0.73, "expected_wait_time_difference": -23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.8, "percent_change": 0.73, "expected_wait_time_difference": -23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 7.2, "percent_change": 0.38, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.6, "percent_change": 0.8, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.2, "percent_change": 0.44, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.4, "percent_change": 0.13, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.4, "percent_change": 0.13, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.4, "percent_change": 0.13, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.4, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.4, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.4, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.6, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.8, "percent_change": -0.1, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.8, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.6, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.0, "percent_change": -0.07, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.8, "percent_change": -0.12, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.0, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 5.4, "percent_change": -0.45, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.0, "percent_change": -0.52, "expected_wait_time_difference": 31.4 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 7.6, "percent_change": 0.31, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.0, "percent_change": -0.52, "expected_wait_time_difference": 31.4 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 2.2, "percent_change": -0.5, "expected_wait_time_difference": 27.3 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 2.2, "percent_change": -0.5, "expected_wait_time_difference": 27.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.2, "percent_change": 0.82, "expected_wait_time_difference": -19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.6, "percent_change": 0.22, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.2, "percent_change": 0.73, "expected_wait_time_difference": -21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.4, "percent_change": 0.07, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.8, "percent_change": -0.22, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.2, "percent_change": -0.18, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.2, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.2, "percent_change": -0.21, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.2, "percent_change": -0.21, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.2, "percent_change": -0.21, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.2, "percent_change": -0.21, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.2, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.2, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.4, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.4, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.4, "percent_change": -0.18, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.6, "percent_change": -0.25, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 8.6, "percent_change": -0.26, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 8.6, "percent_change": -0.28, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 8.6, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 8.6, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.4, "percent_change": -0.13, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 8.6, "percent_change": -0.3, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.2, "percent_change": -0.31, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.4, "percent_change": 0.5, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.2, "percent_change": -0.31, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.4, "percent_change": 0.5, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.2, "percent_change": 0.6, "expected_wait_time_difference": -28.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.2, "percent_change": -0.31, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.4, "percent_change": 0.5, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.8, "percent_change": 1.0, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.4, "percent_change": 0.5, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.8, "percent_change": 1.0, "expected_wait_time_difference": -53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.2, "percent_change": -0.31, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.4, "percent_change": 0.5, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -96.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.2, "percent_change": -0.31, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.8, "percent_change": 1.33, "expected_wait_time_difference": -71.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.4, "percent_change": 1.4, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.4, "percent_change": 1.4, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.4, "percent_change": 1.4, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.6, "percent_change": -0.1, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.2, "percent_change": -0.16, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.0, "percent_change": -0.19, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.6, "percent_change": -0.13, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.2, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.6, "percent_change": -0.15, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.6, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.8, "percent_change": 0.27, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.6, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.4, "percent_change": -0.52, "expected_wait_time_difference": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.4, "percent_change": 0.31, "expected_wait_time_difference": -13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -126.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.5, "percent_change": 4.0, "expected_wait_time_difference": -336.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.5, "percent_change": 4.0, "expected_wait_time_difference": -336.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.5, "percent_change": 4.0, "expected_wait_time_difference": -336.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.5, "percent_change": 4.0, "expected_wait_time_difference": -336.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.5, "percent_change": 1.75, "expected_wait_time_difference": -47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.5, "percent_change": 1.75, "expected_wait_time_difference": -47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.5, "percent_change": 1.75, "expected_wait_time_difference": -47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.5, "percent_change": 1.75, "expected_wait_time_difference": -47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.0, "percent_change": 0.5, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.5, "percent_change": 0.86, "expected_wait_time_difference": -19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.5, "percent_change": 0.62, "expected_wait_time_difference": -14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.5, "percent_change": -0.32, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.5, "percent_change": -0.35, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.0, "percent_change": -0.4, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.0, "percent_change": -0.44, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 4.5, "percent_change": -0.5, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 4.5, "percent_change": -0.5, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 4.5, "percent_change": -0.5, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 4.5, "percent_change": -0.5, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 6.0, "percent_change": 0.71, "expected_wait_time_difference": -17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.0, "percent_change": 1.4, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 6.0, "percent_change": -0.37, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 5.5, "percent_change": -0.42, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 5.5, "percent_change": -0.45, "expected_wait_time_difference": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 5.5, "percent_change": -0.39, "expected_wait_time_difference": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 6.5, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.5, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.0, "percent_change": -0.47, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.5, "percent_change": -0.4, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 4.5, "percent_change": -0.4, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.5, "percent_change": -0.47, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.5, "percent_change": -0.47, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 4.0, "percent_change": -0.53, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 3.5, "percent_change": -0.59, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 3.5, "percent_change": -0.56, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 4.5, "percent_change": -0.44, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.0, "percent_change": -0.5, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 3.5, "percent_change": -0.42, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28281", "stop_name": "Lankenau Dr & Lancaster Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2583, 39.98988 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24490", "stop_name": "City Av & Lancaster Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.253731, 39.988357 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24491", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250963, 39.989656 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.5, "percent_change": 1.2, "expected_wait_time_difference": -32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.5, "percent_change": 1.2, "expected_wait_time_difference": -32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6249", "stop_name": "City Av & Overbrook Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.248467, 39.990821 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.5, "percent_change": 1.2, "expected_wait_time_difference": -32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "25761", "stop_name": "City Av & 59th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.0, "percent_change": 1.4, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245782, 39.992112 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.5, "percent_change": 1.2, "expected_wait_time_difference": -32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "6248", "stop_name": "City Av & Berwick Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.0, "percent_change": 1.4, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243889, 39.993001 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.5, "percent_change": 1.2, "expected_wait_time_difference": -32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "31325", "stop_name": "Cardinal Av & City Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.0, "percent_change": 1.4, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241453, 39.993765 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24492", "stop_name": "Cardinal Av & Overbrook Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.0, "percent_change": 1.4, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240217, 39.992157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24493", "stop_name": "Overbrook Av & 58th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.0, "percent_change": 1.4, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241518, 39.991409 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24494", "stop_name": "Overbrook Av & 59th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 6.0, "percent_change": 1.4, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244014, 39.990271 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24495", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243332, 39.989154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24496", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242531, 39.9881 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28289", "stop_name": "59th St & Woodcrest Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241884, 39.987286 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24497", "stop_name": "59th St & Malvern Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.241177, 39.986437 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24498", "stop_name": "Malvern Av & Hobart St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239829, 39.986917 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24499", "stop_name": "Malvern Av & 58th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238587, 39.987496 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24500", "stop_name": "Malvern Av & 57th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237593, 39.987896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24501", "stop_name": "57th St & Lebanon Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23729, 39.986485 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24502", "stop_name": "57th St & Upland Way", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.237176, 39.985066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "194", "stop_name": "59th St & Columbia Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239537, 39.981214 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24503", "stop_name": "Oxford St & 59th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.239149, 39.980383 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24504", "stop_name": "Oxford St & 57th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23623, 39.980718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24505", "stop_name": "56th St & Lancaster Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234177, 39.980054 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24506", "stop_name": "56th St & Jefferson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234133, 39.97884 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24507", "stop_name": "56th St & Stewart St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.234005, 39.977885 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24508", "stop_name": "56th St & Lansdowne Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233796, 39.976743 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24509", "stop_name": "56th St & Media St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233481, 39.975171 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24510", "stop_name": "56th St & Master St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233214, 39.973591 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24511", "stop_name": "56th St & Thompson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232981, 39.972332 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24512", "stop_name": "56th St & Girard Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.23269, 39.970788 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24513", "stop_name": "56th St & Wyalusing Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232317, 39.968904 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24514", "stop_name": "56th St & Haverford Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232073, 39.967628 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24515", "stop_name": "56th St & Vine St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232055, 39.965334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24516", "stop_name": "56th St & Race St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232318, 39.964192 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24517", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232606, 39.962639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "197", "stop_name": "56th St & Market St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232989, 39.960766 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1417", "stop_name": "56th St & Chestnut St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233288, 39.959311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24518", "stop_name": "56th St & Walnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233563, 39.958062 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24519", "stop_name": "56th St & Locust St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233791, 39.956938 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24520", "stop_name": "56th St & Spruce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234042, 39.955707 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24521", "stop_name": "56th St & Pine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234281, 39.954654 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24522", "stop_name": "56th St & Larchwood Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234592, 39.95312 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24523", "stop_name": "56th St & Cedar Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234904, 39.951576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24524", "stop_name": "56th St & Catherine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235227, 39.950095 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "198", "stop_name": "56th St & Christian St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235561, 39.948561 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24525", "stop_name": "56th St & Washington Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235849, 39.947044 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20893", "stop_name": "Baltimore Av & 57th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237763, 39.946431 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24526", "stop_name": "58th St & Baltimore Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.240127, 39.945667 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24527", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237983, 39.943861 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24528", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236581, 39.942681 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24529", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.941492 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24530", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233765, 39.940347 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24531", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232529, 39.93906 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24532", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231257, 39.93796 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24533", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229855, 39.936789 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24535", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 39.935546 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24536", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227417, 39.934696 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24537", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226016, 39.933489 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "199", "stop_name": "58th St & Woodland Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224767, 39.932514 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20749", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227535, 39.930457 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "20750", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229191, 39.929282 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24538", "stop_name": "62nd St & Woodland Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230576, 39.928008 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24539", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229587, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24540", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 39.926076 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24541", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226665, 39.924994 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24542", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225099, 39.923876 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24543", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223744, 39.922749 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28300", "stop_name": "Dicks Av & 63rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224821, 39.921858 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "201", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 39.921117 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24544", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.222973, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28303", "stop_name": "63rd St & Passyunk Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218941, 39.918288 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24545", "stop_name": "63rd St & Passyunk Av - 2", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.216419, 39.917257 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24546", "stop_name": "Passyunk Av & 61st St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209393, 39.91803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24547", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193519, 39.921125 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28304", "stop_name": "Passyunk Av & Oregon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.19052, 39.921584 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24548", "stop_name": "Oregon Av & 24th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18826, 39.919464 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24549", "stop_name": "Oregon Av & 23rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186386, 39.918639 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24550", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184805, 39.91844 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "95", "stop_name": "Oregon Av & 21st St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.918159 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "96", "stop_name": "Oregon Av & 20th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180605, 39.917887 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11422", "stop_name": "Oregon Av & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179473, 39.917733 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24551", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177844, 39.917552 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24552", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176275, 39.917334 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24553", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174706, 39.917135 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24554", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 39.916962 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "98", "stop_name": "Oregon Av & Broad St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.91669 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21792", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169468, 39.916472 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "21794", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167686, 39.916237 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "1182", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.916073 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "16591", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164678, 39.915873 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24555", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163003, 39.915647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24556", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.915474 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18577", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159983, 39.915256 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18578", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.915066 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24347", "stop_name": "Oregon Av & 5th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156503, 39.914803 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "11468", "stop_name": "Oregon Av & 4th St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154839, 39.914594 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18136", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152775, 39.914313 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18137", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15163, 39.914167 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18138", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150132, 39.913977 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18139", "stop_name": "Oregon Av & Swanson St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147395, 39.913622 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24348", "stop_name": "Front St & Packer Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151396, 39.907317 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18140", "stop_name": "Oregon Av & Vandalia St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145154, 39.913394 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24557", "stop_name": "Front St & Pattison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152241, 39.902718 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "18141", "stop_name": "Oregon Av & Weccacoe Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143243, 39.913158 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24558", "stop_name": "Pattison Av & 3rd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154565, 39.902982 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24559", "stop_name": "Pattison Av & Galloway St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156511, 39.903227 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30088", "stop_name": "Weccacoe Av & Oregon Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140986, 39.913487 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24560", "stop_name": "Pattison Av & Lawrence St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158304, 39.903463 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30089", "stop_name": "Weccacoe Av & Oregon Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142022, 39.915385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 240.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28169", "stop_name": "Pattison Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162185, 39.903963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 240.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "28170", "stop_name": "7th St & Pattison Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161715, 39.90646 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24561", "stop_name": "7th St & Packer Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.909154 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "24562", "stop_name": "Packer Av & Lawrence St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.908281 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Food Center", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "175", "stop_name": "Packer Av & Galloway St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.907928 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30090", "stop_name": "Weccacoe Av & Wolf St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143249, 39.917576 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24349", "stop_name": "Packer Av & 3rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153839, 39.907737 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28166", "stop_name": "Weccacoe Av & Vandalia St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144737, 39.920292 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24350", "stop_name": "Packer Av & Front St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.90752 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30091", "stop_name": "Weccacoe Av & Snyder Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145241, 39.921105 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24268", "stop_name": "Snyder Av & Dilworth St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144097, 39.92104 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30092", "stop_name": "Snyder Av & Dilworth St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143011, 39.920895 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "31324", "stop_name": "Columbus Blvd & Oregon Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138047, 39.913726 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17359", "stop_name": "Oregon Av & Columbus Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13896, 39.912711 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17360", "stop_name": "Oregon Av & Weccacoe St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140494, 39.912911 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24838", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142924, 39.91322 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24837", "stop_name": "Oregon Av & Weccacoe St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144917, 39.913483 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17361", "stop_name": "Oregon Av & Vandalia St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146262, 39.913647 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17362", "stop_name": "Oregon Av & Swanson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147571, 39.913882 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "17364", "stop_name": "Oregon Av & Front St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 39.914181 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24351", "stop_name": "Oregon Av & 2nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151417, 39.91439 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24352", "stop_name": "Oregon Av & 3rd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153045, 39.914581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24353", "stop_name": "Oregon Av & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.914817 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16496", "stop_name": "Oregon Av & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.915035 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "16497", "stop_name": "Oregon Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.915243 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "732", "stop_name": "Oregon Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.915434 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24308", "stop_name": "Oregon Av & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161256, 39.915643 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24359", "stop_name": "Oregon Av & 9th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162813, 39.915852 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "999", "stop_name": "Oregon Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164406, 39.916069 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24360", "stop_name": "Oregon Av & 11th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16594, 39.916206 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24361", "stop_name": "Oregon Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16765, 39.916424 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24362", "stop_name": "Oregon Av & 13th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16909, 39.916614 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "103", "stop_name": "Oregon Av & Broad St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171166, 39.916922 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24363", "stop_name": "Oregon Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172865, 39.917131 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24364", "stop_name": "Oregon Av & 16th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.917339 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24365", "stop_name": "Oregon Av & 17th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.91753 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24366", "stop_name": "Oregon Av & 18th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177596, 39.917738 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24367", "stop_name": "Oregon Av & 19th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179519, 39.917983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21346", "stop_name": "Oregon Av & 20th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180734, 39.918137 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24369", "stop_name": "Oregon Av & 21st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182645, 39.918382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24407", "stop_name": "Oregon Av & 22nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.184205, 39.918581 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24408", "stop_name": "Oregon Av & 23rd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186468, 39.918863 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "105", "stop_name": "Oregon Av & 24th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.188106, 39.919705 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28171", "stop_name": "Passyunk Av & 28th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19255, 39.921445 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24929", "stop_name": "Passyunk Av & 28th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.921305 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30147", "stop_name": "Passyunk Av & 61st St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209841, 39.918165 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24424", "stop_name": "63rd St & Passyunk Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216347, 39.917382 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24426", "stop_name": "63rd St & Passyunk Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219207, 39.918535 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24429", "stop_name": "63rd St & Eastwick Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222655, 39.919963 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24430", "stop_name": "63rd St & Lindbergh Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223997, 39.921018 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24431", "stop_name": "62nd St & Dicks Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24432", "stop_name": "62nd St & Buist Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224827, 39.923831 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24433", "stop_name": "62nd St & Elmwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.226217, 39.925065 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24434", "stop_name": "62nd St & Grays Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227819, 39.926049 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24435", "stop_name": "62nd St & Paschall Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22928, 39.927203 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24436", "stop_name": "62nd St & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230505, 39.928133 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20717", "stop_name": "Woodland Av & 61st St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229287, 39.929041 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "20716", "stop_name": "Woodland Av & 60th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.930217 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "21619", "stop_name": "58th St & Woodland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.224672, 39.932612 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24437", "stop_name": "58th St & Greenway Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.933435 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "1423", "stop_name": "58th St & Kingsessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.227158, 39.934687 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24438", "stop_name": "58th St & Chester Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.228618, 39.935912 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24439", "stop_name": "58th St & Springfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.936762 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24441", "stop_name": "58th St & Warrington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230997, 39.937942 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24442", "stop_name": "58th St & Florence Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.232281, 39.939024 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24443", "stop_name": "58th St & Willows Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.233506, 39.940311 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24444", "stop_name": "58th St & Whitby Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.234943, 39.941473 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24445", "stop_name": "58th St & Thomas Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236321, 39.942645 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24446", "stop_name": "58th St & Hoffman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 39.943843 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24449", "stop_name": "58th St & Baltimore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.240044, 39.945774 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24451", "stop_name": "57th St & Baltimore Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.237858, 39.946529 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "180", "stop_name": "57th St & Christian St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237427, 39.948617 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24453", "stop_name": "57th St & Catherine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237116, 39.950143 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24455", "stop_name": "57th St & Cedar Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236793, 39.951588 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24457", "stop_name": "57th St & Larchwood Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23647, 39.953176 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24458", "stop_name": "57th St & Pine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236159, 39.954657 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24459", "stop_name": "57th St & Spruce St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235932, 39.955719 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24460", "stop_name": "57th St & Locust St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23568, 39.95695 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24461", "stop_name": "57th St & Walnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235453, 39.958056 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24462", "stop_name": "57th St & Chestnut St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23513, 39.959573 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "182", "stop_name": "56th St & Market St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232812, 39.960801 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24463", "stop_name": "56th St & Arch St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232477, 39.962407 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24464", "stop_name": "56th St & Race St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232189, 39.963951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24465", "stop_name": "56th St & Vine St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231878, 39.965369 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24466", "stop_name": "Vine St & 57th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233743, 39.965872 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24468", "stop_name": "57th St & Haverford Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.233666, 39.968157 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24469", "stop_name": "57th St & Girard Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234108, 39.970433 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24470", "stop_name": "57th St & Thompson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234376, 39.971951 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24471", "stop_name": "57th St & Master St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23462, 39.973219 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24472", "stop_name": "57th St & Media St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.234935, 39.974826 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24473", "stop_name": "57th St & Lansdowne Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235226, 39.976379 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24474", "stop_name": "57th St & Stewart St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235447, 39.977548 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24475", "stop_name": "57th St & Jefferson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235785, 39.979343 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24476", "stop_name": "Oxford St & 57th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.236384, 39.980834 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28181", "stop_name": "Oxford St & 59th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239279, 39.980491 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "185", "stop_name": "59th St & Columbia Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239348, 39.981249 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24479", "stop_name": "57th St & Upland Way - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.985075 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24480", "stop_name": "58th St & Lebanon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.237397, 39.986325 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24481", "stop_name": "58th St & Malvern Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.987558 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24482", "stop_name": "58th St & Woodcrest Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.239128, 39.988478 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24483", "stop_name": "Woodcrest Av & Hobart St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.240464, 39.988016 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24484", "stop_name": "Woodcrest Av & 59th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.987447 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24485", "stop_name": "59th St & Woodbine Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.988028 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24486", "stop_name": "59th St & Drexel Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.243072, 39.989011 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24487", "stop_name": "Drexel Rd & Upland Way", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.246312, 39.988301 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "32277", "stop_name": "Drexel Rd & City Line Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.248954, 39.989983 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "187", "stop_name": "Drexel Rd & City Line Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249118, 39.990385 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "28270", "stop_name": "Overbrook Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.249545, 39.98969 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "24488", "stop_name": "City Av & 63rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250715, 39.989896 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "30682", "stop_name": "Lankenau & Lancaster - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25843, 39.989898 ] } }, +{ "type": "Feature", "properties": { "route_id": "63", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Overbrook Rail Station", "stop_id": "188", "stop_name": "Lankenau Medical Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2622, 39.989386 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 18.4, "percent_change": 0.26, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 18.6, "percent_change": 0.31, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 18.6, "percent_change": 0.31, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 19.2, "percent_change": 0.25, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 19.2, "percent_change": 0.25, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 19.2, "percent_change": 0.25, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 19.2, "percent_change": 0.25, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 19.2, "percent_change": 0.25, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 19.2, "percent_change": 0.25, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 19.4, "percent_change": 0.26, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 18.6, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 18.4, "percent_change": 0.19, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.8, "percent_change": 0.16, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.8, "percent_change": 0.16, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.8, "percent_change": 0.16, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.8, "percent_change": 0.16, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.8, "percent_change": 0.16, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.8, "percent_change": 0.16, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 17.8, "percent_change": 0.16, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 17.8, "percent_change": 0.17, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 17.6, "percent_change": 0.16, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 17.4, "percent_change": 0.14, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 17.4, "percent_change": 0.18, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.0, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.4, "percent_change": 0.19, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.4, "percent_change": 0.19, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 17.6, "percent_change": 0.22, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 17.4, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 17.4, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 17.4, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 17.4, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.4, "percent_change": 0.19, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.0, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.0, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.0, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 17.0, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 16.8, "percent_change": 0.15, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 16.4, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.4, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 16.2, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 16.2, "percent_change": 0.17, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.8, "percent_change": 0.16, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.6, "percent_change": 0.15, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.4, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.4, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 15.4, "percent_change": 0.13, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 24.0, "percent_change": -0.12, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 18.4, "percent_change": -0.3, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 23.6, "percent_change": -0.1, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 23.8, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 24.0, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 24.0, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 23.8, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 23.6, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 23.6, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 23.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 25.8, "arrivals_during_cuts": 23.0, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 23.0, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 23.0, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 25.4, "arrivals_during_cuts": 23.0, "percent_change": -0.09, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 23.0, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 23.0, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 25.2, "arrivals_during_cuts": 23.0, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 22.8, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 22.8, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 24.2, "arrivals_during_cuts": 22.8, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 24.0, "arrivals_during_cuts": 22.8, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 23.8, "arrivals_during_cuts": 22.6, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 22.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 22.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 22.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 22.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 22.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 23.2, "arrivals_during_cuts": 21.8, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 23.0, "arrivals_during_cuts": 21.8, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 21.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 21.8, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 21.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 21.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 21.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 21.8, "percent_change": 0.28, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.0, "percent_change": 0.29, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.0, "percent_change": 0.29, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.0, "percent_change": 0.29, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.0, "percent_change": 0.29, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.0, "percent_change": 0.29, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.0, "percent_change": 0.29, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 21.6, "percent_change": 0.32, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 21.2, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 21.2, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 21.0, "percent_change": 0.3, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 16.8, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 16.2, "percent_change": 0.5, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.2, "percent_change": 0.45, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 16.2, "percent_change": 0.45, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 16.8, "percent_change": 0.42, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 16.8, "percent_change": 0.42, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 16.8, "percent_change": 0.42, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 16.8, "percent_change": 0.42, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 16.8, "percent_change": 0.42, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 16.8, "percent_change": 0.42, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 17.0, "percent_change": 0.44, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 17.4, "percent_change": 0.5, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 17.4, "percent_change": 0.47, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 17.6, "percent_change": 0.54, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 17.6, "percent_change": 0.57, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 17.4, "percent_change": 0.58, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 17.4, "percent_change": 0.58, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 17.4, "percent_change": 0.58, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 17.4, "percent_change": 0.58, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 17.2, "percent_change": 0.56, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 17.0, "percent_change": 0.52, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 17.2, "percent_change": 0.54, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 17.4, "percent_change": 0.55, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 17.4, "percent_change": 0.5, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 17.8, "percent_change": 0.51, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 17.8, "percent_change": 0.51, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 17.8, "percent_change": 0.51, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.8, "percent_change": 0.48, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 18.0, "percent_change": 0.5, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.8, "percent_change": 0.48, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.8, "percent_change": 0.48, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.8, "percent_change": 0.48, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.8, "percent_change": 0.48, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.8, "percent_change": 0.48, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.8, "percent_change": 0.48, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.6, "percent_change": 0.47, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 17.6, "percent_change": 0.47, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 17.8, "percent_change": 0.51, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 18.0, "percent_change": 0.55, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 18.0, "percent_change": 0.55, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 18.2, "percent_change": 0.54, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 18.2, "percent_change": 0.52, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 18.6, "percent_change": 0.52, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 18.6, "percent_change": 0.52, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 18.8, "percent_change": 0.54, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 18.8, "percent_change": 0.59, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 18.8, "percent_change": 0.59, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 14.8, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 12.6, "percent_change": -0.41, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 15.0, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 15.0, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 15.0, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.0, "percent_change": -0.31, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.2, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 15.2, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 15.2, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 15.6, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.6, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 15.6, "percent_change": -0.29, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 15.4, "percent_change": -0.29, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.4, "percent_change": -0.29, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 15.0, "percent_change": -0.31, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 15.2, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.2, "percent_change": -0.3, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.4, "percent_change": -0.29, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.4, "percent_change": -0.29, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 15.4, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.4, "percent_change": -0.29, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 15.6, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 15.8, "percent_change": -0.29, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 16.0, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.0, "percent_change": -0.27, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.0, "percent_change": -0.27, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.0, "percent_change": -0.27, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 16.0, "percent_change": -0.27, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 16.0, "percent_change": -0.27, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 22.2, "arrivals_during_cuts": 16.0, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 22.4, "arrivals_during_cuts": 16.0, "percent_change": -0.29, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.2, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 22.6, "arrivals_during_cuts": 16.2, "percent_change": -0.28, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 22.8, "arrivals_during_cuts": 16.2, "percent_change": -0.29, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 16.2, "percent_change": 0.47, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 16.2, "percent_change": 0.47, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 16.2, "percent_change": 0.47, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 16.2, "percent_change": 0.47, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 16.2, "percent_change": 0.47, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 16.2, "percent_change": 0.47, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 16.2, "percent_change": 0.47, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 16.2, "percent_change": 0.4, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 16.0, "percent_change": 0.38, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 16.0, "percent_change": 0.38, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 16.0, "percent_change": 0.36, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.8, "percent_change": 0.23, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 21.0, "percent_change": 0.4, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 21.0, "percent_change": 0.4, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 20.6, "percent_change": 0.39, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.6, "percent_change": 0.32, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.6, "percent_change": 0.36, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.6, "percent_change": 0.36, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.6, "percent_change": 0.37, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.6, "percent_change": 0.37, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.6, "percent_change": 0.37, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 20.6, "percent_change": 0.39, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.8, "percent_change": 0.39, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 2.8, "percent_change": -0.82, "expected_wait_time_difference": 43.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.8, "percent_change": 0.39, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 20.8, "percent_change": 0.35, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 2.8, "percent_change": -0.81, "expected_wait_time_difference": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.8, "percent_change": 0.33, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 2.8, "percent_change": -0.81, "expected_wait_time_difference": 43.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.8, "percent_change": 0.32, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 2.8, "percent_change": -0.81, "expected_wait_time_difference": 43.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.6, "percent_change": 0.3, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 2.8, "percent_change": -0.81, "expected_wait_time_difference": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.6, "percent_change": 0.3, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 2.8, "percent_change": -0.81, "expected_wait_time_difference": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 2.8, "percent_change": -0.81, "expected_wait_time_difference": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.6, "percent_change": 0.3, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.8, "percent_change": 0.32, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 2.4, "percent_change": -0.84, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 21.0, "percent_change": 0.33, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 2.4, "percent_change": -0.84, "expected_wait_time_difference": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 21.0, "percent_change": 0.33, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 2.4, "percent_change": -0.84, "expected_wait_time_difference": 52.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.8, "percent_change": 0.32, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 2.4, "percent_change": -0.84, "expected_wait_time_difference": 52.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 1.8, "percent_change": -0.88, "expected_wait_time_difference": 73.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.8, "percent_change": 0.32, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 1.4, "percent_change": -0.91, "expected_wait_time_difference": 97.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 20.6, "percent_change": 0.3, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.6, "percent_change": 0.32, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 1.4, "percent_change": -0.91, "expected_wait_time_difference": 97.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 1.0, "percent_change": -0.94, "expected_wait_time_difference": 140.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 20.6, "percent_change": 0.34, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 1.0, "percent_change": -0.94, "expected_wait_time_difference": 140.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 20.4, "percent_change": 0.32, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 1.0, "percent_change": -0.93, "expected_wait_time_difference": 140.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.4, "percent_change": 0.34, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 1.0, "percent_change": -0.93, "expected_wait_time_difference": 140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.4, "percent_change": 0.34, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 0.8, "percent_change": -0.95, "expected_wait_time_difference": 177.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.2, "percent_change": 0.35, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.0, "percent_change": 0.33, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 0.6, "percent_change": -0.96, "expected_wait_time_difference": 239.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 0.4, "percent_change": -0.97, "expected_wait_time_difference": 364.9 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.0, "percent_change": 0.33, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 20.0, "percent_change": 0.35, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 0.4, "percent_change": -0.97, "expected_wait_time_difference": 364.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 20.0, "percent_change": 0.35, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 20.2, "percent_change": 0.36, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 20.2, "percent_change": 0.36, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.0, "percent_change": 0.33, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.2, "percent_change": 0.35, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.2, "percent_change": 0.35, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 20.2, "percent_change": 0.35, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.2, "percent_change": 0.33, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.2, "percent_change": 0.33, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.2, "percent_change": 0.33, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 20.0, "percent_change": 0.35, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 20.0, "percent_change": 0.32, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 19.8, "percent_change": 0.3, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 32.6, "arrivals_during_cuts": 25.6, "percent_change": -0.21, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 32.8, "arrivals_during_cuts": 21.2, "percent_change": -0.35, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 24.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 24.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 25.0, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 32.6, "arrivals_during_cuts": 25.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 25.0, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 32.2, "arrivals_during_cuts": 25.2, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 32.2, "arrivals_during_cuts": 25.4, "percent_change": -0.21, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 31.8, "arrivals_during_cuts": 25.2, "percent_change": -0.21, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 32.0, "arrivals_during_cuts": 25.0, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 32.0, "arrivals_during_cuts": 24.6, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 32.2, "arrivals_during_cuts": 24.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 24.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 25.2, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 25.2, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 32.6, "arrivals_during_cuts": 25.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 32.6, "arrivals_during_cuts": 25.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 32.6, "arrivals_during_cuts": 25.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 32.8, "arrivals_during_cuts": 25.0, "percent_change": -0.24, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 25.0, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 32.6, "arrivals_during_cuts": 25.0, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 32.2, "arrivals_during_cuts": 24.8, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 32.0, "arrivals_during_cuts": 24.6, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 24.6, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 32.4, "arrivals_during_cuts": 24.6, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 32.0, "arrivals_during_cuts": 24.6, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 31.8, "arrivals_during_cuts": 24.4, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 31.8, "arrivals_during_cuts": 24.2, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 31.6, "arrivals_during_cuts": 23.8, "percent_change": -0.25, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 31.4, "arrivals_during_cuts": 23.8, "percent_change": -0.24, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 31.4, "arrivals_during_cuts": 23.6, "percent_change": -0.25, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 31.4, "arrivals_during_cuts": 23.6, "percent_change": -0.25, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 31.4, "arrivals_during_cuts": 23.4, "percent_change": -0.25, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.4, "percent_change": 0.31, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.4, "percent_change": 0.31, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.4, "percent_change": 0.31, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.4, "percent_change": 0.31, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.4, "percent_change": 0.31, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.2, "percent_change": 0.29, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.0, "percent_change": 0.28, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.2, "percent_change": 0.29, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.8, "percent_change": 0.33, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.6, "percent_change": 0.32, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 20.4, "percent_change": 0.31, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 14.0, "percent_change": 1.26, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 21.4, "percent_change": 0.3, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 21.4, "percent_change": 0.3, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.5 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 21.6, "percent_change": 0.3, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.5 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 21.8, "percent_change": 0.27, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 21.6, "percent_change": 0.23, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 21.6, "percent_change": 0.23, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 21.4, "percent_change": 0.2, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.6 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 21.4, "percent_change": 0.2, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.6 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 21.4, "percent_change": 0.2, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 21.4, "percent_change": 0.19, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 21.4, "percent_change": 0.2, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 21.4, "percent_change": 0.2, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 21.8, "percent_change": 0.24, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 21.8, "percent_change": 0.24, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 22.0, "percent_change": 0.28, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.2, "percent_change": 0.31, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.9 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.2, "percent_change": 0.31, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.9 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.2, "percent_change": -0.99, "expected_wait_time_difference": 592.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.2, "percent_change": 0.31, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.2, "percent_change": 0.31, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.6, "percent_change": -0.96, "expected_wait_time_difference": 192.9 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.4, "percent_change": 0.32, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.6, "percent_change": -0.96, "expected_wait_time_difference": 192.9 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.4, "percent_change": 0.32, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 0.6, "percent_change": -0.96, "expected_wait_time_difference": 192.9 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.6, "percent_change": 0.33, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 0.6, "percent_change": -0.94, "expected_wait_time_difference": 188.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 1.2, "percent_change": -0.88, "expected_wait_time_difference": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.6, "percent_change": 0.33, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 1.6, "percent_change": -0.84, "expected_wait_time_difference": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 22.8, "percent_change": 0.34, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 22.8, "percent_change": 0.33, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 1.4, "percent_change": -0.86, "expected_wait_time_difference": 73.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 1.8, "percent_change": -0.82, "expected_wait_time_difference": 54.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 22.8, "percent_change": 0.31, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 1.8, "percent_change": -0.83, "expected_wait_time_difference": 55.1 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 23.0, "percent_change": 0.32, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 1.8, "percent_change": -0.83, "expected_wait_time_difference": 55.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 23.0, "percent_change": 0.31, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 1.8, "percent_change": -0.83, "expected_wait_time_difference": 55.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 23.2, "percent_change": 0.32, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 2.0, "percent_change": -0.82, "expected_wait_time_difference": 49.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 23.4, "percent_change": 0.33, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 23.6, "percent_change": 0.34, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 2.4, "percent_change": -0.78, "expected_wait_time_difference": 39.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 2.6, "percent_change": -0.76, "expected_wait_time_difference": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 23.6, "percent_change": 0.34, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 23.8, "percent_change": 0.34, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 2.6, "percent_change": -0.76, "expected_wait_time_difference": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 3.0, "percent_change": -0.72, "expected_wait_time_difference": 28.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.8, "percent_change": 0.38, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 23.8, "percent_change": 0.4, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 2.8, "percent_change": -0.74, "expected_wait_time_difference": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 23.8, "percent_change": 0.4, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 2.8, "percent_change": -0.73, "expected_wait_time_difference": 31.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 23.8, "percent_change": 0.4, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.8, "percent_change": 0.38, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.6, "percent_change": 0.37, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.6, "percent_change": 0.37, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.4, "percent_change": 0.36, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.4, "percent_change": 0.36, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.4, "percent_change": 0.36, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 23.4, "percent_change": 0.34, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 23.4, "percent_change": 0.34, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 23.6, "percent_change": 0.37, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 32.0, "arrivals_during_cuts": 19.8, "percent_change": -0.38, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 31.6, "arrivals_during_cuts": 15.6, "percent_change": -0.51, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 32.0, "arrivals_during_cuts": 19.8, "percent_change": -0.38, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 32.0, "arrivals_during_cuts": 19.8, "percent_change": -0.38, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.0, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 19.8, "percent_change": -0.24, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 26.2, "arrivals_during_cuts": 20.0, "percent_change": -0.24, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.6, "percent_change": -0.26, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 19.4, "percent_change": -0.27, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.6, "percent_change": -0.27, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 19.8, "percent_change": -0.27, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 26.6, "arrivals_during_cuts": 20.2, "percent_change": -0.24, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.2, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.0, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.0, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 26.0, "arrivals_during_cuts": 20.2, "percent_change": -0.22, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 26.4, "arrivals_during_cuts": 20.2, "percent_change": -0.23, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 26.8, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.2, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 20.2, "percent_change": -0.26, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 20.2, "percent_change": -0.26, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 27.2, "arrivals_during_cuts": 20.4, "percent_change": -0.25, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 20.8, "percent_change": -0.24, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 20.8, "percent_change": -0.24, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 21.0, "percent_change": -0.23, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 27.4, "arrivals_during_cuts": 21.0, "percent_change": -0.23, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 27.0, "arrivals_during_cuts": 20.8, "percent_change": -0.23, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 20.8, "percent_change": 0.73, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 20.8, "percent_change": 0.73, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 20.8, "percent_change": 0.73, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 20.8, "percent_change": 0.73, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 20.8, "percent_change": 0.73, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 21.0, "percent_change": 0.75, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 21.2, "percent_change": 0.77, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 21.4, "percent_change": 0.78, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 21.4, "percent_change": 0.78, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 21.6, "percent_change": 0.8, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 21.8, "percent_change": 0.85, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 18.0, "percent_change": 2.6, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 10.8, "percent_change": -0.46, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 10.8, "percent_change": -0.46, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 10.8, "percent_change": -0.46, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 10.8, "percent_change": -0.46, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 11.0, "percent_change": -0.45, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 11.0, "percent_change": -0.45, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 11.2, "percent_change": -0.44, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 11.2, "percent_change": -0.44, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 11.2, "percent_change": -0.44, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 20.0, "arrivals_during_cuts": 11.2, "percent_change": -0.44, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 11.2, "percent_change": -0.45, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 20.2, "arrivals_during_cuts": 11.2, "percent_change": -0.45, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 11.2, "percent_change": -0.45, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 20.4, "arrivals_during_cuts": 11.2, "percent_change": -0.45, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 20.8, "arrivals_during_cuts": 11.2, "percent_change": -0.46, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.2, "percent_change": -0.47, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.2, "percent_change": -0.47, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.2, "percent_change": -0.47, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.2, "percent_change": -0.47, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.4, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 11.6, "percent_change": -0.45, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 11.6, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 21.8, "arrivals_during_cuts": 11.6, "percent_change": -0.47, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 21.6, "arrivals_during_cuts": 11.6, "percent_change": -0.46, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 11.8, "percent_change": -0.45, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 11.8, "percent_change": -0.45, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 12.0, "percent_change": -0.44, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 12.0, "percent_change": -0.44, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 12.0, "percent_change": -0.44, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 12.0, "percent_change": -0.44, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 21.2, "arrivals_during_cuts": 11.8, "percent_change": -0.44, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 12.0, "percent_change": -0.44, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 11.6, "percent_change": -0.46, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 21.4, "arrivals_during_cuts": 11.6, "percent_change": -0.46, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 8.6, "percent_change": -0.47, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 6.6, "percent_change": -0.61, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 8.4, "percent_change": -0.51, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 8.4, "percent_change": -0.51, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 8.4, "percent_change": -0.51, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 8.6, "percent_change": -0.49, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 8.6, "percent_change": -0.49, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.2, "percent_change": -0.46, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.4, "percent_change": -0.45, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.6, "percent_change": -0.44, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.6, "percent_change": -0.44, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.6, "percent_change": -0.44, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 9.6, "percent_change": -0.44, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 9.6, "percent_change": -0.44, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 9.6, "percent_change": -0.45, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 9.6, "percent_change": -0.45, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 9.6, "percent_change": -0.47, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 9.8, "percent_change": -0.46, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 9.8, "percent_change": -0.46, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 9.8, "percent_change": -0.46, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 9.8, "percent_change": -0.46, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 9.8, "percent_change": -0.46, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.0, "percent_change": -0.44, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.2, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.2, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.2, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 10.2, "percent_change": -0.43, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 10.4, "percent_change": -0.43, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 10.4, "percent_change": -0.43, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 10.4, "percent_change": -0.43, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 10.4, "percent_change": -0.44, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 10.4, "percent_change": -0.44, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 10.4, "percent_change": -0.44, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 10.8, "percent_change": -0.43, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 10.8, "percent_change": -0.41, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 18.4, "arrivals_during_cuts": 10.8, "percent_change": -0.41, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 5.0, "percent_change": -0.66, "expected_wait_time_difference": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 10.0, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 7.0, "percent_change": -0.44, "expected_wait_time_difference": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.5, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 5.0, "percent_change": -0.62, "expected_wait_time_difference": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 8.5, "percent_change": -0.35, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.5, "percent_change": -0.27, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.5, "percent_change": -0.3, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 13.5, "arrivals_during_cuts": 9.0, "percent_change": -0.33, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.0, "percent_change": -0.31, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 9.0, "percent_change": -0.28, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.5, "percent_change": 0.21, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 17.0, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 17.0, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 17.5, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 17.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 17.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 17.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 17.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 17.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 17.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.5, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 21.0, "arrivals_during_cuts": 17.5, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 12.0, "percent_change": -0.45, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.5, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.5, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.5, "percent_change": -0.16, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 18.0, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 17.5, "percent_change": -0.2, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 22.5, "arrivals_during_cuts": 17.5, "percent_change": -0.22, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 22.0, "arrivals_during_cuts": 18.0, "percent_change": -0.18, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.5, "percent_change": -0.19, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 21.5, "arrivals_during_cuts": 17.0, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 16.0, "percent_change": 0.52, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 12.5, "percent_change": -0.19, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.0, "percent_change": -0.19, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 13.5, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.0, "percent_change": -0.24, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.5, "percent_change": -0.18, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.5, "percent_change": -0.21, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 6.0, "percent_change": -0.62, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 11.5, "percent_change": -0.28, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.5, "percent_change": -0.22, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.0, "percent_change": -0.27, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 12.0, "percent_change": -0.25, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 12.5, "percent_change": -0.24, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 16.5, "arrivals_during_cuts": 13.0, "percent_change": -0.21, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.5, "percent_change": 0.28, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21905", "stop_name": "Frankford Av & Lyman Dr - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983415, 40.064471 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21906", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985467, 40.063488 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21909", "stop_name": "Frankford Av & Grant Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990097, 40.060684 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21910", "stop_name": "Frankford Av & Primrose St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.992291, 40.059701 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21911", "stop_name": "Frankford Av & Fitler St - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 10.0, "percent_change": -0.17, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.994411, 40.059137 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21912", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995572, 40.058846 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21914", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998202, 40.058168 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21916", "stop_name": "Frankford Av & Pearson Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001484, 40.057117 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21918", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004738, 40.054879 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21943", "stop_name": "Frankford Av & Ellie Dr", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.0, "percent_change": -0.2, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006163, 40.053786 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21920", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.00905, 40.051555 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21921", "stop_name": "Frankford Av & Placid St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010321, 40.050551 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21923", "stop_name": "Frankford Av & Megargee St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012412, 40.048853 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21924", "stop_name": "Frankford Av & Pennypack Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013517, 40.047991 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21925", "stop_name": "Frankford Av & Kendrick St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014848, 40.046907 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26161", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.01651, 40.045654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21927", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017389, 40.044978 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21928", "stop_name": "Frankford Av & Ashburner St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019347, 40.043744 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21929", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.043716 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21930", "stop_name": "Frankford Av & Stanwood St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024141, 40.042929 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21931", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025575, 40.04239 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "957", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028643, 40.041293 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21932", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029947, 40.040797 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21933", "stop_name": "Frankford Av & Hartel Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031321, 40.040302 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21934", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033394, 40.039541 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21936", "stop_name": "Frankford Av & Shelmire St - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036486, 40.038444 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21937", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037943, 40.037886 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "958", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040538, 40.036939 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "26163", "stop_name": "Frankford Av & Cottman Av - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04132, 40.036602 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "992", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042423, 40.036043 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1006", "stop_name": "Frankford Av & Princeton Av", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 11.0, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044664, 40.034845 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21939", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047011, 40.033665 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21940", "stop_name": "Frankford Av & Longshore Av - FS", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048965, 40.032948 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1007", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050954, 40.032383 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1081", "stop_name": "Frankford Av & Unruh Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05292, 40.031871 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1106", "stop_name": "Frankford Av & Magee Av", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054841, 40.03069 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1137", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056136, 40.029525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1138", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 10.5, "percent_change": -0.16, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057878, 40.028593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "959", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060069, 40.027885 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1145", "stop_name": "Frankford Av & Hawthorne St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.061855, 40.027631 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1158", "stop_name": "Frankford Av & Battersby St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064789, 40.027194 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1159", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.5, "percent_change": -0.19, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067735, 40.026702 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21942", "stop_name": "Frankford Av & Cheltenham Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073333, 40.025424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 10.0, "percent_change": -0.23, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21941", "stop_name": "Frankford Transit Center - Rt 66", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077184, 40.023552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21602", "stop_name": "Cheltenham Av & Frankford Av - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 5.0, "percent_change": -0.5, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074028, 40.025837 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21603", "stop_name": "Frankford Av & Cheltenham Av - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070836, 40.025899 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21604", "stop_name": "Frankford Av & Comly St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068043, 40.026525 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21605", "stop_name": "Frankford Av & Benner St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065582, 40.026955 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21606", "stop_name": "Frankford Av & Harbison Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062589, 40.027419 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "960", "stop_name": "Frankford Av & Robbins Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060188, 40.02776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21607", "stop_name": "Frankford Av & Levick St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.057962, 40.028459 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21608", "stop_name": "Frankford Av & Hellerman St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056148, 40.029373 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21609", "stop_name": "Frankford Av & Magee St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054854, 40.030538 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21610", "stop_name": "Frankford Av & Unruh St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053311, 40.031596 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21824", "stop_name": "Frankford Av & Knorr St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.051038, 40.032249 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21825", "stop_name": "Frankford Av & Longshore Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048848, 40.03285 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21826", "stop_name": "Frankford Av & Tyson Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046573, 40.033709 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21827", "stop_name": "Frankford Av & Princeton Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04451, 40.034791 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21828", "stop_name": "Frankford Av & Wellington St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042471, 40.035901 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "961", "stop_name": "Frankford Av & Cottman Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04087, 40.036672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21830", "stop_name": "Frankford Av & Bleigh Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038027, 40.037752 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21831", "stop_name": "Frankford Av & Shelmire St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.036309, 40.038389 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21833", "stop_name": "Frankford Av & Sheffield Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033478, 40.039407 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21834", "stop_name": "Frankford Av & Lansing St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031345, 40.040177 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21835", "stop_name": "Frankford Av & Decatur St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030018, 40.040654 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "964", "stop_name": "Frankford Av & Rhawn St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027945, 40.041424 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21836", "stop_name": "Frankford Av & Welsh Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025658, 40.042256 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21837", "stop_name": "Frankford Av & Stanwood St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023952, 40.042875 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21838", "stop_name": "Frankford Av & Solly Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021902, 40.043601 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21839", "stop_name": "Frankford Av & Ashburner St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019182, 40.043672 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21840", "stop_name": "Frankford Av & Blakiston St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017485, 40.044773 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21841", "stop_name": "Frankford Av & Benson St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.016226, 40.045724 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21843", "stop_name": "Frankford Av & Pennypack St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012972, 40.048266 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21844", "stop_name": "Frankford Av & Megargee St - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.011926, 40.049084 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21845", "stop_name": "Frankford Av & Placid St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.01018, 40.050524 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21846", "stop_name": "Frankford Av & Tolbut St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009063, 40.051404 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22595", "stop_name": "Frankford Av & Ellie Dr - FS at Gregg St Loop", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.005986, 40.053776 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21859", "stop_name": "Frankford Av & Arendell Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.003017, 40.055926 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21861", "stop_name": "Frankford Av & Pearson Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.0012, 40.057161 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21866", "stop_name": "Frankford Av & Convent Ln", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.998309, 40.058017 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21868", "stop_name": "Frankford Av & Eden St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.995691, 40.058695 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21869", "stop_name": "Frankford Av & Fitler St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.993761, 40.05917 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21872", "stop_name": "Frankford Av & Primrose St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992185, 40.059593 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21878", "stop_name": "Frankford Av & Morrell Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985551, 40.06331 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21880", "stop_name": "Frankford Av & Lyman Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983321, 40.064382 ] } }, +{ "type": "Feature", "properties": { "route_id": "66", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -22.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.6, "percent_change": 0.5, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.6, "percent_change": 0.5, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.6, "percent_change": 0.5, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -43.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -43.2 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.4, "percent_change": 0.7, "expected_wait_time_difference": -43.2 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.4, "percent_change": -0.4, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.4, "percent_change": -0.4, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.4, "percent_change": -0.4, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.4, "percent_change": -0.4, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.4, "percent_change": -0.4, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.8, "percent_change": -0.26, "expected_wait_time_difference": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.8, "percent_change": -0.25, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.4, "percent_change": 0.2, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 13.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 14.0, "percent_change": 0.17, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 14.0, "percent_change": 0.19, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 14.2, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 14.0, "percent_change": 0.19, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 13.6, "percent_change": 0.17, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 13.6, "percent_change": 0.17, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.4, "percent_change": 0.2, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.2, "percent_change": 0.2, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.8, "percent_change": 0.16, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.8, "percent_change": 0.16, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.4, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.2, "percent_change": 0.11, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.8, "percent_change": 0.07, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.2, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.2, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.2, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.0, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.6, "percent_change": -0.09, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 8.6, "percent_change": -0.09, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.2, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27953", "stop_name": "Red Lion Rd & Ferndale St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034563, 40.106315 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30117", "stop_name": "Red Lion Rd & Sandmeyer Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036985, 40.107001 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30586", "stop_name": "Global Rd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041476, 40.108274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30587", "stop_name": "Global Rd & Geiger Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043344, 40.106316 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30588", "stop_name": "Geiger Rd & Global Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045447, 40.106974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30589", "stop_name": "Geiger Rd & Gantry Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048951, 40.109055 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30590", "stop_name": "Gantry Rd & Geiger Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.049986, 40.110281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30591", "stop_name": "Gantry Rd & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047882, 40.112104 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31326", "stop_name": "Red Lion Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.016494, 40.095663 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23672", "stop_name": "Red Lion Rd & Congdon Pkwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.011713, 40.091693 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31719", "stop_name": "Red Lion Rd & Global Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041487, 40.108434 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32278", "stop_name": "Red Lion Rd & Congdon Pkwy - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.009757, 40.090392 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "972", "stop_name": "Sandmeyer Ln & Red Lion Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036543, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22954", "stop_name": "Sandmeyer Ln & 10059", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032601, 40.112298 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32279", "stop_name": "Norcom Rd & Charter Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005641, 40.092172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30118", "stop_name": "Sandmeyer Ln & 10071", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035385, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32280", "stop_name": "Charter Rd & Norcom Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003413, 40.094718 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22953", "stop_name": "Sandmeyer Ln & 10090", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035645, 40.113968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23032", "stop_name": "Caroline Rd & Charter Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004273, 40.097353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32281", "stop_name": "Caroline Rd & Comly Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002241, 40.098766 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30427", "stop_name": "Caroline Rd & Comly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998629, 40.101235 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22953", "stop_name": "Sandmeyer Ln & 10090", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035645, 40.113968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30116", "stop_name": "Sandmeyer Ln & 10080", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033946, 40.112981 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23018", "stop_name": "Sandmeyer Ln & 10060", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034864, 40.10977 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.4, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.4, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.4, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.0, "percent_change": 0.22, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.4, "percent_change": 0.33, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.2, "percent_change": 0.3, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.4, "percent_change": 0.33, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.4, "percent_change": 0.33, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.4, "percent_change": 0.33, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.2, "percent_change": 0.3, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 11.0, "percent_change": 0.28, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 11.0, "percent_change": 0.25, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 11.0, "percent_change": 0.25, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 11.0, "percent_change": 0.25, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.4, "percent_change": 0.27, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 11.4, "percent_change": 0.27, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.4, "percent_change": 0.24, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.6, "percent_change": 0.26, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.6, "percent_change": 0.26, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.6, "percent_change": 0.26, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.6, "percent_change": 0.23, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 11.8, "percent_change": 0.28, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 12.0, "percent_change": 0.3, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 12.0, "percent_change": 0.3, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 12.4, "percent_change": 0.35, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 12.6, "percent_change": 0.37, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 12.8, "percent_change": 0.39, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 13.0, "percent_change": 0.41, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 13.6, "percent_change": 0.48, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 13.6, "percent_change": 0.48, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 14.2, "percent_change": 0.54, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 14.2, "percent_change": 0.54, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.2, "percent_change": 0.58, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.2, "percent_change": 0.58, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.6, "percent_change": 0.62, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.8, "percent_change": 0.64, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.6, "percent_change": 0.62, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 14.6, "percent_change": 0.66, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.6, "percent_change": 0.62, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 14.6, "percent_change": 0.59, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 14.6, "percent_change": 0.7, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 14.6, "percent_change": 0.7, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 14.6, "percent_change": 0.7, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 14.6, "percent_change": 0.74, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 14.6, "percent_change": 0.74, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 14.8, "percent_change": 0.72, "expected_wait_time_difference": -4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.8, "percent_change": 0.64, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.8, "percent_change": 0.64, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 14.8, "percent_change": 0.64, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 15.0, "percent_change": 0.79, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 15.0, "percent_change": 0.79, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 15.0, "percent_change": 0.79, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 15.2, "percent_change": 0.77, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 15.0, "percent_change": 0.53, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 15.0, "percent_change": 0.53, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 15.2, "percent_change": 0.52, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 15.2, "percent_change": 0.52, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 15.4, "percent_change": 0.54, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 15.6, "percent_change": 0.56, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 15.8, "percent_change": 0.49, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 16.2, "percent_change": 0.53, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 16.6, "percent_change": 0.57, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 16.6, "percent_change": 0.57, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27953", "stop_name": "Red Lion Rd & Ferndale St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034563, 40.106315 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 14.0, "percent_change": 0.75, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30117", "stop_name": "Red Lion Rd & Sandmeyer Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036985, 40.107001 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 14.0, "percent_change": 0.59, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 14.0, "percent_change": 0.59, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30586", "stop_name": "Global Rd & Red Lion Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.041476, 40.108274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.2, "percent_change": 0.37, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 8.6, "percent_change": 0.72, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30587", "stop_name": "Global Rd & Geiger Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043344, 40.106316 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 8.6, "percent_change": 0.72, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30588", "stop_name": "Geiger Rd & Global Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045447, 40.106974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 8.4, "percent_change": 0.75, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30589", "stop_name": "Geiger Rd & Gantry Rd - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048951, 40.109055 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 8.2, "percent_change": 0.71, "expected_wait_time_difference": -7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30590", "stop_name": "Gantry Rd & Geiger Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.049986, 40.110281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 6.2, "percent_change": 0.63, "expected_wait_time_difference": -9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30591", "stop_name": "Gantry Rd & Red Lion Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047882, 40.112104 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31326", "stop_name": "Red Lion Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016494, 40.095663 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31719", "stop_name": "Red Lion Rd & Global Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.041487, 40.108434 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "972", "stop_name": "Sandmeyer Ln & Red Lion Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036543, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22954", "stop_name": "Sandmeyer Ln & 10059", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.032601, 40.112298 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30118", "stop_name": "Sandmeyer Ln & 10071", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.035385, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22953", "stop_name": "Sandmeyer Ln & 10090", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.8, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035645, 40.113968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 6.2, "percent_change": 0.72, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.0, "percent_change": 0.76, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.0, "percent_change": 0.76, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.0, "percent_change": 0.76, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.0, "percent_change": 0.76, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.0, "percent_change": 0.76, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 6.0, "percent_change": 0.76, "expected_wait_time_difference": -11.5 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 6.0, "percent_change": 0.88, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.8, "percent_change": 1.07, "expected_wait_time_difference": -16.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 5.8, "percent_change": 1.07, "expected_wait_time_difference": -16.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 5.0, "percent_change": 0.56, "expected_wait_time_difference": -16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 5.0, "percent_change": 0.47, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 5.0, "percent_change": 0.47, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 5.0, "percent_change": 0.47, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.8, "percent_change": 0.41, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.8, "percent_change": 0.41, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.6, "percent_change": -0.21, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.6, "percent_change": 0.44, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.4, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.4, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.0, "percent_change": 0.13, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 12.0, "percent_change": 0.18, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 12.0, "percent_change": 0.18, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 12.0, "percent_change": 0.22, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 12.2, "percent_change": 0.24, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 12.0, "percent_change": 0.22, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 12.0, "percent_change": 0.22, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 12.2, "percent_change": 0.24, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 12.0, "percent_change": 0.22, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 12.0, "percent_change": 0.25, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 12.0, "percent_change": 0.28, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 12.0, "percent_change": 0.28, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 11.8, "percent_change": 0.26, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.8, "percent_change": 0.2, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 11.6, "percent_change": 0.21, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.4, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.4, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.4, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.2, "percent_change": 0.14, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.8, "percent_change": 0.15, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.8, "percent_change": 0.46, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.8, "percent_change": 0.46, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.8, "percent_change": 0.46, "expected_wait_time_difference": -6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.6, "percent_change": 0.43, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.6, "percent_change": 0.43, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.6, "percent_change": 0.43, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.6, "percent_change": 0.43, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.6, "percent_change": 0.43, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.6, "percent_change": 0.43, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 10.6, "percent_change": 0.89, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 10.6, "percent_change": 0.83, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 10.6, "percent_change": 0.83, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 10.6, "percent_change": 0.83, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 10.6, "percent_change": 0.36, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 10.6, "percent_change": 0.36, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.6, "percent_change": 0.32, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.6, "percent_change": 0.32, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.6, "percent_change": 0.32, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 10.6, "percent_change": 0.32, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.6, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 10.4, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.2, "percent_change": 0.09, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.6, "percent_change": 0.27, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.8, "percent_change": 0.26, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.6, "percent_change": 0.22, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.4, "percent_change": 0.17, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22953", "stop_name": "Sandmeyer Ln & 10090", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035645, 40.113968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30116", "stop_name": "Sandmeyer Ln & 10080", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033946, 40.112981 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32106", "stop_name": "Caroline Rd & Comly Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -74.998675, 40.101342 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16", "stop_name": "Caroline Rd & Comly Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002204, 40.098926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23018", "stop_name": "Sandmeyer Ln & 10060", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034864, 40.10977 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23033", "stop_name": "Caroline Rd & Charter Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.00401, 40.097683 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30586", "stop_name": "Global Rd & Red Lion Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041476, 40.108274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30587", "stop_name": "Global Rd & Geiger Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.043344, 40.106316 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32282", "stop_name": "Charter Rd & Caroline Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004967, 40.095928 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23035", "stop_name": "Charter Rd & Norcom Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003108, 40.094288 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30588", "stop_name": "Geiger Rd & Global Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045447, 40.106974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30589", "stop_name": "Geiger Rd & Gantry Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048951, 40.109055 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32283", "stop_name": "Norcom Rd & Charter Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004939, 40.092795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23036", "stop_name": "Red Lion Rd & Norcom Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010594, 40.090939 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30590", "stop_name": "Gantry Rd & Geiger Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.049986, 40.110281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23673", "stop_name": "Red Lion Rd & Congdon Pkwy - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012548, 40.092552 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30591", "stop_name": "Gantry Rd & Red Lion Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047882, 40.112104 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31719", "stop_name": "Red Lion Rd & Global Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041487, 40.108434 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31364", "stop_name": "Red Lion Rd & Sandmeyer Ln", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038607, 40.106953 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.2, "percent_change": -0.16, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.4, "percent_change": 0.16, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.6, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.4, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.4, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.4, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.2, "percent_change": -0.11, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.6, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 12.8, "percent_change": -0.12, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.0, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.0, "percent_change": -0.14, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.2, "percent_change": -0.13, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.4, "percent_change": -0.12, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.0, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.6, "percent_change": -0.05, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 15.6, "arrivals_during_cuts": 14.6, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 14.6, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 14.0, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.2, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.2, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.2, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.2, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27953", "stop_name": "Red Lion Rd & Ferndale St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.034563, 40.106315 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 11.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30117", "stop_name": "Red Lion Rd & Sandmeyer Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036985, 40.107001 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 12.2, "arrivals_during_cuts": 10.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "972", "stop_name": "Sandmeyer Ln & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036543, 40.107848 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22954", "stop_name": "Sandmeyer Ln & 10059", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.032601, 40.112298 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30118", "stop_name": "Sandmeyer Ln & 10071", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.035385, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22953", "stop_name": "Sandmeyer Ln & 10090", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035645, 40.113968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31326", "stop_name": "Red Lion Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 0.6, "percent_change": -0.62, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016494, 40.095663 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.2, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.2, "percent_change": 0.24, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.2, "percent_change": 0.24, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.0, "percent_change": 0.25, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.0, "percent_change": 0.25, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.0, "percent_change": 0.25, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 6.0, "percent_change": 0.25, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 6.0, "percent_change": 0.3, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.8, "percent_change": 0.38, "expected_wait_time_difference": -7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.8, "percent_change": 0.38, "expected_wait_time_difference": -7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.8, "percent_change": 0.32, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.6, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.6, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.4, "percent_change": 0.29, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.2, "percent_change": 0.24, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.2, "percent_change": 0.24, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.2, "percent_change": 0.24, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.0, "percent_change": 0.32, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.0, "percent_change": 0.39, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.8, "percent_change": 0.26, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -7.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -7.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.0, "percent_change": -0.43, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.8, "percent_change": -0.46, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.8, "percent_change": -0.46, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.4, "percent_change": -0.51, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.6, "percent_change": -0.63, "expected_wait_time_difference": 36.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.6, "percent_change": -0.63, "expected_wait_time_difference": 36.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.6, "percent_change": -0.63, "expected_wait_time_difference": 36.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.6, "percent_change": -0.63, "expected_wait_time_difference": 36.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.4, "percent_change": -0.37, "expected_wait_time_difference": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.4, "percent_change": -0.37, "expected_wait_time_difference": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 4.6, "percent_change": -0.32, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.6, "percent_change": -0.3, "expected_wait_time_difference": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.2, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.8, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.8, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.8, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.2, "percent_change": -0.16, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.2, "percent_change": 0.2, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.8, "percent_change": 0.1, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 4.4, "percent_change": -0.48, "expected_wait_time_difference": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 4.4, "percent_change": -0.48, "expected_wait_time_difference": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 4.4, "percent_change": -0.48, "expected_wait_time_difference": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 4.4, "percent_change": -0.48, "expected_wait_time_difference": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.2, "percent_change": -0.3, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.2, "percent_change": -0.3, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 4.8, "percent_change": -0.47, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 4.6, "percent_change": -0.49, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 4.6, "percent_change": -0.5, "expected_wait_time_difference": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 4.6, "percent_change": -0.5, "expected_wait_time_difference": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.6, "percent_change": -0.51, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.6, "percent_change": -0.51, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.4, "percent_change": -0.43, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.4, "percent_change": -0.43, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.2, "percent_change": -0.45, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.2, "percent_change": -0.45, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.4, "percent_change": -0.43, "expected_wait_time_difference": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 3.4, "percent_change": -0.48, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31326", "stop_name": "Red Lion Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.016494, 40.095663 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -13.4 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.5, "percent_change": 0.44, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.5, "percent_change": 0.44, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.5, "percent_change": 0.44, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.0, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.5, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.5, "percent_change": 0.13, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23025", "stop_name": "Haldeman Av & Red Lion Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017822, 40.09722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23026", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014313, 40.098431 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23027", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012463, 40.099077 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30201", "stop_name": "Haldeman Av & Plaza Shopping Ctr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009282, 40.100717 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30202", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.00762, 40.101578 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22538", "stop_name": "Roosevelt Blvd & Plaza Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005906, 40.101367 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "25924", "stop_name": "Roosevelt Blvd & Plaza Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004765, 40.102148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22539", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003054, 40.103329 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "11", "stop_name": "Comly Rd & Roosevelt Blvd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000884, 40.104027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27413", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000036, 40.103328 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99833, 40.10168 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27414", "stop_name": "Comly Rd & Caroline Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996659, 40.100148 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22598", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995623, 40.099225 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22546", "stop_name": "Comly Rd & Thornton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991384, 40.095801 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22547", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988841, 40.093721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22885", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987523, 40.092583 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23362", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985251, 40.090692 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "976", "stop_name": "Academy Rd & Comly Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984653, 40.089788 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23901", "stop_name": "Academy Rd & Comly Rd - 1 MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985488, 40.088783 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23902", "stop_name": "Academy Rd & Comly Rd - 2 MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.986731, 40.086752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23903", "stop_name": "Academy Rd & Chalfont Dr - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988218, 40.085338 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "413", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989976, 40.084318 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22931", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.991566, 40.083493 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22932", "stop_name": "Red Lion Rd & Academy Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.994216, 40.081512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22933", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.991886, 40.079514 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22934", "stop_name": "Red Lion Rd & Pelle Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990062, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22935", "stop_name": "Red Lion Rd & Keswick Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987474, 40.075651 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.5, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22938", "stop_name": "Red Lion Rd & Pelle Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989861, 40.077927 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22939", "stop_name": "Red Lion Rd & Calera Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991626, 40.079432 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22940", "stop_name": "Red Lion Rd & Academy Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994227, 40.081637 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22941", "stop_name": "Academy Rd & Amity Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991746, 40.08311 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "408", "stop_name": "Academy Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990191, 40.083979 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23720", "stop_name": "Academy Rd & Ryan High School South Entrance", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988434, 40.084866 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23721", "stop_name": "Academy Rd & Ryan Dr North", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986626, 40.086457 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23722", "stop_name": "Academy Rd & Comly Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985396, 40.088381 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22942", "stop_name": "Comly Rd & Comly Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98505, 40.090682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21199", "stop_name": "Comly Rd & Brandon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987192, 40.092466 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22943", "stop_name": "Comly Rd & Decatur Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989323, 40.09425 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22892", "stop_name": "Comly Rd & Thorton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.991583, 40.096141 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22893", "stop_name": "Comly Rd & Norcom Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.99534, 40.099162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27418", "stop_name": "Comly Rd & Norcom Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.996552, 40.100219 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "980", "stop_name": "Comly Rd & Caroline Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997905, 40.101482 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22894", "stop_name": "Comly Rd & Nestor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999623, 40.103166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22895", "stop_name": "Comly Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000636, 40.104009 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21944", "stop_name": "Roosevelt Blvd & Bennett Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003144, 40.104097 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25957", "stop_name": "Roosevelt Blvd & Bennett Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.10296 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30203", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007607, 40.101765 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30204", "stop_name": "Haldeman Av & Plaza Shopping Ctr - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008807, 40.101046 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22944", "stop_name": "Haldeman Av & Tomlinson Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012261, 40.099281 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22945", "stop_name": "Haldeman Av & Sanford St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014205, 40.098609 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22946", "stop_name": "Haldeman Av & Greymont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016019, 40.097982 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22947", "stop_name": "Haldeman Av & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017999, 40.097274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22948", "stop_name": "Red Lion Rd & Wilbur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019472, 40.098359 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22949", "stop_name": "Red Lion Rd & Jamison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021604, 40.100133 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22950", "stop_name": "Red Lion Rd & Northeast Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027358, 40.101812 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22951", "stop_name": "Red Lion Rd & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028501, 40.102538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31588", "stop_name": "Bustleton Av & Verree Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026916, 40.106621 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "982", "stop_name": "Bustleton Av & Verree Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026377, 40.107851 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31570", "stop_name": "Verree Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027193, 40.107961 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22956", "stop_name": "Verree Rd & Creswood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028201, 40.107527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22957", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030135, 40.106596 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "984", "stop_name": "Verree Rd & Red Lion Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03328, 40.105106 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22959", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034953, 40.10429 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22960", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037053, 40.103297 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22961", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03856, 40.10257 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22962", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039841, 40.101967 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22963", "stop_name": "Verree Rd & Pine Hill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043116, 40.10038 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22964", "stop_name": "Verree Rd & Pine Hill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044777, 40.099608 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22965", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047019, 40.098508 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22966", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048422, 40.097218 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22958", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050754, 40.094931 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22967", "stop_name": "Verree Rd & Charette Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05155, 40.094202 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27954", "stop_name": "Verree Rd & Dogwood Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053108, 40.092752 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22968", "stop_name": "Verree Rd & Marchman Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05565, 40.090876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22969", "stop_name": "Verree Rd & Bloomfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057052, 40.089782 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22970", "stop_name": "Verree Rd & Bloomfield Av - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059007, 40.086852 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22971", "stop_name": "Verree Rd & Bloomfield Av - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060895, 40.085527 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 8.0, "percent_change": 0.07, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27956", "stop_name": "Verree Rd & Bloomfield Av - 3 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062546, 40.08439 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27957", "stop_name": "Verree Rd & Bloomfield Av - 4 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06416, 40.083261 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27955", "stop_name": "Verree Rd & Susquehanna Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066238, 40.081839 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22972", "stop_name": "Verree Rd & Susquehanna Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068434, 40.080319 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22973", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069908, 40.078895 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27958", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071014, 40.0778 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22974", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072274, 40.076554 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22975", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073499, 40.075353 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22976", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074533, 40.074356 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "985", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075888, 40.073021 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22977", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077243, 40.071722 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22978", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078432, 40.070538 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22979", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079691, 40.069337 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22980", "stop_name": "Verree Rd & Ferndale St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080903, 40.068162 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22981", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082199, 40.06688 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22982", "stop_name": "Verree Rd & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083435, 40.06559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "16429", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083562, 40.063876 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22983", "stop_name": "Cottman Av & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083292, 40.061064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22984", "stop_name": "Whitaker Av & Saint Vincent St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078636, 40.05541 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22985", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079801, 40.054182 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22986", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081239, 40.05266 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22987", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082166, 40.051671 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22988", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083355, 40.050416 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22989", "stop_name": "Whitaker Av & Unruh St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08452, 40.049179 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22990", "stop_name": "Whitaker Av & Magee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085673, 40.047968 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22991", "stop_name": "Oxford Av & Magee Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087125, 40.048409 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22992", "stop_name": "Oxford Av & Hellerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087663, 40.047135 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22993", "stop_name": "Oxford Av & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088344, 40.045601 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "478", "stop_name": "Martins Mill Rd & Oxford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089026, 40.043898 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22995", "stop_name": "Oxford Av & Algon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088294, 40.041228 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22997", "stop_name": "Oxford Av & Benner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088611, 40.039274 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23000", "stop_name": "Oxford Av & Langdon St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088607, 40.037632 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "404", "stop_name": "Oxford Av & Summerdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087987, 40.036166 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23002", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087237, 40.034843 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23006", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08547, 40.033562 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23007", "stop_name": "Oxford Av & Roosevelt Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084884, 40.0324 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23008", "stop_name": "Cheltenham Av & Roosevelt Bvld - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083979, 40.031264 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23011", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082729, 40.0306 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23012", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080937, 40.029587 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23013", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079169, 40.028573 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23014", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077967, 40.027892 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31108", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076905, 40.027371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "32101", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075725, 40.027064 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21966", "stop_name": "Frankford Transit Center - Rt 67", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077715, 40.023875 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31105", "stop_name": "Cheltenham Av & Penn St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076633, 40.027397 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22837", "stop_name": "Cheltenham Av & Saul St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077789, 40.0279 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22838", "stop_name": "Cheltenham Av & Oakland St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078933, 40.028546 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22839", "stop_name": "Cheltenham Av & Horrocks St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080701, 40.029559 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22840", "stop_name": "Cheltenham Av & Large St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082493, 40.030582 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22841", "stop_name": "Cheltenham Av & Roosevelt Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083884, 40.031371 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22842", "stop_name": "Oxford Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084788, 40.032721 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22844", "stop_name": "Oxford Av & Loretto Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085245, 40.033535 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22843", "stop_name": "Oxford Av & Frontenac St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08706, 40.034816 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "389", "stop_name": "Oxford Av & Summerdale Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087997, 40.036595 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22845", "stop_name": "Oxford Av & Langdon St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088594, 40.037944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22846", "stop_name": "Oxford Av & Benner St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088481, 40.039193 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22848", "stop_name": "Algon Av & Devereaux Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08769, 40.041565 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22849", "stop_name": "Algon Av & Robbins Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086551, 40.04241 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22850", "stop_name": "Algon Av & Levick St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085102, 40.043602 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15740", "stop_name": "Algon Av & Hellerman St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083772, 40.044777 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22851", "stop_name": "Magee Av & Algon Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082524, 40.046157 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22852", "stop_name": "Magee Av & Pennway St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.5, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083975, 40.046964 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22853", "stop_name": "Magee Av & Whitaker Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085567, 40.047861 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22854", "stop_name": "Whitaker Av & Unruh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084508, 40.049045 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22855", "stop_name": "Whitaker Av & Knorr St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083344, 40.050282 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22856", "stop_name": "Whitaker Av & Longshore Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082131, 40.05152 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22857", "stop_name": "Whitaker Av & Tyson Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080824, 40.052944 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22858", "stop_name": "Whitaker Av & Princeton Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07979, 40.054048 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22859", "stop_name": "Whitaker Av & Saint Vincent St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078399, 40.055517 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15875", "stop_name": "Oxford Av & Bleigh Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083398, 40.063474 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15876", "stop_name": "Oxford Av & Verree Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083451, 40.064795 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22860", "stop_name": "Verree Rd & Faunce St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082105, 40.066675 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22861", "stop_name": "Verree Rd & Napfle Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080929, 40.067841 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22862", "stop_name": "Verree Rd & Hartel Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.079681, 40.069069 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22863", "stop_name": "Verree Rd & Borbeck Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.078433, 40.07027 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22864", "stop_name": "Verree Rd & Loney St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077208, 40.07149 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "970", "stop_name": "Verree Rd & Rhawn St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075901, 40.072762 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22865", "stop_name": "Verree Rd & Stanwood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07476, 40.073884 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22866", "stop_name": "Verree Rd & Solly Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.075103 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22867", "stop_name": "Verree Rd & Hoffnagle St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072252, 40.076322 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27948", "stop_name": "Verree Rd & Strahle St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071016, 40.077524 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22868", "stop_name": "Verree Rd & Kendrick St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069779, 40.07877 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22869", "stop_name": "Verree Rd & Tustin St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068519, 40.080025 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22870", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065895, 40.0819 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22871", "stop_name": "Verree Rd & Tustin St - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064019, 40.083189 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27949", "stop_name": "Verree Rd & Bloomfield Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.06016, 40.085864 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "20395", "stop_name": "Verree Rd & Bloomfield Av - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056363, 40.090191 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1495", "stop_name": "Verree Rd & Marchman Rd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054951, 40.091088 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31362", "stop_name": "Verree Rd & Marchman Rd - 2 MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053906, 40.091746 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31361", "stop_name": "Verree Rd & Dogwood Ln", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052753, 40.09276 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22872", "stop_name": "Verree Rd & Alburger Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050744, 40.094619 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22873", "stop_name": "Verree Rd & Pecan Dr", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.048293, 40.097022 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22874", "stop_name": "Verree Rd & Welsh Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047234, 40.09808 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27950", "stop_name": "Verree Rd & Pine Hill Rd - MBNS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044861, 40.099314 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22875", "stop_name": "Verree Rd & Redd Rambler Dr", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.042809, 40.100307 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22876", "stop_name": "Verree Rd & Morefield Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039855, 40.101708 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22877", "stop_name": "Verree Rd & Medway Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038466, 40.102373 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22878", "stop_name": "Verree Rd & Glenn St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037031, 40.103056 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22879", "stop_name": "Verree Rd & Chesworth Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034456, 40.10428 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "971", "stop_name": "Verree Rd & Red Lion Rd", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.033032, 40.104963 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "32100", "stop_name": "Verree Rd & Greymont St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 8.0, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.030054, 40.10639 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "973", "stop_name": "Verree Rd & Bustleton Av", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027063, 40.107871 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26154", "stop_name": "Bustleton Av & Verree Rd - MBFS", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027201, 40.106551 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23245", "stop_name": "Bustleton Av & Red Lion Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.5, "percent_change": -0.19, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029466, 40.101488 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "26157", "stop_name": "Red Lion Rd & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.102271 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22882", "stop_name": "Red Lion Rd & Northeast Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02743, 40.101598 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22883", "stop_name": "Red Lion Rd & Jamison Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021464, 40.09974 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22884", "stop_name": "Red Lion Rd & Wilbur St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019604, 40.098172 ] } }, +{ "type": "Feature", "properties": { "route_id": "67", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31326", "stop_name": "Red Lion Rd & Roosevelt Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016494, 40.095663 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 840.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.4, "percent_change": -0.09, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.6, "percent_change": 0.1, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.8, "percent_change": 0.17, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.8, "percent_change": 0.17, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.8, "percent_change": 0.17, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.8, "percent_change": 0.17, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.8, "percent_change": 0.17, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.8, "percent_change": 0.23, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 9.8, "percent_change": 0.26, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.6, "percent_change": 0.26, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.6, "percent_change": 0.26, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.8, "percent_change": 0.29, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.8, "percent_change": 0.14, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.0, "percent_change": 0.16, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.2, "percent_change": 0.19, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.2, "percent_change": 0.19, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.2, "percent_change": 0.19, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.2, "percent_change": 0.19, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.2, "percent_change": 0.19, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.2, "percent_change": 0.19, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.2, "percent_change": 0.19, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.6, "percent_change": 0.23, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 10.8, "percent_change": 0.26, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 10.6, "percent_change": 0.26, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 10.4, "percent_change": 0.27, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 10.4, "percent_change": 0.27, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 10.4, "percent_change": 0.27, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 10.4, "percent_change": 0.41, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 10.2, "percent_change": 2.0, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 12.8, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.0, "percent_change": -0.02, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.0, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.0, "percent_change": -0.06, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.2, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 13.8, "percent_change": 0.01, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 13.8, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.4, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.4, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.4, "percent_change": 0.03, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.4, "percent_change": 0.02, "expected_wait_time_difference": -0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 14.0, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 14.0, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 13.8, "percent_change": 0.05, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 13.8, "percent_change": 0.06, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 14.2, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 14.4, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.6, "percent_change": 0.04, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.0, "percent_change": -0.36, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.2, "percent_change": -0.34, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 9.4, "percent_change": -0.36, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.4, "percent_change": -0.34, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.2, "percent_change": -0.35, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.2, "percent_change": -0.36, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 9.0, "percent_change": -0.38, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 9.0, "percent_change": -0.39, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 8.8, "percent_change": -0.41, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 8.8, "percent_change": -0.41, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 8.8, "percent_change": -0.4, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.6, "percent_change": -0.39, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.8, "percent_change": -0.38, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 8.8, "percent_change": -0.38, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.0, "percent_change": -0.37, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 9.2, "percent_change": -0.35, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.2, "percent_change": -0.33, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.2, "percent_change": -0.33, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.2, "percent_change": -0.33, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.2, "percent_change": -0.33, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 9.2, "percent_change": -0.33, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 13.6, "arrivals_during_cuts": 9.2, "percent_change": -0.32, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.2, "percent_change": -0.31, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 13.4, "arrivals_during_cuts": 9.4, "percent_change": -0.3, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 13.2, "arrivals_during_cuts": 9.4, "percent_change": -0.29, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.4, "percent_change": -0.28, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 12.6, "arrivals_during_cuts": 9.4, "percent_change": -0.25, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 12.8, "arrivals_during_cuts": 9.6, "percent_change": -0.25, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.8, "percent_change": -0.25, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 13.0, "arrivals_during_cuts": 9.6, "percent_change": -0.26, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.4, "percent_change": -0.32, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.2, "percent_change": -0.45, "expected_wait_time_difference": 30.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.6, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.6, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 13.6, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 13.8, "percent_change": -0.22, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 18.0, "arrivals_during_cuts": 14.2, "percent_change": -0.21, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 18.2, "arrivals_during_cuts": 14.2, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 14.2, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.4, "percent_change": -0.24, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 15.0, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.0, "percent_change": -0.22, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 15.2, "percent_change": -0.21, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 14.8, "percent_change": -0.23, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.6, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.6, "percent_change": -0.23, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 14.6, "percent_change": -0.22, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 14.2, "percent_change": -0.25, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.6, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.6, "percent_change": -0.28, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 19.0, "arrivals_during_cuts": 13.4, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.4, "percent_change": -0.3, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.4, "percent_change": -0.3, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 19.4, "arrivals_during_cuts": 13.4, "percent_change": -0.31, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 19.2, "arrivals_during_cuts": 13.2, "percent_change": -0.31, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 13.2, "percent_change": -0.3, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 18.8, "arrivals_during_cuts": 13.2, "percent_change": -0.3, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.2, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 18.6, "arrivals_during_cuts": 13.2, "percent_change": -0.29, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 8.6, "percent_change": -0.4, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.2, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.2, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.2, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.4, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.2, "percent_change": -0.15, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.4, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.4, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.6, "percent_change": -0.12, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.8, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.0, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.2, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.4, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.6, "percent_change": 0.06, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.0, "percent_change": 4.0, "expected_wait_time_difference": -480.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.4, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.4, "percent_change": -0.13, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.2, "percent_change": -0.16, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.2, "percent_change": -0.15, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.0, "percent_change": -0.2, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.0, "percent_change": -0.22, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 9.2, "percent_change": -0.19, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 8.8, "percent_change": -0.23, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.6, "percent_change": -0.22, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.4, "percent_change": -0.19, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 13.2, "percent_change": -0.2, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.2, "percent_change": -0.22, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 13.4, "percent_change": -0.21, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.4, "percent_change": -0.16, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 14.8, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.8, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.8, "percent_change": -0.12, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.2, "percent_change": -0.15, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.0, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.4, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 14.6, "percent_change": -0.12, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 14.6, "percent_change": -0.13, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 14.6, "percent_change": -0.14, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 14.6, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.0, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 15.0, "percent_change": -0.15, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.0, "percent_change": -0.14, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 17.4, "arrivals_during_cuts": 15.2, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.0, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.0, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.0, "percent_change": -0.12, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.6, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.6, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.8, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.8, "percent_change": -0.06, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.6, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.6, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.8, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.8, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.8, "percent_change": -0.07, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 17.0, "arrivals_during_cuts": 15.4, "percent_change": -0.09, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 17.2, "arrivals_during_cuts": 15.0, "percent_change": -0.13, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.8, "percent_change": -0.16, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 17.6, "arrivals_during_cuts": 14.8, "percent_change": -0.16, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.8, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 17.8, "arrivals_during_cuts": 14.8, "percent_change": -0.17, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.4, "percent_change": -0.16, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.6, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.8, "percent_change": -0.21, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.8, "percent_change": -0.19, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.4, "percent_change": -0.24, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.0, "percent_change": -0.32, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.0, "percent_change": -0.33, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.0, "percent_change": -0.35, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.2, "percent_change": -0.33, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.2, "percent_change": -0.33, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.2, "percent_change": -0.33, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.2, "percent_change": -0.34, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.2, "percent_change": -0.35, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.8, "percent_change": 0.21, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.8, "percent_change": 0.17, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.2, "percent_change": 0.4, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.4, "percent_change": -0.11, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.6, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.6, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.8, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.8, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.8, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.8, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.8, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.8, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 12.8, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 12.8, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.8, "percent_change": -0.14, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.0, "percent_change": -0.12, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.4, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.6, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.6, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.6, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.6, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.6, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 13.4, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.2, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.2, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.2, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.2, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.2, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 14.4, "arrivals_during_cuts": 13.0, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 12.6, "percent_change": -0.15, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.6, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.6, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.6, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.6, "percent_change": -0.16, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 12.8, "percent_change": -0.15, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.4, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.6, "percent_change": 0.17, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.8, "percent_change": -0.24, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.6, "percent_change": 0.17, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.8, "percent_change": 0.21, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 280.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.5, "percent_change": -0.23, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.0, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.5, "percent_change": 2.5, "expected_wait_time_difference": -107.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 12.0, "percent_change": -0.17, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 13.0, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 13.5, "percent_change": -0.1, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 15.0, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.0, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.5, "percent_change": 0.11, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.5, "percent_change": 0.11, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 15.5, "percent_change": 0.11, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.0, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.0, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 12.5, "percent_change": -0.11, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.0, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.0, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.0, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.0, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.5, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 14.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.5, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.5, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.5, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 5.5, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.5, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 11.0, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 11.0, "percent_change": 0.05, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 10.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.5, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.5, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 7.5, "percent_change": -0.12, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "21858", "stop_name": "Frankford Av & Linden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004834, 40.054638 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22787", "stop_name": "Linden Av & Cottage St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.003492, 40.053518 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22788", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002469, 40.052622 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22786", "stop_name": "Linden Av & Ditman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.001257, 40.051538 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22789", "stop_name": "Linden Av & Torresdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000022, 40.050436 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22790", "stop_name": "Torresdale Av & Tolbut St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004997, 40.047079 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26501", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007822, 40.045178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22791", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009603, 40.044015 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22792", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011395, 40.042816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22793", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013259, 40.041582 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22794", "stop_name": "Ashburner St & Torresdale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015324, 40.040178 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26502", "stop_name": "State Rd & Rhawn St - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024131, 40.030023 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26503", "stop_name": "State Rd & Bleigh Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026633, 40.028639 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22796", "stop_name": "State Rd & Bleigh Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02878, 40.027432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22797", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031508, 40.025816 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1021", "stop_name": "Cottman Av & Ditman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035629, 40.030819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22799", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.036792, 40.032241 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22800", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037649, 40.033297 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22801", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038518, 40.034353 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22802", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.039352, 40.035391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "31379", "stop_name": "Cottman Av & Frankford Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041235, 40.037048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26504", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042402, 40.037739 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22453", "stop_name": "Cottman Av & Rowland Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045985, 40.039767 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22454", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047246, 40.040485 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22804", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048908, 40.041445 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22805", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050511, 40.042369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "30986", "stop_name": "Cottman Av & Brous Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052126, 40.043284 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1023", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053907, 40.044289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17681", "stop_name": "Cottman Av & Roosevelt Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055333, 40.045124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6478", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056264, 40.045653 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1024", "stop_name": "Cottman Av & Bustleton Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060131, 40.047896 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6454", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.049134 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17683", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064069, 40.050147 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17686", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065873, 40.05117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1025", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.067618, 40.052166 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17689", "stop_name": "Cottman Av & Frontenac St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069611, 40.053305 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "6484", "stop_name": "Cottman Av & Glendale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07138, 40.054319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17690", "stop_name": "Cottman Av & Algon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073137, 40.055341 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17691", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074918, 40.056391 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1027", "stop_name": "Cottman Av & Whitaker Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076887, 40.057512 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17695", "stop_name": "Cottman Av & Tabor Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.080637, 40.059682 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17696", "stop_name": "Cottman Av & Bingham St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.08217, 40.06057 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1028", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083303, 40.061234 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17697", "stop_name": "Cottman Av & Rising Sun Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084246, 40.061798 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22808", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086475, 40.063099 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17700", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0894, 40.064794 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22811", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.09114, 40.064602 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22812", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091912, 40.063836 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22813", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092673, 40.063089 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22814", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093433, 40.062314 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22815", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094407, 40.061371 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22816", "stop_name": "Central Av & Tookany Creek Pkwy", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.095572, 40.060214 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22817", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096956, 40.060066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22818", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.098446, 40.061109 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22819", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099467, 40.061857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22820", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.100968, 40.062066 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22821", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102884, 40.062187 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26505", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.10422, 40.062146 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22822", "stop_name": "Ashbourne Rd & Croyden Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105227, 40.061388 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22823", "stop_name": "Ashbourne Rd & Boyer Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.105908, 40.060706 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22824", "stop_name": "Ashbourne Rd & Arbor Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106679, 40.05993 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 3.5, "percent_change": -0.5, "expected_wait_time_difference": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26506", "stop_name": "Oak Ln Rd & Ashbourne Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111106, 40.061744 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26507", "stop_name": "Oak Ln Rd & Brookfield Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112125, 40.061122 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 0.5, "percent_change": -0.88, "expected_wait_time_difference": 262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22825", "stop_name": "Oak Ln Rd & Coventry Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113145, 40.060527 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "26508", "stop_name": "Oak Ln Rd & Barclay Cir", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.114959, 40.059576 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22827", "stop_name": "Oak Ln Rd & Parkview Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.117306, 40.05844 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22828", "stop_name": "Oak Ln Rd & Barclay Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119225, 40.057516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22829", "stop_name": "Oak Ln Rd & New 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121335, 40.056468 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22830", "stop_name": "Oak Ln Rd & Asbury Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122532, 40.055954 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "1030", "stop_name": "Oak Lane Rd & Valley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124558, 40.054932 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22831", "stop_name": "Oak Ln Rd & 5th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126442, 40.054132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22832", "stop_name": "5th St & 67th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126859, 40.053385 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22833", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127209, 40.051815 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22834", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127546, 40.050289 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22835", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 40.049005 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "22836", "stop_name": "5th St & Chelten Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128221, 40.047265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "16236", "stop_name": "5th St & Godfrey Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128523, 40.045882 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17709", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.04594 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17710", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132022, 40.046078 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17711", "stop_name": "Godfrey Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135675, 40.046265 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17713", "stop_name": "11th St & Godfrey Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 40.046636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17714", "stop_name": "11th St & Spencer St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137925, 40.04536 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17716", "stop_name": "11th St & Champlost Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.138286, 40.043808 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "17718", "stop_name": "11th St & Nedro Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1386, 40.042309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Fern Rock Transit Center", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "841", "stop_name": "Fern Rock Transit Center", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13697, 40.04194 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17921", "stop_name": "10th St & Champlost St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136596, 40.043383 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17923", "stop_name": "10th St & Spencer St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 8.5, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136224, 40.044946 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17925", "stop_name": "10th St & Godfrey Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.0, "percent_change": -0.14, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135995, 40.046132 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "24123", "stop_name": "Godfrey Av & Franklin St - MBNS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 40.046093 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17926", "stop_name": "Godfrey Av & 7th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132223, 40.045963 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17928", "stop_name": "Godfrey Av & 6th St", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130568, 40.045843 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "31433", "stop_name": "5th St & Medary Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128261, 40.046248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22723", "stop_name": "5th St & Chelten Av - FS", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128032, 40.047372 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22724", "stop_name": "5th St & 64th Av", "arrivals_before_cuts": 10.5, "arrivals_during_cuts": 9.5, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127694, 40.048915 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22725", "stop_name": "5th St & 65th Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127417, 40.050119 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22726", "stop_name": "5th St & 66th Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.127079, 40.051645 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "32102", "stop_name": "5th St & 67th St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12673, 40.053215 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22727", "stop_name": "5th St & Oak Ln", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.126597, 40.053857 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1003", "stop_name": "Oak Lane & Cheltenham Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.125045, 40.054567 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22728", "stop_name": "Oak Ln & Asbury Av - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122544, 40.055748 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26381", "stop_name": "Oak Ln & New 2nd St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.121608, 40.056183 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22729", "stop_name": "Oak Ln & Barclay Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.119333, 40.057311 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22730", "stop_name": "Oak Ln & Parkview Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117413, 40.058235 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22731", "stop_name": "Oak Ln & Bell Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115552, 40.059149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26382", "stop_name": "Oak Ln & Coventry Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113146, 40.060375 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22732", "stop_name": "Oak Ln & Brookfield Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.11234, 40.060837 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22733", "stop_name": "Oak Ln & Ashbourne Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.110833, 40.061762 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22735", "stop_name": "Ashbourne Rd & Front St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.106915, 40.059868 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22736", "stop_name": "Ashbourne Rd & Boyer Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105741, 40.060686 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22737", "stop_name": "Ashbourne Rd & Croyden Rd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.105123, 40.061319 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22738", "stop_name": "Ashbourne Rd & Jenkintown Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.104304, 40.061986 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22739", "stop_name": "Ashbourne Rd & Rolling Green Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.103038, 40.062081 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22740", "stop_name": "Ashbourne Rd & Waltham Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101146, 40.061951 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22741", "stop_name": "Ashbourne Rd & Oak Hill Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.100035, 40.061903 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22742", "stop_name": "Ashbourne Rd & Foster Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09869, 40.061123 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22743", "stop_name": "Ashbourne Rd & Rowland Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097217, 40.060048 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22744", "stop_name": "Central Av & Ashbourne Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095787, 40.059804 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22745", "stop_name": "Central Av & Laurel Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094385, 40.061174 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22746", "stop_name": "Central Av & Myrtle Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09347, 40.0621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22747", "stop_name": "Central Av & Franklin Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.09265, 40.062892 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22748", "stop_name": "Central Av & Beecher Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091889, 40.06364 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22749", "stop_name": "Central Av & Jefferson Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.091117, 40.064406 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22750", "stop_name": "Central Av & Cottman Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090487, 40.065082 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "20620", "stop_name": "Cottman Av & Ryers Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089743, 40.064866 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "25540", "stop_name": "Cottman Av & Rockwell Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.0867, 40.06309 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17498", "stop_name": "Cottman Av & Oakley St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084931, 40.062059 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1008", "stop_name": "Cottman Av & Oxford Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083657, 40.061288 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6426", "stop_name": "Cottman Av & Bingham St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 10.0, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082112, 40.060373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17501", "stop_name": "Cottman Av & Tabor Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.080673, 40.059548 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "21268", "stop_name": "Cottman Av & Whitaker Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076923, 40.057369 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6467", "stop_name": "Cottman Av & Pennway St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075178, 40.056373 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6423", "stop_name": "Cottman Av & Algon Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073421, 40.055333 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1009", "stop_name": "Cottman Av & Summerdale Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071664, 40.05432 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6446", "stop_name": "Cottman Av & Frontenac St - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069612, 40.053162 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "6461", "stop_name": "Cottman Av & Loretto Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 9.5, "percent_change": -0.14, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.067879, 40.052149 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17506", "stop_name": "Cottman Av & Castor Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.066275, 40.051243 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17507", "stop_name": "Cottman Av & Large St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064329, 40.05013 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17508", "stop_name": "Cottman Av & Horrocks St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.062561, 40.049117 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1056", "stop_name": "Cottman Av & Bustleton Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.060179, 40.04778 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22751", "stop_name": "Cottman Av & Rupert St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056525, 40.045636 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1013", "stop_name": "Cottman Av & Roosevelt Blvd", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.054791, 40.044667 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "17513", "stop_name": "Cottman Av & Revere St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053483, 40.043877 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22752", "stop_name": "Cottman Av & Brous Av - FS", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052127, 40.043124 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22753", "stop_name": "Cottman Av & Battersby St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050772, 40.042352 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1242", "stop_name": "Cottman Av & Hawthorne St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.04918, 40.041419 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22352", "stop_name": "Cottman Av & Sackett St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.047565, 40.040513 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22754", "stop_name": "Cottman Av & Rowland Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045962, 40.039597 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26383", "stop_name": "Cottman Av & Leon St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042686, 40.037704 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22756", "stop_name": "Cottman Av & Frankford Av", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.041153, 40.036878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22757", "stop_name": "Cottman Av & Erdrick St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039599, 40.035426 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22758", "stop_name": "Cottman Av & Walker St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038755, 40.034416 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22774", "stop_name": "Cottman Av & Cottage St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037897, 40.033361 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22775", "stop_name": "Cottman Av & Jackson St", "arrivals_before_cuts": 11.5, "arrivals_during_cuts": 9.5, "percent_change": -0.17, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037027, 40.032277 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "523", "stop_name": "Torresdale Av & Cottman Av Loop", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.036178, 40.030026 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22530", "stop_name": "State Rd & Cottman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031698, 40.025585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26386", "stop_name": "State Rd & Bleigh Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025911, 40.028878 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1016", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022543, 40.030759 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22776", "stop_name": "Ashburner St & Hegerman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.014182, 40.039425 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22777", "stop_name": "Ashburner St & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015288, 40.040312 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "26390", "stop_name": "Torresdale Av & Blakiston St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013343, 40.041359 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22778", "stop_name": "Torresdale Av & Strahle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011432, 40.042629 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22779", "stop_name": "Torresdale Av & Pennypack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009628, 40.043819 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22780", "stop_name": "Torresdale Av & Megargee St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007871, 40.044991 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22781", "stop_name": "Torresdale Av & Tolbut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004796, 40.047043 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22782", "stop_name": "Torresdale Av & Linden Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.050248 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22783", "stop_name": "Linden Av & Ditman St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000797, 40.051313 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22784", "stop_name": "Linden Av & Jackson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002232, 40.052585 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "22785", "stop_name": "Linden Av & Cottage St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003456, 40.053661 ] } }, +{ "type": "Feature", "properties": { "route_id": "70", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Torresdale-Cottman", "stop_id": "1227", "stop_name": "Frankford Av & Gregg St Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.005394, 40.053917 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.6, "percent_change": 0.12, "expected_wait_time_difference": -7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.6, "percent_change": 0.15, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.2, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.8, "percent_change": 0.18, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.0, "percent_change": 0.21, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 8.0, "percent_change": 0.21, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.6, "percent_change": 0.18, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.8, "percent_change": 0.18, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.8, "percent_change": 0.18, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.8, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.8, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.0, "percent_change": 0.08, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.0, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.2, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 11.4, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.4, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.4, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.4, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 12.6, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 12.4, "percent_change": 0.09, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.4, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.4, "percent_change": 0.11, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.8, "percent_change": 0.11, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.8, "percent_change": 0.13, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.8, "percent_change": 0.13, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.8, "percent_change": 0.13, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.6, "percent_change": 0.16, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 11.4, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.4, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.2, "percent_change": 0.08, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.8, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.6, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 10.8, "percent_change": -0.08, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 10.8, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 11.0, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.0, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.8, "percent_change": 0.07, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.8, "percent_change": 0.09, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.6, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.4, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 11.4, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 11.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.2, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.2, "percent_change": -0.11, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.2, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.2, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.2, "percent_change": -0.09, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.4, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.4, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.4, "percent_change": -0.09, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 10.6, "percent_change": -0.07, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 10.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.2, "percent_change": 0.09, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.8, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.8, "percent_change": -0.08, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.2, "percent_change": 0.03, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.6, "percent_change": 0.1, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 6.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.0, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 8.5, "arrivals_during_cuts": 9.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.5, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 10.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 9.5, "arrivals_during_cuts": 9.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 9.5, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.5, "percent_change": 0.42, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.5, "percent_change": 0.36, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.5, "percent_change": 0.25, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 8.0, "percent_change": 0.33, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27816", "stop_name": "Wayne Av & Roberts Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159703, 40.020936 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "30295", "stop_name": "Roberts Av & Green St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 40.021219 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22050", "stop_name": "Windrim Av & Germantown Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 40.022693 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22056", "stop_name": "Wingohocking St & Uber St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 40.022592 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22057", "stop_name": "Wingohocking St & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.156624, 40.022438 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22058", "stop_name": "Wingohocking St & 18th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 40.022238 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22059", "stop_name": "Wingohocking St & 17th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 40.022029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22060", "stop_name": "Wingohocking St & 16th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 40.02182 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22061", "stop_name": "Wingohocking St & 15th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 6.5, "percent_change": 0.18, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150315, 40.021612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22062", "stop_name": "15th St & Courtland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.5, "percent_change": 0.08, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149837, 40.023074 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22063", "stop_name": "15th St & Belfield Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149524, 40.024555 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1045", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148247, 40.024552 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22064", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147018, 40.024389 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22065", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145801, 40.024217 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22066", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144218, 40.024017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22067", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142647, 40.023799 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22068", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141087, 40.023599 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22069", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139469, 40.023408 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22071", "stop_name": "Wyoming Av & Roosevelt Blvd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.023135 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22073", "stop_name": "Wyoming Av & Fairhill St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135251, 40.022845 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1046", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133632, 40.022653 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22074", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.5, "percent_change": 0.15, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.130773, 40.022281 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22075", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 40.02198 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22077", "stop_name": "Wyoming Av & Mascher St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.126154, 40.021716 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22078", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.021507 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22080", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.12255, 40.02127 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22081", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 8.0, "percent_change": 0.23, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120613, 40.021033 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22082", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118427, 40.020769 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22083", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.116395, 40.020505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22084", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.114446, 40.020268 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22085", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111776, 40.019922 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22086", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.110642, 40.019777 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22087", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.108457, 40.019503 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22094", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.101876, 40.018674 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "1047", "stop_name": "Wyoming Av & Castor Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.099041, 40.01831 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22096", "stop_name": "Castor Av & Orthodox Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.096367, 40.019017 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "22097", "stop_name": "Orthodox St & Adams Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 40.019458 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17911", "stop_name": "Orthodox St & Large St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.093506, 40.018991 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "17912", "stop_name": "Orthodox St & Horrocks St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.091455, 40.017906 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18067", "stop_name": "Orthodox St & Oakland St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.090476, 40.017368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "27817", "stop_name": "Orthodox St & Pilling St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.089469, 40.016839 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18068", "stop_name": "Orthodox St & Leiper St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088201, 40.016148 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18069", "stop_name": "Orthodox St & Penn St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.087352, 40.015699 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18070", "stop_name": "Penn St & Overington St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.086367, 40.016518 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18071", "stop_name": "Penn St & Arrott St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085547, 40.017381 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "18072", "stop_name": "Penn St & Foulkrod St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.084324, 40.018708 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Arrott Transit Center", "stop_id": "892", "stop_name": "Oxford Av & Frankford Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.083895, 40.016939 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "220", "stop_name": "Arrott Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084202, 40.016869 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17615", "stop_name": "Arrott St & Leiper St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086195, 40.017927 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17616", "stop_name": "Arrott St & Oakland St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088446, 40.01921 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17621", "stop_name": "Arrott St & Horrocks St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089602, 40.019873 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17622", "stop_name": "Arrott St & Large St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091393, 40.021029 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17623", "stop_name": "Arrott St & Castor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.093667, 40.022517 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17624", "stop_name": "Castor Av & Adams Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094189, 40.022233 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22130", "stop_name": "Castor Av & Orthodox St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094988, 40.020655 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17627", "stop_name": "Castor Av & Orthodox St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095903, 40.019712 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "17631", "stop_name": "Castor Av & Wyoming Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097268, 40.018341 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22133", "stop_name": "Wyoming Av & Ramona Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099171, 40.018453 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22134", "stop_name": "Wyoming Av & Ramona Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101651, 40.018772 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22142", "stop_name": "Wyoming Av & H St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108231, 40.019601 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22144", "stop_name": "Wyoming Av & G St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.5, "percent_change": 0.3, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.110417, 40.019874 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22145", "stop_name": "Wyoming Av & Weymouth St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.111551, 40.02002 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22146", "stop_name": "Wyoming Av & Whitaker Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 7.0, "percent_change": 0.4, "expected_wait_time_difference": -8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.113878, 40.02032 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22148", "stop_name": "Wyoming Av & D St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.116111, 40.020612 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22149", "stop_name": "Wyoming Av & C St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 7.0, "percent_change": 0.27, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118202, 40.020867 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22150", "stop_name": "Wyoming Av & B St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.120388, 40.021131 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22152", "stop_name": "Wyoming Av & A St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.122325, 40.021368 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22153", "stop_name": "Wyoming Av & Front St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 40.021613 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22155", "stop_name": "Wyoming Av & Rising Sun Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.12548, 40.021759 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22157", "stop_name": "Wyoming Av & 2nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128209, 40.022087 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22159", "stop_name": "Wyoming Av & 3rd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130548, 40.022378 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "1041", "stop_name": "Wyoming Av & 5th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133384, 40.022751 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "256", "stop_name": "Roosevelt Blvd & 5th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133579, 40.024144 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "160", "stop_name": "Roosevelt Blvd & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135223, 40.023791 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22173", "stop_name": "Wyoming Av & 7th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13733, 40.02326 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22174", "stop_name": "Wyoming Av & 9th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139244, 40.023505 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22176", "stop_name": "Wyoming Av & 10th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140862, 40.023697 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22177", "stop_name": "Wyoming Av & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.142422, 40.023896 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22178", "stop_name": "Wyoming Av & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144005, 40.024114 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22179", "stop_name": "Wyoming Av & 13th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145576, 40.024314 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22185", "stop_name": "Wyoming Av & Old York Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146829, 40.024496 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "1042", "stop_name": "Wyoming Av & Broad St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.147691, 40.024605 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22194", "stop_name": "Wyoming Av & Broad St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148412, 40.024686 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22195", "stop_name": "Wyoming Av & 15th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149416, 40.024805 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22196", "stop_name": "Wyoming Av & 16th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150844, 40.025558 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22197", "stop_name": "16th St & Courtland St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151537, 40.023489 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22198", "stop_name": "Courtland St & 17th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152943, 40.023634 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22199", "stop_name": "Courtland St & 18th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154491, 40.023816 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22201", "stop_name": "Courtland St & 19th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156074, 40.024052 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "27818", "stop_name": "Courtland St & Windrum Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156889, 40.024179 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22202", "stop_name": "Windrum Av & 20th St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157836, 40.023841 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "22203", "stop_name": "Windrum Av & Germantown Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 40.022916 ] } }, +{ "type": "Feature", "properties": { "route_id": "75", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wayne Junction", "stop_id": "25815", "stop_name": "Windrim Av & Wayne Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 7.0, "percent_change": 0.17, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160079, 40.021669 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 4.6, "percent_change": 2.83, "expected_wait_time_difference": -129.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 5.4, "percent_change": 2.38, "expected_wait_time_difference": -92.4 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -168.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -168.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 5.0, "percent_change": 4.0, "expected_wait_time_difference": -168.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.4, "percent_change": 3.4, "expected_wait_time_difference": -162.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.8, "percent_change": 3.8, "expected_wait_time_difference": -166.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 4.6, "percent_change": 3.6, "expected_wait_time_difference": -164.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.8, "percent_change": 2.8, "expected_wait_time_difference": -154.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.6, "percent_change": 2.6, "expected_wait_time_difference": -151.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.4, "percent_change": 2.4, "expected_wait_time_difference": -148.2 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.4, "percent_change": 2.4, "expected_wait_time_difference": -148.2 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.4, "percent_change": 1.4, "expected_wait_time_difference": -122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.6, "percent_change": 1.6, "expected_wait_time_difference": -129.2 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.2, "percent_change": 1.2, "expected_wait_time_difference": -114.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.2, "percent_change": 2.67, "expected_wait_time_difference": -254.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.2, "percent_change": 2.67, "expected_wait_time_difference": -254.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.2, "percent_change": 2.67, "expected_wait_time_difference": -254.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.0, "percent_change": 2.33, "expected_wait_time_difference": -245.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 2.0, "percent_change": 2.33, "expected_wait_time_difference": -245.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.8, "percent_change": 3.5, "expected_wait_time_difference": -408.3 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.8, "percent_change": 8.0, "expected_wait_time_difference": -933.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.6, "percent_change": 7.0, "expected_wait_time_difference": -918.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 6.8, "percent_change": 1.27, "expected_wait_time_difference": -16.8 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 7.0, "percent_change": 1.19, "expected_wait_time_difference": -15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 7.0, "percent_change": 1.19, "expected_wait_time_difference": -15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 7.0, "percent_change": 1.19, "expected_wait_time_difference": -15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 7.6, "percent_change": 0.9, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.0, "percent_change": 0.74, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.0, "percent_change": 0.74, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.0, "percent_change": 0.74, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.6, "percent_change": 0.87, "expected_wait_time_difference": -9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.8, "percent_change": 0.91, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.8, "percent_change": 0.91, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.8, "percent_change": 0.91, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.8, "percent_change": 0.91, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 9.6, "percent_change": 1.18, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 9.6, "percent_change": 1.18, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 9.6, "percent_change": 1.18, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 9.6, "percent_change": 1.18, "expected_wait_time_difference": -11.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 9.4, "percent_change": 1.24, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 9.4, "percent_change": 1.24, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 9.4, "percent_change": 1.24, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 9.4, "percent_change": 1.24, "expected_wait_time_difference": -11.9 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.4, "percent_change": 1.35, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 9.4, "percent_change": 1.47, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 9.4, "percent_change": 1.47, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 9.4, "percent_change": 1.61, "expected_wait_time_difference": -15.4 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 9.4, "percent_change": 1.61, "expected_wait_time_difference": -15.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 9.2, "percent_change": 1.56, "expected_wait_time_difference": -15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 8.8, "percent_change": 1.44, "expected_wait_time_difference": -14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 9.0, "percent_change": 1.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.2, "percent_change": 1.71, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.2, "percent_change": 1.71, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 8.4, "percent_change": 1.47, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 8.4, "percent_change": 1.47, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 8.4, "percent_change": 1.47, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 8.4, "percent_change": 1.47, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 8.4, "percent_change": 1.47, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 8.4, "percent_change": 1.47, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 8.4, "percent_change": 1.47, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.2, "percent_change": 1.71, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.6, "percent_change": 1.82, "expected_wait_time_difference": -17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 9.8, "percent_change": 1.88, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 10.2, "percent_change": 2.0, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 10.2, "percent_change": 2.0, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 10.2, "percent_change": 2.0, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 10.2, "percent_change": 2.0, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 10.0, "percent_change": 1.94, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 10.0, "percent_change": 1.94, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 10.0, "percent_change": 1.63, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 10.0, "percent_change": 1.63, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 9.8, "percent_change": 1.58, "expected_wait_time_difference": -14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 10.0, "percent_change": 1.63, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 10.0, "percent_change": 1.63, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 10.2, "percent_change": 1.55, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 10.2, "percent_change": 1.43, "expected_wait_time_difference": -12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 10.4, "percent_change": 1.48, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 10.4, "percent_change": 1.36, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 10.4, "percent_change": 1.36, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 6.6, "percent_change": 0.65, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.8, "percent_change": 0.26, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 9.0, "percent_change": 0.29, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 9.0, "percent_change": 0.25, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 8.8, "percent_change": 0.19, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.8, "percent_change": 0.16, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.8, "percent_change": 0.16, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.8, "percent_change": 0.16, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.8, "percent_change": 0.16, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 9.0, "percent_change": 0.18, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.4, "percent_change": 0.2, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.4, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 10.2, "percent_change": 1.32, "expected_wait_time_difference": -19.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 9.6, "percent_change": 1.18, "expected_wait_time_difference": -18.5 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 9.6, "percent_change": 1.18, "expected_wait_time_difference": -18.5 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.8, "percent_change": 1.13, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.8, "percent_change": 1.13, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.8, "percent_change": 1.13, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.8, "percent_change": 1.13, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 10.0, "percent_change": 1.27, "expected_wait_time_difference": -19.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 10.0, "percent_change": 1.17, "expected_wait_time_difference": -17.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.8, "percent_change": 1.13, "expected_wait_time_difference": -17.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 10.0, "percent_change": 1.08, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.8, "percent_change": 0.88, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.8, "percent_change": 0.88, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.8, "percent_change": 0.81, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.6, "percent_change": 0.78, "expected_wait_time_difference": -12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 9.8, "percent_change": 0.81, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.8, "percent_change": 0.88, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.8, "percent_change": 0.88, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.8, "percent_change": 0.88, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.8, "percent_change": 0.88, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 9.8, "percent_change": 0.88, "expected_wait_time_difference": -13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.0, "percent_change": 0.8, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 10.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 10.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 10.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 10.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 10.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 10.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 10.0, "percent_change": 1.0, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 9.8, "percent_change": 0.96, "expected_wait_time_difference": -14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 7.6, "percent_change": 1.92, "expected_wait_time_difference": -38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.8, "percent_change": 1.8, "expected_wait_time_difference": -96.4 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.8, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.8, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.8, "percent_change": 0.16, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 12.6, "percent_change": 0.17, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 13.0, "percent_change": 0.2, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 13.0, "percent_change": 0.2, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 13.0, "percent_change": 0.2, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 13.0, "percent_change": 0.2, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.8, "percent_change": 0.14, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.8, "percent_change": 0.21, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.6, "percent_change": 0.19, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.4, "percent_change": 0.19, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.6, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.6, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.6, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 11.6, "percent_change": 0.14, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 12.0, "percent_change": 0.18, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.0, "percent_change": 0.15, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 12.4, "percent_change": 0.13, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.6, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.8, "percent_change": 0.14, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 12.8, "percent_change": 0.14, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 13.2, "percent_change": 0.18, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 13.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 13.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 13.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 11.4, "arrivals_during_cuts": 13.0, "percent_change": 0.14, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 13.0, "percent_change": 0.18, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 13.0, "percent_change": 0.2, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.8, "percent_change": 0.21, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.8, "percent_change": 0.23, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.8, "percent_change": 0.23, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.6, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.6, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.6, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.6, "percent_change": 0.21, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.4, "percent_change": 0.19, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.2, "percent_change": 0.17, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.0, "percent_change": 0.15, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.0, "percent_change": 0.15, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.0, "percent_change": 0.15, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.0, "percent_change": 0.15, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.0, "percent_change": 0.15, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.6, "percent_change": 0.12, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.0, "percent_change": 0.06, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.6, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.6, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.4, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.8, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 10.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.4, "percent_change": 0.95, "expected_wait_time_difference": -15.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.0, "percent_change": 0.84, "expected_wait_time_difference": -14.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.6, "percent_change": 1.0, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 7.6, "percent_change": 1.0, "expected_wait_time_difference": -15.8 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 8.8, "percent_change": 1.2, "expected_wait_time_difference": -16.4 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.0, "percent_change": 1.25, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.2, "percent_change": 1.3, "expected_wait_time_difference": -17.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.2, "percent_change": 1.3, "expected_wait_time_difference": -17.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.2, "percent_change": 1.3, "expected_wait_time_difference": -17.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.2, "percent_change": 1.3, "expected_wait_time_difference": -17.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.2, "percent_change": 1.3, "expected_wait_time_difference": -17.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.4, "percent_change": 1.35, "expected_wait_time_difference": -17.2 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.4, "percent_change": 1.35, "expected_wait_time_difference": -17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.4, "percent_change": 1.35, "expected_wait_time_difference": -17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.6, "percent_change": 1.4, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.8, "percent_change": 1.45, "expected_wait_time_difference": -17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 9.8, "percent_change": 1.45, "expected_wait_time_difference": -17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 10.2, "percent_change": 1.43, "expected_wait_time_difference": -16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 10.2, "percent_change": 1.32, "expected_wait_time_difference": -15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 8.4, "percent_change": 0.91, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 8.4, "percent_change": 0.91, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 8.4, "percent_change": 0.83, "expected_wait_time_difference": -11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 8.4, "percent_change": 0.75, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 8.4, "percent_change": 0.75, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.2, "percent_change": 0.92, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.2, "percent_change": 0.92, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.2, "percent_change": 0.92, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.4, "percent_change": 0.96, "expected_wait_time_difference": -12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.8, "percent_change": 1.04, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.8, "percent_change": 1.04, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.8, "percent_change": 1.04, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.6, "percent_change": 1.0, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.2, "percent_change": 0.92, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.0, "percent_change": 0.88, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 9.0, "percent_change": 0.88, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.0, "percent_change": 0.96, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 9.2, "percent_change": 1.0, "expected_wait_time_difference": -13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 7.0, "percent_change": 0.52, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 4.0, "percent_change": 2.33, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.0, "percent_change": 0.25, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 8.2, "percent_change": 0.28, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.8, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.0, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.6, "percent_change": -0.1, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.2, "percent_change": -0.06, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.0, "percent_change": -0.04, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.0, "percent_change": -0.06, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.2, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.0, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.2, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 11.6, "percent_change": 0.09, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.2, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.2, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.2, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.6, "percent_change": 0.19, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.6, "percent_change": 0.19, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.6, "percent_change": 0.19, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.6, "percent_change": 0.19, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.8, "percent_change": 0.21, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 12.8, "percent_change": 0.19, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 12.8, "percent_change": 0.21, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.0, "percent_change": 0.23, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.0, "percent_change": 0.23, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.0, "percent_change": 0.23, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.0, "percent_change": 0.23, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.2, "percent_change": 0.25, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 13.2, "percent_change": 0.25, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 13.0, "percent_change": 0.25, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 11.8, "percent_change": 0.13, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 12.0, "percent_change": 0.15, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.2, "percent_change": 0.11, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.2, "percent_change": 0.3, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -9.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.4, "percent_change": 0.42, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 5.4, "percent_change": 0.42, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 5.4, "percent_change": 0.5, "expected_wait_time_difference": -13.9 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 5.2, "percent_change": 0.53, "expected_wait_time_difference": -15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 5.2, "percent_change": 0.53, "expected_wait_time_difference": -15.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.8, "percent_change": 0.6, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.8, "percent_change": 0.6, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.8, "percent_change": 0.6, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.2, "percent_change": 0.4, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.2, "percent_change": 0.4, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.2, "percent_change": 0.4, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.8, "percent_change": 0.6, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.2, "percent_change": 0.73, "expected_wait_time_difference": -21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.4, "percent_change": 0.8, "expected_wait_time_difference": -22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.4, "percent_change": 0.23, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.5, "percent_change": 1.2, "expected_wait_time_difference": -32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.5, "percent_change": 1.2, "expected_wait_time_difference": -32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 5.0, "percent_change": 1.5, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 5.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.5, "percent_change": 0.75, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22586", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.964628, 40.090635 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1100", "stop_name": "Knights Rd & Academy Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.966078, 40.091462 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22665", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.968051, 40.090094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22666", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.969489, 40.089091 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22667", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.97225, 40.086647 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22668", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.973729, 40.084688 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22669", "stop_name": "Knights Rd & Fairdale Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.974719, 40.083433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22670", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.976234, 40.081573 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22671", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.977233, 40.080631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22672", "stop_name": "Knights Rd & Chalfont Dr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.978156, 40.078805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22673", "stop_name": "Knights Rd & Dorchester Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.978853, 40.077022 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22674", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.979333, 40.07597 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22675", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.97992, 40.074785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22676", "stop_name": "Knights Rd & Kane Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.980352, 40.07385 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22677", "stop_name": "Knights Rd & Red Lion Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.981131, 40.072228 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22937", "stop_name": "Red Lion Rd & Knights Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.982305, 40.07289 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22678", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.984489, 40.074302 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22679", "stop_name": "Red Lion Rd & Keswick Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987426, 40.075776 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "414", "stop_name": "Keswick Rd & Morrell Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989265, 40.074783 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22682", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987758, 40.071663 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22684", "stop_name": "Morrell Av & W Crown - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988481, 40.06764 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22685", "stop_name": "Morrell Av & Crestmont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987243, 40.06519 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1101", "stop_name": "Morrell Av & Frankford Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.98568, 40.063429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21907", "stop_name": "Frankford Av & Carteret Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.987307, 40.062379 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21908", "stop_name": "Frankford Av & Stevenson St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988601, 40.061589 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19084", "stop_name": "Grant Av & Frankford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.990254, 40.060166 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22687", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988125, 40.058285 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22688", "stop_name": "Grant Av & Eden Hall Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985102, 40.055596 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1102", "stop_name": "Grant Av & James St - Torresdale Station", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983927, 40.054325 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22689", "stop_name": "Grant Av & State Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.982941, 40.053125 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22690", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.98445, 40.052051 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22691", "stop_name": "State Rd & James St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.985162, 40.051634 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22692", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.988213, 40.049797 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22693", "stop_name": "State Rd & Pearson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.9908, 40.04828 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22694", "stop_name": "State Rd & Arendell St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.992794, 40.047046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22695", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.994514, 40.04607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27743", "stop_name": "State Rd & Linden Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.997303, 40.044429 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27744", "stop_name": "State Rd & Pennypack St - 1 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.999332, 40.043266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27745", "stop_name": "State Rd & Pennypack St - 2 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.002333, 40.041652 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31554", "stop_name": "State Rd & Ashburner St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.007825, 40.038708 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22697", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.01131, 40.037148 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22795", "stop_name": "State Rd & Ashburner St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.012128, 40.036705 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22698", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.013879, 40.035723 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22699", "stop_name": "State Rd & Rhawn Corrections - 1 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.015758, 40.034691 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22700", "stop_name": "State Rd & Rhawn Corrections - 2 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.019589, 40.032552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1019", "stop_name": "State Rd & Rhawn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.021712, 40.031363 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22701", "stop_name": "Rhawn St & Tulip St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024004, 40.033638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "31096", "stop_name": "Rhawn St & Torresdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025036, 40.035239 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22702", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026256, 40.034805 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22703", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02737, 40.034229 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "25993", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029113, 40.033333 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22704", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030892, 40.032419 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22705", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032433, 40.031612 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1104", "stop_name": "Torresdale Av & Cottman Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035065, 40.030264 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22706", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.035883, 40.029811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22707", "stop_name": "Torresdale Av & Friendship St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037709, 40.028879 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22708", "stop_name": "Princeton Av & Torresdale Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.038825, 40.027973 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22709", "stop_name": "Princeton Av & Edmund St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037733, 40.02672 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22710", "stop_name": "Princeton Av & Tulip St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.037286, 40.02621 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22711", "stop_name": "Princeton Av & State Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.035572, 40.024107 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27746", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.037889, 40.021945 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22712", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.040165, 40.020747 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22713", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 5.0, "percent_change": 0.67, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042851, 40.020158 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22714", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.045079, 40.019201 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22715", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.046998, 40.01619 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22716", "stop_name": "Tacony St & Robbins Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050554, 40.016531 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22717", "stop_name": "Tacony St & Devereaux Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.015581 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "27747", "stop_name": "Tacony St & Devereaux Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.053753, 40.015005 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1105", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055933, 40.013923 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22718", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058423, 40.012529 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22719", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064027, 40.00968 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22720", "stop_name": "Tacony St & Bridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.068771, 40.008721 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22721", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069295, 40.010365 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22722", "stop_name": "Bridge St & Tulip St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.069937, 40.011991 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1246", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070357, 40.013099 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15774", "stop_name": "Bridge St & Ditman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.070776, 40.014305 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15776", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071371, 40.015869 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15777", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.071756, 40.016905 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15780", "stop_name": "Bridge St & Walker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072083, 40.017772 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15781", "stop_name": "Bridge St & Erdrick St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.072351, 40.01846 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15783", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.073267, 40.019623 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15785", "stop_name": "Bridge St & Hawthorne St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074325, 40.020875 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15787", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074889, 40.021511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "15788", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.07596, 40.022513 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30388", "stop_name": "Frankford Av & Bridge St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.076475, 40.023434 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "30389", "stop_name": "Cheltenham Av & Bustleton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075405, 40.027072 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21969", "stop_name": "Frankford Transit Center - Rt 84", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076994, 40.023801 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15803", "stop_name": "Bridge St & Darrah St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.076161, 40.022541 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15804", "stop_name": "Bridge St & Duffield St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075102, 40.021547 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15805", "stop_name": "Bridge St & Hawthorne St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.074432, 40.020786 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15806", "stop_name": "Bridge St & Charles St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.073492, 40.019668 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15807", "stop_name": "Bridge St & Edrick St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.072377, 40.018094 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15808", "stop_name": "Bridge St & Cottage St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071945, 40.016995 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15809", "stop_name": "Bridge St & Jackson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.071548, 40.015967 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "15810", "stop_name": "Bridge St & Dittman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070965, 40.014395 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "487", "stop_name": "Bridge St & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.070568, 40.013332 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22472", "stop_name": "Bridge St & Harbison Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069997, 40.011831 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22473", "stop_name": "Bridge St & Eadom St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069404, 40.009785 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22492", "stop_name": "Tacony St & Bridge St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.068417, 40.008631 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22496", "stop_name": "Tacony St & Fraley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064194, 40.009511 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22500", "stop_name": "Tacony St & Carver St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.060617, 40.011045 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22501", "stop_name": "Tacony St & Van Kirk St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.05853, 40.012315 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1089", "stop_name": "Tacony St & Comly St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.056005, 40.013727 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22502", "stop_name": "Tacony St & Comly St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.053789, 40.014836 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22504", "stop_name": "Tacony St & Devereux St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.052036, 40.015607 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22505", "stop_name": "Tacony St & Robbins Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.050353, 40.016477 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22508", "stop_name": "Milnor St & Levick St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047069, 40.01602 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22510", "stop_name": "State Rd & Elbridge St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.047047, 40.018046 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22514", "stop_name": "State Rd & Magee Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.044605, 40.019279 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22516", "stop_name": "State Rd & Unruh Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042994, 40.020015 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22519", "stop_name": "State Rd & Knorr St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.04026, 40.020569 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22527", "stop_name": "State Rd & Milnor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.037807, 40.021829 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22528", "stop_name": "State Rd & Friendship St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.034543, 40.024255 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "31196", "stop_name": "Cottman Av & State Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031802, 40.026049 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22532", "stop_name": "Cottman Av & Edmund St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.033845, 40.028555 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1090", "stop_name": "Torresdale Av & Cottman Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.030174 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22533", "stop_name": "Torresdale Av & Bleigh Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.032505, 40.031416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22534", "stop_name": "Torresdale Av & Shelmire Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.030964, 40.032223 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22536", "stop_name": "Torresdale Av & Sheffield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.029185, 40.033137 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22540", "stop_name": "Torresdale Av & Hartel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027442, 40.034033 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22541", "stop_name": "Torresdale Av & Decatur St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.026328, 40.034609 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22542", "stop_name": "Torresdale Av & Rhawn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.025273, 40.035159 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22543", "stop_name": "Rhawn St & Tulip St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.024041, 40.033433 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1091", "stop_name": "Rhawn St & State Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.022373, 40.031782 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22548", "stop_name": "State Rd & Rhawn Corrections - 1 MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.019353, 40.032516 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22551", "stop_name": "State Rd & Rhawn Corrections - 2 MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.017052, 40.033803 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "30985", "stop_name": "State Rd & Ashburner St - 1 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.015557, 40.034637 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22554", "stop_name": "State Rd & Ashburner St - 2 MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.013932, 40.035542 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22555", "stop_name": "State Rd & Ashburner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.011394, 40.036926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27731", "stop_name": "State Rd & Ashburner St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.008609, 40.03821 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22556", "stop_name": "State Rd & Pennypack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.004909, 40.040019 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27732", "stop_name": "State Rd & Pennypack St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.998562, 40.043558 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1092", "stop_name": "State Rd & Linden Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.994539, 40.045892 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22557", "stop_name": "State Rd & Arendell Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.992854, 40.046859 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22558", "stop_name": "State Rd & Delaire Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.990101, 40.048438 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22559", "stop_name": "State Rd & Convent Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988273, 40.04961 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27733", "stop_name": "State Rd & James St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985424, 40.05134 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22560", "stop_name": "State Rd & Fitler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984569, 40.051855 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22561", "stop_name": "Grant Av & State Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983093, 40.05351 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1093", "stop_name": "Grant Av & James St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983809, 40.054396 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22562", "stop_name": "Grant Av & Torresdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987736, 40.058096 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "7523", "stop_name": "Frankford Av & Grant Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989991, 40.060603 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21876", "stop_name": "Frankford Av & Stevenson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988424, 40.061552 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21877", "stop_name": "Frankford Av & Carteret Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987059, 40.062404 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1094", "stop_name": "Morrell Av & Frankford Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.985667, 40.063667 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22563", "stop_name": "Morrell Av & Crestmont Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.986653, 40.064822 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22564", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.988303, 40.067728 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22566", "stop_name": "Morrell Av & Crown Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987605, 40.071546 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22568", "stop_name": "Morrell Av & Keswick Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.989124, 40.074657 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22570", "stop_name": "Keswick Rd & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.987639, 40.075679 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22571", "stop_name": "Red Lion Rd & Waldemire Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.984738, 40.074312 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27734", "stop_name": "Red Lion Rd & Waldemire Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.983547, 40.073638 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27735", "stop_name": "Red Lion Rd & Knights Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.982205, 40.07266 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22572", "stop_name": "Red Lion Rd & Knights Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981495, 40.072118 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22575", "stop_name": "Knights Rd & Ellicott Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979744, 40.074553 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22576", "stop_name": "Knights Rd & Dundee Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.979229, 40.075649 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22936", "stop_name": "Kinghts Rd & Dorchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.978665, 40.076843 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22577", "stop_name": "Knights Rd & Dorchester Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977944, 40.078616 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22578", "stop_name": "Knights Rd & Chalfont Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.977176, 40.080327 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22579", "stop_name": "Knights Rd & Patrician Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976152, 40.08135 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1524", "stop_name": "Knights Rd & Lancelot Pl - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.974686, 40.083067 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22581", "stop_name": "Knights Rd & Fairdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.97366, 40.084376 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22582", "stop_name": "Knights Rd & Woodhaven Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.971871, 40.086645 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22583", "stop_name": "Knights Rd & Woodhaven Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.970609, 40.087926 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "27736", "stop_name": "Knights Rd & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969515, 40.088725 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22584", "stop_name": "Knights Rd & Nanton Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967911, 40.089871 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "1095", "stop_name": "Knights Rd & Franklin Mill Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965724, 40.091416 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "84", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Philadelphia Mills", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.4, "percent_change": 0.33, "expected_wait_time_difference": -29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.4, "percent_change": 2.5, "expected_wait_time_difference": -375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26754", "stop_name": "Hanover St & Queen St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.650698, 40.24487 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -262.5 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.8, "percent_change": 0.14, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.8, "percent_change": 0.27, "expected_wait_time_difference": -6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.6, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.8, "percent_change": 3.0, "expected_wait_time_difference": -337.5 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26754", "stop_name": "Hanover St & Queen St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650698, 40.24487 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26754", "stop_name": "Hanover St & Queen St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650698, 40.24487 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.2, "percent_change": -0.04, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.2, "percent_change": -0.5, "expected_wait_time_difference": 375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.0, "percent_change": -0.12, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.0, "percent_change": -0.09, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.6, "percent_change": -0.15, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.6, "percent_change": -0.24, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.8, "percent_change": -0.19, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.8, "percent_change": -0.15, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.8, "percent_change": -0.12, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.6, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.8, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.4, "percent_change": -0.08, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26754", "stop_name": "Hanover St & Queen St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.650698, 40.24487 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1594", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.654717, 40.244649 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.8, "percent_change": 0.27, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.8, "percent_change": 0.27, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.8, "percent_change": 0.27, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.8, "percent_change": 0.27, "expected_wait_time_difference": -10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26754", "stop_name": "Hanover St & Queen St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.650698, 40.24487 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30242", "stop_name": "Hanover St & High St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650251, 40.24596 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30243", "stop_name": "High St & Manatawny St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.655197, 40.246201 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30242", "stop_name": "Hanover St & High St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650251, 40.24596 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30243", "stop_name": "High St & Manatawny St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.655197, 40.246201 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30242", "stop_name": "Hanover St & High St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650251, 40.24596 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30243", "stop_name": "High St & Manatawny St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.655197, 40.246201 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30242", "stop_name": "Hanover St & High St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650251, 40.24596 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30243", "stop_name": "High St & Manatawny St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.655197, 40.246201 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30244", "stop_name": "High St & Hanover St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.650179, 40.245567 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30245", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.648744, 40.245391 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30246", "stop_name": "High St & Charlotte St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.647344, 40.245233 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30247", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.645742, 40.245004 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30248", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644082, 40.244828 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30249", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.641982, 40.244528 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30250", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638685, 40.244114 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30251", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.63445, 40.243657 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30252", "stop_name": "High St & Montgomery St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631036, 40.24393 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30253", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.629069, 40.244103 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30254", "stop_name": "High St & Keim St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627432, 40.244105 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31419", "stop_name": "High St & Roland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623696, 40.243647 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31416", "stop_name": "High St & Rosedale Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619533, 40.243136 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1598", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.614128, 40.243956 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26775", "stop_name": "High St & Sunnybrook Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.243891 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31417", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.602034, 40.244223 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26778", "stop_name": "High St & Pleasant View Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597981, 40.244773 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31418", "stop_name": "High St & Shelly Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.588174, 40.244562 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26783", "stop_name": "High St & Rupert Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.578035, 40.243986 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26786", "stop_name": "Ridge Pk & Airport Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.553571, 40.242414 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26788", "stop_name": "Ridge Pk & Limerick Center Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.537224, 40.236939 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26790", "stop_name": "Ridge Pk & Village Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.533178, 40.234658 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26793", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.52223, 40.230989 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31954", "stop_name": "Ridge Av & Sunset Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515442, 40.225263 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31794", "stop_name": "Ridge Pk & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.50122, 40.215756 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30439", "stop_name": "Ridge Pk & Township Line Rd - 2 FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499476, 40.214615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30440", "stop_name": "Ridge Pk & Kline Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.49644, 40.212751 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31406", "stop_name": "Main St & Greenwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487546, 40.206177 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31407", "stop_name": "Main St & 7th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48106, 40.200878 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26807", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475489, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26808", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.471175, 40.196615 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31939", "stop_name": "Main St & Trappe Center - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.468093, 40.195295 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26810", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.466221, 40.194572 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1600", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462452, 40.192993 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26813", "stop_name": "Main St & 6th Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.457996, 40.191182 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26814", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.456112, 40.190344 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26816", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451857, 40.186007 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26652", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449061, 40.184508 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31412", "stop_name": "Ridge Pk & Germantown Pk - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445222, 40.183482 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31413", "stop_name": "Ridge Pk & Crosskeys Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440032, 40.179225 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30441", "stop_name": "Ridge Pk & Level Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436217, 40.175895 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26658", "stop_name": "Ridge Pk & Wilson Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413405, 40.162488 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26635", "stop_name": "Eagleville Rd & Ridge Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408657, 40.159381 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26659", "stop_name": "Ridge Pk & Eagleville Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407745, 40.15922 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1568", "stop_name": "Ridge Pk & Eaglestream Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404382, 40.157301 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31945", "stop_name": "Prison Farm Rd & Eagleville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411476, 40.156748 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20854", "stop_name": "Montgomery County Correctional Facility", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.422111, 40.158794 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26660", "stop_name": "Ridge Pk & Mount Kirk Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40141, 40.15547 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26686", "stop_name": "Ridge Pk & Barry Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396961, 40.149078 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30442", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395115, 40.146561 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30432", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391919, 40.143757 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26666", "stop_name": "Main St & Trooper Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389694, 40.142043 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29477", "stop_name": "Main St & Rose Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385859, 40.139167 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26668", "stop_name": "Main St & Galbraith Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383907, 40.137382 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26669", "stop_name": "Main St & School Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382239, 40.135908 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1570", "stop_name": "Main St & Egypt Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378855, 40.132979 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30433", "stop_name": "Main St & Egypt Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377825, 40.132256 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31408", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375246, 40.130755 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26672", "stop_name": "Main St & Rittenhouse Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371187, 40.128486 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31415", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364928, 40.124859 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "21217", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362715, 40.123564 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26675", "stop_name": "Main St & Hartranft St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361189, 40.122706 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31414", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359569, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31941", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357072, 40.120312 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30434", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355842, 40.119633 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "26680", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354209, 40.119025 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31762", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347573, 40.115692 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18304", "stop_name": "Main St & Barbadoes St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347171, 40.115638 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "18307", "stop_name": "Main St & Markley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348685, 40.11646 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26612", "stop_name": "Main St & Astor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350293, 40.117416 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26613", "stop_name": "Main St & George St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351878, 40.118372 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26614", "stop_name": "Main St & Haws Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353854, 40.119061 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26615", "stop_name": "Main St & Stanbridge St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355475, 40.119642 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26616", "stop_name": "Main St & Noble St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 40.12033 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26618", "stop_name": "Main St & Hamilton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359249, 40.121724 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26619", "stop_name": "Main St & Selma St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360479, 40.122438 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26685", "stop_name": "Main St & Forrest Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.362242, 40.123492 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31942", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364419, 40.12469 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31423", "stop_name": "Main St & Whitehall Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371991, 40.129094 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31424", "stop_name": "Main St & Schuylkill Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.374879, 40.130746 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31425", "stop_name": "Main St & Egypt Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378168, 40.132604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26625", "stop_name": "Main St & School Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382369, 40.136212 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31943", "stop_name": "Main St & Galbraith Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383789, 40.137498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29479", "stop_name": "Main St & Rose Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385706, 40.139248 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1562", "stop_name": "Main St & Trooper Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389599, 40.142221 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26628", "stop_name": "Main St & Clearfield Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392049, 40.144096 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30435", "stop_name": "Main St & Park Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395351, 40.14707 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31944", "stop_name": "Main St & Barry Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396807, 40.149159 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "29480", "stop_name": "Ridge Pk & W Mount Kirk Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40128, 40.155604 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1563", "stop_name": "Ridge Pk & E Mount Kirk Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40469, 40.157702 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30436", "stop_name": "Ridge Pk & Wilson Blvd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412825, 40.162265 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31947", "stop_name": "Ridge Pk & Evansburg Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436371, 40.176368 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31948", "stop_name": "Ridge Pk & Crosskeys Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440471, 40.179796 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "32635", "stop_name": "Ridge Pk & Germantown Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.445708, 40.18383 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31949", "stop_name": "Main St & 2nd Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450589, 40.185275 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26689", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.451573, 40.185962 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26691", "stop_name": "Main St & 5th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.455828, 40.19038 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26692", "stop_name": "Main St & 6th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458221, 40.191397 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1589", "stop_name": "Main St & 9th Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462227, 40.193056 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26695", "stop_name": "Main St & 1st Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.465972, 40.194626 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26696", "stop_name": "Main St & Trappe Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467998, 40.195509 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31951", "stop_name": "Main St & 3rd Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.470867, 40.196624 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26698", "stop_name": "Main St & Harvard Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475098, 40.198443 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31952", "stop_name": "Main St & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.480408, 40.200753 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31953", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.487452, 40.20632 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31409", "stop_name": "Ridge Pike & Township Line Rd - 1 MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.497235, 40.213411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30437", "stop_name": "Ridge Pike & Township Line Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500556, 40.21548 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26711", "stop_name": "Ridge Pk & Sunset Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.515241, 40.225245 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26712", "stop_name": "Ridge Pk & Limerick Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.521898, 40.230998 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26715", "stop_name": "Ridge Pk & Village Way - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.532585, 40.234498 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26717", "stop_name": "Ridge Pk & Kugler Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.536904, 40.236949 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30438", "stop_name": "Ridge Pk & Airport Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555302, 40.24268 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31420", "stop_name": "Light Cap Rd & Evergreen Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576147, 40.236793 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1599", "stop_name": "Philadelphia Premium Outlets", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570766, 40.237522 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31421", "stop_name": "Light Cap Rd & Evergreen Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.57591, 40.23699 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26724", "stop_name": "High St & Rupert Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578166, 40.244155 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31955", "stop_name": "High St & Shelly Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588127, 40.244687 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26729", "stop_name": "High St & Pleasant View Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597637, 40.244925 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26731", "stop_name": "High St & Heritage Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601679, 40.244384 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26732", "stop_name": "High St & Sunnybrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609302, 40.244052 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1591", "stop_name": "High St & Armand Hammer Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.613358, 40.244082 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30233", "stop_name": "High St & Beech St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.616215, 40.243855 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31958", "stop_name": "High St & Rosedale Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.619486, 40.243279 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26736", "stop_name": "High St & Roland St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.623424, 40.243772 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30234", "stop_name": "High St & Cedar St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.624705, 40.243913 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30235", "stop_name": "High St & Price St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.625962, 40.244072 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31957", "stop_name": "High St & Keim St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.627563, 40.244257 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30236", "stop_name": "High St & Edgewood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.62895, 40.244246 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30237", "stop_name": "High St & Montgomery St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.631523, 40.244054 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30238", "stop_name": "High St & Madison St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.634866, 40.243799 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30239", "stop_name": "High St & Adams St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.638994, 40.244292 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "31956", "stop_name": "High St & Washington St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.64241, 40.244715 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30240", "stop_name": "High St & Franklin St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.644533, 40.245006 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30242", "stop_name": "Hanover St & High St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650251, 40.24596 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30241", "stop_name": "High St & Evans St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.647807, 40.245411 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30243", "stop_name": "High St & Manatawny St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.655197, 40.246201 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "26748", "stop_name": "High St & Penn St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.649124, 40.24556 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30242", "stop_name": "Hanover St & High St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.650251, 40.24596 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "30243", "stop_name": "High St & Manatawny St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.655197, 40.246201 ] } }, +{ "type": "Feature", "properties": { "route_id": "93", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Pottstown West Campus MCCC", "stop_id": "1593", "stop_name": "High St & York St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.65165, 40.245752 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.2, "percent_change": 5.0, "expected_wait_time_difference": -375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.2, "percent_change": 5.0, "expected_wait_time_difference": -375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.6, "percent_change": 0.53, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.4, "percent_change": 0.47, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.4, "percent_change": 0.29, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.4, "percent_change": 0.22, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.4, "percent_change": 0.29, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.4, "percent_change": 0.57, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.2, "percent_change": 5.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 1.2, "percent_change": 5.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.4, "percent_change": -0.36, "expected_wait_time_difference": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 1.4, "percent_change": -0.42, "expected_wait_time_difference": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27050", "stop_name": "Morris Rd & Windermere Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280362, 40.18101 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27102", "stop_name": "Morris Rd & Windemere Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28067, 40.181011 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 2.0, "percent_change": 3.0, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27050", "stop_name": "Morris Rd & Windermere Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280362, 40.18101 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27102", "stop_name": "Morris Rd & Windemere Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28067, 40.181011 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27050", "stop_name": "Morris Rd & Windermere Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280362, 40.18101 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27089", "stop_name": "Church Rd & Cherry St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281398, 40.229908 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27090", "stop_name": "Church Rd & Wissahickon Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284426, 40.227484 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27091", "stop_name": "Church Rd & Kneedler Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289299, 40.221036 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27092", "stop_name": "Church Rd & Becker Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291736, 40.217495 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1623", "stop_name": "Church Rd & Sumneytown Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292746, 40.215996 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27093", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294972, 40.210759 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27095", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298915, 40.206515 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27098", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303142, 40.202065 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29464", "stop_name": "Morris Rd & Primrose Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298614, 40.196133 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31959", "stop_name": "Morris Rd & North Wales Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294262, 40.191675 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27101", "stop_name": "Morris Rd & Tournament Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286729, 40.184553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27102", "stop_name": "Morris Rd & Windemere Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28067, 40.181011 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27104", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270628, 40.174045 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1627", "stop_name": "Old Penllyn Pk & Wister Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243667, 40.169635 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29466", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242332, 40.168392 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27119", "stop_name": "Spring Garden St & Reiffs Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226525, 40.157915 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1628", "stop_name": "Main St & Butler Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.153832 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27122", "stop_name": "Butler Av & Spring Garden St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223019, 40.154 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27123", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 40.154587 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27124", "stop_name": "Butler Av & Lindenwold Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219474, 40.155601 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27126", "stop_name": "Lindenwold Av & Bethlehem Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214252, 40.155396 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27128", "stop_name": "Bethlehem Pk & Church St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213161, 40.151958 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "31341", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212928, 40.150645 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27130", "stop_name": "Bethlehem Pk & Bannockburn Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212615, 40.148279 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "30451", "stop_name": "Bethlehem Pk & Washington Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212513, 40.138916 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27136", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213278, 40.136498 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27138", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215387, 40.132164 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27140", "stop_name": "Bethlehem Pk & Skippack Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217345, 40.122572 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27142", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215138, 40.116473 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27144", "stop_name": "Bethlehem Pk & Sunnybrook Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21451, 40.112875 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "1630", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214174, 40.110553 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27146", "stop_name": "Bethlehem Pk & Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213779, 40.107857 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27148", "stop_name": "Bethlehem Pk & College Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213385, 40.105054 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27149", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213038, 40.102697 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27150", "stop_name": "Bethlehem Pk & Jones Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212877, 40.100876 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27151", "stop_name": "Bethlehem Pk & Haws Ln - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212992, 40.09827 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27152", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213354, 40.095923 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "27153", "stop_name": "Bethlehem Pk & Yeakel Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213905, 40.093568 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "29787", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214418, 40.09223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26515", "stop_name": "Bethlehem Pk & Gordon Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214848, 40.090918 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26516", "stop_name": "Bethlehem Pk & Bells Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213309, 40.087301 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "26517", "stop_name": "Bethlehem Pk & Stenton Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212082, 40.086067 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19049", "stop_name": "Bethlehem Pk & Lynnebrook Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209888, 40.084118 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19050", "stop_name": "Bethlehem Pk & Chestnut Hill Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208136, 40.080589 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "19051", "stop_name": "Bethlehem Pk & Summit St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208156, 40.077965 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Chestnut Hill", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "21222", "stop_name": "Chestnut Hill Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208298, 40.077715 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19053", "stop_name": "Bethlehem Pk & Newton St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208181, 40.081178 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "19054", "stop_name": "Bethlehem Pk & Lynnebrook Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209616, 40.083912 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "243", "stop_name": "Bethlehem Pk & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214253, 40.09206 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "26999", "stop_name": "Bethlehem Pk & Yeakel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213716, 40.093514 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27000", "stop_name": "Bethlehem Pk & Chesney Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213165, 40.0957 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27001", "stop_name": "Bethlehem Pk & Haws Ln - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21279, 40.098519 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27002", "stop_name": "Bethlehem Pk & Jones Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212688, 40.100911 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27003", "stop_name": "Bethlehem Pk & Wissahickon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212825, 40.102402 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27004", "stop_name": "Bethlehem Pk & Bysher Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 40.104554 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27006", "stop_name": "Bethlehem Pk & E Mill Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213485, 40.107223 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1605", "stop_name": "Bethlehem Pk & Springfield Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.110321 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31482", "stop_name": "Bethlehem Pk & W Valley Green Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214414, 40.113347 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27010", "stop_name": "Bethlehem Pk & Farmar Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214925, 40.116356 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31483", "stop_name": "Bethlehem Pk & Camp Hill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217086, 40.122081 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27014", "stop_name": "Bethlehem Pk & Fort Hill Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215471, 40.13187 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27016", "stop_name": "Bethlehem Pk & Station Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213101, 40.136355 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27017", "stop_name": "Bethlehem Pk & Washington Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212324, 40.138925 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27023", "stop_name": "Bethlehem Pk & Highland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21268, 40.15043 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27026", "stop_name": "Lindenwold Av & Bethlehem Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214369, 40.155566 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27028", "stop_name": "Lindenwold Av & Butler Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219201, 40.15577 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27030", "stop_name": "Butler Av & Ridge Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221501, 40.154756 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27029", "stop_name": "Butler Av & Spring Garden Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222936, 40.15417 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1607", "stop_name": "Butler Av & Main St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224441, 40.153574 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27034", "stop_name": "Spring Garden St & Tennis Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.157933 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32397", "stop_name": "Pen Ambler Rd & Stafford Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 40.168374 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1608", "stop_name": "Old Penllyn Pk & Wister Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243501, 40.169545 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "30813", "stop_name": "Morris Rd & Cathcart Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270213, 40.173929 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27051", "stop_name": "Morris Rd & Twin Silo Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286705, 40.184722 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27052", "stop_name": "Morris Rd & North Wales Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293706, 40.19104 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27054", "stop_name": "West Point Pk & Dehaven Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303035, 40.201922 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27059", "stop_name": "West Point Pk & Garfield Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298903, 40.2063 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27058", "stop_name": "West Point Pk & Merck Laboratories", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292822, 40.213551 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27060", "stop_name": "Church Rd & Becker Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291498, 40.217548 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27061", "stop_name": "Church Rd & Kneedler Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289406, 40.220599 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27063", "stop_name": "Church Rd & Cherry St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281672, 40.229462 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "94", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Montgomery Mall", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.0, "percent_change": -0.29, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.8, "percent_change": -0.26, "expected_wait_time_difference": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.4, "percent_change": -0.33, "expected_wait_time_difference": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.0, "percent_change": -0.44, "expected_wait_time_difference": 46.7 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.0, "percent_change": -0.38, "expected_wait_time_difference": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.0, "percent_change": -0.29, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 1.0, "percent_change": 1.5, "expected_wait_time_difference": -315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.4, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.2, "percent_change": -0.25, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.8, "percent_change": -0.3, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.6, "percent_change": -0.16, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.2, "percent_change": -0.1, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.0, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.8, "percent_change": -0.17, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.0, "percent_change": -0.24, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.8, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.0, "percent_change": -0.07, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.0, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.6, "percent_change": -0.27, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.8, "percent_change": -0.25, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 8.0, "percent_change": -0.22, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.4, "percent_change": -0.16, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.0, "percent_change": -0.2, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.6, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.8, "percent_change": -0.11, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.8, "percent_change": -0.13, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 8.0, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 8.0, "percent_change": -0.13, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.2, "percent_change": 0.16, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.0, "percent_change": -0.31, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.2, "percent_change": -0.33, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.2, "percent_change": -0.33, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.2, "percent_change": -0.33, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.2, "percent_change": -0.3, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.2, "percent_change": -0.3, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.2, "percent_change": -0.3, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.2, "percent_change": -0.3, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.2, "percent_change": -0.3, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.2, "percent_change": -0.26, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.2, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.6, "percent_change": -0.28, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.0, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.0, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 6.0, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.0, "percent_change": -0.34, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.0, "percent_change": -0.34, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.0, "percent_change": -0.34, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.0, "percent_change": -0.34, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 5.0, "percent_change": -0.36, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.0, "percent_change": -0.39, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.2, "percent_change": -0.4, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.4, "percent_change": -0.34, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.4, "percent_change": -0.34, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.6, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.0, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.0, "percent_change": -0.27, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.0, "percent_change": -0.27, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.0, "percent_change": -0.27, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.0, "percent_change": -0.27, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 6.0, "percent_change": -0.29, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.0, "percent_change": -0.27, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.6, "percent_change": -0.32, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.0, "percent_change": -0.23, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.0, "percent_change": -0.26, "expected_wait_time_difference": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.0, "percent_change": -0.29, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.8, "percent_change": -0.32, "expected_wait_time_difference": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.0, "percent_change": -0.11, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.0, "percent_change": -0.23, "expected_wait_time_difference": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.0, "percent_change": -0.31, "expected_wait_time_difference": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.0, "percent_change": -0.42, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.0, "percent_change": -0.42, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.0, "percent_change": -0.42, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.0, "percent_change": -0.42, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.0, "percent_change": -0.44, "expected_wait_time_difference": 22.2 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.0, "percent_change": -0.46, "expected_wait_time_difference": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.4, "percent_change": -0.39, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.4, "percent_change": -0.39, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 3.4, "percent_change": -0.39, "expected_wait_time_difference": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 3.6, "percent_change": -0.33, "expected_wait_time_difference": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.5, "percent_change": 1.5, "expected_wait_time_difference": -72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27390", "stop_name": "Airy St & DeKalb St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341525, 40.115375 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27391", "stop_name": "Airy St & Swede St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.343513, 40.116153 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27392", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.342742, 40.117527 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27394", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.341734, 40.119062 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27395", "stop_name": "Swede St & Elm St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.340524, 40.121203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31430", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.34019, 40.122711 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29511", "stop_name": "Swede St & Basin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.340012, 40.123568 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27398", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.338744, 40.124736 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "30662", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.33712, 40.125851 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27400", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.335485, 40.127028 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27401", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.33385, 40.12816 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27402", "stop_name": "Pine St St & Roberts St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332274, 40.129301 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1650", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330663, 40.130451 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27403", "stop_name": "Pine St & Johnson Hwy", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328613, 40.131842 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27405", "stop_name": "DeKalb Pk & Johnson Hwy - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324283, 40.129777 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27419", "stop_name": "DeKalb Pk & Northtowne Shop Ctr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315662, 40.138454 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1651", "stop_name": "Dekalb Pk & Germantown Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314026, 40.140041 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29512", "stop_name": "DeKalb Pk & Germantown Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311452, 40.143002 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27423", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307618, 40.148497 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27424", "stop_name": "DeKalb Pk & Swede Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306324, 40.150343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27425", "stop_name": "DeKalb Pk & Yost Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301958, 40.155203 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27426", "stop_name": "DeKalb Pk & Jolly Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29898, 40.158119 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27427", "stop_name": "DeKalb Pk & Michaels Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297152, 40.159991 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31782", "stop_name": "Dekalb Pk & Skippack Pk - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.292228, 40.16494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27429", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289024, 40.16806 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27430", "stop_name": "DeKalb Pk & Village Square - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28665, 40.170343 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27431", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281273, 40.175844 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27434", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 40.182923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27435", "stop_name": "DeKalb Pk & Grasshopper Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270827, 40.185854 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29529", "stop_name": "DeKalb Pk & Greycliffe Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266446, 40.189598 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27438", "stop_name": "Sumneytown Pk & DeKalb Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.256178, 40.202553 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27442", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270718, 40.208071 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31968", "stop_name": "Main St & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273986, 40.209494 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27445", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275738, 40.210121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29513", "stop_name": "Walnut St & 2nd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277857, 40.211382 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1654", "stop_name": "Walnut St & 5th St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277036, 40.213167 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29514", "stop_name": "Walnut St & Beaver St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275524, 40.216334 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27450", "stop_name": "Walnut St & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273551, 40.218518 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27451", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271971, 40.220132 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27453", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268005, 40.223206 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.5, "percent_change": 2.0, "expected_wait_time_difference": -200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29462", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268068, 40.232293 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27085", "stop_name": "Main St & Greenwood Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 40.233259 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "29463", "stop_name": "Main St & Highland Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272413, 40.234923 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31969", "stop_name": "Main St & Lansdale Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274473, 40.236112 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31428", "stop_name": "Main St & Woodland Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276604, 40.2374 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27459", "stop_name": "Main St & Line St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279257, 40.238957 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "31970", "stop_name": "Main St & Chesnut St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281448, 40.240245 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "27461", "stop_name": "Main St & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282952, 40.241121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Lansdale", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32461", "stop_name": "Railroad Av & Broad St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.285227, 40.241633 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "20098", "stop_name": "Broad St & Main St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283781, 40.241444 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31971", "stop_name": "Main St & Chesnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282336, 40.240656 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31427", "stop_name": "Main St & Line St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27953, 40.238948 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27503", "stop_name": "Main St & Park Dr - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.277067, 40.237463 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29450", "stop_name": "Main St & Lansdale Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274272, 40.2358 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29449", "stop_name": "Main St & Highland Av - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272461, 40.234744 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27067", "stop_name": "Main St & Greenwood Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269761, 40.233072 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27068", "stop_name": "Main St & Oakland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268269, 40.232249 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1614", "stop_name": "North Wales & Welsh Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.262254, 40.229027 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32060", "stop_name": "North Wales Rd & Jamestown Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.257066, 40.232127 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31928", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.250072, 40.236678 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1617", "stop_name": "Montgomery Mall", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.245488, 40.235047 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31929", "stop_name": "North Wales Rd & Rose Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.250155, 40.236857 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "32061", "stop_name": "North Wales Rd & Yorktown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.25881, 40.231593 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1621", "stop_name": "North Wales Rd & Main St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.262468, 40.22901 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27511", "stop_name": "North Wales Rd & Hancock Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.267981, 40.223438 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27512", "stop_name": "North Wales Rd & Mill Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.272042, 40.220283 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27514", "stop_name": "Walnut St & Beaver St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.275547, 40.216548 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1665", "stop_name": "Walnut St & 5th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.276987, 40.213791 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29517", "stop_name": "Walnut St & 2nd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.278094, 40.211383 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27519", "stop_name": "Main St & Montgomery Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276272, 40.210158 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29526", "stop_name": "Main St & Washington Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274116, 40.209405 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27522", "stop_name": "Main St & Prospect Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271014, 40.208054 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30455", "stop_name": "Sumneytown Pk & Dekalb Pk - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.25614, 40.202335 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29515", "stop_name": "DeKalb Pk & Greycliffe Ln - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266267, 40.190097 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30456", "stop_name": "Dekalb Pk & Grasshopper Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271004, 40.185881 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1653", "stop_name": "Montgomery County Community College", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275134, 40.177362 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27541", "stop_name": "DeKalb Pk & Tournament Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282008, 40.175505 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31967", "stop_name": "DeKalb Pk & Village Square", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286958, 40.170352 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27536", "stop_name": "DeKalb Pk & Skippack Pk", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289641, 40.167695 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "29516", "stop_name": "DeKalb Pk & Skippack Pk - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29237, 40.165011 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27538", "stop_name": "DeKalb Pk & Michaels Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297555, 40.159867 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27539", "stop_name": "DeKalb Pk & Jolly Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299347, 40.158092 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27540", "stop_name": "DeKalb Pk & Yost Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302527, 40.154882 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27542", "stop_name": "DeKalb Pk & Swede Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306585, 40.150272 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27543", "stop_name": "DeKalb Pk & Township Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307582, 40.148871 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27546", "stop_name": "DeKalb Pk & Germantown Pk - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311724, 40.143163 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1668", "stop_name": "Dekalb Pk & Germantown Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314298, 40.140184 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27547", "stop_name": "DeKalb Pk & Dekalb Apts", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315792, 40.138561 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31426", "stop_name": "DeKalb Pk & Johnson Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324128, 40.130151 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27554", "stop_name": "Pine St & Johnson Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.328861, 40.131869 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1669", "stop_name": "Pine St & Logan St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330591, 40.130692 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27555", "stop_name": "Pine St & Roberts St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332215, 40.129542 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27556", "stop_name": "Pine St & Brown St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333814, 40.12841 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27557", "stop_name": "Pine St & Freedley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335426, 40.12726 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27558", "stop_name": "Pine St & Fornance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337073, 40.126109 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27559", "stop_name": "Pine St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.338708, 40.124968 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27560", "stop_name": "Pine St & Swede St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339904, 40.124121 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31429", "stop_name": "Swede St & Spruce St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340356, 40.122925 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27562", "stop_name": "Swede St & Elm St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340773, 40.120926 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "27563", "stop_name": "Swede St & Oak St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34203, 40.118856 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "30751", "stop_name": "Swede St & Marshall St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343038, 40.117295 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "31933", "stop_name": "Swede St & Airy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343702, 40.116278 ] } }, +{ "type": "Feature", "properties": { "route_id": "96", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Norristown Transit Center", "stop_id": "1649", "stop_name": "Norristown Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344818, 40.11345 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29734", "stop_name": "2 Campus Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413956, 39.9776 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.6, "percent_change": -0.28, "expected_wait_time_difference": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.8, "percent_change": 0.33, "expected_wait_time_difference": -87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.0, "percent_change": -0.02, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 9.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.6, "percent_change": 0.02, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.6, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.4, "percent_change": 0.07, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 9.2, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.2, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.2, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.2, "percent_change": -0.02, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.0, "percent_change": -0.05, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 7.8, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 7.8, "percent_change": -0.05, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.6, "percent_change": -0.05, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.2, "percent_change": -0.03, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "29732", "stop_name": "14 Campus Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.418138, 39.977957 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "29733", "stop_name": "10 Campus Blvd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.416319, 39.976832 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "29734", "stop_name": "2 Campus Blvd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413956, 39.9776 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29734", "stop_name": "2 Campus Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.413956, 39.9776 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.2, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.2, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.2, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.2, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.2, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.2, "percent_change": 0.19, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.2, "percent_change": 0.19, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.4, "percent_change": 0.19, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.6, "percent_change": 0.14, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.6, "percent_change": 0.18, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.4, "percent_change": 0.14, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.2, "percent_change": 0.11, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.2, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.2, "percent_change": 0.15, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 9.8, "percent_change": 0.07, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 10.0, "percent_change": 0.06, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 9.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 9.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.8, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.0, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 9.8, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.4, "percent_change": -0.06, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 9.6, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 10.2, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.4, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.4, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.2, "percent_change": -0.02, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.6, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "29732", "stop_name": "14 Campus Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.418138, 39.977957 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "29733", "stop_name": "10 Campus Blvd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.416319, 39.976832 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "29734", "stop_name": "2 Campus Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.413956, 39.9776 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.2, "percent_change": 0.13, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.8, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14818", "stop_name": "11 Campus Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.414192, 39.977591 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 6.2, "percent_change": -0.39, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.8, "percent_change": -0.43, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29735", "stop_name": "11 Campus Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.416744, 39.977029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 5.8, "percent_change": -0.43, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29736", "stop_name": "15 Campus Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418008, 39.977966 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.4, "percent_change": -0.6, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.2, "percent_change": -0.8, "expected_wait_time_difference": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.2, "percent_change": -0.75, "expected_wait_time_difference": 562.5 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.8, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 6.8, "percent_change": -0.33, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.8, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.0, "percent_change": -0.3, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.0, "percent_change": -0.31, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.4, "percent_change": -0.27, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.8, "percent_change": -0.17, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 12.0, "arrivals_during_cuts": 9.4, "percent_change": -0.22, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.4, "percent_change": -0.19, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.6, "percent_change": -0.19, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.2, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.2, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.4, "percent_change": -0.2, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 11.8, "arrivals_during_cuts": 9.2, "percent_change": -0.22, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 11.6, "arrivals_during_cuts": 9.2, "percent_change": -0.21, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.0, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 9.0, "percent_change": -0.2, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.8, "percent_change": -0.2, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.6, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.6, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.6, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.6, "percent_change": -0.11, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 9.0, "percent_change": -0.13, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 9.0, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 9.0, "percent_change": -0.17, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.8, "percent_change": -0.19, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.6, "percent_change": -0.2, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.4, "percent_change": -0.22, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.4, "percent_change": -0.22, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.4, "percent_change": -0.22, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.4, "percent_change": -0.22, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.2, "percent_change": -0.24, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 8.0, "percent_change": -0.26, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 11.2, "arrivals_during_cuts": 8.0, "percent_change": -0.29, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 7.8, "percent_change": -0.29, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 8.0, "percent_change": -0.27, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.2, "percent_change": -0.23, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.2, "percent_change": -0.23, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.2, "percent_change": -0.23, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.4, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.4, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 8.6, "percent_change": -0.19, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.6, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.6, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 8.4, "percent_change": -0.19, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.8, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14818", "stop_name": "11 Campus Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.414192, 39.977591 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.4, "percent_change": -0.26, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29735", "stop_name": "11 Campus Blvd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.416744, 39.977029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.8, "percent_change": -0.15, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29736", "stop_name": "15 Campus Blvd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.418008, 39.977966 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.4, "percent_change": -0.06, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 9.0, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 9.0, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.6, "percent_change": 0.09, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.2, "percent_change": 0.12, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 9.0, "percent_change": 0.1, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 9.0, "percent_change": 0.12, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.6, "percent_change": -0.4, "expected_wait_time_difference": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.8, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.8, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.8, "percent_change": 0.08, "expected_wait_time_difference": -1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.8, "percent_change": 0.11, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.8, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.8, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.4, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.6, "percent_change": 0.07, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.8, "percent_change": 0.1, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.6, "percent_change": 0.05, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 8.2, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 8.4, "percent_change": -0.02, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 13.8, "arrivals_during_cuts": 13.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.6, "percent_change": -0.03, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 14.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.4, "percent_change": -0.04, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 13.8, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.8, "percent_change": -0.03, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 14.6, "arrivals_during_cuts": 13.8, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.0, "percent_change": -0.05, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.6, "percent_change": -0.04, "expected_wait_time_difference": 0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.1 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "14818", "stop_name": "11 Campus Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.2, "percent_change": -0.09, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.414192, 39.977591 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 8.0, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 8.0, "percent_change": -0.02, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 8.0, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 8.2, "percent_change": 0.02, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 8.4, "arrivals_during_cuts": 8.6, "percent_change": 0.02, "expected_wait_time_difference": -0.3 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 7.4, "percent_change": -0.14, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.6, "percent_change": -0.26, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.6, "percent_change": -0.34, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.6, "percent_change": -0.2, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.4, "percent_change": -0.25, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 5.6, "percent_change": -0.22, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 5.8, "percent_change": -0.24, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 6.0, "percent_change": -0.21, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.0, "percent_change": -0.25, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.2, "percent_change": -0.22, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29722", "stop_name": "Rock Ridge Rd & West Chester Pk - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.440902, 39.97619 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31394", "stop_name": "N Crum Creek Rd & Crum Creek Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.2, "percent_change": -0.19, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.439248, 39.977663 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31395", "stop_name": "Crum Creek Rd & West Chester Pk", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.2, "percent_change": -0.16, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43783, 39.976503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.4, "percent_change": -0.21, "expected_wait_time_difference": 5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 5.2, "percent_change": -0.24, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.2, "percent_change": -0.21, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.0, "percent_change": -0.24, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 4.8, "percent_change": -0.27, "expected_wait_time_difference": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 4.6, "percent_change": -0.28, "expected_wait_time_difference": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 4.6, "percent_change": -0.26, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.6, "percent_change": -0.23, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.2, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29738", "stop_name": "Crum Creek Rd & West Chester Pk - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.0, "percent_change": -0.29, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.437736, 39.976717 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14819", "stop_name": "N Crum Creek Rd & Crum Creek Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.6, "percent_change": -0.38, "expected_wait_time_difference": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439496, 39.977752 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29740", "stop_name": "Rock Ridge Rd & West Chester - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 2.6, "percent_change": -0.38, "expected_wait_time_difference": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.441055, 39.975976 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -42.9 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -56.2 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -56.2 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -56.2 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -56.2 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -56.2 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.8, "percent_change": -0.17, "expected_wait_time_difference": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.8, "percent_change": -0.1, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 315.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.5, "percent_change": -0.15, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 5.0, "percent_change": -0.23, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.0, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 7.0, "percent_change": 0.08, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 7.0, "percent_change": -0.07, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 0.5, "percent_change": -0.8, "expected_wait_time_difference": 192.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18690", "stop_name": "West Chester Pk & Crum Creek Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437748, 39.97611 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18737", "stop_name": "High St & Linden St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.597287, 39.953151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18738", "stop_name": "High St & Nields St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.598423, 39.954212 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18739", "stop_name": "High St & Price St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600305, 39.955914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18740", "stop_name": "High St & Union St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.601772, 39.957251 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18741", "stop_name": "High St & Miner St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603347, 39.958766 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18742", "stop_name": "High St & Gay St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.605229, 39.960664 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18743", "stop_name": "Market St & Walnut St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.603362, 39.960114 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18744", "stop_name": "Market St & Matlack St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.601875, 39.960794 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18745", "stop_name": "Market St & Adams St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.598595, 39.962244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29717", "stop_name": "Market St & Worthington St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.596118, 39.963318 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18746", "stop_name": "Market St & Bolmar St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.594891, 39.963873 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18747", "stop_name": "Market St & Westtown Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.592625, 39.964876 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18749", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.587825, 39.968149 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2356", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.586362, 39.968846 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1992", "stop_name": "West Chester Pike & 5 Points Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.575978, 39.968109 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18750", "stop_name": "West Chester Pk & Spring Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.573416, 39.968505 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18751", "stop_name": "West Chester Pk & Rolling Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.570369, 39.968955 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18752", "stop_name": "West Chester Pk & Kingsway Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.566024, 39.969575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18753", "stop_name": "West Chester Pk & Glen Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.563685, 39.969497 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18754", "stop_name": "West Chester Pk & Falcon Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.558072, 39.968272 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18755", "stop_name": "West Chester Pk & Falcon Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.554563, 39.967481 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29718", "stop_name": "West Chester Pk & Falcon Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.552778, 39.967081 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18756", "stop_name": "West Chester Pk & Mary Fran Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.551053, 39.966699 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29719", "stop_name": "West Chester Pk & Valley Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.548111, 39.966032 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18757", "stop_name": "West Chester Pk & Westtown Way - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.543941, 39.965465 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18758", "stop_name": "West Chester Pk & Waterview Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.538449, 39.965845 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18759", "stop_name": "West Chester Pk & Chester Hollow - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.534233, 39.966169 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18760", "stop_name": "West Chester Pk & Manley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.529757, 39.966494 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1993", "stop_name": "West Chester Pk & Chester Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.527112, 39.966666 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18762", "stop_name": "West Chester Pk & S Chester Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.519894, 39.966172 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18763", "stop_name": "West Chester Pk & Woodcrest Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.517579, 39.966022 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18764", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.514839, 39.965818 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18765", "stop_name": "West Chester Pk & Green Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.51322, 39.965703 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18766", "stop_name": "West Chester Pk & Hunters Run - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.510799, 39.965535 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18767", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.506865, 39.965261 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18768", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.499802, 39.964872 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18769", "stop_name": "West Chester Pk & Street Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.489798, 39.964797 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29720", "stop_name": "West Chester Pk & Sagewood Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.486184, 39.965424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29721", "stop_name": "West Chester & Whispering Brooke Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.478887, 39.967881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18770", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.5, "percent_change": 0.22, "expected_wait_time_difference": -6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.475167, 39.969141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18772", "stop_name": "West Chester Pk & Plumsock Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.467041, 39.971143 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18773", "stop_name": "West Chester Pk & Miller Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.462778, 39.972358 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18774", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.458868, 39.973073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18775", "stop_name": "West Chester Pk & Miller Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.454143, 39.973921 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1994", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.449395, 39.974574 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18776", "stop_name": "West Chester Pk & Providence - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.44728, 39.974672 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18777", "stop_name": "West Chester Pk & Rock Ridge Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.440925, 39.974985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18778", "stop_name": "West Chester Pk & Crum Creek Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.437464, 39.975914 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29722", "stop_name": "Rock Ridge Rd & West Chester Pk - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440902, 39.97619 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31394", "stop_name": "N Crum Creek Rd & Crum Creek Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439248, 39.977663 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31395", "stop_name": "Crum Creek Rd & West Chester Pk", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43783, 39.976503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18779", "stop_name": "West Chester Pk & Alice Grim Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.434192, 39.977244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30674", "stop_name": "West Chester Pk & Alice Grim Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.43281, 39.977806 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18780", "stop_name": "West Chester Pk & Tuxedo Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428498, 39.979537 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18782", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.424789, 39.981313 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18783", "stop_name": "West Chester Pk & Campus Blvd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421067, 39.983125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18784", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418763, 39.98424 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18785", "stop_name": "West Chester Pk & Boot Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.414687, 39.985561 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18787", "stop_name": "West Chester Pk & Ellis Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410363, 39.985935 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18788", "stop_name": "West Chester Pk & School Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408626, 39.986069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18789", "stop_name": "West Chester Pk & Bishop Hollow Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402801, 39.986532 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1995", "stop_name": "West Chester Pk & Newtown St Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400225, 39.986647 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18790", "stop_name": "WestChester Pk & Saint Albans Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398194, 39.986299 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18791", "stop_name": "West Chester Pk & Clover Ln - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395914, 39.985727 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18792", "stop_name": "West Chester Pk & Bryn Mawr Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393078, 39.98503 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18793", "stop_name": "West Chester Pk & Dunwoody Village Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389794, 39.984511 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18794", "stop_name": "West Chester Pk & Valley View - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384726, 39.984054 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18795", "stop_name": "West Chester Pk & Radnor Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.983973 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18796", "stop_name": "West Chester Pk & Barren Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380296, 39.983901 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18798", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378548, 39.983838 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18799", "stop_name": "West Chester Pk & Latches Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372582, 39.983326 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18800", "stop_name": "West Chester Pk & Hawthorne Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370113, 39.982959 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18801", "stop_name": "West Chester Pk & Rittenhouse Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367715, 39.982637 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18802", "stop_name": "West Chester Pk & Malin Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365069, 39.982252 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1996", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36071, 39.981625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18803", "stop_name": "West Chester Pk & Berkley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357001, 39.981069 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18804", "stop_name": "West Chester Pk & Edgewood Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354001, 39.980594 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18805", "stop_name": "West Chester Pk & Raymond Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349962, 39.979994 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18806", "stop_name": "West Chester Pk & New Ardmore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346855, 39.979501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2200", "stop_name": "West Chester Pk & Lawrence Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33377, 39.976573 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18807", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331396, 39.97584 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18808", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327524, 39.974328 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18809", "stop_name": "West Chester Pk & Ivy Rock Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325091, 39.973853 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18810", "stop_name": "West Chester Pk & Glendale Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322469, 39.973396 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1998", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319139, 39.972813 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18811", "stop_name": "West Chester Pk & Washington Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317675, 39.972562 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18812", "stop_name": "West Chester Pk & Pinzon Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.316647, 39.972391 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18813", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.313306, 39.971799 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18814", "stop_name": "West Chester Pk & Westwood Park - 1 FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309798, 39.971198 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30480", "stop_name": "West Chester Pk & Westwood Park - 2 FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305795, 39.970515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18815", "stop_name": "West Chester Pk & Steel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.304248, 39.970273 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18816", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30204, 39.969869 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18817", "stop_name": "West Chester Pk & Darby Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298262, 39.969098 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2202", "stop_name": "West Chester Pk & Darby Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296455, 39.968739 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18818", "stop_name": "West Chester Pk & Township Line - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294389, 39.968344 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18819", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290953, 39.967706 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18820", "stop_name": "West Chester Pk & Linden Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288851, 39.967302 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18821", "stop_name": "West Chester Pk & Cloverdale Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284967, 39.966575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18822", "stop_name": "West Chester Pk & S Lynn Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282676, 39.966144 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18823", "stop_name": "West Chester Pk & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280398, 39.965704 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18824", "stop_name": "West Chester Pk & Cedar Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278509, 39.965354 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18825", "stop_name": "West Chester Pk & Carol Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276312, 39.964958 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18826", "stop_name": "West Chester Pk & Pennock Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.274471, 39.964635 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18827", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.272121, 39.964204 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18642", "stop_name": "West Chester Pk & Ardsley Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.270621, 39.964202 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18643", "stop_name": "West Chester Pk & Kenmore Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271873, 39.964435 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18644", "stop_name": "West Chester Pk & Pennock Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274529, 39.964929 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1968", "stop_name": "West Chester Pk & Carol Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276276, 39.965244 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18651", "stop_name": "West Chester Pk & Saint Laurence Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.279098, 39.965756 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18646", "stop_name": "West Chester Pk & S Lynn Blvd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.282758, 39.966457 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18647", "stop_name": "West Chester Pk & Cloverdale Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.284706, 39.966816 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18648", "stop_name": "West Chester Pk & Linden Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.28891, 39.967615 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18649", "stop_name": "West Chester Pk & Brighton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.291295, 39.968073 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18650", "stop_name": "West Chester Pk & Township Line Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.294672, 39.968728 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "2197", "stop_name": "West Chester Pk & Darby Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.296844, 39.969132 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18652", "stop_name": "West Chester Pk & Vernon Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299418, 39.969625 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18653", "stop_name": "West Chester Pk & Gilmore Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.302724, 39.970289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18654", "stop_name": "West Chester Pk & Westwood Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.305806, 39.970837 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18655", "stop_name": "West Chester Pk & Sycamore Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.309762, 39.971501 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18656", "stop_name": "West Chester Pk & Manoa Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.313529, 39.972165 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18657", "stop_name": "West Chester Pk & Washington Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.317934, 39.97291 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1983", "stop_name": "West Chester Pk & Eagle Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.319989, 39.973278 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18659", "stop_name": "West Chester Pk & Glendale Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.32228, 39.97369 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18660", "stop_name": "West Chester Pk & Stanton Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325599, 39.974255 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18661", "stop_name": "West Chester Pk & Glen Gary Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327051, 39.974551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18662", "stop_name": "West Chester Pk & Robinson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.330617, 39.975848 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18663", "stop_name": "West Chester Pk & Old W Chester Pk", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.331892, 39.976349 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "2199", "stop_name": "West Chester Pk & Lawrence Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334277, 39.977002 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18664", "stop_name": "West Chester Pk & New Ardmore Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346725, 39.979804 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18665", "stop_name": "West Chester Pk & Raymond Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349678, 39.980297 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18666", "stop_name": "West Chester Pk & Edgewood Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353788, 39.980907 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18667", "stop_name": "West Chester Pk & Church Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.356812, 39.981373 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1985", "stop_name": "West Chester Pk & Sproul Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361749, 39.982125 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18668", "stop_name": "West Chester Pk & Malin Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36521, 39.9826 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18669", "stop_name": "West Chester Pk & E Garden Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36736, 39.982887 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18670", "stop_name": "West Chester Pk & James Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369758, 39.983227 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18671", "stop_name": "West Chester Pk & Ann Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373869, 39.983809 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14817", "stop_name": "West Chester Pk & Media Line Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377933, 39.984141 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18672", "stop_name": "West Chester Pk & Barren Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380154, 39.984222 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18673", "stop_name": "West Chester Pk & Radnor Dr", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382411, 39.984294 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18674", "stop_name": "West Chester Pk & Valley View Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384821, 39.984393 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18675", "stop_name": "West Chester Pk & Dunwoody Village Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389865, 39.984815 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18676", "stop_name": "West Chester Pk & Bryn Mawr Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392712, 39.985271 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18677", "stop_name": "West Chester Pk & Clover Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.39589, 39.986048 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18678", "stop_name": "West Chester Pk & Saint Albans - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.398016, 39.986575 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "15232", "stop_name": "Chapel Rd & Newtown Street Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400721, 39.987415 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18679", "stop_name": "West Chester Pk & Clyde Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402447, 39.986817 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30335", "stop_name": "West Chester Pk & Winding Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.406168, 39.986515 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18681", "stop_name": "West Chester Pk & Medical Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409406, 39.986274 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30478", "stop_name": "West Chester Pk & Boot Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415278, 39.985811 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18684", "stop_name": "West Chester Pk & Boot Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418775, 39.984571 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18685", "stop_name": "West Chester Pk & Campus Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.421303, 39.983348 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18686", "stop_name": "West Chester Pk & Campus Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.425285, 39.981385 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18688", "stop_name": "West Chester Pk & Tuxedo Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42851, 39.97985 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18689", "stop_name": "West Chester & Alice Grim Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433023, 39.978029 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29738", "stop_name": "Crum Creek Rd & West Chester Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.437736, 39.976717 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14819", "stop_name": "N Crum Creek Rd & Crum Creek Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439496, 39.977752 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29740", "stop_name": "Rock Ridge Rd & West Chester - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 4.5, "percent_change": 1.25, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.441055, 39.975976 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18691", "stop_name": "West Chester Pk & Rock Ridge Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.441162, 39.975235 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18692", "stop_name": "West Chester Pk & Papa Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447068, 39.974949 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1987", "stop_name": "West Chester Pk & Providence Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.450919, 39.974716 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18693", "stop_name": "West Chester Pk & Miller Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.454982, 39.974028 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18694", "stop_name": "West Chester Pk & Sandy Flash Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.458537, 39.973403 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30783", "stop_name": "West Chester Pk & Edgemont Country Club Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.462329, 39.972741 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18697", "stop_name": "West Chester Pk & Plumsock - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.467549, 39.971285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18698", "stop_name": "West Chester Pk & Delchester Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.474836, 39.969551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30784", "stop_name": "West Chester & Whispering Brooke Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.479076, 39.968122 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29741", "stop_name": "West Chester Pk & Sagewood Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.486066, 39.965763 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18699", "stop_name": "West Chester Pk & Garrett Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.48844, 39.965182 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18700", "stop_name": "West Chester Pk & Dutton Mill Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.500369, 39.965176 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18701", "stop_name": "West Chester Pk & Stoneham Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.506299, 39.965502 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18702", "stop_name": "West Chester Pk & Hunters Run - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.510268, 39.965785 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18704", "stop_name": "West Chester Pk & Hilltop Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.514544, 39.966068 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18705", "stop_name": "West Chester Pk & Woodcrest Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.517615, 39.966289 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18706", "stop_name": "West Chester Pk & McDaniel Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.520922, 39.966528 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1988", "stop_name": "West Chester Pk & Chester Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.526403, 39.966881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18708", "stop_name": "West Chester Pk & Manley Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.529769, 39.966762 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18709", "stop_name": "West Chester Pk & Chester Hollow Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.534316, 39.966437 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18710", "stop_name": "West Chester Pk & Waterview Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.538284, 39.966139 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18711", "stop_name": "West Chester Pk & Westtown Way", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.543977, 39.965742 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30479", "stop_name": "West Chester Pk & Valley Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.547934, 39.966256 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18712", "stop_name": "West Chester Pk & Mary Fran Dr - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.550865, 39.96694 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "29742", "stop_name": "West Chester Pk & Ellis Ln - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.552992, 39.967429 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18713", "stop_name": "West Chester Pk & Ellis Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.555355, 39.967953 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18714", "stop_name": "West Chester Pk & Ellis Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.557895, 39.968531 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18715", "stop_name": "West Chester Pk & Strasburg Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.563154, 39.969668 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18716", "stop_name": "West Chester Pk & Kingsway Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.567784, 39.969618 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18717", "stop_name": "West Chester Pk & Rolling Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.569862, 39.969285 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18718", "stop_name": "West Chester Pk & Spring Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.5737, 39.968737 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1989", "stop_name": "West Chester Pk & Five Points Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.576203, 39.968359 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18719", "stop_name": "West Chester Pk & Rose Ln - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.578801, 39.967972 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "2225", "stop_name": "Paoli Pk & Concord Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.586257, 39.969195 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18720", "stop_name": "Paoli Pk & Turner Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.588062, 39.968336 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18721", "stop_name": "Paoli Pk & Prospect Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.589962, 39.967476 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18723", "stop_name": "Gay St & Bolmar St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.595248, 39.965042 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18725", "stop_name": "Gay St & Adams St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.59907, 39.963341 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18726", "stop_name": "Gay St & Patton St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.601678, 39.962151 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18727", "stop_name": "Chestnut St & Walnut St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.604642, 39.962164 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18728", "stop_name": "Chestnut St & High St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.605975, 39.961529 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18729", "stop_name": "Chestnut St & Church St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607072, 39.961019 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18730", "stop_name": "Chestnut St & Darlington St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.608382, 39.960472 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "30146", "stop_name": "New St & Chestnut St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.609844, 39.959551 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "1990", "stop_name": "West Chester Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.607301, 39.957904 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "31176", "stop_name": "High St & Miner St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.603678, 39.958881 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18733", "stop_name": "High St & Union St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.60208, 39.95734 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "18734", "stop_name": "High St & Price St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.600375, 39.955834 ] } }, +{ "type": "Feature", "properties": { "route_id": "104", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "West Chester University", "stop_id": "14820", "stop_name": "Church St & University Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.600002, 39.952523 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20051", "stop_name": "Pontiac Rd & Dermond Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.324317, 39.954129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20029", "stop_name": "Elwyn Rd & Baltimore Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404397, 39.916597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.2, "percent_change": -0.11, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20051", "stop_name": "Pontiac Rd & Dermond Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324317, 39.954129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20029", "stop_name": "Elwyn Rd & Baltimore Pk", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404397, 39.916597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.2, "percent_change": -0.27, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.6, "percent_change": 0.17, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.0, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.6, "percent_change": 0.17, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.6, "percent_change": 0.17, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.4, "percent_change": 0.35, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.2, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.2, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 6.0, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.2, "percent_change": -0.07, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.2, "percent_change": -0.36, "expected_wait_time_difference": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20029", "stop_name": "Elwyn Rd & Baltimore Pk", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.404397, 39.916597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.8, "percent_change": -0.39, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.6, "percent_change": -0.46, "expected_wait_time_difference": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.8, "percent_change": -0.39, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.8, "percent_change": -0.39, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.8, "percent_change": -0.39, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.8, "percent_change": -0.39, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.4, "percent_change": -0.32, "expected_wait_time_difference": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.0, "percent_change": -0.4, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.0, "percent_change": -0.32, "expected_wait_time_difference": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.2, "percent_change": -0.27, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.2, "percent_change": -0.27, "expected_wait_time_difference": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.4, "percent_change": -0.23, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.8, "percent_change": -0.13, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.4, "percent_change": -0.26, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.6, "percent_change": -0.28, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 8.0, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 8.0, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 8.0, "percent_change": -0.17, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.8, "percent_change": -0.19, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.2, "percent_change": -0.22, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 6.8, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.4, "percent_change": -0.26, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.8, "percent_change": -0.22, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.0, "percent_change": -0.13, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.6, "percent_change": 0.15, "expected_wait_time_difference": -3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20028", "stop_name": "Baltimore Pk & Elwyn Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404669, 39.916829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20029", "stop_name": "Elwyn Rd & Baltimore Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.8, "percent_change": 0.27, "expected_wait_time_difference": -8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.404397, 39.916597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 4.0, "percent_change": 0.54, "expected_wait_time_difference": -16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.6, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.6, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 10.6, "percent_change": 0.1, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 10.6, "percent_change": 0.08, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 10.6, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 10.8, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 10.6, "arrivals_during_cuts": 10.8, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 10.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.2, "percent_change": 0.04, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.2, "percent_change": 0.02, "expected_wait_time_difference": -0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 10.8, "arrivals_during_cuts": 11.6, "percent_change": 0.07, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.6, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.6, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 11.0, "arrivals_during_cuts": 11.6, "percent_change": 0.05, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20051", "stop_name": "Pontiac Rd & Dermond Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.0, "percent_change": -0.17, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.324317, 39.954129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30492", "stop_name": "Baltimore Pk & School Lane", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.91659 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20028", "stop_name": "Baltimore Pk & Elwyn Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.404669, 39.916829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.4, "percent_change": -0.07, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.4, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 5.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.2, "percent_change": -0.67, "expected_wait_time_difference": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.4, "percent_change": -0.5, "expected_wait_time_difference": 187.5 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 3.6, "percent_change": -0.14, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30492", "stop_name": "Baltimore Pk & School Lane", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.91659 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30492", "stop_name": "Baltimore Pk & School Lane", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.91659 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20028", "stop_name": "Baltimore Pk & Elwyn Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404669, 39.916829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30492", "stop_name": "Baltimore Pk & School Lane", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.91659 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20028", "stop_name": "Baltimore Pk & Elwyn Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404669, 39.916829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.5, "percent_change": -0.13, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30492", "stop_name": "Baltimore Pk & School Lane", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.91659 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.5, "percent_change": 0.5, "expected_wait_time_difference": -13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20028", "stop_name": "Baltimore Pk & Elwyn Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.404669, 39.916829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.5, "percent_change": -0.1, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 5.0, "percent_change": -0.09, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30492", "stop_name": "Baltimore Pk & School Lane", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.91659 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20028", "stop_name": "Baltimore Pk & Elwyn Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.404669, 39.916829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "32300", "stop_name": "Baltimore Av & State St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.397457, 39.9178 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20032", "stop_name": "Baltimore Pk & Lemon St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395474, 39.917559 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20033", "stop_name": "Baltimore Pk & Orange St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.393397, 39.917264 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20035", "stop_name": "Baltimore Pk & Olive St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.391414, 39.917004 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20037", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.388062, 39.91653 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20038", "stop_name": "Baltimore Pk & Edgmont St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.386079, 39.916253 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20039", "stop_name": "Baltimore Pk & Radnor St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.384486, 39.916029 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20040", "stop_name": "Baltimore Pk & Manchester Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.383377, 39.915877 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2063", "stop_name": "Baltimore Pk & Providence Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380674, 39.915492 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20042", "stop_name": "Baltimore Pk & Beatty Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.378916, 39.91501 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20044", "stop_name": "Baltimore Pk & Grandview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.372885, 39.913972 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2047", "stop_name": "Springfield Mall - east", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350731, 39.914013 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19179", "stop_name": "Sproul Rd & Thomson Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348172, 39.922722 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19180", "stop_name": "Sproul Rd & Gleaves Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350385, 39.928087 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19181", "stop_name": "Sproul Rd & Kennerly Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351033, 39.929578 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19182", "stop_name": "Sproul Rd & Woodland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352221, 39.933666 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "14852", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.349607, 39.938216 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "29810", "stop_name": "State Rd & Meetinghouse Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.347268, 39.93892 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15116", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34343, 39.939917 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13381", "stop_name": "State Rd & Golf View Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339367, 39.940842 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18985", "stop_name": "State Rd & Memorial Park Dr - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.336025, 39.941572 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15118", "stop_name": "State Rd & Weymouth Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333308, 39.942194 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15117", "stop_name": "State Rd & Rolling Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327779, 39.944493 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20048", "stop_name": "Township Line Rd & State Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325178, 39.946427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20049", "stop_name": "Township Line Rd & Arrowhead Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.323958, 39.949336 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2065", "stop_name": "Township Line Rd & Dermond Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.323043, 39.953476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20052", "stop_name": "Township Line Rd & Pontiac Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.322485, 39.954912 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20053", "stop_name": "Township Line Rd & Burmont Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.32064, 39.956624 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20054", "stop_name": "Township Line Rd & Alexander Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.318643, 39.957631 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20055", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.317107, 39.958326 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20056", "stop_name": "Township Line Rd & Drexel Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.31427, 39.959537 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20057", "stop_name": "Township Line Rd & Lindale Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.312084, 39.960499 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20059", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.309129, 39.961826 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20060", "stop_name": "Township Line Rd & Foss Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.307356, 39.96261 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20062", "stop_name": "Township Line Rd & Cobbs St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.303928, 39.964123 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20063", "stop_name": "Township Line Rd & Harding Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.301765, 39.965103 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20064", "stop_name": "Township Line Rd & Wilson Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.299992, 39.965887 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20065", "stop_name": "Township Line Rd & Hollywood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.298243, 39.96667 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "13816", "stop_name": "Township Line Rd & Lansdowne Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.29615, 39.967632 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2519", "stop_name": "Lansdowne Av & Township Line Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.295678, 39.967596 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19819", "stop_name": "Lansdowne Av & Manor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.294735, 39.966657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19820", "stop_name": "Lansdowne Av & Harwood Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.293626, 39.965657 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19821", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.290855, 39.963217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19823", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.288769, 39.961028 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "2066", "stop_name": "State Rd & Lansdowne Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287119, 39.959447 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15094", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283739, 39.960237 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15095", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.282026, 39.960583 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15096", "stop_name": "State Rd & Merion Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280278, 39.960804 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15102", "stop_name": "State Rd & Highland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278541, 39.961007 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15097", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276474, 39.961246 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15098", "stop_name": "State Rd & Penarth Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961502 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15099", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272054, 39.962481 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18828", "stop_name": "West Chester Pk & State Rd - FS at Berbro Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269571, 39.963745 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18829", "stop_name": "West Chester Pk & Elm Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268048, 39.963475 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18830", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265935, 39.963089 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "69th St Transit Center", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15497", "stop_name": "69th St Transit Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.259677, 39.96217 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18639", "stop_name": "West Chester Pk & Brief Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.263184, 39.962621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18640", "stop_name": "West Chester Pk & College Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265722, 39.963294 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18641", "stop_name": "West Chester Pk & Golf Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2678, 39.96368 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "18975", "stop_name": "State Rd & West Chester Pike - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.270658, 39.963702 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13428", "stop_name": "State Rd & Sellers Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.272243, 39.962561 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15060", "stop_name": "State Rd & Penarth Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274312, 39.961663 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13387", "stop_name": "State Rd & Hilltop Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.276273, 39.961433 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13414", "stop_name": "State Rd & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278092, 39.961221 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13404", "stop_name": "State Rd & Merion Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280313, 39.960956 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13357", "stop_name": "State Rd & Beverly Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.281861, 39.960779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13353", "stop_name": "State Rd & Arlington Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.284058, 39.960318 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2050", "stop_name": "State Rd & Lansdowne Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287012, 39.95967 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19801", "stop_name": "Lansdowne Av & Cedar Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.288439, 39.96093 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19802", "stop_name": "Lansdowne Av & Saint Anthony Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289393, 39.9621 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19803", "stop_name": "Lansdowne Av & Bond Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290536, 39.963199 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19804", "stop_name": "Lansdowne Av & Harwood Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293484, 39.965746 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13799", "stop_name": "Township Line Rd & Lansdowne Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296989, 39.967418 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13834", "stop_name": "Township Line Rd & Myrtlwood Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299223, 39.966394 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13810", "stop_name": "Township Line Rd & Roosevelt Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300831, 39.965673 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20066", "stop_name": "Township Line Rd & Greenview Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.303715, 39.964391 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13808", "stop_name": "Township Line Rd & Foss Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.307498, 39.962744 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13804", "stop_name": "Township Line Rd & Edmonds Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309022, 39.962058 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13819", "stop_name": "Township Line Rd & Lexington Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312308, 39.960597 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13803", "stop_name": "Township Line Rd & Drexel Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.314459, 39.959618 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20067", "stop_name": "Township Line Rd & Belfield Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317213, 39.958424 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13788", "stop_name": "Township Line Rd & Alexander Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318962, 39.957694 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13794", "stop_name": "Township Line Rd & Burmont Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3209, 39.956767 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20068", "stop_name": "Township Line Rd & Pontiac Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.322769, 39.954779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2051", "stop_name": "Township Line Rd & Dermond Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323267, 39.953423 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20069", "stop_name": "Township Line Rd & Pilgrim Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324254, 39.949023 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13828", "stop_name": "Township Line Rd & State Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.325615, 39.946383 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13425", "stop_name": "State Rd & Rolling Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327767, 39.944903 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13441", "stop_name": "State Rd & Weymouth Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.333532, 39.942427 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13424", "stop_name": "State Rd & N State Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335847, 39.941911 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13407", "stop_name": "State Rd & Golfview Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.339083, 39.941181 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13430", "stop_name": "State Rd & Springfield Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345036, 39.939811 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "13401", "stop_name": "State Rd & Meetinghouse Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347362, 39.939152 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "14849", "stop_name": "State Rd & Sproul Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.349335, 39.938779 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29797", "stop_name": "State Rd & Sproul Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351248, 39.938289 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2052", "stop_name": "Marple Crossroads Shopping Ctr - 1", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.355604, 39.938916 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29798", "stop_name": "Marple Crossroads Shopping Ctr - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357092, 39.937918 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19204", "stop_name": "Sproul Rd & State Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351592, 39.936558 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19205", "stop_name": "Sproul Rd & Beatty Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.352457, 39.934033 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19206", "stop_name": "Sproul Rd & Kennerly Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351222, 39.929453 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19207", "stop_name": "Sproul Rd & Gleaves Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350303, 39.927579 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19208", "stop_name": "Sproul Rd & Thomson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348385, 39.922606 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30416", "stop_name": "Springfield Mall - west", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350743, 39.914094 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4667", "stop_name": "Baltimore Pike & Wallingford Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.354403, 39.913436 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4663", "stop_name": "Baltimore Pike & Turner Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.366748, 39.913407 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20071", "stop_name": "Baltimore Pike & Grandview Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372566, 39.914079 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20072", "stop_name": "Baltimore Pike & Sloan Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377216, 39.914777 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4666", "stop_name": "Baltimore Pike & Manchester Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382786, 39.915966 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4638", "stop_name": "Baltimore Pike & Radnor St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.384096, 39.916136 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4599", "stop_name": "Baltimore Pike & Edgmont St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385819, 39.91636 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20073", "stop_name": "Baltimore Pk & Monroe St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38779, 39.916637 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20074", "stop_name": "Baltimore Pike & Jackson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389584, 39.916915 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4628", "stop_name": "Baltimore Pike & Olive St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391119, 39.917129 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4630", "stop_name": "Baltimore Pike & Orange St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393467, 39.917442 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "4614", "stop_name": "Baltimore Pike & Lemon St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394931, 39.917648 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "20075", "stop_name": "Baltimore Pike & State St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397398, 39.918006 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30492", "stop_name": "Baltimore Pk & School Lane", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.91659 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "110", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -93.3 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.8, "percent_change": 1.25, "expected_wait_time_difference": -145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.2, "percent_change": 1.0, "expected_wait_time_difference": -175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.2, "percent_change": 1.0, "expected_wait_time_difference": -175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -140.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.6, "percent_change": 0.28, "expected_wait_time_difference": -12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30328", "stop_name": "McDonald Blvd & Commerce Dr - 1", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.404527, 39.851198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 0.8, "percent_change": -0.56, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -33.8 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -33.8 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.2, "percent_change": -0.15, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.2, "percent_change": -0.21, "expected_wait_time_difference": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.8, "percent_change": 0.29, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.6, "percent_change": 0.33, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.0, "percent_change": -0.14, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 5.0, "percent_change": -0.19, "expected_wait_time_difference": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.0, "percent_change": -0.17, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 5.4, "percent_change": -0.18, "expected_wait_time_difference": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 5.4, "percent_change": -0.16, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 6.0, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 5.6, "percent_change": -0.03, "expected_wait_time_difference": 0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.6, "percent_change": -0.07, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30328", "stop_name": "McDonald Blvd & Commerce Dr - 1", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404527, 39.851198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.6, "percent_change": 0.29, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.6, "percent_change": 0.29, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.4, "percent_change": 1.0, "expected_wait_time_difference": -225.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 2.8, "percent_change": -0.22, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.8, "percent_change": -0.3, "expected_wait_time_difference": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.6, "percent_change": -0.1, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.4, "percent_change": -0.11, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.2, "percent_change": -0.16, "expected_wait_time_difference": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.0, "percent_change": -0.21, "expected_wait_time_difference": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.6, "percent_change": -0.35, "expected_wait_time_difference": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.8, "percent_change": -0.44, "expected_wait_time_difference": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.6, "percent_change": -0.48, "expected_wait_time_difference": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.4, "percent_change": -0.52, "expected_wait_time_difference": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.4, "percent_change": -0.52, "expected_wait_time_difference": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.2, "percent_change": -0.54, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.2, "percent_change": -0.54, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.2, "percent_change": -0.54, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.0, "percent_change": -0.58, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.0, "percent_change": -0.58, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.0, "percent_change": -0.58, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 2.6, "percent_change": -0.32, "expected_wait_time_difference": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 2.0, "percent_change": -0.57, "expected_wait_time_difference": 42.4 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.4, "percent_change": -0.25, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 2.0, "percent_change": -0.55, "expected_wait_time_difference": 40.9 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.2, "percent_change": -0.14, "expected_wait_time_difference": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.2, "percent_change": -0.33, "expected_wait_time_difference": 41.7 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.4, "percent_change": -0.22, "expected_wait_time_difference": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 2.6, "percent_change": -0.19, "expected_wait_time_difference": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.6, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.6, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.6, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.6, "percent_change": -0.27, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.6, "percent_change": -0.27, "expected_wait_time_difference": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 10.4, "arrivals_during_cuts": 7.2, "percent_change": -0.31, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.2, "percent_change": -0.28, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.2, "percent_change": -0.27, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.8, "percent_change": -0.24, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 3.0, "percent_change": -0.35, "expected_wait_time_difference": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 2.8, "percent_change": -0.42, "expected_wait_time_difference": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.0, "percent_change": -0.38, "expected_wait_time_difference": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.2, "percent_change": -0.33, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.4, "percent_change": -0.29, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.6, "percent_change": -0.25, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 3.8, "percent_change": -0.21, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.8, "percent_change": 1.0, "expected_wait_time_difference": -187.5 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.0, "percent_change": -0.44, "expected_wait_time_difference": 66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.4, "percent_change": 0.17, "expected_wait_time_difference": -14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 1.6, "percent_change": 0.14, "expected_wait_time_difference": -10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.2, "percent_change": 0.22, "expected_wait_time_difference": -12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.2, "percent_change": 0.22, "expected_wait_time_difference": -12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.2, "percent_change": 0.22, "expected_wait_time_difference": -12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.4, "percent_change": 0.33, "expected_wait_time_difference": -16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.6, "percent_change": 0.44, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.6, "percent_change": 0.44, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.6, "percent_change": 0.44, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.6, "percent_change": 0.44, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.6, "percent_change": 0.44, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.6, "percent_change": 0.44, "expected_wait_time_difference": -20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 3.0, "percent_change": 0.67, "expected_wait_time_difference": -26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.2, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 3.0, "percent_change": 1.14, "expected_wait_time_difference": -45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 3.0, "percent_change": 0.88, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.4, "percent_change": -0.13, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.0, "percent_change": 0.25, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.8, "percent_change": 0.27, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.8, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.6, "percent_change": 0.03, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.4, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.6, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.6, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.8, "percent_change": 0.05, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.8, "percent_change": 0.03, "expected_wait_time_difference": -0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.2, "percent_change": 0.16, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 7.4, "percent_change": 0.16, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2192", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399909, 39.840059 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 6.4, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 6.8, "percent_change": 0.13, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30328", "stop_name": "McDonald Blvd & Commerce Dr - 1", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404527, 39.851198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.4, "percent_change": 0.21, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.4, "percent_change": 0.13, "expected_wait_time_difference": -5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 0.2, "arrivals_during_cuts": 0.6, "percent_change": 2.0, "expected_wait_time_difference": -500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.6, "percent_change": 0.5, "expected_wait_time_difference": -125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2192", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.0, "percent_change": -0.17, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399909, 39.840059 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.2, "percent_change": 0.45, "expected_wait_time_difference": -21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.4, "percent_change": 1.0, "expected_wait_time_difference": -62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.4, "percent_change": 0.71, "expected_wait_time_difference": -44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.4, "percent_change": 0.71, "expected_wait_time_difference": -44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.4, "percent_change": 0.5, "expected_wait_time_difference": -31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 1.0, "percent_change": 0.67, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.0, "percent_change": 0.2, "expected_wait_time_difference": -6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 5.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.5, "percent_change": 0.12, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31474", "stop_name": "Yarnall St 7th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385713, 39.839966 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30675", "stop_name": "Baltimore Pk & Valley Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453849, 39.90562 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32310", "stop_name": "Yarnell St & 9th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386503, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "15143", "stop_name": "Baltimore Pk & Granite Farms", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449448, 39.9082 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25291", "stop_name": "Pennell Rd & Baltimore Pk - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439842, 39.911494 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25294", "stop_name": "Pennell Rd & Whirlaway Dr Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4401, 39.905988 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25295", "stop_name": "Pennell Rd & War Admiral Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439144, 39.902864 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29933", "stop_name": "Pennell Rd & Chestnut Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438094, 39.901231 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25298", "stop_name": "Pennell Rd & Laurel Ln - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436642, 39.897269 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25299", "stop_name": "Pennell Rd & Parkmount Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435367, 39.894815 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25300", "stop_name": "Pennell Rd & Mount Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432347, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25301", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430553, 39.883998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25302", "stop_name": "Pennell Rd & Old Pennell Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429786, 39.87917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29934", "stop_name": "Concord Rd & Pennell Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428589, 39.868971 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29935", "stop_name": "Pennell Rd & Lehr Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428206, 39.865917 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2157", "stop_name": "Pennell Rd & Weir Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427958, 39.864239 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25306", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427427, 39.860661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25307", "stop_name": "Pennell Rd & Lamp Post Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427168, 39.858108 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25308", "stop_name": "Dutton Mill Rd & Pennell Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426236, 39.857064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25309", "stop_name": "Dutton Mill Rd & Turner Industrial Way", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423088, 39.857198 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25310", "stop_name": "Dutton Mill Rd & Pancoast Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418712, 39.858732 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29937", "stop_name": "Dutton Mill Rd & Joanne Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418523, 39.859446 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25311", "stop_name": "Dutton Mill Rd & Wellington Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418181, 39.861303 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25312", "stop_name": "Dutton Mill Rd & Concord Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.416541, 39.863855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25314", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413947, 39.861998 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25316", "stop_name": "Concord Rd & Bridgewater Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410704, 39.859463 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25317", "stop_name": "Concord Rd & Baldwin Run Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408676, 39.857883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25324", "stop_name": "Engle St & Shannon St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392349, 39.84377 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30863", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391147, 39.842395 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25325", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390393, 39.841592 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25327", "stop_name": "Engle St & 9th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389015, 39.839976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25348", "stop_name": "Sproul St & 7th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36237, 39.850245 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "26497", "stop_name": "6th & Edgemont Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360991, 39.849254 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25352", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358758, 39.85334 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31878", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357248, 39.85391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25354", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35588, 39.854401 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31879", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353721, 39.85522 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "31880", "stop_name": "9th St & Hyatte St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351763, 39.85596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25357", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35037, 39.856441 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29939", "stop_name": "9th St & Elsinore Pl - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.347704, 39.857448 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25358", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.344707, 39.858561 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29940", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.343645, 39.858944 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25359", "stop_name": "9th St & Saville Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.342595, 39.859336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25360", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.343077, 39.860532 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25361", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343866, 39.861791 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25362", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344408, 39.86255 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25363", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345197, 39.863318 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25364", "stop_name": "Saville Av & Chester Pk", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346022, 39.864086 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25365", "stop_name": "Chester Pk & Simpson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343756, 39.865316 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25366", "stop_name": "Chester Pk & Simpson St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.341962, 39.866172 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25367", "stop_name": "Chester Pk & Baldwin Towers Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340486, 39.866894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25368", "stop_name": "Chester Pk & Smiley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2116", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337453, 39.868409 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25412", "stop_name": "Chester Pk & Morris Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.334868, 39.86962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25413", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332272, 39.870796 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25414", "stop_name": "Chester Pk & Catania Park - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32977, 39.871928 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25415", "stop_name": "Chester Pk & Hetzel Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32807, 39.872846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25416", "stop_name": "Chester Pk & Stewart Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.326228, 39.873755 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25417", "stop_name": "Chester Pk & Sellers Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.323879, 39.875002 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25418", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.321164, 39.876374 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25419", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.318897, 39.877309 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25420", "stop_name": "Chester Pk & Acres Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.317304, 39.87779 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25422", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.312913, 39.879178 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25423", "stop_name": "Chester Pk & Burk Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.311119, 39.879765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25424", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308427, 39.881191 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "2117", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.306125, 39.882348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25425", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.88422 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25431", "stop_name": "Chester Pk & Huron Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301776, 39.886262 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25432", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300346, 39.887894 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25433", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299648, 39.888661 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25434", "stop_name": "Chester Pk & Garfield Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.298016, 39.890515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25435", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297106, 39.891505 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25439", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2948, 39.894099 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25441", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293216, 39.895883 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25442", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291903, 39.897372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25443", "stop_name": "Chester Pk & Knowles Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.290945, 39.89845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19729", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289692, 39.899832 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25445", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287743, 39.900937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25446", "stop_name": "Chester Pk & Lamont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.286313, 39.901765 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25448", "stop_name": "Chester Pk & Oak Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283348, 39.903324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25449", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.280335, 39.904962 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "1963", "stop_name": "Chester Pk & Brainard Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27802, 39.906218 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25461", "stop_name": "Chester Pk & Clifton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.274345, 39.908266 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "29963", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271533, 39.909735 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25464", "stop_name": "Chester Pk & Kenny Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269595, 39.910937 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "25466", "stop_name": "Chester Pk & Calcon Hook Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268791, 39.911534 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19775", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266911, 39.912951 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19776", "stop_name": "Chester Pk & Laurel Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265599, 39.913922 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19777", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264816, 39.915376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "19778", "stop_name": "Chester Pk & MacDade Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264458, 39.917008 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Darby Transit Center", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30597", "stop_name": "Darby Transit Center - bus", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26358, 39.919104 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31874", "stop_name": "SEPTA Private Way & MacDade Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264607, 39.919061 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19844", "stop_name": "Chester Pk & MacDade Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264647, 39.917017 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19845", "stop_name": "Chester Pk & Pine St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.264957, 39.915635 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19846", "stop_name": "Chester Pk & Cherry St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.265468, 39.914216 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20367", "stop_name": "Chester Pk & Bartlett Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26697, 39.913085 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20368", "stop_name": "Chester Pk & Calcon Hook Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26814, 39.912212 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29941", "stop_name": "Chester Pk & Kenny Av - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.269795, 39.911 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20369", "stop_name": "Chester Pk & Ridley Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271332, 39.910029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20370", "stop_name": "Chester Pike & Sharon Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273588, 39.908827 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "20371", "stop_name": "Chester Pike & Florence Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.275243, 39.907919 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "1962", "stop_name": "Chester Pk & Brainerd Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.278078, 39.906343 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25049", "stop_name": "Chester Pk & Folcroft Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.279992, 39.905319 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25050", "stop_name": "Chester Pk & Rambler Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.283926, 39.903181 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19883", "stop_name": "Chester Pk & Lamont Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.28649, 39.901828 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25052", "stop_name": "Chester Pk & Ashland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.287659, 39.901195 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25053", "stop_name": "Chester Pk & Gardner Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.289691, 39.900064 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25054", "stop_name": "Chester Pk & Knowles Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.29098, 39.898647 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25055", "stop_name": "Chester Pk & Glenolden Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.291832, 39.89772 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25056", "stop_name": "Chester Pk & Grays Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.293192, 39.896186 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25057", "stop_name": "Chester Pk & South Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.294682, 39.894519 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29942", "stop_name": "Chester Pk & Welcome Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.296148, 39.892842 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32304", "stop_name": "Chester Pk & Cleveland Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.297129, 39.891746 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25060", "stop_name": "Chester Pk & Winona Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.299541, 39.889053 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25061", "stop_name": "Chester Pk & Amosland Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.300251, 39.88826 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25062", "stop_name": "Chester Pk & Huron Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.301835, 39.886503 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25063", "stop_name": "Chester Pk & Summit Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.30362, 39.884488 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2118", "stop_name": "Chester Pk & Lincoln Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.305864, 39.88267 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25065", "stop_name": "Chester Pk & Prospect Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.308261, 39.881449 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29943", "stop_name": "Chester Pk & Madison Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.309761, 39.880665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25066", "stop_name": "Chester Pk & Burk Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.311249, 39.87989 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25067", "stop_name": "Chester Pk & Rodney Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.312547, 39.879454 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29944", "stop_name": "Chester Pk & Comerford Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.315392, 39.878573 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25068", "stop_name": "Chester Pk & Acres Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.317233, 39.877977 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29945", "stop_name": "Chester Pk & Princeton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.319251, 39.877336 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25071", "stop_name": "Chester Pk & Swarthmore Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.321034, 39.876606 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25073", "stop_name": "Chester Pk & Sellers Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.324032, 39.875074 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25074", "stop_name": "Chester Pk & McCormick Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.32611, 39.873969 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25076", "stop_name": "Chester Pk & Hetzel Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.327928, 39.873033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29946", "stop_name": "Chester Pk & Catania Park - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.33056, 39.871723 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25077", "stop_name": "Chester Pk & Ridley Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.332437, 39.870868 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29947", "stop_name": "Chester Pk & S Taylor Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.335529, 39.869442 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2119", "stop_name": "Chester Pk & Fairview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.337394, 39.868578 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25113", "stop_name": "Chester Pk & Smiley St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3392, 39.867687 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25114", "stop_name": "Chester Pk & Baldwin Towers Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.340722, 39.866974 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25115", "stop_name": "Chester Pk & Simpson St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.342162, 39.866234 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25116", "stop_name": "Chester Pk & Simpson St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343873, 39.865397 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31876", "stop_name": "Seville Av & Chester Pk - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.346163, 39.864033 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29948", "stop_name": "Saville Av & 13th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.345456, 39.863372 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25118", "stop_name": "Saville Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344608, 39.862586 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25119", "stop_name": "Saville Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.344125, 39.861845 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25120", "stop_name": "Saville Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343337, 39.860604 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25122", "stop_name": "Saville Av & 9th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.342654, 39.859515 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31537", "stop_name": "9th St & Ashland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.343492, 39.859158 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25123", "stop_name": "9th St & Eddystone Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.34453, 39.858793 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29949", "stop_name": "9th St & Elsinore Pl - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.348046, 39.857501 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25125", "stop_name": "9th St & Elsinore Pl", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350205, 39.856691 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29950", "stop_name": "9th St & McDowell St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.350877, 39.85645 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25127", "stop_name": "9th St & Hyatt St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.351951, 39.856022 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25129", "stop_name": "9th St & Morton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.353414, 39.855479 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31877", "stop_name": "9th St & Potter St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35542, 39.85473 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25133", "stop_name": "9th St & Upland St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.357154, 39.854107 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25134", "stop_name": "9th St & Madison St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.358581, 39.85359 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31538", "stop_name": "9th St & Edgemont Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360032, 39.853029 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25135", "stop_name": "Av of the States & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360919, 39.850744 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30359", "stop_name": "6th St & Welsh St - Chester Tran Ctr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360295, 39.849628 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2192", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399909, 39.840059 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25199", "stop_name": "Engle St & 11th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390157, 39.841547 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31474", "stop_name": "Yarnall St 7th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385713, 39.839966 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2121", "stop_name": "Engle St & 12th St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390829, 39.842324 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31888", "stop_name": "Engle St & Shannon St - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391925, 39.843538 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25249", "stop_name": "Concord Rd & Baldwin Run La - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40857, 39.858026 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25260", "stop_name": "Concord Rd & Bridgewater Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410574, 39.85957 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25251", "stop_name": "Concord Rd & Pancoast Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.413557, 39.861927 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25253", "stop_name": "Dutton Mill Rd & Roberts Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.417272, 39.863168 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25254", "stop_name": "Dutton Mill Rd & Vinsmith Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418346, 39.861526 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25255", "stop_name": "Dutton Mill Rd & Joann Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418676, 39.85975 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25256", "stop_name": "Dutton Mill Rd & Pancoast Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.418936, 39.858572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25257", "stop_name": "Dutton Mill Rd & Turner Way - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.420481, 39.857572 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31010", "stop_name": "Dutton Mill Rd & Turner Way - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.423147, 39.857474 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25258", "stop_name": "Dutton Mill Rd & Pennell Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426732, 39.857207 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29930", "stop_name": "Pennell Rd & Lamp Post Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426979, 39.858483 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25259", "stop_name": "Pennell Rd & Hall Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.42718, 39.860348 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2149", "stop_name": "Pennell Rd & Weir Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427604, 39.863347 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29931", "stop_name": "Pennell Rd & Weir Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427758, 39.864391 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29932", "stop_name": "Pennell Rd & Lehr Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428029, 39.866024 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25261", "stop_name": "Concord Rd & Pennel Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428878, 39.869308 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25262", "stop_name": "Concord Rd & Red Hill Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432641, 39.870665 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25263", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43592, 39.870736 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "2150", "stop_name": "Neumann University Main Campus", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439872, 39.874225 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25266", "stop_name": "Concord Rd & Gerald Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43533, 39.870576 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25267", "stop_name": "Concord Rd & Colonial Cir", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.432381, 39.870495 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25269", "stop_name": "Pennell Rd & Knowlton Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.428406, 39.869594 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25272", "stop_name": "Pennell Rd & Old Pennell Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.429597, 39.879134 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32306", "stop_name": "Pennell Rd & Glendale Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.430234, 39.883846 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31005", "stop_name": "Pennell Rd & Glen Riddle Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.435285, 39.895011 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "31006", "stop_name": "Pennell Rd & Laurel Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.436477, 39.897376 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25280", "stop_name": "Pennell Rd & Lenni Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43951, 39.90365 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25281", "stop_name": "Pennell Rd & Whirlaway Ln - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439888, 39.906568 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "4659", "stop_name": "Baltimore Pk & Pennell Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.446663, 39.910021 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "15071", "stop_name": "Baltimore Pk & Granite Farms Estates - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.449755, 39.908361 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "30676", "stop_name": "Baltimore Pk & Valley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.453837, 39.905968 ] } }, +{ "type": "Feature", "properties": { "route_id": "114", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Wawa Station", "stop_id": "32632", "stop_name": "Wawa Railroad Station", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.460055, 39.901656 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.6, "percent_change": -0.11, "expected_wait_time_difference": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.2, "percent_change": -0.25, "expected_wait_time_difference": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.2, "percent_change": -0.05, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.4, "percent_change": 0.05, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.8, "percent_change": 0.06, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.8, "percent_change": 0.19, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.0, "percent_change": -0.04, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.8, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.8, "percent_change": 0.07, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 0.8, "percent_change": -0.33, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.8, "percent_change": -0.6, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 1.8, "percent_change": -0.18, "expected_wait_time_difference": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.4, "percent_change": -0.15, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.4, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.6, "percent_change": -0.15, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.6, "percent_change": 0.05, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.6, "percent_change": 0.08, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.4, "percent_change": 0.04, "expected_wait_time_difference": -0.6 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.2, "percent_change": 0.18, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.6, "percent_change": 0.1, "expected_wait_time_difference": -1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 3.0, "percent_change": 0.36, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.8, "percent_change": 0.09, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 6.8, "percent_change": -0.31, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.0, "percent_change": -0.29, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.4, "percent_change": -0.33, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.4, "percent_change": -0.33, "expected_wait_time_difference": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.6, "percent_change": -0.31, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.8, "percent_change": -0.2, "expected_wait_time_difference": 3.9 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.6, "percent_change": -0.21, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.4, "percent_change": -0.24, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.2, "percent_change": -0.25, "expected_wait_time_difference": 5.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.0, "percent_change": -0.27, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 6.8, "percent_change": -0.29, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.8, "percent_change": -0.5, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.8, "percent_change": -0.5, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.8, "percent_change": -0.5, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.8, "percent_change": -0.5, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.8, "percent_change": -0.5, "expected_wait_time_difference": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.6, "percent_change": -0.52, "expected_wait_time_difference": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.6, "percent_change": -0.52, "expected_wait_time_difference": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.6, "percent_change": -0.52, "expected_wait_time_difference": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.4, "percent_change": -0.54, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.4, "percent_change": -0.54, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.4, "percent_change": -0.54, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.4, "percent_change": -0.54, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.4, "percent_change": -0.54, "expected_wait_time_difference": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 4.6, "percent_change": -0.52, "expected_wait_time_difference": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.0, "percent_change": -0.38, "expected_wait_time_difference": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 1.4, "percent_change": -0.61, "expected_wait_time_difference": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 1.6, "percent_change": -0.64, "expected_wait_time_difference": 59.7 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 2.6, "percent_change": -0.5, "expected_wait_time_difference": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 2.6, "percent_change": -0.5, "expected_wait_time_difference": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 2.8, "percent_change": -0.46, "expected_wait_time_difference": 24.7 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 3.0, "percent_change": -0.42, "expected_wait_time_difference": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 5.4, "percent_change": -0.39, "expected_wait_time_difference": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.8, "percent_change": -0.28, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.6, "percent_change": -0.19, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.6, "percent_change": -0.17, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 10.2, "arrivals_during_cuts": 7.6, "percent_change": -0.25, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 9.8, "arrivals_during_cuts": 7.6, "percent_change": -0.22, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 10.0, "arrivals_during_cuts": 7.6, "percent_change": -0.24, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 9.6, "arrivals_during_cuts": 7.4, "percent_change": -0.23, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.4, "percent_change": -0.21, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.8, "percent_change": -0.49, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.8, "percent_change": -0.49, "expected_wait_time_difference": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 4.4, "percent_change": -0.53, "expected_wait_time_difference": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 5.0, "percent_change": -0.47, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.4, "percent_change": -0.32, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 6.6, "percent_change": -0.3, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.6, "percent_change": -0.28, "expected_wait_time_difference": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.6, "percent_change": -0.27, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 6.8, "percent_change": -0.23, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 6.8, "percent_change": -0.24, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 6.8, "percent_change": -0.26, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.0, "percent_change": -0.26, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 9.4, "arrivals_during_cuts": 7.2, "percent_change": -0.23, "expected_wait_time_difference": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 9.2, "arrivals_during_cuts": 7.4, "percent_change": -0.2, "expected_wait_time_difference": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 8.8, "arrivals_during_cuts": 7.2, "percent_change": -0.18, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.2, "percent_change": -0.2, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 9.0, "arrivals_during_cuts": 7.0, "percent_change": -0.22, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.4, "percent_change": -0.21, "expected_wait_time_difference": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.4, "percent_change": 0.13, "expected_wait_time_difference": -3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.6, "percent_change": 0.12, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 6.4, "percent_change": -0.22, "expected_wait_time_difference": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.0, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.2, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.6, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.4, "percent_change": -0.05, "expected_wait_time_difference": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.2, "percent_change": -0.08, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 7.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.8, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.6, "percent_change": -0.08, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 6.4, "percent_change": -0.11, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.6, "percent_change": -0.24, "expected_wait_time_difference": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.8, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 4.2, "percent_change": -0.22, "expected_wait_time_difference": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.6, "percent_change": -0.18, "expected_wait_time_difference": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 6.2, "percent_change": -0.06, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.6, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.6, "percent_change": -0.06, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.8, "percent_change": -0.03, "expected_wait_time_difference": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 6.4, "arrivals_during_cuts": 6.8, "percent_change": 0.06, "expected_wait_time_difference": -1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 6.2, "arrivals_during_cuts": 7.0, "percent_change": 0.13, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 6.6, "arrivals_during_cuts": 7.0, "percent_change": 0.06, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.2, "percent_change": 0.03, "expected_wait_time_difference": -0.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 6.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 7.4, "percent_change": 0.06, "expected_wait_time_difference": -0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 7.8, "percent_change": 0.15, "expected_wait_time_difference": -2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 6.8, "arrivals_during_cuts": 8.0, "percent_change": 0.18, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 8.0, "percent_change": 0.14, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 7.2, "arrivals_during_cuts": 8.0, "percent_change": 0.11, "expected_wait_time_difference": -1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.4, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 7.0, "percent_change": -0.05, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 7.6, "arrivals_during_cuts": 7.0, "percent_change": -0.08, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 7.0, "percent_change": -0.1, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.8, "percent_change": -0.13, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 7.8, "arrivals_during_cuts": 6.4, "percent_change": -0.18, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 6.4, "percent_change": -0.2, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.0, "percent_change": -0.12, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.2, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.2, "percent_change": -0.1, "expected_wait_time_difference": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 1.6, "percent_change": -0.64, "expected_wait_time_difference": 47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 2.4, "percent_change": -0.45, "expected_wait_time_difference": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 3.6, "percent_change": -0.18, "expected_wait_time_difference": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 6.0, "percent_change": 0.11, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 7.8, "percent_change": -0.03, "expected_wait_time_difference": 0.4 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.8, "percent_change": -0.17, "expected_wait_time_difference": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 7.4, "arrivals_during_cuts": 5.8, "percent_change": -0.22, "expected_wait_time_difference": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.4, "percent_change": -0.32, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.4, "percent_change": -0.32, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.4, "percent_change": -0.32, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.4, "percent_change": -0.32, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.4, "percent_change": -0.32, "expected_wait_time_difference": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 8.0, "arrivals_during_cuts": 5.8, "percent_change": -0.28, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 8.2, "arrivals_during_cuts": 5.8, "percent_change": -0.29, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 5.8, "percent_change": -0.33, "expected_wait_time_difference": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.0, "percent_change": -0.3, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 8.6, "arrivals_during_cuts": 6.2, "percent_change": -0.28, "expected_wait_time_difference": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.6, "percent_change": 0.21, "expected_wait_time_difference": -6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 2.8, "percent_change": -0.18, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.0, "percent_change": -0.12, "expected_wait_time_difference": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.2, "percent_change": -0.09, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.8, "percent_change": -0.08, "expected_wait_time_difference": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 5.6, "arrivals_during_cuts": 4.8, "percent_change": -0.14, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 5.8, "arrivals_during_cuts": 4.8, "percent_change": -0.17, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.8, "percent_change": -0.2, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.4, "percent_change": -0.1, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.2, "percent_change": 0.38, "expected_wait_time_difference": -25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.6, "percent_change": 0.44, "expected_wait_time_difference": -25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.8, "percent_change": 0.56, "expected_wait_time_difference": -29.8 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.8, "percent_change": -0.03, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -210.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25751", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.365948, 39.858012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25752", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.364556, 39.858582 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30010", "stop_name": "15th & Esrey St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.363376, 39.859072 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25754", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.361773, 39.858438 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19954", "stop_name": "Edgemont Av & 12th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.361126, 39.856233 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19955", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360903, 39.855091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19957", "stop_name": "Edgmont Av & 9th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360764, 39.852868 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.0, "percent_change": -0.75, "expected_wait_time_difference": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25186", "stop_name": "9th St & Townsend S - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.390147, 39.839298 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25188", "stop_name": "9th St & Ward St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.391975, 39.838237 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25189", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.392859, 39.837603 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25193", "stop_name": "9th St & Highland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.394935, 39.83606 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25194", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.396161, 39.836944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25196", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.39741, 39.837953 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25197", "stop_name": "Highland Av & Swartz St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.398919, 39.839202 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2192", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.399909, 39.840059 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25756", "stop_name": "Bethel Rd & Highland Av - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.401794, 39.843014 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31890", "stop_name": "Bethel Rd & Honan St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.399106, 39.843656 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25758", "stop_name": "Bethel Rd & Felton St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.397785, 39.844387 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30011", "stop_name": "Bethal Rd & Townsend St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.394648, 39.84485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30012", "stop_name": "Concord Rd & Engle St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.395225, 39.845725 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.0, "percent_change": -0.71, "expected_wait_time_difference": 64.3 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30328", "stop_name": "McDonald Blvd & Commerce Dr - 1", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.0, "percent_change": -0.67, "expected_wait_time_difference": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404527, 39.851198 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 1.5, "percent_change": -0.57, "expected_wait_time_difference": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.5, "percent_change": 0.67, "expected_wait_time_difference": -24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.0, "percent_change": 1.0, "expected_wait_time_difference": -30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.0, "percent_change": -0.29, "expected_wait_time_difference": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 7.5, "arrivals_during_cuts": 6.0, "percent_change": -0.2, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25751", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.365948, 39.858012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25752", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.364556, 39.858582 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30010", "stop_name": "15th & Esrey St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.363376, 39.859072 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25754", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361773, 39.858438 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19954", "stop_name": "Edgemont Av & 12th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361126, 39.856233 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19955", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360903, 39.855091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19957", "stop_name": "Edgmont Av & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360764, 39.852868 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.0, "percent_change": -0.71, "expected_wait_time_difference": 53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 2.0, "percent_change": -0.6, "expected_wait_time_difference": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.0, "percent_change": -0.71, "expected_wait_time_difference": 53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25186", "stop_name": "9th St & Townsend S - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.390147, 39.839298 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25188", "stop_name": "9th St & Ward St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.391975, 39.838237 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25189", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.392859, 39.837603 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25193", "stop_name": "9th St & Highland Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.394935, 39.83606 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25194", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.396161, 39.836944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25196", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.39741, 39.837953 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25197", "stop_name": "Highland Av & Swartz St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.398919, 39.839202 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2192", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.399909, 39.840059 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25756", "stop_name": "Bethel Rd & Highland Av - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.401794, 39.843014 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31890", "stop_name": "Bethel Rd & Honan St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.399106, 39.843656 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25758", "stop_name": "Bethel Rd & Felton St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.397785, 39.844387 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30011", "stop_name": "Bethal Rd & Townsend St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.394648, 39.84485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30012", "stop_name": "Concord Rd & Engle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.395225, 39.845725 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30328", "stop_name": "McDonald Blvd & Commerce Dr - 1", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.404527, 39.851198 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.0, "percent_change": -0.43, "expected_wait_time_difference": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.5, "percent_change": 0.1, "expected_wait_time_difference": -2.7 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.5, "percent_change": -0.44, "expected_wait_time_difference": 26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 5.5, "percent_change": -0.21, "expected_wait_time_difference": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 6.0, "percent_change": 0.2, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.5, "percent_change": -0.07, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 6.0, "percent_change": -0.14, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 6.0, "percent_change": -0.08, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 5.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 5.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 5.5, "percent_change": -0.08, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25751", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365948, 39.858012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25752", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364556, 39.858582 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30010", "stop_name": "15th & Esrey St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363376, 39.859072 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25754", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361773, 39.858438 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19954", "stop_name": "Edgemont Av & 12th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361126, 39.856233 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19955", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360903, 39.855091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19957", "stop_name": "Edgmont Av & 9th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360764, 39.852868 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.0, "percent_change": -0.64, "expected_wait_time_difference": 38.2 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 2.0, "percent_change": -0.56, "expected_wait_time_difference": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.0, "percent_change": -0.64, "expected_wait_time_difference": 38.2 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 2.0, "percent_change": -0.64, "expected_wait_time_difference": 38.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25186", "stop_name": "9th St & Townsend S - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.390147, 39.839298 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25188", "stop_name": "9th St & Ward St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.391975, 39.838237 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25189", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.392859, 39.837603 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25193", "stop_name": "9th St & Highland Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.394935, 39.83606 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25194", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.396161, 39.836944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25196", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.39741, 39.837953 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25197", "stop_name": "Highland Av & Swartz St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.398919, 39.839202 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2192", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.0, "percent_change": -0.69, "expected_wait_time_difference": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.399909, 39.840059 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25756", "stop_name": "Bethel Rd & Highland Av - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401794, 39.843014 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31890", "stop_name": "Bethel Rd & Honan St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399106, 39.843656 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25758", "stop_name": "Bethel Rd & Felton St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397785, 39.844387 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30011", "stop_name": "Bethal Rd & Townsend St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394648, 39.84485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30012", "stop_name": "Concord Rd & Engle St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395225, 39.845725 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30328", "stop_name": "McDonald Blvd & Commerce Dr - 1", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 2.0, "percent_change": -0.67, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404527, 39.851198 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.0, "percent_change": -0.5, "expected_wait_time_difference": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 3.5, "percent_change": -0.36, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.0, "percent_change": -0.27, "expected_wait_time_difference": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 5.5, "arrivals_during_cuts": 4.5, "percent_change": -0.18, "expected_wait_time_difference": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.5, "percent_change": -0.25, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 6.0, "arrivals_during_cuts": 4.0, "percent_change": -0.33, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.0, "percent_change": -0.38, "expected_wait_time_difference": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.0, "percent_change": -0.33, "expected_wait_time_difference": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.5, "percent_change": -0.46, "expected_wait_time_difference": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29919", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.44342, 39.923159 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15067", "stop_name": "Middletown Rd & Juv Det Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.443254, 39.922177 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15068", "stop_name": "Middletown Rd & Old Forge Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.442923, 39.919616 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "15152", "stop_name": "Middletown Rd & Bonsall Dr - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.91792 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32522", "stop_name": "Baltimore Pk & Pennell Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.438555, 39.91253 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25284", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.434283, 39.913663 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32521", "stop_name": "Riddle Hospital", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.433823, 39.91378 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "18984", "stop_name": "Baltimore Pk & New Middletown Rd - MBNS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.426198, 39.914859 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "20026", "stop_name": "Baltimore Pk & School Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.415587, 39.916331 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2062", "stop_name": "Old Baltimore Pk & School Ln - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.41541, 39.914876 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29809", "stop_name": "Old Baltimore Pk & School Ln - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.91526 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32398", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913564 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30493", "stop_name": "Hadley Rd & Garret Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.410584, 39.911877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25688", "stop_name": "Middletown Rd & Glen Riddle Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.41507, 39.904729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25691", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.408215, 39.898543 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25692", "stop_name": "Middletown Rd & Copes Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.405113, 39.894223 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25693", "stop_name": "Middletown Rd & Old Middletown Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.403263, 39.888806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25694", "stop_name": "Middletown Rd & Knowlton Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.402732, 39.887494 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31896", "stop_name": "Middletown Rd & Moore Dr - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.40153, 39.885218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30024", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.39949, 39.88187 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30022", "stop_name": "Edgmont Av & Whitely Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.395753, 39.877264 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25699", "stop_name": "Edgmont Av & Cobourn Blvd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.393123, 39.875077 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25701", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.391095, 39.873747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25702", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389385, 39.873086 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2159", "stop_name": "Edgmont Av & Brookhaven Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.388382, 39.872648 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25714", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.39, 39.870623 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25715", "stop_name": "Brookhaven Rd & Woodland Av - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.391251, 39.869659 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25717", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.39275, 39.867759 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25718", "stop_name": "Brookhaven Rd & Bridgewater Rd - MBFS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.394344, 39.86261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25719", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.392718, 39.859959 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25720", "stop_name": "Bridgewater Rd & Powell Rd - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.389653, 39.858485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25721", "stop_name": "6th St & Patton Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.386976, 39.857235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30017", "stop_name": "6th St & Vista Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.385455, 39.856512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25723", "stop_name": "6th St & Main St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382567, 39.855556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31709", "stop_name": "Main St & 11th St - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.381879, 39.860839 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31710", "stop_name": "Upland Rd & Victor Av - FS", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.381972, 39.863025 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31711", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382053, 39.865747 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31712", "stop_name": "Upland Rd & Edgmont Av", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 4.5, "percent_change": -0.31, "expected_wait_time_difference": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.382169, 39.868746 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25734", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.380635, 39.868487 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25735", "stop_name": "Edgmont Av & Forrestview Rd - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.379716, 39.868102 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25737", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.377864, 39.867307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25740", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.375223, 39.866155 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25742", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.373054, 39.86519 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25743", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.371309, 39.864493 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25744", "stop_name": "Edgmont Av & 22nd St - MBNS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.369292, 39.863921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31893", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.369742, 39.862029 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25748", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.370427, 39.860807 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31154", "stop_name": "Upland Av & 22nd St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 4.5, "percent_change": -0.36, "expected_wait_time_difference": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.371326, 39.857604 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25751", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.365948, 39.858012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25752", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.364556, 39.858582 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30010", "stop_name": "15th & Esrey St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.363376, 39.859072 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25754", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361773, 39.858438 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19954", "stop_name": "Edgemont Av & 12th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.361126, 39.856233 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19955", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360903, 39.855091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19957", "stop_name": "Edgmont Av & 9th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360764, 39.852868 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.0, "percent_change": -0.54, "expected_wait_time_difference": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.0, "percent_change": -0.54, "expected_wait_time_difference": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.0, "percent_change": -0.54, "expected_wait_time_difference": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30355", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 3.0, "percent_change": -0.54, "expected_wait_time_difference": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.363182, 39.851745 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25166", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.367594, 39.849936 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25167", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.369222, 39.849249 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31883", "stop_name": "9th & Parker St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.37026, 39.848813 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25168", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.371227, 39.848429 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29951", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.37249, 39.84801 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31882", "stop_name": "9th & Lincoln St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.373693, 39.847556 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25171", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.375356, 39.846976 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25173", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.376347, 39.846504 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31886", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.377373, 39.84596 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25177", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.378352, 39.845416 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "32305", "stop_name": "9th St & Carlas Ln", "arrivals_before_cuts": 6.5, "arrivals_during_cuts": 2.5, "percent_change": -0.62, "expected_wait_time_difference": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.380369, 39.844382 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25179", "stop_name": "9th St & Tilghman St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.381372, 39.843855 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25180", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.382351, 39.843365 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25181", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.383436, 39.842776 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25183", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.386632, 39.841144 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25185", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.38879, 39.840012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25186", "stop_name": "9th St & Townsend S - FS", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.390147, 39.839298 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25188", "stop_name": "9th St & Ward St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.391975, 39.838237 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25189", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.392859, 39.837603 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25193", "stop_name": "9th St & Highland Av", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.394935, 39.83606 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25194", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.396161, 39.836944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25196", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.39741, 39.837953 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25197", "stop_name": "Highland Av & Swartz St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.398919, 39.839202 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2192", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 7.0, "arrivals_during_cuts": 2.5, "percent_change": -0.64, "expected_wait_time_difference": 38.6 }, "geometry": { "type": "Point", "coordinates": [ -75.399909, 39.840059 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25756", "stop_name": "Bethel Rd & Highland Av - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.401794, 39.843014 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31890", "stop_name": "Bethel Rd & Honan St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.399106, 39.843656 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25758", "stop_name": "Bethel Rd & Felton St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.397785, 39.844387 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30011", "stop_name": "Bethal Rd & Townsend St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.394648, 39.84485 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30012", "stop_name": "Concord Rd & Engle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395225, 39.845725 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "25246", "stop_name": "Concord Rd & Green St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.396947, 39.846101 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30356", "stop_name": "Concord Rd & Incinerator Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.40086, 39.848877 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31011", "stop_name": "Concord Rd & Incinerator Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.401461, 39.850091 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30328", "stop_name": "McDonald Blvd & Commerce Dr - 1", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 1.5, "percent_change": -0.62, "expected_wait_time_difference": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.404527, 39.851198 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 1.5, "percent_change": -0.5, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "I-95 Industrial Park", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 3.0, "percent_change": 0.5, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2215", "stop_name": "MacDonald Blvd & Commerce Dr - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.40987, 39.848665 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31889", "stop_name": "Commerce Dr & McDonald Blvd - 1 MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.409351, 39.847674 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29929", "stop_name": "Commerce Dr & McDonald Blvd - 2 MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.407759, 39.846826 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30593", "stop_name": "Commerce Dr & McDonald Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.405165, 39.848093 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25320", "stop_name": "Commerce Dr & MacDonald Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.404409, 39.850948 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29938", "stop_name": "Concord Rd & Incinerator Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.401886, 39.851037 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25323", "stop_name": "Concord Rd & Green St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.396841, 39.845895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30013", "stop_name": "Bethel Rd & Townsend St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.394742, 39.844984 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25602", "stop_name": "Bethel Rd & Felton Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.398068, 39.844369 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25603", "stop_name": "Bethel Rd & Honan St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.399259, 39.843718 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25604", "stop_name": "Bethel Rd & Highland Av - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.4019, 39.84313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25605", "stop_name": "Highland Av & 15th St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.400251, 39.839997 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25606", "stop_name": "Highland Av & Swartz St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.399119, 39.839158 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31559", "stop_name": "Highland Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.397752, 39.838015 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25609", "stop_name": "Highland Av & 10th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.396468, 39.83698 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2217", "stop_name": "9th St & Highland Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.394617, 39.836122 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25611", "stop_name": "9th St & Wilson St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.393084, 39.837238 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31891", "stop_name": "9th St & Ward St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.391774, 39.838174 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25614", "stop_name": "9th St & Townsend St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389911, 39.839245 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25615", "stop_name": "9th St & Engle St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.388838, 39.839806 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25331", "stop_name": "9th St & Yarnall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.386703, 39.840921 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25333", "stop_name": "9th St & Edwards St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.383507, 39.842571 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25334", "stop_name": "9th St & Central Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382445, 39.843133 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25335", "stop_name": "9th St & Tilghman St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380841, 39.84398 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25336", "stop_name": "9th St & Lamokin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.378435, 39.845193 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31887", "stop_name": "9th St & Pennell St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.377444, 39.845764 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25338", "stop_name": "9th St & Lloyd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 2.5, "percent_change": -0.38, "expected_wait_time_difference": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.376417, 39.846308 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31885", "stop_name": "9th St & Pusey St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37545, 39.846798 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25340", "stop_name": "9th St & Lincoln St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.373775, 39.847386 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25341", "stop_name": "9th St & Butler St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372608, 39.847805 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25342", "stop_name": "9th St & Kerlin St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.37144, 39.848215 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31884", "stop_name": "9th St & Parker St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370355, 39.848634 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25344", "stop_name": "9th St & Fulton St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.369328, 39.849071 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25345", "stop_name": "9th St & Barclay St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.367665, 39.849748 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25347", "stop_name": "9th St & Sproul St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.363289, 39.851522 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25616", "stop_name": "Av of the States & 8th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360776, 39.85219 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32464", "stop_name": "Welsh St & Wall St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850512 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "14785", "stop_name": "Chester Transit Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -75.359965, 39.849209 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30383", "stop_name": "Av of the States & 4th St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.359708, 39.847593 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "24871", "stop_name": "4th St & Welsh St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.35841, 39.848012 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19959", "stop_name": "Welsh St & 7th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360365, 39.850699 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30393", "stop_name": "Av of the States & 8th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360599, 39.852261 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19960", "stop_name": "Edgmont Av & 9th St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.36061, 39.8531 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19962", "stop_name": "Edgmont Av & 11th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.360726, 39.854841 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "19963", "stop_name": "Edgmont Av & 12th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.361008, 39.856581 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25619", "stop_name": "Edgmont Av & 14th St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.361502, 39.858214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30014", "stop_name": "15th & Esprey St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.363258, 39.859242 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25621", "stop_name": "15th St & Arbor Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.364461, 39.858743 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25622", "stop_name": "15th St & Shaw Terrace", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.365853, 39.858181 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31892", "stop_name": "15th St & Upland Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.367647, 39.857361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25624", "stop_name": "Upland Av & 22nd St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.371302, 39.857729 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25643", "stop_name": "22nd St & Wetherill St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.370345, 39.860548 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25644", "stop_name": "22nd St & Crozer St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.369671, 39.861842 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30020", "stop_name": "Edgmont Av & 22nd St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.5, "percent_change": -0.12, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.369021, 39.863992 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25648", "stop_name": "Edgmont Av & 24th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.370967, 39.864511 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25650", "stop_name": "Edgmont Av & Elkington Blvd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.372806, 39.865244 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25652", "stop_name": "Edgmont Av & Avon Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.375046, 39.866235 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25654", "stop_name": "Edgmont Av & Roland Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.376697, 39.866977 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31931", "stop_name": "Edgmont Av & Chelton Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.377617, 39.867361 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25657", "stop_name": "Edgmont Av & Forrestview Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.0, "percent_change": -0.33, "expected_wait_time_difference": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.379657, 39.868218 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31932", "stop_name": "Edgmont Av & Garrison Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.380494, 39.868567 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31704", "stop_name": "Upland Rd & Edgmont Av - FS", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382357, 39.868612 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31705", "stop_name": "Upland Rd & Arlington Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 3.5, "percent_change": -0.22, "expected_wait_time_difference": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382277, 39.865944 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31706", "stop_name": "Upland Rd & Victor Av", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382161, 39.862865 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31707", "stop_name": "Main St & 11th St", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.382044, 39.860741 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31708", "stop_name": "Main St & 6th St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.382413, 39.855788 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30018", "stop_name": "6th St & Vista Ln - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.385526, 39.856708 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31895", "stop_name": "6th St & Patton St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.386799, 39.857307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30354", "stop_name": "Bridgewater Rd & Trimble Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.390348, 39.858941 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31894", "stop_name": "Bridgewater Rd & Albert Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.392518, 39.859986 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30019", "stop_name": "Bridgewater Rd & Brookhaven Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.394156, 39.862583 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25638", "stop_name": "Brookhaven Rd & Gray St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.39288, 39.867143 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25640", "stop_name": "Brookhaven Rd & Woodland Av - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.391262, 39.869383 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25641", "stop_name": "Brookhaven Rd & Mt Vernon Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.390059, 39.870391 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25642", "stop_name": "Brookhaven Rd & Burk Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.388654, 39.871818 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25663", "stop_name": "Edgmont Av & Ridge Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.389149, 39.87313 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25664", "stop_name": "Edgmont Av & Maple Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.3908, 39.873782 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25666", "stop_name": "Edgmont Av & Cambridge Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.393807, 39.875854 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25667", "stop_name": "Edgmont Av & Whiteley Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395057, 39.876889 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2148", "stop_name": "Plaza 352 Shopping Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.395492, 39.879165 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32427", "stop_name": "Edgmont Av & Hilltop Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.397958, 39.879701 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25669", "stop_name": "Middletown Rd & High Meadow Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.399207, 39.881772 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25670", "stop_name": "Middletown Rd & Little Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.401377, 39.885307 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25671", "stop_name": "Middletown Rd & Knowlton Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.402555, 39.887636 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "30023", "stop_name": "Middletown & Copes Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.405255, 39.895214 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25674", "stop_name": "Middletown Rd & Wyncroft Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.408333, 39.8989 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25678", "stop_name": "Middletown Rd & Elwyn Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.415813, 39.905773 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2218", "stop_name": "Elwyn Train Station", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.411269, 39.907897 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32401", "stop_name": "Hadley Rd & Crozer Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.411209, 39.913341 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32399", "stop_name": "Old Baltimore Pk & School Ln - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.412802, 39.915278 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "2054", "stop_name": "Old Baltimore Pk & School Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.415422, 39.914975 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29800", "stop_name": "Baltimore Pk & Middletown Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.427142, 39.914895 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "32520", "stop_name": "Baltimore Pk & Granite Run Rd", "arrivals_before_cuts": 4.5, "arrivals_during_cuts": 4.0, "percent_change": -0.11, "expected_wait_time_difference": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -75.43001, 39.914476 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "25290", "stop_name": "Baltimore Pk & Granite Run Dr - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.433917, 39.913958 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "31525", "stop_name": "Pennell Rd & Baltimore Pk - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.439688, 39.912914 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "10610", "stop_name": "Middletown Rd & Bonsall Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 3.5, "percent_change": -0.3, "expected_wait_time_difference": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.440999, 39.918063 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15069", "stop_name": "Fair Acres - onsite", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.444729, 39.917732 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29918", "stop_name": "Middletown Rd & Old Forge Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.0, "percent_change": 2.0, "expected_wait_time_difference": -100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.442782, 39.919821 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29803", "stop_name": "Middletown Rd & Delco Juvenile Det", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.5, "percent_change": 2.5, "expected_wait_time_difference": -107.1 }, "geometry": { "type": "Point", "coordinates": [ -75.443018, 39.921829 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "15065", "stop_name": "Middletown Rd & Yearsley Mill Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 3.5, "percent_change": 1.33, "expected_wait_time_difference": -57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.443266, 39.923212 ] } }, +{ "type": "Feature", "properties": { "route_id": "117", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Penn State", "stop_id": "29921", "stop_name": "Penn State University", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.447234, 39.928388 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.8, "percent_change": -0.2, "expected_wait_time_difference": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -11.7 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.6, "percent_change": -0.05, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 3.4, "percent_change": -0.06, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.2, "percent_change": 0.07, "expected_wait_time_difference": -3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.2, "percent_change": 0.2, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -42.9 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -42.9 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -42.9 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.4, "percent_change": 0.4, "expected_wait_time_difference": -42.9 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.6, "percent_change": 0.6, "expected_wait_time_difference": -56.2 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.8, "percent_change": 0.8, "expected_wait_time_difference": -66.7 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 1.8, "percent_change": 0.5, "expected_wait_time_difference": -41.7 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 2.0, "percent_change": 0.67, "expected_wait_time_difference": -50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -32.1 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 2.0, "percent_change": 0.25, "expected_wait_time_difference": -18.8 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 1.6, "arrivals_during_cuts": 1.8, "percent_change": 0.12, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32275", "stop_name": "Neshaminy Blvd & Rockhill Rd - 2 MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953084, 40.136309 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31545", "stop_name": "Woodbourne Rd & Lincoln Hwy - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884694, 40.175832 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28119", "stop_name": "Woodbourne Rd & Harmony Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879455, 40.170159 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28121", "stop_name": "Woodbourne Rd & Trenton Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877537, 40.1685 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28122", "stop_name": "Woodbourne Rd & Brist Oxf Val Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874161, 40.165423 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29661", "stop_name": "Woodbourne Rd & Wister Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871623, 40.162841 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28124", "stop_name": "Woodbourne Rd & Cobalt Ridge Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.868427, 40.159605 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28126", "stop_name": "Woodbourne Rd & Quincy Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862151, 40.156479 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "15262", "stop_name": "New Falls Rd & Edgley Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855145, 40.154377 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28128", "stop_name": "New Falls Rd & Red Cedar Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852033, 40.156915 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28130", "stop_name": "New Falls Rd & Wistar Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847789, 40.160431 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28131", "stop_name": "New Falls Rd & Appletree Pl", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.845344, 40.162472 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27988", "stop_name": "Levittown Pkwy & New Falls Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841296, 40.165087 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27989", "stop_name": "Levittown Pkwy & Holly Turn", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.839265, 40.164283 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27991", "stop_name": "Levittown Pkwy & Crabtree Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.833143, 40.161246 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32008", "stop_name": "Levittown Pkwy & Willowood Gate", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.832089, 40.159866 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32009", "stop_name": "Levittown Pkwy & Willowood Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830027, 40.157107 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31245", "stop_name": "Levittown Pkwy & Mill Creek Pkwy", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828856, 40.155549 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32010", "stop_name": "Levittown Pkwy & Penn Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.828025, 40.15442 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27996", "stop_name": "Levittown Pkwy & Sexton Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.825953, 40.151581 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27998", "stop_name": "Levittown Pkwy & Spur Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.823049, 40.147657 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "27999", "stop_name": "Levittown Pkwy & Lakeside Dr - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.821306, 40.145203 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28000", "stop_name": "Levittown Town Ctr & Walmart", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.820629, 40.14262 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "32483", "stop_name": "Levittown Station", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.5, "percent_change": 0.5, "expected_wait_time_difference": -40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.817024, 40.14046 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30862", "stop_name": "Bristol Pk & Haines Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.830362, 40.132714 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28141", "stop_name": "Bristol Pk & Edgley Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.834477, 40.128985 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28143", "stop_name": "Bristol Pk & Airport Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840113, 40.123201 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28144", "stop_name": "Bristol Pk & I276", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.842011, 40.121264 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31840", "stop_name": "Green Ln & Bristol Pk - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.844152, 40.118507 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28146", "stop_name": "Green Ln & Wilson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.840509, 40.113902 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28149", "stop_name": "Green Ln & Farragut Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837827, 40.110409 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29662", "stop_name": "Radcliffe St & Seabird Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.837523, 40.108622 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29663", "stop_name": "Radcliffe St & Monroe St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.841593, 40.10433 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31838", "stop_name": "Monroe St & Farragut Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.843694, 40.105045 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28155", "stop_name": "Pond St & Lincoln St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847934, 40.103181 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28156", "stop_name": "Pond St & Jefferson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.849289, 40.102465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28157", "stop_name": "Jefferson Av & Wood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848319, 40.100952 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28158", "stop_name": "Jefferson Av & Radcliffe St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.847135, 40.099616 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "29664", "stop_name": "Radcliffe St & Dorrance St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.850106, 40.098015 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28161", "stop_name": "Radcliffe St & Walnut St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853136, 40.096422 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "31505", "stop_name": "Radcliffe St & Mulberry St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854063, 40.095935 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30707", "stop_name": "Market St & Wood St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857339, 40.096245 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1769", "stop_name": "Lower Bucks Hospital", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86676, 40.106436 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28176", "stop_name": "Old Orchard Rd & Fayette Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869859, 40.108226 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "128", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Neshaminy Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 1.0, "percent_change": 0.25, "expected_wait_time_difference": -52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 175.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 0.6, "arrivals_during_cuts": 0.4, "percent_change": -0.33, "expected_wait_time_difference": 175.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31607", "stop_name": "Rittenhouse Circle 200", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.886261, 40.11459 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31608", "stop_name": "Rittenhouse Circle 180", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.886197, 40.116785 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28459", "stop_name": "Rittenhouse Cr & Wharton Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884481, 40.11826 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31764", "stop_name": "Frost Rd & Ford Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894202, 40.117873 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31766", "stop_name": "Frost Rd & Sinclair Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894839, 40.116528 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32026", "stop_name": "Frost Rd & Crossings Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.897618, 40.115379 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32028", "stop_name": "Crossings Dr & Newportville Rd - 1 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.900262, 40.113159 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32029", "stop_name": "Crossings Dr & Newportville Rd - 2 MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89928, 40.111423 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31447", "stop_name": "Newportville Rd & Ford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.902063, 40.114505 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28471", "stop_name": "Newportville Rd & Hazel Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.902562, 40.117444 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28492", "stop_name": "Adams Rd & Ford Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920679, 40.106406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32035", "stop_name": "Adams Rd & Adams Cr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923006, 40.108736 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28494", "stop_name": "Adams Rd & Byberry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.926665, 40.110117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 0.4, "arrivals_during_cuts": 0.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17061", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958003, 40.09768 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "23370", "stop_name": "Knights Rd & Lakewood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956097, 40.099654 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21129", "stop_name": "Knights Rd & Street Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 2.0, "percent_change": 1.0, "expected_wait_time_difference": -105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.949975, 40.105522 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21130", "stop_name": "Knights Rd & Byberry Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.944898, 40.110804 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29632", "stop_name": "Byberry Rd & Knights Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.94328, 40.11028 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21131", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.936133, 40.108351 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29633", "stop_name": "Byberry Rd & Bridgewater Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.930655, 40.108231 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21132", "stop_name": "Byberry Rd & Adams Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.926855, 40.110028 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21134", "stop_name": "Adams Rd & Adams Cr", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.92316, 40.108612 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21135", "stop_name": "Adams Rd & Ford Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.920844, 40.106434 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29634", "stop_name": "Ford Rd & Bridgewater Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.926484, 40.10717 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "30711", "stop_name": "Ford Rd & Bridgewater Rd", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 2.0, "percent_change": 1.5, "expected_wait_time_difference": -157.5 }, "geometry": { "type": "Point", "coordinates": [ -74.928398, 40.107615 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.4, "percent_change": 0.09, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.8, "percent_change": -0.07, "expected_wait_time_difference": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31607", "stop_name": "Rittenhouse Circle 200", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.886261, 40.11459 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31608", "stop_name": "Rittenhouse Circle 180", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.886197, 40.116785 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28459", "stop_name": "Rittenhouse Cr & Wharton Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884481, 40.11826 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31764", "stop_name": "Frost Rd & Ford Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894202, 40.117873 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31766", "stop_name": "Frost Rd & Sinclair Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894839, 40.116528 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32026", "stop_name": "Frost Rd & Crossings Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.897618, 40.115379 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32028", "stop_name": "Crossings Dr & Newportville Rd - 1 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.900262, 40.113159 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32029", "stop_name": "Crossings Dr & Newportville Rd - 2 MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89928, 40.111423 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31447", "stop_name": "Newportville Rd & Ford Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.902063, 40.114505 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28492", "stop_name": "Adams Rd & Ford Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920679, 40.106406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32035", "stop_name": "Adams Rd & Adams Cr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.923006, 40.108736 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28494", "stop_name": "Adams Rd & Byberry Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.926665, 40.110117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.6, "percent_change": -0.07, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.6, "percent_change": -0.13, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.4, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.0, "percent_change": -0.23, "expected_wait_time_difference": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 5.4, "arrivals_during_cuts": 5.6, "percent_change": 0.04, "expected_wait_time_difference": -1.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 6.0, "percent_change": 0.15, "expected_wait_time_difference": -3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 5.8, "percent_change": 0.12, "expected_wait_time_difference": -3.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.8, "percent_change": 0.16, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.4, "percent_change": 0.08, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.2, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31607", "stop_name": "Rittenhouse Circle 200", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.886261, 40.11459 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31608", "stop_name": "Rittenhouse Circle 180", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.886197, 40.116785 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28459", "stop_name": "Rittenhouse Cr & Wharton Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.884481, 40.11826 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31764", "stop_name": "Frost Rd & Ford Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.894202, 40.117873 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31766", "stop_name": "Frost Rd & Sinclair Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.894839, 40.116528 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32026", "stop_name": "Frost Rd & Crossings Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.897618, 40.115379 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32028", "stop_name": "Crossings Dr & Newportville Rd - 1 MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.900262, 40.113159 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32029", "stop_name": "Crossings Dr & Newportville Rd - 2 MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.89928, 40.111423 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31447", "stop_name": "Newportville Rd & Ford Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.902063, 40.114505 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28492", "stop_name": "Adams Rd & Ford Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.920679, 40.106406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32035", "stop_name": "Adams Rd & Adams Cr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.923006, 40.108736 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28494", "stop_name": "Adams Rd & Byberry Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.926665, 40.110117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.2, "percent_change": 0.08, "expected_wait_time_difference": -2.4 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 5.0, "percent_change": 0.14, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.8, "percent_change": 0.2, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.8, "percent_change": 0.26, "expected_wait_time_difference": -8.2 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 5.0, "percent_change": 0.19, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.0, "percent_change": -0.06, "expected_wait_time_difference": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.2, "percent_change": -0.06, "expected_wait_time_difference": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.8, "percent_change": 0.12, "expected_wait_time_difference": -3.7 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31607", "stop_name": "Rittenhouse Circle 200", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.886261, 40.11459 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31608", "stop_name": "Rittenhouse Circle 180", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.886197, 40.116785 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28459", "stop_name": "Rittenhouse Cr & Wharton Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.884481, 40.11826 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -3.3 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31764", "stop_name": "Frost Rd & Ford Rd - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -74.894202, 40.117873 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31766", "stop_name": "Frost Rd & Sinclair Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -74.894839, 40.116528 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32026", "stop_name": "Frost Rd & Crossings Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -74.897618, 40.115379 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32028", "stop_name": "Crossings Dr & Newportville Rd - 1 MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -74.900262, 40.113159 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32029", "stop_name": "Crossings Dr & Newportville Rd - 2 MBNS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -5.3 }, "geometry": { "type": "Point", "coordinates": [ -74.89928, 40.111423 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31447", "stop_name": "Newportville Rd & Ford Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.902063, 40.114505 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 4.0, "percent_change": 0.25, "expected_wait_time_difference": -7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.8, "percent_change": 0.36, "expected_wait_time_difference": -11.3 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 4.0, "percent_change": 0.43, "expected_wait_time_difference": -12.9 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.8, "percent_change": 0.46, "expected_wait_time_difference": -14.6 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 3.8, "percent_change": 0.58, "expected_wait_time_difference": -18.4 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.6, "percent_change": 0.38, "expected_wait_time_difference": -12.8 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.4, "percent_change": 0.31, "expected_wait_time_difference": -10.9 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.2, "percent_change": 0.23, "expected_wait_time_difference": -8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28492", "stop_name": "Adams Rd & Ford Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.920679, 40.106406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32035", "stop_name": "Adams Rd & Adams Cr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.923006, 40.108736 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28494", "stop_name": "Adams Rd & Byberry Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.926665, 40.110117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.2, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 3.2, "arrivals_during_cuts": 3.4, "percent_change": 0.06, "expected_wait_time_difference": -2.2 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 3.6, "percent_change": 0.06, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 3.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 3.4, "arrivals_during_cuts": 4.0, "percent_change": 0.18, "expected_wait_time_difference": -6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 3.6, "arrivals_during_cuts": 4.0, "percent_change": 0.11, "expected_wait_time_difference": -4.2 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31607", "stop_name": "Rittenhouse Circle 200", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.886261, 40.11459 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31608", "stop_name": "Rittenhouse Circle 180", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.886197, 40.116785 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28459", "stop_name": "Rittenhouse Cr & Wharton Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884481, 40.11826 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31764", "stop_name": "Frost Rd & Ford Rd - FS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894202, 40.117873 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31766", "stop_name": "Frost Rd & Sinclair Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894839, 40.116528 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32026", "stop_name": "Frost Rd & Crossings Dr", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.897618, 40.115379 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32028", "stop_name": "Crossings Dr & Newportville Rd - 1 MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.900262, 40.113159 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32029", "stop_name": "Crossings Dr & Newportville Rd - 2 MBNS", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89928, 40.111423 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31447", "stop_name": "Newportville Rd & Ford Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.902063, 40.114505 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 3.8, "arrivals_during_cuts": 4.0, "percent_change": 0.05, "expected_wait_time_difference": -2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 4.2, "arrivals_during_cuts": 4.0, "percent_change": -0.05, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.0, "percent_change": -0.09, "expected_wait_time_difference": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.2, "percent_change": -0.09, "expected_wait_time_difference": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.2, "percent_change": -0.12, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.4, "percent_change": -0.08, "expected_wait_time_difference": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28492", "stop_name": "Adams Rd & Ford Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.920679, 40.106406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32035", "stop_name": "Adams Rd & Adams Cr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.923006, 40.108736 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28494", "stop_name": "Adams Rd & Byberry Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.926665, 40.110117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 5.0, "percent_change": 0.09, "expected_wait_time_difference": -2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -9.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28471", "stop_name": "Newportville Rd & Hazel Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.902562, 40.117444 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 2.0, "percent_change": 0.33, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.0, "percent_change": 0.14, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 4.5, "percent_change": 0.29, "expected_wait_time_difference": -9.5 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 4.0, "percent_change": 0.6, "expected_wait_time_difference": -22.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 4.0, "percent_change": 0.33, "expected_wait_time_difference": -10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.5, "percent_change": 0.17, "expected_wait_time_difference": -5.7 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 3.5, "percent_change": 0.4, "expected_wait_time_difference": -13.7 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 3.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17061", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.958003, 40.09768 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "23370", "stop_name": "Knights Rd & Lakewood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.956097, 40.099654 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21129", "stop_name": "Knights Rd & Street Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.949975, 40.105522 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21130", "stop_name": "Knights Rd & Byberry Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.944898, 40.110804 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29632", "stop_name": "Byberry Rd & Knights Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.94328, 40.11028 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21131", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.936133, 40.108351 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29633", "stop_name": "Byberry Rd & Bridgewater Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.930655, 40.108231 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21138", "stop_name": "Bridgewater Rd & Deerfield Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.928067, 40.105936 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21139", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.925996, 40.102554 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21141", "stop_name": "Bensalem Blvd & Roberts Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.919108, 40.099313 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21142", "stop_name": "Bensalem Blvd & Farley Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.914873, 40.105695 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28517", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.91321, 40.108214 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21143", "stop_name": "Bensalem Blvd & Mt Vernon Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.911559, 40.110662 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28520", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.909931, 40.113217 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21144", "stop_name": "Bensalem Blvd & Flushing Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.909069, 40.114579 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21145", "stop_name": "Bensalem Blvd & Gibson Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.905975, 40.120145 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "1789", "stop_name": "Bensalem Blvd & New Falls Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.904316, 40.123539 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32032", "stop_name": "Newportville Rd & Lower Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.900293, 40.123272 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21147", "stop_name": "Newportville Rd & Hazel Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.902703, 40.117543 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "31446", "stop_name": "Newportville Rd & Willow Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.902435, 40.115373 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21149", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.89115, 40.119235 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32037", "stop_name": "Ford Rd & Wharton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 3.5, "percent_change": 6.0, "expected_wait_time_difference": -205.7 }, "geometry": { "type": "Point", "coordinates": [ -74.885842, 40.121434 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28308", "stop_name": "Veterans Hwy & Rockview Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879163, 40.111042 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "1783", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871972, 40.101309 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28317", "stop_name": "Bath St & Howell St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862722, 40.10083 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28318", "stop_name": "Bath St & Mifflin St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861963, 40.099479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "1777", "stop_name": "Mill St & Old US 13", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.860068, 40.096739 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "30923", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858859, 40.097001 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "30924", "stop_name": "Pond St & Mulberry St - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85659, 40.098062 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21161", "stop_name": "Beaver St & Canal St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85586, 40.10062 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "1793", "stop_name": "Beaver St & Prospect St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855611, 40.103627 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21162", "stop_name": "Beaver St & Garden St - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855558, 40.104332 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21163", "stop_name": "Beaver St & 4th St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855043, 40.108043 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28536", "stop_name": "Beaver St & Bristol Pk", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854667, 40.110603 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "332", "stop_name": "Oxford Valley Mall & J C Penney", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.879904, 40.182604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25833", "stop_name": "Lincoln Hwy & Woodbourne Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884651, 40.176894 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29589", "stop_name": "Lincoln Hwy & Woodbourne Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.888248, 40.174303 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25832", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.892538, 40.170939 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28109", "stop_name": "Lincoln Hwy & Highland Pk Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895266, 40.168781 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32642", "stop_name": "Lincoln Hwy & I-95 - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904661, 40.163706 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1780", "stop_name": "Lincoln Hwy & Durham Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910503, 40.159973 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32016", "stop_name": "Durham Rd & E Monroe Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910725, 40.15884 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28406", "stop_name": "Durham Rd & Woodland Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908455, 40.15834 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28408", "stop_name": "Durham Rd & Claymont Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903873, 40.158133 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32437", "stop_name": "Durham Rd & Framer Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.898909, 40.156729 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32017", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.896927, 40.15407 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29817", "stop_name": "Durham Rd & Sandybrook Dr - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895163, 40.150849 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28411", "stop_name": "Durham Rd & Hollybrooke Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.894288, 40.149176 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28412", "stop_name": "Durham Rd & Frosty Hollow Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89216, 40.143981 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29641", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890722, 40.139842 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32018", "stop_name": "Durham Rd & S Tanglewood Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889327, 40.13341 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28415", "stop_name": "New Falls Rd & Durham Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887298, 40.132357 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28416", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885025, 40.133918 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28418", "stop_name": "New Falls Rd & Plumtree Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.880859, 40.136809 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29642", "stop_name": "New Falls Rd & Petunia Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878229, 40.138637 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28419", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876979, 40.139461 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28420", "stop_name": "New Falls & Bristol Oxford Valley Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875741, 40.140295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28421", "stop_name": "Bristol Oxford Valley Rd & Mill Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.874018, 40.136574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31842", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871067, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29643", "stop_name": "Bristol Oxf Vly Rd & Brittany Springs - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.869272, 40.130287 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28423", "stop_name": "Mill Creek Rd & Bristol Oxford Valley Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.865737, 40.128174 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28425", "stop_name": "Mill Creek Rd & Blue Ridge Pass", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862856, 40.130169 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1781", "stop_name": "Mill Creek Rd & Green Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858524, 40.133095 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28426", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855651, 40.12969 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32020", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854232, 40.127917 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32021", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852569, 40.12574 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28429", "stop_name": "Green Ln & Pacific Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.848563, 40.120491 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28431", "stop_name": "Green Ln & Elwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.846229, 40.119293 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29644", "stop_name": "Beaver Dam Rd & Plymouth Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.851094, 40.119244 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28435", "stop_name": "Beaver Dam Rd & Lakeland Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.853968, 40.116598 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28437", "stop_name": "Beaver Dam Rd & Venice Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854392, 40.113958 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29818", "stop_name": "Beaver Dam Rd & Van Kirk St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854617, 40.112441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29645", "stop_name": "Beaver St & Third St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855368, 40.107295 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1782", "stop_name": "Beaver St & Garden St - MBFS Bristol Railroad Stn", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855736, 40.10427 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28445", "stop_name": "Beaver St & Point St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.855917, 40.102352 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28454", "stop_name": "Beaver St & Canal St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.856049, 40.100693 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28455", "stop_name": "Beaver St & Pond St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85616, 40.098596 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29646", "stop_name": "Pond St & Mulberry St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.857101, 40.097859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28456", "stop_name": "Old US 13 & Market St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858739, 40.097179 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28167", "stop_name": "Bath St & Otter St - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.86076, 40.097465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28172", "stop_name": "Bath St & Buckley St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.861658, 40.099183 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28173", "stop_name": "Bath St & Howell St - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.862801, 40.101286 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1792", "stop_name": "Bristol Park Shopping Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.871853, 40.101406 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28302", "stop_name": "Veterans Hwy & Winder Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.876875, 40.1069 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30708", "stop_name": "Veterans Hwy & Winder Dr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877667, 40.10859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28307", "stop_name": "Veterans Hwy & Rockview Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878807, 40.111184 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1784", "stop_name": "Bucks County Office Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877323, 40.110267 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28458", "stop_name": "Wharton Rd & Rittenhouse Cr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.883093, 40.117111 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1785", "stop_name": "Wharton Rd & Ford Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885605, 40.121442 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28461", "stop_name": "Ford Rd & Pearl Buck Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890923, 40.119492 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28472", "stop_name": "Newportville Rd & New Falls Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.899887, 40.123859 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32033", "stop_name": "Bensalem Blvd & New Falls Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.904481, 40.12362 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28474", "stop_name": "Bensalem Blvd & Gibson Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.906163, 40.120253 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28475", "stop_name": "Bensalem Blvd & Flushing Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909175, 40.114687 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28477", "stop_name": "Bensalem Blvd & Portside Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.909988, 40.113512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28479", "stop_name": "Bensalem Blvd & Mt Vernon Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.911867, 40.110672 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32034", "stop_name": "Bensalem Blvd & Jason Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91328, 40.108411 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28483", "stop_name": "Bensalem Blvd & Alvin Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915397, 40.105215 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28486", "stop_name": "Bridgewater Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.920881, 40.097937 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28487", "stop_name": "Bridgewater Rd & Trace Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922297, 40.098451 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28488", "stop_name": "Bridgewater Rd & Winchester Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925689, 40.10241 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28489", "stop_name": "Bridgewater & Deerfield", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.927678, 40.105738 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28490", "stop_name": "Bridgewater Rd & Ford Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928802, 40.107412 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32336", "stop_name": "Byberry Rd & Galloway Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930024, 40.108702 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28497", "stop_name": "Byberry Rd & Hulmeville Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93716, 40.108801 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30709", "stop_name": "Byberry Rd & Knights Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.942653, 40.110349 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28499", "stop_name": "Knights Rd & Tucker Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.948139, 40.107532 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30678", "stop_name": "Knights Rd & Street Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.949986, 40.1057 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "25910", "stop_name": "Knights Rd & Monroe Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956774, 40.099228 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23383", "stop_name": "Knights Rd & Plum Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958132, 40.097966 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.5, "percent_change": 0.25, "expected_wait_time_difference": -15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32036", "stop_name": "Bristol Pk & Kings Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.968861, 40.069024 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32022", "stop_name": "Green Ln & N Fleetwing Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.852532, 40.125927 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32023", "stop_name": "Green Ln & Mitchell Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.854043, 40.127898 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21170", "stop_name": "Green Ln & N Fleetwing Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.85532, 40.1296 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "1794", "stop_name": "Mill Creek Rd & Green Ln - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.858736, 40.133177 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21171", "stop_name": "Mill Creek Rd & Blue Ridge Pass - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.863141, 40.130171 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28539", "stop_name": "Mill Creek Rd & Bristol-Oxford Valley Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.866676, 40.127759 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29636", "stop_name": "Bristol-Oxford Valley Rd & Brittany Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.868929, 40.130205 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21172", "stop_name": "Bristol Oxford Valley Rd & Border Rock Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.870783, 40.132338 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21173", "stop_name": "Bristol-Oxford Valley Rd & Cinder Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.873816, 40.1366 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21174", "stop_name": "New Falls Rd & Bristol Oxford Valley Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.875347, 40.140757 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28540", "stop_name": "New Falls Rd & Plumbridge Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.877013, 40.139604 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28541", "stop_name": "New Falls Rd & Petunia Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.878739, 40.13846 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "28542", "stop_name": "New Falls Rd & Plumtree Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.881215, 40.136757 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21177", "stop_name": "New Falls Rd & Veterans Hwy", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.884333, 40.134584 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "32019", "stop_name": "New Falls Rd & Veterans Hwy - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.885107, 40.134034 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21178", "stop_name": "New Falls Rd & Durham Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.887511, 40.132393 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21179", "stop_name": "Durham Rd & S Tanglewood Dr - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.889219, 40.133481 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29638", "stop_name": "Durham Rd & Green Meadow Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.890429, 40.139537 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21181", "stop_name": "Durham Rd & Frosty Hollow Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.891842, 40.143756 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "29639", "stop_name": "Durham Rd & Hollybrook Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.893888, 40.148835 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21182", "stop_name": "Durham Rd & Sandybrook Dr - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.895172, 40.151224 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "31609", "stop_name": "Durham Rd & Trenton Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.89668, 40.153926 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "21184", "stop_name": "Durham Rd & Delaware Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.903008, 40.158192 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "30713", "stop_name": "Durham Rd & Woodland Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.908465, 40.158465 ] } }, +{ "type": "Feature", "properties": { "route_id": "129", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Oxford Valley Mall", "stop_id": "1795", "stop_name": "Durham Rd & Lincoln Hwy", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.910923, 40.159207 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29691", "stop_name": "Bucks County Community College - 2", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.965298, 40.239262 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30706", "stop_name": "Bucks County Community College 3", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.959841, 40.237805 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28629", "stop_name": "Swamp Rd & Saw Mill Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.954817, 40.235599 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23376", "stop_name": "Street Rd & Tillman Dr - south", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958111, 40.115495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23377", "stop_name": "Street Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954136, 40.111607 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31311", "stop_name": "Street Rd & Castle Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952639, 40.108959 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23379", "stop_name": "Street Rd & Knights Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951438, 40.106223 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1816", "stop_name": "Creekside Rd & Dunks Ferry Rd - MBFS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -74.957727, 40.101922 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31843", "stop_name": "Plum Av & Knights Rd - MBNS", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.6, "percent_change": -0.25, "expected_wait_time_difference": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -74.95904, 40.098397 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 2.4, "percent_change": -0.14, "expected_wait_time_difference": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 2.8, "arrivals_during_cuts": 3.0, "percent_change": 0.07, "expected_wait_time_difference": -2.1 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 3.0, "percent_change": 0.15, "expected_wait_time_difference": -4.6 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 2.6, "arrivals_during_cuts": 2.8, "percent_change": 0.08, "expected_wait_time_difference": -2.5 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.8, "percent_change": 0.17, "expected_wait_time_difference": -5.4 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.6, "percent_change": 0.08, "expected_wait_time_difference": -2.9 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.6, "percent_change": 0.3, "expected_wait_time_difference": -10.4 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.2, "percent_change": 0.1, "expected_wait_time_difference": -4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.4, "percent_change": -0.8, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.4, "percent_change": -0.8, "expected_wait_time_difference": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 2.0, "percent_change": 0.43, "expected_wait_time_difference": -19.3 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -5.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 1.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29691", "stop_name": "Bucks County Community College - 2", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965298, 40.239262 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30706", "stop_name": "Bucks County Community College 3", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959841, 40.237805 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28629", "stop_name": "Swamp Rd & Saw Mill Ln", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954817, 40.235599 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.0, "percent_change": -0.2, "expected_wait_time_difference": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.6, "percent_change": -0.04, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.6, "percent_change": -0.08, "expected_wait_time_difference": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 5.2, "arrivals_during_cuts": 4.6, "percent_change": -0.12, "expected_wait_time_difference": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.8, "percent_change": 0.04, "expected_wait_time_difference": -1.4 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 5.0, "percent_change": 0.04, "expected_wait_time_difference": -1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 4.8, "arrivals_during_cuts": 4.0, "percent_change": -0.17, "expected_wait_time_difference": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29691", "stop_name": "Bucks County Community College - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965298, 40.239262 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30706", "stop_name": "Bucks County Community College 3", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.959841, 40.237805 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28629", "stop_name": "Swamp Rd & Saw Mill Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.954817, 40.235599 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28620", "stop_name": "Lincoln Av & Sterling St - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.931954, 40.22438 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28621", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.931752, 40.226209 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28622", "stop_name": "Lincoln Av & Washington Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93139, 40.228832 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29693", "stop_name": "Washington Av & Norwood Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928343, 40.228829 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28635", "stop_name": "Washington Av & Elm Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.926044, 40.228704 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31844", "stop_name": "Newtown Yardley Rd & Terry Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919529, 40.229659 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1812", "stop_name": "Pheasant Run & Terry Dr - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916121, 40.225397 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28637", "stop_name": "Pheasant Run & Penns Trail", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.9101, 40.225327 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28638", "stop_name": "Penns Trail & PA 332 - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.910159, 40.22373 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28639", "stop_name": "PA 332 & Summit Trace Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.926648, 40.218664 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.4, "percent_change": -0.3, "expected_wait_time_difference": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.6, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.2, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.8, "arrivals_during_cuts": 2.0, "percent_change": 0.11, "expected_wait_time_difference": -6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.0, "percent_change": -0.17, "expected_wait_time_difference": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 2.4, "arrivals_during_cuts": 2.2, "percent_change": -0.08, "expected_wait_time_difference": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 2.2, "arrivals_during_cuts": 2.0, "percent_change": -0.09, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.8, "percent_change": -0.1, "expected_wait_time_difference": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29691", "stop_name": "Bucks County Community College - 2", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965298, 40.239262 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30706", "stop_name": "Bucks County Community College 3", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959841, 40.237805 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28629", "stop_name": "Swamp Rd & Saw Mill Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954817, 40.235599 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.4, "percent_change": -0.15, "expected_wait_time_difference": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.2, "percent_change": -0.2, "expected_wait_time_difference": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.2, "percent_change": 0.05, "expected_wait_time_difference": -1.8 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 4.4, "percent_change": 0.1, "expected_wait_time_difference": -3.4 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 4.4, "arrivals_during_cuts": 4.4, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.4, "percent_change": -0.04, "expected_wait_time_difference": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 4.6, "arrivals_during_cuts": 4.6, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.8, "percent_change": -0.05, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 0.8, "arrivals_during_cuts": 0.8, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 1.6, "percent_change": -0.68, "expected_wait_time_difference": 63.8 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 1.6, "percent_change": -0.68, "expected_wait_time_difference": 63.8 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.8, "percent_change": -0.04, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 5.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekday", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 5.0, "arrivals_during_cuts": 4.4, "percent_change": -0.12, "expected_wait_time_difference": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29691", "stop_name": "Bucks County Community College - 2", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965298, 40.239262 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30706", "stop_name": "Bucks County Community College 3", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959841, 40.237805 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28629", "stop_name": "Swamp Rd & Saw Mill Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954817, 40.235599 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23376", "stop_name": "Street Rd & Tillman Dr - south", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958111, 40.115495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23377", "stop_name": "Street Rd & Mechanicsville Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954136, 40.111607 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31311", "stop_name": "Street Rd & Castle Dr - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952639, 40.108959 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23379", "stop_name": "Street Rd & Knights Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951438, 40.106223 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1816", "stop_name": "Creekside Rd & Dunks Ferry Rd - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957727, 40.101922 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31843", "stop_name": "Plum Av & Knights Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95904, 40.098397 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23080", "stop_name": "Rockhill Rd & Neshaminy Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956965, 40.136645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Morning rush (07:00 to 9:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 4.0, "arrivals_during_cuts": 3.0, "percent_change": -0.25, "expected_wait_time_difference": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 3.0, "percent_change": -0.14, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29691", "stop_name": "Bucks County Community College - 2", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965298, 40.239262 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30706", "stop_name": "Bucks County Community College 3", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959841, 40.237805 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28629", "stop_name": "Swamp Rd & Saw Mill Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954817, 40.235599 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 2.0, "percent_change": -0.2, "expected_wait_time_difference": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 0.5, "percent_change": -0.75, "expected_wait_time_difference": 225.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.5, "percent_change": -0.25, "expected_wait_time_difference": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Midday (10:00 to 14:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.5, "arrivals_during_cuts": 1.5, "percent_change": -0.4, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 3.0, "arrivals_during_cuts": 2.5, "percent_change": -0.17, "expected_wait_time_difference": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 3.5, "arrivals_during_cuts": 2.5, "percent_change": -0.29, "expected_wait_time_difference": 13.7 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29691", "stop_name": "Bucks County Community College - 2", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965298, 40.239262 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30706", "stop_name": "Bucks County Community College 3", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959841, 40.237805 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28629", "stop_name": "Swamp Rd & Saw Mill Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954817, 40.235599 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1809", "stop_name": "Durham Rd & West Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.945678, 40.235377 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30411", "stop_name": "West Rd & Eagle Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943083, 40.23518 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28631", "stop_name": "S Eagle & Silo Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.941003, 40.234199 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28632", "stop_name": "S Eagle Rd & Swamp Rd - MBNS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.940578, 40.230484 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1810", "stop_name": "Washington Av & Court St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935916, 40.229162 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28634", "stop_name": "Washington Av & Congress St - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.93402, 40.229075 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 0.5, "percent_change": -0.5, "expected_wait_time_difference": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28613", "stop_name": "Lincoln Av & Washington Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931641, 40.228521 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28614", "stop_name": "Lincoln Av & Penn St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931928, 40.226442 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28615", "stop_name": "Lincoln Av & Sterling St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932205, 40.224122 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29804", "stop_name": "State St & Chancellor St", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.934625, 40.222106 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1801", "stop_name": "Gloria Dei Plaza", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.936706, 40.221114 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28640", "stop_name": "State St & Fountain Farm Ln", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.933068, 40.219261 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28642", "stop_name": "Newtown Langhorne Rd & Summit Trace Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.931027, 40.212835 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29694", "stop_name": "Newtown Langhorne Rd & Pennwood Village", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.930176, 40.207324 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28643", "stop_name": "Newtown Langhorne Rd & Green Valley Rd", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929988, 40.20544 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1799", "stop_name": "Saint Mary Medical Center", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925234, 40.202359 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "32040", "stop_name": "Newtown Rd & St Mary Blvd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.929685, 40.201395 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28648", "stop_name": "Newtown Rd & Heaton Mill", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.928323, 40.192794 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28650", "stop_name": "Newtown Rd & Old Mill Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.923167, 40.188061 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28651", "stop_name": "Pine St & Winchester Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919018, 40.181724 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28652", "stop_name": "Pine St & Watson Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.918197, 40.178909 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23587", "stop_name": "Pine St & Maple Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.917528, 40.176354 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23586", "stop_name": "Pine St & Flowers Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.916828, 40.174807 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23588", "stop_name": "Pine St & Woods Dr", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914609, 40.170379 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23589", "stop_name": "Bellevue Av & Highland Av - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.915662, 40.167251 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23590", "stop_name": "Bellevue Av & Park Av", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.913509, 40.163645 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23591", "stop_name": "Bellevue Av & Comly Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91258, 40.161088 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28653", "stop_name": "Bellevue Av & Durham Rd - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912201, 40.159426 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23641", "stop_name": "Bellevue Av & Lincoln Hwy - FS", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 1.0, "percent_change": 1.0, "expected_wait_time_difference": -120.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912149, 40.158409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28655", "stop_name": "Bellevue Av & Dehaven Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912017, 40.155409 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28658", "stop_name": "Bellevue Av & Parkview Av", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912383, 40.149055 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28660", "stop_name": "Bellevue Av & Neshaminy St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.912938, 40.144336 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "29601", "stop_name": "Hulmeville Rd & Bensalem Blvd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.91357, 40.140331 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28662", "stop_name": "Hulmeville Rd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.914824, 40.138872 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28665", "stop_name": "Hulmeville Rd & Florence Rd Ln", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.919429, 40.134017 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28667", "stop_name": "Hulmeville Rd & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.922293, 40.130744 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28668", "stop_name": "Pasqualone & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92386, 40.131938 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28670", "stop_name": "Pasqualone Blvd & Springdale Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.925794, 40.134641 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28672", "stop_name": "Pasqualone Blvd & Bensalem Blvd - FS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.92971, 40.140074 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28676", "stop_name": "Pasqualone Blvd & Declaration Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.932432, 40.143691 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28678", "stop_name": "Neshaminy Blvd & Durham Pl", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.935787, 40.144802 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28238", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947621, 40.138886 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31300", "stop_name": "Neshaminy Blvd & Neshaminy Mall Dr", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952039, 40.136742 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Afternoon rush (15:00 to 18:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 1.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21120", "stop_name": "Bristol Pk & Edgewood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.976194, 40.065436 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21121", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972769, 40.066486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21122", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970941, 40.067479 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21124", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967185, 40.070348 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17064", "stop_name": "Bristol Pk & Biddle Ln - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965534, 40.071431 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "29631", "stop_name": "Bristol Pk & Woodhaven Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964311, 40.072069 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "410", "stop_name": "Philadelphia Mills & Marshalls", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96447, 40.085833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "17062", "stop_name": "Franklin Mills Dr & Knights Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965356, 40.091495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30677", "stop_name": "Knights & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963029, 40.092745 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "31298", "stop_name": "Knights Rd & Franklin Mills Circle", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.959664, 40.095204 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30704", "stop_name": "Plum Av & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958921, 40.098495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "1796", "stop_name": "Creekside Apts Rd & Dunks Ferry Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957526, 40.101882 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21127", "stop_name": "Knights Rd & Dunks Ferry Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95411, 40.101307 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "21128", "stop_name": "Knights Rd & McKinley Av - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952264, 40.103067 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23371", "stop_name": "Street Rd & Knights Rd - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95084, 40.105462 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23372", "stop_name": "Street Rd & Knights Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951447, 40.106687 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23373", "stop_name": "Street Rd & Mechanicsville Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952555, 40.109173 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23374", "stop_name": "Street Rd & Mechanicsville Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954323, 40.112045 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "23375", "stop_name": "Street Rd & Tillman Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957745, 40.11528 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Bucks County Community College", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 2.0, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "330", "stop_name": "Neshaminy Mall", "arrivals_before_cuts": 0.5, "arrivals_during_cuts": 0.5, "percent_change": 0.0, "expected_wait_time_difference": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95357, 40.13806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28680", "stop_name": "Neshaminy Blvd & Bristol Rd - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951328, 40.136918 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31360", "stop_name": "Neshaminy Blvd & Bristol Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.947966, 40.138619 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28241", "stop_name": "Galloway Rd & Bristol Rd - MBFS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.943377, 40.134433 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28242", "stop_name": "Galloway Rd & Richlieu Rd", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.94298, 40.131834 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28685", "stop_name": "Richlieu Rd & Debra Dr - MBNS", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 0.5, "percent_change": -0.67, "expected_wait_time_difference": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -74.956909, 40.125506 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28688", "stop_name": "Richlieu Rd & Esssington Way", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961019, 40.121486 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "13534", "stop_name": "Street Rd & Tillman Dr - north", "arrivals_before_cuts": 1.5, "arrivals_during_cuts": 1.0, "percent_change": -0.33, "expected_wait_time_difference": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960444, 40.118833 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30140", "stop_name": "Parx Casino", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.953046, 40.117172 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23376", "stop_name": "Street Rd & Tillman Dr - south", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.958111, 40.115495 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23377", "stop_name": "Street Rd & Mechanicsville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954136, 40.111607 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31311", "stop_name": "Street Rd & Castle Dr - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.952639, 40.108959 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23379", "stop_name": "Street Rd & Knights Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951438, 40.106223 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23381", "stop_name": "Knights Rd & Virgina Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.951677, 40.104109 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23382", "stop_name": "Knights Rd & Dunks Ferry Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.954357, 40.101441 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "1816", "stop_name": "Creekside Rd & Dunks Ferry Rd - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.957727, 40.101922 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "31843", "stop_name": "Plum Av & Knights Rd - MBNS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.95904, 40.098397 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23384", "stop_name": "Knights Rd & McCarthy Cir", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96028, 40.095117 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23385", "stop_name": "Knights Rd & Mechanicsville Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962089, 40.093571 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "22585", "stop_name": "Franklin Mills & Design Center Dr", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965006, 40.090806 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "23734", "stop_name": "Franklin Mills & Design Ctr - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.964967, 40.089512 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21118", "stop_name": "Franklin Mills & Liberty Bell Blvd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965791, 40.088292 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "21117", "stop_name": "Phila Mills & Liberty Bell - MBFS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96586, 40.086811 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17071", "stop_name": "Bristol Pk & Home Depot Plaza - FS", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.965449, 40.071743 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28504", "stop_name": "Bristol Pk & Penn St", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.966993, 40.070713 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28505", "stop_name": "Bristol Pk & Poquessing Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.969264, 40.068892 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28506", "stop_name": "Bristol Pk & Buttonwood Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970952, 40.067666 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "28507", "stop_name": "Bristol Pk & Tennis Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972567, 40.06669 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "30710", "stop_name": "Bristol Pk & Colonial Av", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975541, 40.065791 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "17072", "stop_name": "Bristol Pk & Red Lion Rd", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.980525, 40.065121 ] } }, +{ "type": "Feature", "properties": { "route_id": "130", "week_period": "Weekend", "time_of_day": "Evening (19:00 to 23:59)", "trip_headsign": "Frankford-Knights", "stop_id": "954", "stop_name": "City Line Loop", "arrivals_before_cuts": 2.0, "arrivals_during_cuts": 1.0, "percent_change": -0.5, "expected_wait_time_difference": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -74.981369, 40.064401 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 16.4, "arrivals_during_cuts": 15.2, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19013", "stop_name": "Kensington Av & Erie Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096404, 40.005942 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19014", "stop_name": "Kensington Av & K St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.106308, 40.000487 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "51", "stop_name": "Kensington Av & Allegheny Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.2, "percent_change": -0.05, "expected_wait_time_difference": 0.7 }, "geometry": { "type": "Point", "coordinates": [ -75.113084, 39.996774 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "801", "stop_name": "Kensington Av & Somerset St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.122453, 39.991558 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19016", "stop_name": "Kensington Av & Huntingdon St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.8, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.127238, 39.988946 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19018", "stop_name": "Front St & Berks St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133601, 39.978787 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18988", "stop_name": "Front St & Girard Av", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.136145, 39.968948 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "67", "stop_name": "2nd St & Green St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.141445, 39.961017 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20961", "stop_name": "2nd St & Market St", "arrivals_before_cuts": 1.2, "arrivals_during_cuts": 5.0, "percent_change": 3.17, "expected_wait_time_difference": -133.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143768, 39.95009 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "3582", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 1.4, "arrivals_during_cuts": 5.8, "percent_change": 3.14, "expected_wait_time_difference": -113.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148702, 39.95061 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 15.8, "arrivals_during_cuts": 14.6, "percent_change": -0.08, "expected_wait_time_difference": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31564", "stop_name": "15th St & Market St - FS", "arrivals_before_cuts": 14.8, "arrivals_during_cuts": 14.6, "percent_change": -0.01, "expected_wait_time_difference": 0.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19026", "stop_name": "Market St & 34th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191326, 39.955919 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "300", "stop_name": "Market St & 40th St", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 15.0, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.20188, 39.957179 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19027", "stop_name": "Market St & 46th St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.2, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.213839, 39.958753 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19028", "stop_name": "Market St & 52nd St", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224759, 39.960128 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1396", "stop_name": "Market St & 56th St - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.2, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.233023, 39.961159 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19029", "stop_name": "Market St & 60th St - FS", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 15.2, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.240934, 39.962161 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31723", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.2, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.246577, 39.962857 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 16.6, "arrivals_during_cuts": 15.2, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 16.8, "arrivals_during_cuts": 15.2, "percent_change": -0.1, "expected_wait_time_difference": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 16.2, "arrivals_during_cuts": 14.0, "percent_change": -0.14, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 16.0, "arrivals_during_cuts": 14.0, "percent_change": -0.12, "expected_wait_time_difference": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18992", "stop_name": "Market St & 60th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.240899, 39.961849 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1391", "stop_name": "Market St & 56th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 14.0, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233001, 39.960873 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18993", "stop_name": "Market St & 52nd St - FS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.224736, 39.95986 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18994", "stop_name": "Market St & Farragut St - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.213828, 39.958494 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "299", "stop_name": "Market St & 40th St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202175, 39.957117 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18995", "stop_name": "Market St & 34th St - MBNS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.192106, 39.955858 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.8, "percent_change": -0.1, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.4, "percent_change": -0.13, "expected_wait_time_difference": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.6, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.6, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.6, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 15.4, "arrivals_during_cuts": 13.6, "percent_change": -0.12, "expected_wait_time_difference": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.6, "percent_change": -0.11, "expected_wait_time_difference": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22030", "stop_name": "Spring Garden St & 2nd St - MBFS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.140704, 39.960453 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18987", "stop_name": "Front St & Girard Av - FS", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 13.8, "percent_change": -0.09, "expected_wait_time_difference": 1.4 }, "geometry": { "type": "Point", "coordinates": [ -75.136003, 39.968958 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19003", "stop_name": "Front St & Berks St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133495, 39.978563 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19004", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132206, 39.984656 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19005", "stop_name": "Kensington Av & Huntingdon St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127345, 39.988723 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19006", "stop_name": "Kensington Av & Somerset St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122537, 39.991335 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21175", "stop_name": "Kensington Av & Allegheny Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113606, 39.996338 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19007", "stop_name": "Kensington Av & Tioga St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 14.0, "percent_change": -0.07, "expected_wait_time_difference": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106522, 40.000202 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19008", "stop_name": "Kensington Av & Torresdale Av", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.096417, 40.005781 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23961", "stop_name": "Frankford Av & Ruan St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.089187, 40.010063 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23965", "stop_name": "Frankford Av & Margaret St", "arrivals_before_cuts": 15.2, "arrivals_during_cuts": 14.0, "percent_change": -0.08, "expected_wait_time_difference": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -75.083707, 40.016608 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekday", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 14.2, "arrivals_during_cuts": 13.4, "percent_change": -0.06, "expected_wait_time_difference": 0.9 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "21962", "stop_name": "Frankford Transit Center-14-BLVDDIR-MFO", "arrivals_before_cuts": 15.5, "arrivals_during_cuts": 9.0, "percent_change": -0.42, "expected_wait_time_difference": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.077788, 40.023402 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "25421", "stop_name": "Frankford Av & Oxford Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.083635, 40.016876 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "24129", "stop_name": "Frankford Av & Ruan St - MBNS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.089079, 40.010492 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19013", "stop_name": "Kensington Av & Erie Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.096404, 40.005942 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19014", "stop_name": "Kensington Av & K St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.106308, 40.000487 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "51", "stop_name": "Kensington Av & Allegheny Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.113084, 39.996774 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "801", "stop_name": "Kensington Av & Somerset St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.0, "percent_change": -0.4, "expected_wait_time_difference": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.122453, 39.991558 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19016", "stop_name": "Kensington Av & Huntingdon St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.5, "percent_change": -0.37, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.127238, 39.988946 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "52", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.5, "percent_change": -0.37, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.132205, 39.984888 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19018", "stop_name": "Front St & Berks St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 9.5, "percent_change": -0.37, "expected_wait_time_difference": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.133601, 39.978787 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "18988", "stop_name": "Front St & Girard Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136145, 39.968948 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "67", "stop_name": "2nd St & Green St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141445, 39.961017 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "20961", "stop_name": "2nd St & Market St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.5, "percent_change": 2.5, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143768, 39.95009 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "3582", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 1.0, "arrivals_during_cuts": 3.5, "percent_change": 2.5, "expected_wait_time_difference": -150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148702, 39.95061 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "10338", "stop_name": "Market St & 8th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.951191 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "10258", "stop_name": "Market St & 11th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158109, 39.951782 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "10264", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161261, 39.952154 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31564", "stop_name": "15th St & Market St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.952493 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19025", "stop_name": "Market St & 30th St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183547, 39.954931 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19026", "stop_name": "Market St & 34th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191326, 39.955919 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "300", "stop_name": "Market St & 40th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20188, 39.957179 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19027", "stop_name": "Market St & 46th St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213839, 39.958753 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19028", "stop_name": "Market St & 52nd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224759, 39.960128 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1396", "stop_name": "Market St & 56th St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.0, "percent_change": -0.33, "expected_wait_time_difference": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233023, 39.961159 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19029", "stop_name": "Market St & 60th St - FS", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240934, 39.962161 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "31723", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246577, 39.962857 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "19031", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.251727, 39.962855 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "69th St Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 15.0, "arrivals_during_cuts": 10.5, "percent_change": -0.3, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1148", "stop_name": "69th St Transit Center South Terminal", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.258284, 39.962079 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19032", "stop_name": "Market St & Millbourne Av", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.25194, 39.962713 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18991", "stop_name": "Market St & 63rd St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.247275, 39.962653 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18992", "stop_name": "Market St & 60th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 9.5, "percent_change": -0.32, "expected_wait_time_difference": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240899, 39.961849 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "1391", "stop_name": "Market St & 56th St", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233001, 39.960873 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18993", "stop_name": "Market St & 52nd St - FS", "arrivals_before_cuts": 14.0, "arrivals_during_cuts": 10.0, "percent_change": -0.29, "expected_wait_time_difference": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224736, 39.95986 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18994", "stop_name": "Market St & Farragut St - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213828, 39.958494 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "299", "stop_name": "Market St & 40th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202175, 39.957117 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18995", "stop_name": "Market St & 34th St - MBNS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192106, 39.955858 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18996", "stop_name": "Market St & 30th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183559, 39.954824 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10266", "stop_name": "Market St & 15th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165475, 39.952547 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10263", "stop_name": "Market St & 13th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161604, 39.95203 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10259", "stop_name": "Market St & 11th St - MBNS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159208, 39.951748 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18457", "stop_name": "Market St & 8th St - MBNS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.0, "percent_change": -0.31, "expected_wait_time_difference": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.95114 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "14913", "stop_name": "Market St & 5th St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 9.5, "percent_change": -0.34, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149081, 39.950521 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "10288", "stop_name": "Market St & 2nd St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 9.5, "percent_change": -0.34, "expected_wait_time_difference": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143852, 39.949894 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "22030", "stop_name": "Spring Garden St & 2nd St - MBFS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140704, 39.960453 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "18987", "stop_name": "Front St & Girard Av - FS", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136003, 39.968958 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19003", "stop_name": "Front St & Berks St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133495, 39.978563 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19004", "stop_name": "Front St & Dauphin St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132206, 39.984656 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19005", "stop_name": "Kensington Av & Huntingdon St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127345, 39.988723 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19006", "stop_name": "Kensington Av & Somerset St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.122537, 39.991335 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21175", "stop_name": "Kensington Av & Allegheny Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113606, 39.996338 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19007", "stop_name": "Kensington Av & Tioga St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106522, 40.000202 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "19008", "stop_name": "Kensington Av & Torresdale Av", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 10.5, "percent_change": -0.28, "expected_wait_time_difference": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096417, 40.005781 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23961", "stop_name": "Frankford Av & Ruan St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.0, "percent_change": -0.24, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.089187, 40.010063 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "23965", "stop_name": "Frankford Av & Margaret St", "arrivals_before_cuts": 14.5, "arrivals_during_cuts": 11.0, "percent_change": -0.24, "expected_wait_time_difference": 4.6 }, "geometry": { "type": "Point", "coordinates": [ -75.083707, 40.016608 ] } }, +{ "type": "Feature", "properties": { "route_id": "L1 OWL", "week_period": "Weekend", "time_of_day": "Early morning (00:00 to 6:59)", "trip_headsign": "Frankford Transit Center", "stop_id": "21204", "stop_name": "Frankford Transit Center - Main Dropoff", "arrivals_before_cuts": 12.5, "arrivals_during_cuts": 11.0, "percent_change": -0.12, "expected_wait_time_difference": 2.3 }, "geometry": { "type": "Point", "coordinates": [ -75.077481, 40.023294 ] } } +] +} diff --git a/data/raw/septa_cut/google_bus.zip b/data/raw/septa_cut/google_bus.zip new file mode 100644 index 00000000..522298c8 Binary files /dev/null and b/data/raw/septa_cut/google_bus.zip differ diff --git a/data/septa_routes.json b/data/septa_routes.json new file mode 100644 index 00000000..752adda3 --- /dev/null +++ b/data/septa_routes.json @@ -0,0 +1,388 @@ +{ +"type": "FeatureCollection", +"name": "septa_routes", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "shape_id": "302576", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.403528, 39.98665 ], [ -75.404557, 39.986571 ], [ -75.406258, 39.986447 ], [ -75.407155, 39.986377 ], [ -75.408112, 39.986305 ], [ -75.408701, 39.986266 ], [ -75.410542, 39.986114 ], [ -75.412112, 39.985979 ], [ -75.413424, 39.98587 ], [ -75.41393, 39.985831 ], [ -75.414183, 39.985811 ], [ -75.414813, 39.985758 ], [ -75.414986, 39.985746 ], [ -75.41521, 39.985729 ], [ -75.415388, 39.985713 ], [ -75.415551, 39.985696 ], [ -75.415736, 39.985675 ], [ -75.415917, 39.985647 ], [ -75.416112, 39.98561 ], [ -75.416229, 39.985586 ], [ -75.41644, 39.985527 ], [ -75.416641, 39.985462 ], [ -75.41684, 39.985386 ], [ -75.417035, 39.985301 ], [ -75.41717, 39.985236 ], [ -75.418326, 39.984688 ], [ -75.418444, 39.984629 ], [ -75.421035, 39.983371 ], [ -75.421312, 39.983236 ], [ -75.422523, 39.982642 ], [ -75.423223, 39.982303 ], [ -75.423446, 39.982195 ], [ -75.423827, 39.982009 ], [ -75.424193, 39.981831 ], [ -75.424438, 39.981711 ], [ -75.425063, 39.98141 ], [ -75.425241, 39.98132 ], [ -75.426015, 39.980934 ], [ -75.426302, 39.980793 ], [ -75.426766, 39.980568 ], [ -75.427927, 39.980017 ], [ -75.428116, 39.979927 ], [ -75.428435, 39.979783 ], [ -75.428884, 39.9796 ], [ -75.430002, 39.979147 ], [ -75.430703, 39.978863 ], [ -75.430881, 39.978791 ], [ -75.43144, 39.978573 ], [ -75.431934, 39.978381 ], [ -75.432791, 39.978027 ], [ -75.433424, 39.97777 ], [ -75.433447, 39.977761 ], [ -75.434568, 39.977303 ], [ -75.434708, 39.977246 ], [ -75.434817, 39.977202 ], [ -75.43507, 39.977108 ], [ -75.435274, 39.977019 ], [ -75.435445, 39.976946 ], [ -75.436523, 39.976509 ], [ -75.436848, 39.976378 ], [ -75.437049, 39.976296 ], [ -75.43717, 39.976245 ], [ -75.437446, 39.976136 ], [ -75.437606, 39.976354 ], [ -75.437743, 39.976549 ], [ -75.437835, 39.976678 ], [ -75.437895, 39.976777 ], [ -75.437949, 39.976876 ], [ -75.437986, 39.976957 ], [ -75.438024, 39.97705 ], [ -75.438064, 39.97716 ], [ -75.438101, 39.977272 ], [ -75.438132, 39.977377 ], [ -75.438166, 39.977492 ], [ -75.438206, 39.977613 ], [ -75.438248, 39.977696 ], [ -75.438304, 39.97777 ], [ -75.438353, 39.977813 ], [ -75.438416, 39.977852 ], [ -75.43849, 39.977889 ], [ -75.438557, 39.977914 ], [ -75.43862, 39.977927 ], [ -75.438712, 39.977937 ], [ -75.438791, 39.977934 ], [ -75.438872, 39.97792 ], [ -75.438952, 39.977897 ], [ -75.43902, 39.977869 ], [ -75.439152, 39.977809 ], [ -75.439669, 39.977571 ], [ -75.440358, 39.97726 ], [ -75.440429, 39.977255 ], [ -75.440574, 39.977216 ], [ -75.441195, 39.976927 ], [ -75.441419, 39.976762 ], [ -75.441308, 39.976621 ], [ -75.441191, 39.976469 ], [ -75.44109, 39.976316 ], [ -75.441023, 39.976192 ], [ -75.440981, 39.976081 ], [ -75.440953, 39.975953 ], [ -75.440925, 39.975778 ], [ -75.440818, 39.975201 ], [ -75.441161, 39.975165 ], [ -75.441467, 39.975139 ], [ -75.441834, 39.975116 ], [ -75.442211, 39.975097 ], [ -75.44294, 39.975065 ], [ -75.444597, 39.974986 ], [ -75.445475, 39.974951 ], [ -75.446072, 39.974917 ], [ -75.446542, 39.974897 ], [ -75.447001, 39.974878 ], [ -75.447904, 39.974843 ], [ -75.448383, 39.974819 ], [ -75.448608, 39.974809 ], [ -75.448978, 39.974795 ], [ -75.449395, 39.97477 ], [ -75.449531, 39.974762 ], [ -75.450105, 39.974725 ], [ -75.450294, 39.974709 ], [ -75.450802, 39.974647 ], [ -75.451104, 39.97461 ], [ -75.451552, 39.974519 ], [ -75.451797, 39.974478 ], [ -75.451985, 39.974447 ], [ -75.452249, 39.974402 ], [ -75.452323, 39.97439 ], [ -75.452995, 39.974277 ], [ -75.453532, 39.974185 ], [ -75.453758, 39.974148 ], [ -75.453977, 39.974112 ], [ -75.45479, 39.973983 ], [ -75.456332, 39.973707 ], [ -75.457616, 39.973478 ], [ -75.458319, 39.97336 ], [ -75.45886, 39.973268 ], [ -75.459555, 39.973154 ], [ -75.46063, 39.972978 ], [ -75.461075, 39.972913 ], [ -75.461418, 39.972851 ], [ -75.46146, 39.972846 ], [ -75.461845, 39.972767 ], [ -75.462161, 39.972695 ], [ -75.462245, 39.972677 ], [ -75.462707, 39.97257 ], [ -75.46304, 39.972484 ], [ -75.463274, 39.97242 ], [ -75.463507, 39.972355 ], [ -75.4637, 39.9723 ], [ -75.463918, 39.972238 ], [ -75.464113, 39.972183 ], [ -75.464264, 39.972138 ], [ -75.464488, 39.972071 ], [ -75.46467, 39.972017 ], [ -75.465361, 39.971807 ], [ -75.465865, 39.971657 ], [ -75.466094, 39.971585 ], [ -75.466272, 39.971534 ], [ -75.466388, 39.9715 ], [ -75.466534, 39.971463 ], [ -75.466707, 39.971416 ], [ -75.466861, 39.971381 ], [ -75.467069, 39.971332 ], [ -75.467429, 39.97125 ], [ -75.467728, 39.971197 ], [ -75.468116, 39.971131 ], [ -75.470235, 39.970791 ], [ -75.470914, 39.97067 ], [ -75.471052, 39.970641 ], [ -75.47117, 39.970617 ], [ -75.471286, 39.970588 ], [ -75.47146, 39.970546 ], [ -75.471633, 39.970506 ], [ -75.471786, 39.970465 ], [ -75.471933, 39.970427 ], [ -75.472082, 39.970386 ], [ -75.47225, 39.970335 ], [ -75.472394, 39.970292 ], [ -75.472554, 39.970241 ], [ -75.472702, 39.970197 ], [ -75.472828, 39.970157 ], [ -75.472978, 39.970103 ], [ -75.473255, 39.970006 ], [ -75.473829, 39.969809 ], [ -75.474005, 39.969748 ], [ -75.474125, 39.969707 ], [ -75.474217, 39.969676 ], [ -75.474468, 39.969592 ], [ -75.474689, 39.969519 ], [ -75.474888, 39.969452 ], [ -75.475888, 39.969118 ], [ -75.477231, 39.968664 ], [ -75.478573, 39.968205 ], [ -75.479227, 39.967974 ], [ -75.479912, 39.967742 ], [ -75.48055, 39.967531 ], [ -75.481259, 39.967296 ], [ -75.481909, 39.967085 ], [ -75.482745, 39.966809 ], [ -75.482835, 39.96678 ], [ -75.483027, 39.966716 ], [ -75.483857, 39.966439 ], [ -75.484684, 39.966156 ], [ -75.485507, 39.965869 ], [ -75.485891, 39.965737 ], [ -75.486143, 39.965649 ], [ -75.486511, 39.965531 ], [ -75.486824, 39.965435 ], [ -75.487234, 39.965325 ], [ -75.4876, 39.96524 ], [ -75.487904, 39.965181 ], [ -75.488126, 39.965143 ], [ -75.488258, 39.965122 ], [ -75.488562, 39.965086 ], [ -75.488723, 39.965064 ], [ -75.488946, 39.965041 ], [ -75.489376, 39.965005 ], [ -75.48952, 39.964997 ], [ -75.489785, 39.964985 ], [ -75.489958, 39.964977 ], [ -75.490309, 39.964967 ], [ -75.491145, 39.964932 ], [ -75.491886, 39.964901 ], [ -75.492504, 39.964884 ], [ -75.492866, 39.964875 ], [ -75.494118, 39.964846 ], [ -75.494537, 39.964844 ], [ -75.494684, 39.964847 ], [ -75.49488, 39.964853 ], [ -75.495393, 39.964877 ], [ -75.495618, 39.964884 ], [ -75.496369, 39.964918 ], [ -75.496706, 39.964934 ], [ -75.496853, 39.964942 ], [ -75.498635, 39.965014 ], [ -75.49887, 39.965023 ], [ -75.499653, 39.965055 ], [ -75.500108, 39.965078 ], [ -75.500693, 39.965102 ], [ -75.501215, 39.965123 ], [ -75.501607, 39.965142 ], [ -75.502082, 39.965163 ], [ -75.502616, 39.965188 ], [ -75.503244, 39.965213 ], [ -75.503506, 39.965225 ], [ -75.503734, 39.965238 ], [ -75.503988, 39.96525 ], [ -75.504273, 39.965269 ], [ -75.504556, 39.965287 ], [ -75.505239, 39.965334 ], [ -75.505904, 39.965385 ], [ -75.506129, 39.965402 ], [ -75.506592, 39.965438 ], [ -75.506703, 39.965446 ], [ -75.507308, 39.965491 ], [ -75.508222, 39.965554 ], [ -75.508404, 39.965571 ], [ -75.508757, 39.965593 ], [ -75.508873, 39.965598 ], [ -75.510497, 39.965708 ], [ -75.510751, 39.965726 ], [ -75.511001, 39.965745 ], [ -75.511181, 39.965753 ], [ -75.512463, 39.965836 ], [ -75.513089, 39.965877 ], [ -75.513787, 39.965923 ], [ -75.514799, 39.965999 ], [ -75.516144, 39.966086 ], [ -75.516678, 39.966136 ], [ -75.517369, 39.966189 ], [ -75.518836, 39.966288 ], [ -75.519476, 39.966332 ], [ -75.519949, 39.966364 ], [ -75.520498, 39.966404 ], [ -75.520881, 39.966438 ], [ -75.521493, 39.966494 ], [ -75.521605, 39.966504 ], [ -75.521614, 39.966505 ], [ -75.522277, 39.966546 ], [ -75.523052, 39.966592 ], [ -75.523642, 39.966636 ], [ -75.524324, 39.966679 ], [ -75.524644, 39.966701 ], [ -75.525112, 39.966733 ], [ -75.525633, 39.966766 ], [ -75.526411, 39.966816 ], [ -75.526845, 39.966834 ], [ -75.526881, 39.966834 ], [ -75.527101, 39.966836 ], [ -75.527382, 39.966834 ], [ -75.527819, 39.966823 ], [ -75.528257, 39.966799 ], [ -75.528564, 39.966774 ], [ -75.528744, 39.96676 ], [ -75.529519, 39.966699 ], [ -75.530085, 39.966665 ], [ -75.530684, 39.966628 ], [ -75.531236, 39.966594 ], [ -75.533537, 39.966417 ], [ -75.533756, 39.966401 ], [ -75.534359, 39.966355 ], [ -75.534453, 39.966348 ], [ -75.535755, 39.966237 ], [ -75.536408, 39.966187 ], [ -75.536615, 39.96617 ], [ -75.537758, 39.966091 ], [ -75.538467, 39.966044 ], [ -75.540315, 39.965902 ], [ -75.54086, 39.965863 ], [ -75.541405, 39.965827 ], [ -75.542302, 39.965768 ], [ -75.54272, 39.96574 ], [ -75.542927, 39.965727 ], [ -75.543979, 39.965658 ], [ -75.54419, 39.96565 ], [ -75.544419, 39.965639 ], [ -75.544516, 39.965639 ], [ -75.544583, 39.965641 ], [ -75.544716, 39.965646 ], [ -75.544865, 39.965644 ], [ -75.545, 39.965649 ], [ -75.545124, 39.965651 ], [ -75.545261, 39.965657 ], [ -75.545407, 39.965667 ], [ -75.545532, 39.965681 ], [ -75.545673, 39.965699 ], [ -75.545842, 39.965724 ], [ -75.546061, 39.965753 ], [ -75.546088, 39.965756 ], [ -75.54627, 39.965787 ], [ -75.546413, 39.965816 ], [ -75.5466, 39.965849 ], [ -75.547697, 39.966107 ], [ -75.547733, 39.966114 ], [ -75.54838, 39.966272 ], [ -75.549168, 39.966453 ], [ -75.549792, 39.966597 ], [ -75.550069, 39.96666 ], [ -75.551116, 39.966906 ], [ -75.553167, 39.967369 ], [ -75.55352, 39.96745 ], [ -75.553698, 39.967486 ], [ -75.554091, 39.967568 ], [ -75.554518, 39.967675 ], [ -75.555251, 39.967839 ], [ -75.555981, 39.968005 ], [ -75.557693, 39.968392 ], [ -75.55816, 39.968498 ], [ -75.558533, 39.968582 ], [ -75.560811, 39.969086 ], [ -75.561539, 39.969246 ], [ -75.562435, 39.969451 ], [ -75.562628, 39.969489 ], [ -75.563223, 39.969607 ], [ -75.563347, 39.969628 ], [ -75.563696, 39.969685 ], [ -75.564054, 39.969727 ], [ -75.564528, 39.969767 ], [ -75.56497, 39.969787 ], [ -75.565193, 39.969797 ], [ -75.565535, 39.969789 ], [ -75.565817, 39.969778 ], [ -75.566073, 39.969761 ], [ -75.56631, 39.969747 ], [ -75.566575, 39.969721 ], [ -75.566811, 39.969695 ], [ -75.566911, 39.96968 ], [ -75.567072, 39.969657 ], [ -75.567343, 39.969609 ], [ -75.567616, 39.969563 ], [ -75.567681, 39.969553 ], [ -75.568064, 39.969493 ], [ -75.568956, 39.969361 ], [ -75.569657, 39.96926 ], [ -75.571356, 39.969013 ], [ -75.572378, 39.968862 ], [ -75.57248, 39.968846 ], [ -75.572586, 39.96883 ], [ -75.5733, 39.96872 ], [ -75.573593, 39.968675 ], [ -75.574047, 39.968606 ], [ -75.574542, 39.96853 ], [ -75.574709, 39.968504 ], [ -75.574909, 39.968474 ], [ -75.575899, 39.968323 ], [ -75.576951, 39.968165 ], [ -75.577266, 39.968118 ], [ -75.577808, 39.968037 ], [ -75.577882, 39.968026 ], [ -75.578231, 39.967976 ], [ -75.578427, 39.967942 ], [ -75.578521, 39.967929 ], [ -75.578637, 39.967912 ], [ -75.578816, 39.967886 ], [ -75.57898, 39.967867 ], [ -75.579067, 39.967855 ], [ -75.579162, 39.967842 ], [ -75.57954, 39.967791 ], [ -75.579617, 39.967777 ], [ -75.579832, 39.967802 ], [ -75.579968, 39.967799 ], [ -75.580052, 39.967808 ], [ -75.580131, 39.967828 ], [ -75.580212, 39.967861 ], [ -75.580289, 39.967909 ], [ -75.58037, 39.967974 ], [ -75.580456, 39.968064 ], [ -75.580539, 39.968168 ], [ -75.580558, 39.968195 ], [ -75.580643, 39.968277 ], [ -75.580683, 39.96832 ], [ -75.580722, 39.968362 ], [ -75.580751, 39.96839 ], [ -75.580805, 39.96843 ], [ -75.580878, 39.96848 ], [ -75.581002, 39.968548 ], [ -75.581263, 39.968671 ], [ -75.581612, 39.968845 ], [ -75.581801, 39.968945 ], [ -75.581876, 39.96899 ], [ -75.581985, 39.969071 ], [ -75.582077, 39.969151 ], [ -75.582158, 39.969243 ], [ -75.582227, 39.969347 ], [ -75.582285, 39.969471 ], [ -75.582363, 39.969664 ], [ -75.582473, 39.969947 ], [ -75.582522, 39.970068 ], [ -75.582611, 39.970272 ], [ -75.582743, 39.970476 ], [ -75.582867, 39.970833 ], [ -75.582898, 39.97092 ], [ -75.582912, 39.970963 ], [ -75.582938, 39.971025 ], [ -75.582978, 39.971134 ], [ -75.583084, 39.971439 ], [ -75.583112, 39.971685 ], [ -75.583137, 39.97179 ], [ -75.583152, 39.971903 ], [ -75.58315, 39.971973 ], [ -75.583141, 39.972018 ], [ -75.583131, 39.972048 ], [ -75.583103, 39.972113 ], [ -75.58306, 39.972173 ], [ -75.583002, 39.972225 ], [ -75.582937, 39.972271 ], [ -75.58286, 39.972305 ], [ -75.582773, 39.972335 ], [ -75.582683, 39.972353 ], [ -75.582589, 39.972359 ], [ -75.582494, 39.972353 ], [ -75.5824, 39.972336 ], [ -75.582312, 39.972305 ], [ -75.582246, 39.972269 ], [ -75.582162, 39.972207 ], [ -75.582096, 39.972153 ], [ -75.582042, 39.972094 ], [ -75.581994, 39.972035 ], [ -75.581963, 39.971976 ], [ -75.581948, 39.971919 ], [ -75.581949, 39.971865 ], [ -75.581966, 39.971815 ], [ -75.581997, 39.97177 ], [ -75.582022, 39.971745 ], [ -75.58209, 39.971682 ], [ -75.582461, 39.971452 ], [ -75.582904, 39.971179 ], [ -75.582978, 39.971134 ], [ -75.583023, 39.971109 ], [ -75.58307, 39.971081 ], [ -75.583107, 39.971053 ], [ -75.583407, 39.970867 ], [ -75.583624, 39.970741 ], [ -75.583739, 39.970673 ], [ -75.584032, 39.970496 ], [ -75.584103, 39.970451 ], [ -75.584516, 39.970196 ], [ -75.584668, 39.970103 ], [ -75.585284, 39.969727 ], [ -75.585495, 39.969597 ], [ -75.585671, 39.969488 ], [ -75.585887, 39.969356 ], [ -75.586311, 39.969103 ], [ -75.586579, 39.96895 ], [ -75.586841, 39.968809 ], [ -75.587038, 39.968703 ], [ -75.587059, 39.968693 ], [ -75.587195, 39.968624 ], [ -75.587242, 39.968603 ], [ -75.587428, 39.96852 ], [ -75.587679, 39.96841 ], [ -75.588268, 39.968157 ], [ -75.588451, 39.968075 ], [ -75.589184, 39.967745 ], [ -75.589404, 39.967649 ], [ -75.589671, 39.967521 ], [ -75.589978, 39.967376 ], [ -75.590293, 39.967226 ], [ -75.590563, 39.967099 ], [ -75.59116, 39.966828 ], [ -75.591453, 39.966694 ], [ -75.591738, 39.966569 ], [ -75.592162, 39.96638 ], [ -75.592339, 39.966299 ], [ -75.592525, 39.966212 ], [ -75.593066, 39.965944 ], [ -75.594088, 39.965469 ], [ -75.594504, 39.965284 ], [ -75.595344, 39.964912 ], [ -75.595613, 39.964794 ], [ -75.596666, 39.964327 ], [ -75.597918, 39.963766 ], [ -75.598579, 39.963466 ], [ -75.599113, 39.963224 ], [ -75.600044, 39.9628 ], [ -75.60042, 39.962627 ], [ -75.600876, 39.962424 ], [ -75.601311, 39.962227 ], [ -75.601695, 39.96206 ], [ -75.602103, 39.961884 ], [ -75.602282, 39.961793 ], [ -75.602419, 39.961714 ], [ -75.602809, 39.962202 ], [ -75.602963, 39.962381 ], [ -75.603214, 39.962677 ], [ -75.603499, 39.962551 ], [ -75.604768, 39.962024 ], [ -75.605035, 39.961912 ], [ -75.6055, 39.961695 ], [ -75.605548, 39.961642 ], [ -75.605603, 39.961594 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.604304, 39.959604 ], [ -75.604232, 39.959537 ], [ -75.604137, 39.959452 ], [ -75.603472, 39.958805 ], [ -75.603177, 39.958489 ], [ -75.602751, 39.958082 ], [ -75.602276, 39.95764 ], [ -75.601914, 39.957298 ], [ -75.60131, 39.956752 ], [ -75.601193, 39.956648 ], [ -75.600991, 39.956467 ], [ -75.600267, 39.955799 ], [ -75.599814, 39.955394 ], [ -75.599333, 39.954966 ], [ -75.599414, 39.954917 ], [ -75.599476, 39.954883 ], [ -75.599879, 39.954686 ], [ -75.601276, 39.954073 ], [ -75.600626, 39.953321 ], [ -75.600111, 39.952737 ], [ -75.599948, 39.952549 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302577", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.403528, 39.98665 ], [ -75.404557, 39.986571 ], [ -75.406258, 39.986447 ], [ -75.407155, 39.986377 ], [ -75.408112, 39.986305 ], [ -75.408701, 39.986266 ], [ -75.410542, 39.986114 ], [ -75.412112, 39.985979 ], [ -75.413424, 39.98587 ], [ -75.41393, 39.985831 ], [ -75.414183, 39.985811 ], [ -75.414813, 39.985758 ], [ -75.414986, 39.985746 ], [ -75.41521, 39.985729 ], [ -75.415388, 39.985713 ], [ -75.415551, 39.985696 ], [ -75.415736, 39.985675 ], [ -75.415917, 39.985647 ], [ -75.416112, 39.98561 ], [ -75.416229, 39.985586 ], [ -75.41644, 39.985527 ], [ -75.416641, 39.985462 ], [ -75.41684, 39.985386 ], [ -75.417035, 39.985301 ], [ -75.41717, 39.985236 ], [ -75.418326, 39.984688 ], [ -75.418444, 39.984629 ], [ -75.421035, 39.983371 ], [ -75.421312, 39.983236 ], [ -75.422523, 39.982642 ], [ -75.423223, 39.982303 ], [ -75.423446, 39.982195 ], [ -75.423827, 39.982009 ], [ -75.424193, 39.981831 ], [ -75.424438, 39.981711 ], [ -75.425063, 39.98141 ], [ -75.425241, 39.98132 ], [ -75.426015, 39.980934 ], [ -75.426302, 39.980793 ], [ -75.426766, 39.980568 ], [ -75.427927, 39.980017 ], [ -75.428116, 39.979927 ], [ -75.428435, 39.979783 ], [ -75.428884, 39.9796 ], [ -75.430002, 39.979147 ], [ -75.430703, 39.978863 ], [ -75.430881, 39.978791 ], [ -75.43144, 39.978573 ], [ -75.431934, 39.978381 ], [ -75.432791, 39.978027 ], [ -75.433424, 39.97777 ], [ -75.433447, 39.977761 ], [ -75.434568, 39.977303 ], [ -75.434708, 39.977246 ], [ -75.434817, 39.977202 ], [ -75.43507, 39.977108 ], [ -75.435274, 39.977019 ], [ -75.435445, 39.976946 ], [ -75.436523, 39.976509 ], [ -75.436848, 39.976378 ], [ -75.437049, 39.976296 ], [ -75.43717, 39.976245 ], [ -75.437446, 39.976136 ], [ -75.437742, 39.976016 ], [ -75.438141, 39.975859 ], [ -75.438593, 39.975696 ], [ -75.438955, 39.975577 ], [ -75.439279, 39.975484 ], [ -75.439582, 39.975411 ], [ -75.439928, 39.975336 ], [ -75.44022, 39.975283 ], [ -75.440294, 39.975272 ], [ -75.440592, 39.975231 ], [ -75.440818, 39.975201 ], [ -75.441161, 39.975165 ], [ -75.441467, 39.975139 ], [ -75.441834, 39.975116 ], [ -75.442211, 39.975097 ], [ -75.44294, 39.975065 ], [ -75.444597, 39.974986 ], [ -75.445475, 39.974951 ], [ -75.446072, 39.974917 ], [ -75.446542, 39.974897 ], [ -75.447001, 39.974878 ], [ -75.447904, 39.974843 ], [ -75.448383, 39.974819 ], [ -75.448608, 39.974809 ], [ -75.448978, 39.974795 ], [ -75.449395, 39.97477 ], [ -75.449531, 39.974762 ], [ -75.450105, 39.974725 ], [ -75.450294, 39.974709 ], [ -75.450802, 39.974647 ], [ -75.451104, 39.97461 ], [ -75.451552, 39.974519 ], [ -75.451797, 39.974478 ], [ -75.451985, 39.974447 ], [ -75.452249, 39.974402 ], [ -75.452323, 39.97439 ], [ -75.452995, 39.974277 ], [ -75.453532, 39.974185 ], [ -75.453758, 39.974148 ], [ -75.453977, 39.974112 ], [ -75.45479, 39.973983 ], [ -75.456332, 39.973707 ], [ -75.457616, 39.973478 ], [ -75.458319, 39.97336 ], [ -75.45886, 39.973268 ], [ -75.459555, 39.973154 ], [ -75.46063, 39.972978 ], [ -75.461075, 39.972913 ], [ -75.461418, 39.972851 ], [ -75.46146, 39.972846 ], [ -75.461845, 39.972767 ], [ -75.462161, 39.972695 ], [ -75.462245, 39.972677 ], [ -75.462707, 39.97257 ], [ -75.46304, 39.972484 ], [ -75.463274, 39.97242 ], [ -75.463507, 39.972355 ], [ -75.4637, 39.9723 ], [ -75.463918, 39.972238 ], [ -75.464113, 39.972183 ], [ -75.464264, 39.972138 ], [ -75.464488, 39.972071 ], [ -75.46467, 39.972017 ], [ -75.465361, 39.971807 ], [ -75.465865, 39.971657 ], [ -75.466094, 39.971585 ], [ -75.466272, 39.971534 ], [ -75.466388, 39.9715 ], [ -75.466534, 39.971463 ], [ -75.466707, 39.971416 ], [ -75.466861, 39.971381 ], [ -75.467069, 39.971332 ], [ -75.467429, 39.97125 ], [ -75.467728, 39.971197 ], [ -75.468116, 39.971131 ], [ -75.470235, 39.970791 ], [ -75.470914, 39.97067 ], [ -75.471052, 39.970641 ], [ -75.47117, 39.970617 ], [ -75.471286, 39.970588 ], [ -75.47146, 39.970546 ], [ -75.471633, 39.970506 ], [ -75.471786, 39.970465 ], [ -75.471933, 39.970427 ], [ -75.472082, 39.970386 ], [ -75.47225, 39.970335 ], [ -75.472394, 39.970292 ], [ -75.472554, 39.970241 ], [ -75.472702, 39.970197 ], [ -75.472828, 39.970157 ], [ -75.472978, 39.970103 ], [ -75.473255, 39.970006 ], [ -75.473829, 39.969809 ], [ -75.474005, 39.969748 ], [ -75.474125, 39.969707 ], [ -75.474217, 39.969676 ], [ -75.474468, 39.969592 ], [ -75.474689, 39.969519 ], [ -75.474888, 39.969452 ], [ -75.475888, 39.969118 ], [ -75.477231, 39.968664 ], [ -75.478573, 39.968205 ], [ -75.479227, 39.967974 ], [ -75.479912, 39.967742 ], [ -75.48055, 39.967531 ], [ -75.481259, 39.967296 ], [ -75.481909, 39.967085 ], [ -75.482745, 39.966809 ], [ -75.482835, 39.96678 ], [ -75.483027, 39.966716 ], [ -75.483857, 39.966439 ], [ -75.484684, 39.966156 ], [ -75.485507, 39.965869 ], [ -75.485891, 39.965737 ], [ -75.486143, 39.965649 ], [ -75.486511, 39.965531 ], [ -75.486824, 39.965435 ], [ -75.487234, 39.965325 ], [ -75.4876, 39.96524 ], [ -75.487904, 39.965181 ], [ -75.488126, 39.965143 ], [ -75.488258, 39.965122 ], [ -75.488562, 39.965086 ], [ -75.488723, 39.965064 ], [ -75.488946, 39.965041 ], [ -75.489376, 39.965005 ], [ -75.48952, 39.964997 ], [ -75.489785, 39.964985 ], [ -75.489958, 39.964977 ], [ -75.490309, 39.964967 ], [ -75.491145, 39.964932 ], [ -75.491886, 39.964901 ], [ -75.492504, 39.964884 ], [ -75.492866, 39.964875 ], [ -75.494118, 39.964846 ], [ -75.494537, 39.964844 ], [ -75.494684, 39.964847 ], [ -75.49488, 39.964853 ], [ -75.495393, 39.964877 ], [ -75.495618, 39.964884 ], [ -75.496369, 39.964918 ], [ -75.496706, 39.964934 ], [ -75.496853, 39.964942 ], [ -75.498635, 39.965014 ], [ -75.49887, 39.965023 ], [ -75.499653, 39.965055 ], [ -75.500108, 39.965078 ], [ -75.500693, 39.965102 ], [ -75.501215, 39.965123 ], [ -75.501607, 39.965142 ], [ -75.502082, 39.965163 ], [ -75.502616, 39.965188 ], [ -75.503244, 39.965213 ], [ -75.503506, 39.965225 ], [ -75.503734, 39.965238 ], [ -75.503988, 39.96525 ], [ -75.504273, 39.965269 ], [ -75.504556, 39.965287 ], [ -75.505239, 39.965334 ], [ -75.505904, 39.965385 ], [ -75.506129, 39.965402 ], [ -75.506592, 39.965438 ], [ -75.506703, 39.965446 ], [ -75.507308, 39.965491 ], [ -75.508222, 39.965554 ], [ -75.508404, 39.965571 ], [ -75.508757, 39.965593 ], [ -75.508873, 39.965598 ], [ -75.510497, 39.965708 ], [ -75.510751, 39.965726 ], [ -75.511001, 39.965745 ], [ -75.511181, 39.965753 ], [ -75.512463, 39.965836 ], [ -75.513089, 39.965877 ], [ -75.513787, 39.965923 ], [ -75.514799, 39.965999 ], [ -75.516144, 39.966086 ], [ -75.516678, 39.966136 ], [ -75.517369, 39.966189 ], [ -75.518836, 39.966288 ], [ -75.519476, 39.966332 ], [ -75.519949, 39.966364 ], [ -75.520498, 39.966404 ], [ -75.520881, 39.966438 ], [ -75.521493, 39.966494 ], [ -75.521605, 39.966504 ], [ -75.521614, 39.966505 ], [ -75.522277, 39.966546 ], [ -75.523052, 39.966592 ], [ -75.523642, 39.966636 ], [ -75.524324, 39.966679 ], [ -75.524644, 39.966701 ], [ -75.525112, 39.966733 ], [ -75.525633, 39.966766 ], [ -75.526411, 39.966816 ], [ -75.526845, 39.966834 ], [ -75.526881, 39.966834 ], [ -75.527101, 39.966836 ], [ -75.527382, 39.966834 ], [ -75.527819, 39.966823 ], [ -75.528257, 39.966799 ], [ -75.528564, 39.966774 ], [ -75.528744, 39.96676 ], [ -75.529519, 39.966699 ], [ -75.530085, 39.966665 ], [ -75.530684, 39.966628 ], [ -75.531236, 39.966594 ], [ -75.533537, 39.966417 ], [ -75.533756, 39.966401 ], [ -75.534359, 39.966355 ], [ -75.534453, 39.966348 ], [ -75.535755, 39.966237 ], [ -75.536408, 39.966187 ], [ -75.536615, 39.96617 ], [ -75.537758, 39.966091 ], [ -75.538467, 39.966044 ], [ -75.540315, 39.965902 ], [ -75.54086, 39.965863 ], [ -75.541405, 39.965827 ], [ -75.542302, 39.965768 ], [ -75.54272, 39.96574 ], [ -75.542927, 39.965727 ], [ -75.543979, 39.965658 ], [ -75.54419, 39.96565 ], [ -75.544419, 39.965639 ], [ -75.544516, 39.965639 ], [ -75.544583, 39.965641 ], [ -75.544716, 39.965646 ], [ -75.544865, 39.965644 ], [ -75.545, 39.965649 ], [ -75.545124, 39.965651 ], [ -75.545261, 39.965657 ], [ -75.545407, 39.965667 ], [ -75.545532, 39.965681 ], [ -75.545673, 39.965699 ], [ -75.545842, 39.965724 ], [ -75.546061, 39.965753 ], [ -75.546088, 39.965756 ], [ -75.54627, 39.965787 ], [ -75.546413, 39.965816 ], [ -75.5466, 39.965849 ], [ -75.547697, 39.966107 ], [ -75.547733, 39.966114 ], [ -75.54838, 39.966272 ], [ -75.549168, 39.966453 ], [ -75.549792, 39.966597 ], [ -75.550069, 39.96666 ], [ -75.551116, 39.966906 ], [ -75.553167, 39.967369 ], [ -75.55352, 39.96745 ], [ -75.553698, 39.967486 ], [ -75.554091, 39.967568 ], [ -75.554518, 39.967675 ], [ -75.555251, 39.967839 ], [ -75.555981, 39.968005 ], [ -75.557693, 39.968392 ], [ -75.55816, 39.968498 ], [ -75.558533, 39.968582 ], [ -75.560811, 39.969086 ], [ -75.561539, 39.969246 ], [ -75.562435, 39.969451 ], [ -75.562628, 39.969489 ], [ -75.563223, 39.969607 ], [ -75.563347, 39.969628 ], [ -75.563696, 39.969685 ], [ -75.564054, 39.969727 ], [ -75.564528, 39.969767 ], [ -75.56497, 39.969787 ], [ -75.565193, 39.969797 ], [ -75.565535, 39.969789 ], [ -75.565817, 39.969778 ], [ -75.566073, 39.969761 ], [ -75.56631, 39.969747 ], [ -75.566575, 39.969721 ], [ -75.566811, 39.969695 ], [ -75.566911, 39.96968 ], [ -75.567072, 39.969657 ], [ -75.567343, 39.969609 ], [ -75.567616, 39.969563 ], [ -75.567681, 39.969553 ], [ -75.568064, 39.969493 ], [ -75.568956, 39.969361 ], [ -75.569657, 39.96926 ], [ -75.571356, 39.969013 ], [ -75.572378, 39.968862 ], [ -75.57248, 39.968846 ], [ -75.572586, 39.96883 ], [ -75.5733, 39.96872 ], [ -75.573593, 39.968675 ], [ -75.574047, 39.968606 ], [ -75.574542, 39.96853 ], [ -75.574709, 39.968504 ], [ -75.574909, 39.968474 ], [ -75.575899, 39.968323 ], [ -75.576951, 39.968165 ], [ -75.577266, 39.968118 ], [ -75.577808, 39.968037 ], [ -75.577882, 39.968026 ], [ -75.578231, 39.967976 ], [ -75.578427, 39.967942 ], [ -75.578521, 39.967929 ], [ -75.578637, 39.967912 ], [ -75.578816, 39.967886 ], [ -75.57898, 39.967867 ], [ -75.579067, 39.967855 ], [ -75.579162, 39.967842 ], [ -75.57954, 39.967791 ], [ -75.579617, 39.967777 ], [ -75.579832, 39.967802 ], [ -75.579968, 39.967799 ], [ -75.580052, 39.967808 ], [ -75.580131, 39.967828 ], [ -75.580212, 39.967861 ], [ -75.580289, 39.967909 ], [ -75.58037, 39.967974 ], [ -75.580456, 39.968064 ], [ -75.580539, 39.968168 ], [ -75.580558, 39.968195 ], [ -75.580643, 39.968277 ], [ -75.580683, 39.96832 ], [ -75.580722, 39.968362 ], [ -75.580751, 39.96839 ], [ -75.580805, 39.96843 ], [ -75.580878, 39.96848 ], [ -75.581002, 39.968548 ], [ -75.581263, 39.968671 ], [ -75.581612, 39.968845 ], [ -75.581801, 39.968945 ], [ -75.581876, 39.96899 ], [ -75.581985, 39.969071 ], [ -75.582077, 39.969151 ], [ -75.582158, 39.969243 ], [ -75.582227, 39.969347 ], [ -75.582285, 39.969471 ], [ -75.582363, 39.969664 ], [ -75.582473, 39.969947 ], [ -75.582522, 39.970068 ], [ -75.582611, 39.970272 ], [ -75.582743, 39.970476 ], [ -75.582867, 39.970833 ], [ -75.582898, 39.97092 ], [ -75.582912, 39.970963 ], [ -75.582938, 39.971025 ], [ -75.582978, 39.971134 ], [ -75.583084, 39.971439 ], [ -75.583112, 39.971685 ], [ -75.583137, 39.97179 ], [ -75.583152, 39.971903 ], [ -75.58315, 39.971973 ], [ -75.583141, 39.972018 ], [ -75.583131, 39.972048 ], [ -75.583103, 39.972113 ], [ -75.58306, 39.972173 ], [ -75.583002, 39.972225 ], [ -75.582937, 39.972271 ], [ -75.58286, 39.972305 ], [ -75.582773, 39.972335 ], [ -75.582683, 39.972353 ], [ -75.582589, 39.972359 ], [ -75.582494, 39.972353 ], [ -75.5824, 39.972336 ], [ -75.582312, 39.972305 ], [ -75.582246, 39.972269 ], [ -75.582162, 39.972207 ], [ -75.582096, 39.972153 ], [ -75.582042, 39.972094 ], [ -75.581994, 39.972035 ], [ -75.581963, 39.971976 ], [ -75.581948, 39.971919 ], [ -75.581949, 39.971865 ], [ -75.581966, 39.971815 ], [ -75.581997, 39.97177 ], [ -75.582022, 39.971745 ], [ -75.58209, 39.971682 ], [ -75.582461, 39.971452 ], [ -75.582904, 39.971179 ], [ -75.582978, 39.971134 ], [ -75.583023, 39.971109 ], [ -75.58307, 39.971081 ], [ -75.583107, 39.971053 ], [ -75.583407, 39.970867 ], [ -75.583624, 39.970741 ], [ -75.583739, 39.970673 ], [ -75.584032, 39.970496 ], [ -75.584103, 39.970451 ], [ -75.584516, 39.970196 ], [ -75.584668, 39.970103 ], [ -75.585284, 39.969727 ], [ -75.585495, 39.969597 ], [ -75.585671, 39.969488 ], [ -75.585887, 39.969356 ], [ -75.586311, 39.969103 ], [ -75.586579, 39.96895 ], [ -75.586841, 39.968809 ], [ -75.587038, 39.968703 ], [ -75.587059, 39.968693 ], [ -75.587195, 39.968624 ], [ -75.587242, 39.968603 ], [ -75.587428, 39.96852 ], [ -75.587679, 39.96841 ], [ -75.588268, 39.968157 ], [ -75.588451, 39.968075 ], [ -75.589184, 39.967745 ], [ -75.589404, 39.967649 ], [ -75.589671, 39.967521 ], [ -75.589978, 39.967376 ], [ -75.590293, 39.967226 ], [ -75.590563, 39.967099 ], [ -75.59116, 39.966828 ], [ -75.591453, 39.966694 ], [ -75.591738, 39.966569 ], [ -75.592162, 39.96638 ], [ -75.592339, 39.966299 ], [ -75.592525, 39.966212 ], [ -75.593066, 39.965944 ], [ -75.594088, 39.965469 ], [ -75.594504, 39.965284 ], [ -75.595344, 39.964912 ], [ -75.595613, 39.964794 ], [ -75.596666, 39.964327 ], [ -75.597918, 39.963766 ], [ -75.598579, 39.963466 ], [ -75.599113, 39.963224 ], [ -75.600044, 39.9628 ], [ -75.60042, 39.962627 ], [ -75.600876, 39.962424 ], [ -75.601311, 39.962227 ], [ -75.601695, 39.96206 ], [ -75.602103, 39.961884 ], [ -75.602282, 39.961793 ], [ -75.602419, 39.961714 ], [ -75.602809, 39.962202 ], [ -75.602963, 39.962381 ], [ -75.603214, 39.962677 ], [ -75.603499, 39.962551 ], [ -75.604768, 39.962024 ], [ -75.605035, 39.961912 ], [ -75.6055, 39.961695 ], [ -75.605548, 39.961642 ], [ -75.605603, 39.961594 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.604304, 39.959604 ], [ -75.604232, 39.959537 ], [ -75.604137, 39.959452 ], [ -75.603472, 39.958805 ], [ -75.603177, 39.958489 ], [ -75.602751, 39.958082 ], [ -75.602276, 39.95764 ], [ -75.601914, 39.957298 ], [ -75.60131, 39.956752 ], [ -75.601193, 39.956648 ], [ -75.600991, 39.956467 ], [ -75.600267, 39.955799 ], [ -75.599814, 39.955394 ], [ -75.599333, 39.954966 ], [ -75.599414, 39.954917 ], [ -75.599476, 39.954883 ], [ -75.599879, 39.954686 ], [ -75.601276, 39.954073 ], [ -75.600626, 39.953321 ], [ -75.600111, 39.952737 ], [ -75.599948, 39.952549 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302578", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.400915, 39.987117 ], [ -75.401085, 39.987339 ], [ -75.400767, 39.987483 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302583", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.258284, 39.962026 ], [ -75.258969, 39.961928 ], [ -75.259029, 39.961819 ], [ -75.259126, 39.961827 ], [ -75.259928, 39.961882 ], [ -75.260103, 39.961895 ], [ -75.260198, 39.961903 ], [ -75.260939, 39.961971 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.403528, 39.98665 ], [ -75.404557, 39.986571 ], [ -75.406258, 39.986447 ], [ -75.407155, 39.986377 ], [ -75.408112, 39.986305 ], [ -75.408701, 39.986266 ], [ -75.410542, 39.986114 ], [ -75.412112, 39.985979 ], [ -75.413424, 39.98587 ], [ -75.41393, 39.985831 ], [ -75.414183, 39.985811 ], [ -75.414813, 39.985758 ], [ -75.414986, 39.985746 ], [ -75.41521, 39.985729 ], [ -75.415388, 39.985713 ], [ -75.415551, 39.985696 ], [ -75.415736, 39.985675 ], [ -75.415917, 39.985647 ], [ -75.416112, 39.98561 ], [ -75.416229, 39.985586 ], [ -75.41644, 39.985527 ], [ -75.416641, 39.985462 ], [ -75.41684, 39.985386 ], [ -75.417035, 39.985301 ], [ -75.41717, 39.985236 ], [ -75.418326, 39.984688 ], [ -75.418444, 39.984629 ], [ -75.421035, 39.983371 ], [ -75.421312, 39.983236 ], [ -75.422523, 39.982642 ], [ -75.423223, 39.982303 ], [ -75.423446, 39.982195 ], [ -75.423827, 39.982009 ], [ -75.424193, 39.981831 ], [ -75.424438, 39.981711 ], [ -75.425063, 39.98141 ], [ -75.425241, 39.98132 ], [ -75.426015, 39.980934 ], [ -75.426302, 39.980793 ], [ -75.426766, 39.980568 ], [ -75.427927, 39.980017 ], [ -75.428116, 39.979927 ], [ -75.428435, 39.979783 ], [ -75.428884, 39.9796 ], [ -75.430002, 39.979147 ], [ -75.430703, 39.978863 ], [ -75.430881, 39.978791 ], [ -75.43144, 39.978573 ], [ -75.431934, 39.978381 ], [ -75.432791, 39.978027 ], [ -75.433424, 39.97777 ], [ -75.433447, 39.977761 ], [ -75.434568, 39.977303 ], [ -75.434708, 39.977246 ], [ -75.434817, 39.977202 ], [ -75.43507, 39.977108 ], [ -75.435274, 39.977019 ], [ -75.435445, 39.976946 ], [ -75.436523, 39.976509 ], [ -75.436848, 39.976378 ], [ -75.437049, 39.976296 ], [ -75.43717, 39.976245 ], [ -75.437446, 39.976136 ], [ -75.437606, 39.976354 ], [ -75.437743, 39.976549 ], [ -75.437835, 39.976678 ], [ -75.437895, 39.976777 ], [ -75.437949, 39.976876 ], [ -75.437986, 39.976957 ], [ -75.438024, 39.97705 ], [ -75.438064, 39.97716 ], [ -75.438101, 39.977272 ], [ -75.438132, 39.977377 ], [ -75.438166, 39.977492 ], [ -75.438206, 39.977613 ], [ -75.438248, 39.977696 ], [ -75.438304, 39.97777 ], [ -75.438353, 39.977813 ], [ -75.438416, 39.977852 ], [ -75.43849, 39.977889 ], [ -75.438557, 39.977914 ], [ -75.43862, 39.977927 ], [ -75.438712, 39.977937 ], [ -75.438791, 39.977934 ], [ -75.438872, 39.97792 ], [ -75.438952, 39.977897 ], [ -75.43902, 39.977869 ], [ -75.439152, 39.977809 ], [ -75.439669, 39.977571 ], [ -75.440358, 39.97726 ], [ -75.440429, 39.977255 ], [ -75.440574, 39.977216 ], [ -75.441195, 39.976927 ], [ -75.441419, 39.976762 ], [ -75.441308, 39.976621 ], [ -75.441191, 39.976469 ], [ -75.44109, 39.976316 ], [ -75.441023, 39.976192 ], [ -75.440981, 39.976081 ], [ -75.440953, 39.975953 ], [ -75.440925, 39.975778 ], [ -75.440818, 39.975201 ], [ -75.441161, 39.975165 ], [ -75.441467, 39.975139 ], [ -75.441834, 39.975116 ], [ -75.442211, 39.975097 ], [ -75.44294, 39.975065 ], [ -75.444597, 39.974986 ], [ -75.445475, 39.974951 ], [ -75.446072, 39.974917 ], [ -75.446542, 39.974897 ], [ -75.447001, 39.974878 ], [ -75.447904, 39.974843 ], [ -75.448383, 39.974819 ], [ -75.448608, 39.974809 ], [ -75.448978, 39.974795 ], [ -75.449395, 39.97477 ], [ -75.449531, 39.974762 ], [ -75.450105, 39.974725 ], [ -75.450294, 39.974709 ], [ -75.450802, 39.974647 ], [ -75.451104, 39.97461 ], [ -75.451552, 39.974519 ], [ -75.451797, 39.974478 ], [ -75.451985, 39.974447 ], [ -75.452249, 39.974402 ], [ -75.452323, 39.97439 ], [ -75.452995, 39.974277 ], [ -75.453532, 39.974185 ], [ -75.453758, 39.974148 ], [ -75.453977, 39.974112 ], [ -75.45479, 39.973983 ], [ -75.456332, 39.973707 ], [ -75.457616, 39.973478 ], [ -75.458319, 39.97336 ], [ -75.45886, 39.973268 ], [ -75.459555, 39.973154 ], [ -75.46063, 39.972978 ], [ -75.461075, 39.972913 ], [ -75.461418, 39.972851 ], [ -75.46146, 39.972846 ], [ -75.461845, 39.972767 ], [ -75.462161, 39.972695 ], [ -75.462245, 39.972677 ], [ -75.462707, 39.97257 ], [ -75.46304, 39.972484 ], [ -75.463274, 39.97242 ], [ -75.463507, 39.972355 ], [ -75.4637, 39.9723 ], [ -75.463918, 39.972238 ], [ -75.464113, 39.972183 ], [ -75.464264, 39.972138 ], [ -75.464488, 39.972071 ], [ -75.46467, 39.972017 ], [ -75.465361, 39.971807 ], [ -75.465865, 39.971657 ], [ -75.466094, 39.971585 ], [ -75.466272, 39.971534 ], [ -75.466388, 39.9715 ], [ -75.466534, 39.971463 ], [ -75.466707, 39.971416 ], [ -75.466861, 39.971381 ], [ -75.467069, 39.971332 ], [ -75.467429, 39.97125 ], [ -75.467728, 39.971197 ], [ -75.468116, 39.971131 ], [ -75.470235, 39.970791 ], [ -75.470914, 39.97067 ], [ -75.471052, 39.970641 ], [ -75.47117, 39.970617 ], [ -75.471286, 39.970588 ], [ -75.47146, 39.970546 ], [ -75.471633, 39.970506 ], [ -75.471786, 39.970465 ], [ -75.471933, 39.970427 ], [ -75.472082, 39.970386 ], [ -75.47225, 39.970335 ], [ -75.472394, 39.970292 ], [ -75.472554, 39.970241 ], [ -75.472702, 39.970197 ], [ -75.472828, 39.970157 ], [ -75.472978, 39.970103 ], [ -75.473255, 39.970006 ], [ -75.473829, 39.969809 ], [ -75.474005, 39.969748 ], [ -75.474125, 39.969707 ], [ -75.474217, 39.969676 ], [ -75.474468, 39.969592 ], [ -75.474689, 39.969519 ], [ -75.474888, 39.969452 ], [ -75.475888, 39.969118 ], [ -75.477231, 39.968664 ], [ -75.478573, 39.968205 ], [ -75.479227, 39.967974 ], [ -75.479912, 39.967742 ], [ -75.48055, 39.967531 ], [ -75.481259, 39.967296 ], [ -75.481909, 39.967085 ], [ -75.482745, 39.966809 ], [ -75.482835, 39.96678 ], [ -75.483027, 39.966716 ], [ -75.483857, 39.966439 ], [ -75.484684, 39.966156 ], [ -75.485507, 39.965869 ], [ -75.485891, 39.965737 ], [ -75.486143, 39.965649 ], [ -75.486511, 39.965531 ], [ -75.486824, 39.965435 ], [ -75.487234, 39.965325 ], [ -75.4876, 39.96524 ], [ -75.487904, 39.965181 ], [ -75.488126, 39.965143 ], [ -75.488258, 39.965122 ], [ -75.488562, 39.965086 ], [ -75.488723, 39.965064 ], [ -75.488946, 39.965041 ], [ -75.489376, 39.965005 ], [ -75.48952, 39.964997 ], [ -75.489785, 39.964985 ], [ -75.489958, 39.964977 ], [ -75.490309, 39.964967 ], [ -75.491145, 39.964932 ], [ -75.491886, 39.964901 ], [ -75.492504, 39.964884 ], [ -75.492866, 39.964875 ], [ -75.494118, 39.964846 ], [ -75.494537, 39.964844 ], [ -75.494684, 39.964847 ], [ -75.49488, 39.964853 ], [ -75.495393, 39.964877 ], [ -75.495618, 39.964884 ], [ -75.496369, 39.964918 ], [ -75.496706, 39.964934 ], [ -75.496853, 39.964942 ], [ -75.498635, 39.965014 ], [ -75.49887, 39.965023 ], [ -75.499653, 39.965055 ], [ -75.500108, 39.965078 ], [ -75.500693, 39.965102 ], [ -75.501215, 39.965123 ], [ -75.501607, 39.965142 ], [ -75.502082, 39.965163 ], [ -75.502616, 39.965188 ], [ -75.503244, 39.965213 ], [ -75.503506, 39.965225 ], [ -75.503734, 39.965238 ], [ -75.503988, 39.96525 ], [ -75.504273, 39.965269 ], [ -75.504556, 39.965287 ], [ -75.505239, 39.965334 ], [ -75.505904, 39.965385 ], [ -75.506129, 39.965402 ], [ -75.506592, 39.965438 ], [ -75.506703, 39.965446 ], [ -75.507308, 39.965491 ], [ -75.508222, 39.965554 ], [ -75.508404, 39.965571 ], [ -75.508757, 39.965593 ], [ -75.508873, 39.965598 ], [ -75.510497, 39.965708 ], [ -75.510751, 39.965726 ], [ -75.511001, 39.965745 ], [ -75.511181, 39.965753 ], [ -75.512463, 39.965836 ], [ -75.513089, 39.965877 ], [ -75.513787, 39.965923 ], [ -75.514799, 39.965999 ], [ -75.516144, 39.966086 ], [ -75.516678, 39.966136 ], [ -75.517369, 39.966189 ], [ -75.518836, 39.966288 ], [ -75.519476, 39.966332 ], [ -75.519949, 39.966364 ], [ -75.520498, 39.966404 ], [ -75.520881, 39.966438 ], [ -75.521493, 39.966494 ], [ -75.521605, 39.966504 ], [ -75.521614, 39.966505 ], [ -75.522277, 39.966546 ], [ -75.523052, 39.966592 ], [ -75.523642, 39.966636 ], [ -75.524324, 39.966679 ], [ -75.524644, 39.966701 ], [ -75.525112, 39.966733 ], [ -75.525633, 39.966766 ], [ -75.526411, 39.966816 ], [ -75.526845, 39.966834 ], [ -75.526881, 39.966834 ], [ -75.527101, 39.966836 ], [ -75.527382, 39.966834 ], [ -75.527819, 39.966823 ], [ -75.528257, 39.966799 ], [ -75.528564, 39.966774 ], [ -75.528744, 39.96676 ], [ -75.529519, 39.966699 ], [ -75.530085, 39.966665 ], [ -75.530684, 39.966628 ], [ -75.531236, 39.966594 ], [ -75.533537, 39.966417 ], [ -75.533756, 39.966401 ], [ -75.534359, 39.966355 ], [ -75.534453, 39.966348 ], [ -75.535755, 39.966237 ], [ -75.536408, 39.966187 ], [ -75.536615, 39.96617 ], [ -75.537758, 39.966091 ], [ -75.538467, 39.966044 ], [ -75.540315, 39.965902 ], [ -75.54086, 39.965863 ], [ -75.541405, 39.965827 ], [ -75.542302, 39.965768 ], [ -75.54272, 39.96574 ], [ -75.542927, 39.965727 ], [ -75.543979, 39.965658 ], [ -75.54419, 39.96565 ], [ -75.544419, 39.965639 ], [ -75.544516, 39.965639 ], [ -75.544583, 39.965641 ], [ -75.544716, 39.965646 ], [ -75.544865, 39.965644 ], [ -75.545, 39.965649 ], [ -75.545124, 39.965651 ], [ -75.545261, 39.965657 ], [ -75.545407, 39.965667 ], [ -75.545532, 39.965681 ], [ -75.545673, 39.965699 ], [ -75.545842, 39.965724 ], [ -75.546061, 39.965753 ], [ -75.546088, 39.965756 ], [ -75.54627, 39.965787 ], [ -75.546413, 39.965816 ], [ -75.5466, 39.965849 ], [ -75.547697, 39.966107 ], [ -75.547733, 39.966114 ], [ -75.54838, 39.966272 ], [ -75.549168, 39.966453 ], [ -75.549792, 39.966597 ], [ -75.550069, 39.96666 ], [ -75.551116, 39.966906 ], [ -75.553167, 39.967369 ], [ -75.55352, 39.96745 ], [ -75.553698, 39.967486 ], [ -75.554091, 39.967568 ], [ -75.554518, 39.967675 ], [ -75.555251, 39.967839 ], [ -75.555981, 39.968005 ], [ -75.557693, 39.968392 ], [ -75.55816, 39.968498 ], [ -75.558533, 39.968582 ], [ -75.560811, 39.969086 ], [ -75.561539, 39.969246 ], [ -75.562435, 39.969451 ], [ -75.562628, 39.969489 ], [ -75.563223, 39.969607 ], [ -75.563347, 39.969628 ], [ -75.563696, 39.969685 ], [ -75.564054, 39.969727 ], [ -75.564528, 39.969767 ], [ -75.56497, 39.969787 ], [ -75.565193, 39.969797 ], [ -75.565535, 39.969789 ], [ -75.565817, 39.969778 ], [ -75.566073, 39.969761 ], [ -75.56631, 39.969747 ], [ -75.566575, 39.969721 ], [ -75.566811, 39.969695 ], [ -75.566911, 39.96968 ], [ -75.567072, 39.969657 ], [ -75.567343, 39.969609 ], [ -75.567616, 39.969563 ], [ -75.567681, 39.969553 ], [ -75.568064, 39.969493 ], [ -75.568956, 39.969361 ], [ -75.569657, 39.96926 ], [ -75.571356, 39.969013 ], [ -75.572378, 39.968862 ], [ -75.57248, 39.968846 ], [ -75.572586, 39.96883 ], [ -75.5733, 39.96872 ], [ -75.573593, 39.968675 ], [ -75.574047, 39.968606 ], [ -75.574542, 39.96853 ], [ -75.574709, 39.968504 ], [ -75.574909, 39.968474 ], [ -75.575899, 39.968323 ], [ -75.576951, 39.968165 ], [ -75.577266, 39.968118 ], [ -75.577808, 39.968037 ], [ -75.577882, 39.968026 ], [ -75.578231, 39.967976 ], [ -75.578427, 39.967942 ], [ -75.578521, 39.967929 ], [ -75.578637, 39.967912 ], [ -75.578816, 39.967886 ], [ -75.57898, 39.967867 ], [ -75.579067, 39.967855 ], [ -75.579162, 39.967842 ], [ -75.57954, 39.967791 ], [ -75.579617, 39.967777 ], [ -75.579832, 39.967802 ], [ -75.579968, 39.967799 ], [ -75.580052, 39.967808 ], [ -75.580131, 39.967828 ], [ -75.580212, 39.967861 ], [ -75.580289, 39.967909 ], [ -75.58037, 39.967974 ], [ -75.580456, 39.968064 ], [ -75.580539, 39.968168 ], [ -75.580558, 39.968195 ], [ -75.580643, 39.968277 ], [ -75.580683, 39.96832 ], [ -75.580722, 39.968362 ], [ -75.580751, 39.96839 ], [ -75.580805, 39.96843 ], [ -75.580878, 39.96848 ], [ -75.581002, 39.968548 ], [ -75.581263, 39.968671 ], [ -75.581612, 39.968845 ], [ -75.581801, 39.968945 ], [ -75.581876, 39.96899 ], [ -75.581985, 39.969071 ], [ -75.582077, 39.969151 ], [ -75.582158, 39.969243 ], [ -75.582227, 39.969347 ], [ -75.582285, 39.969471 ], [ -75.582363, 39.969664 ], [ -75.582473, 39.969947 ], [ -75.582522, 39.970068 ], [ -75.582611, 39.970272 ], [ -75.582743, 39.970476 ], [ -75.582867, 39.970833 ], [ -75.582898, 39.97092 ], [ -75.582912, 39.970963 ], [ -75.582938, 39.971025 ], [ -75.582978, 39.971134 ], [ -75.583084, 39.971439 ], [ -75.583112, 39.971685 ], [ -75.583137, 39.97179 ], [ -75.583152, 39.971903 ], [ -75.58315, 39.971973 ], [ -75.583141, 39.972018 ], [ -75.583131, 39.972048 ], [ -75.583103, 39.972113 ], [ -75.58306, 39.972173 ], [ -75.583002, 39.972225 ], [ -75.582937, 39.972271 ], [ -75.58286, 39.972305 ], [ -75.582773, 39.972335 ], [ -75.582683, 39.972353 ], [ -75.582589, 39.972359 ], [ -75.582494, 39.972353 ], [ -75.5824, 39.972336 ], [ -75.582312, 39.972305 ], [ -75.582246, 39.972269 ], [ -75.582162, 39.972207 ], [ -75.582096, 39.972153 ], [ -75.582042, 39.972094 ], [ -75.581994, 39.972035 ], [ -75.581963, 39.971976 ], [ -75.581948, 39.971919 ], [ -75.581949, 39.971865 ], [ -75.581966, 39.971815 ], [ -75.581997, 39.97177 ], [ -75.582022, 39.971745 ], [ -75.58209, 39.971682 ], [ -75.582461, 39.971452 ], [ -75.582904, 39.971179 ], [ -75.582978, 39.971134 ], [ -75.583023, 39.971109 ], [ -75.58307, 39.971081 ], [ -75.583107, 39.971053 ], [ -75.583407, 39.970867 ], [ -75.583624, 39.970741 ], [ -75.583739, 39.970673 ], [ -75.584032, 39.970496 ], [ -75.584103, 39.970451 ], [ -75.584516, 39.970196 ], [ -75.584668, 39.970103 ], [ -75.585284, 39.969727 ], [ -75.585495, 39.969597 ], [ -75.585671, 39.969488 ], [ -75.585887, 39.969356 ], [ -75.586311, 39.969103 ], [ -75.586579, 39.96895 ], [ -75.586841, 39.968809 ], [ -75.587038, 39.968703 ], [ -75.587059, 39.968693 ], [ -75.587195, 39.968624 ], [ -75.587242, 39.968603 ], [ -75.587428, 39.96852 ], [ -75.587679, 39.96841 ], [ -75.588268, 39.968157 ], [ -75.588451, 39.968075 ], [ -75.589184, 39.967745 ], [ -75.589404, 39.967649 ], [ -75.589671, 39.967521 ], [ -75.589978, 39.967376 ], [ -75.590293, 39.967226 ], [ -75.590563, 39.967099 ], [ -75.59116, 39.966828 ], [ -75.591453, 39.966694 ], [ -75.591738, 39.966569 ], [ -75.592162, 39.96638 ], [ -75.592339, 39.966299 ], [ -75.592525, 39.966212 ], [ -75.593066, 39.965944 ], [ -75.594088, 39.965469 ], [ -75.594504, 39.965284 ], [ -75.595344, 39.964912 ], [ -75.595613, 39.964794 ], [ -75.596666, 39.964327 ], [ -75.597918, 39.963766 ], [ -75.598579, 39.963466 ], [ -75.599113, 39.963224 ], [ -75.600044, 39.9628 ], [ -75.60042, 39.962627 ], [ -75.600876, 39.962424 ], [ -75.601311, 39.962227 ], [ -75.601695, 39.96206 ], [ -75.602103, 39.961884 ], [ -75.602282, 39.961793 ], [ -75.602419, 39.961714 ], [ -75.602809, 39.962202 ], [ -75.602963, 39.962381 ], [ -75.603214, 39.962677 ], [ -75.603499, 39.962551 ], [ -75.604768, 39.962024 ], [ -75.605035, 39.961912 ], [ -75.6055, 39.961695 ], [ -75.605548, 39.961642 ], [ -75.605603, 39.961594 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.604304, 39.959604 ], [ -75.604232, 39.959537 ], [ -75.604137, 39.959452 ], [ -75.603472, 39.958805 ], [ -75.603177, 39.958489 ], [ -75.602751, 39.958082 ], [ -75.602276, 39.95764 ], [ -75.601914, 39.957298 ], [ -75.60131, 39.956752 ], [ -75.601193, 39.956648 ], [ -75.600991, 39.956467 ], [ -75.600267, 39.955799 ], [ -75.599814, 39.955394 ], [ -75.599333, 39.954966 ], [ -75.599414, 39.954917 ], [ -75.599476, 39.954883 ], [ -75.599879, 39.954686 ], [ -75.601276, 39.954073 ], [ -75.600626, 39.953321 ], [ -75.600111, 39.952737 ], [ -75.599948, 39.952549 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302584", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.599947, 39.952548 ], [ -75.599869, 39.95246 ], [ -75.598496, 39.950912 ], [ -75.598421, 39.950822 ], [ -75.598237, 39.950904 ], [ -75.59715, 39.951398 ], [ -75.596623, 39.951636 ], [ -75.596029, 39.951905 ], [ -75.596094, 39.951979 ], [ -75.596201, 39.952082 ], [ -75.596273, 39.952149 ], [ -75.596346, 39.95222 ], [ -75.596441, 39.952304 ], [ -75.596554, 39.952409 ], [ -75.596836, 39.952667 ], [ -75.597217, 39.95301 ], [ -75.597445, 39.953226 ], [ -75.59762, 39.953385 ], [ -75.597757, 39.953511 ], [ -75.597901, 39.953651 ], [ -75.598047, 39.953787 ], [ -75.598558, 39.954251 ], [ -75.599177, 39.954822 ], [ -75.599333, 39.954966 ], [ -75.599814, 39.955394 ], [ -75.600267, 39.955799 ], [ -75.600991, 39.956467 ], [ -75.601193, 39.956648 ], [ -75.60131, 39.956752 ], [ -75.601914, 39.957298 ], [ -75.602276, 39.95764 ], [ -75.602751, 39.958082 ], [ -75.603177, 39.958489 ], [ -75.603472, 39.958805 ], [ -75.604137, 39.959452 ], [ -75.604232, 39.959537 ], [ -75.604304, 39.959604 ], [ -75.604427, 39.959723 ], [ -75.604488, 39.959776 ], [ -75.604614, 39.959889 ], [ -75.604767, 39.960059 ], [ -75.604798, 39.960093 ], [ -75.604868, 39.960165 ], [ -75.604901, 39.960196 ], [ -75.605077, 39.960361 ], [ -75.605153, 39.960429 ], [ -75.605213, 39.960481 ], [ -75.605274, 39.960547 ], [ -75.605644, 39.960983 ], [ -75.605807, 39.961185 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.60383, 39.960007 ], [ -75.603537, 39.960137 ], [ -75.603262, 39.96026 ], [ -75.602038, 39.960816 ], [ -75.601723, 39.96096 ], [ -75.60098, 39.961293 ], [ -75.60045, 39.961521 ], [ -75.599806, 39.961804 ], [ -75.598996, 39.962157 ], [ -75.598477, 39.962385 ], [ -75.597979, 39.962599 ], [ -75.597362, 39.962872 ], [ -75.596561, 39.963227 ], [ -75.59604, 39.963457 ], [ -75.595858, 39.963539 ], [ -75.59535, 39.963766 ], [ -75.59517, 39.963844 ], [ -75.594661, 39.964068 ], [ -75.593767, 39.964462 ], [ -75.593114, 39.964755 ], [ -75.5924, 39.965068 ], [ -75.592366, 39.965084 ], [ -75.591749, 39.965361 ], [ -75.591414, 39.965516 ], [ -75.591231, 39.965654 ], [ -75.591152, 39.965714 ], [ -75.5911, 39.965759 ], [ -75.591047, 39.965813 ], [ -75.591008, 39.965857 ], [ -75.59098, 39.965893 ], [ -75.590944, 39.965945 ], [ -75.590923, 39.965987 ], [ -75.590903, 39.966048 ], [ -75.590887, 39.966114 ], [ -75.590879, 39.966163 ], [ -75.590867, 39.966237 ], [ -75.590845, 39.966417 ], [ -75.590813, 39.966564 ], [ -75.590797, 39.966625 ], [ -75.590767, 39.966694 ], [ -75.590732, 39.966766 ], [ -75.590666, 39.966859 ], [ -75.590615, 39.966913 ], [ -75.590553, 39.96697 ], [ -75.590487, 39.967022 ], [ -75.590413, 39.967068 ], [ -75.590344, 39.967107 ], [ -75.589913, 39.9673 ], [ -75.58913, 39.96767 ], [ -75.588378, 39.968 ], [ -75.588218, 39.96807 ], [ -75.587623, 39.96833 ], [ -75.587346, 39.968447 ], [ -75.587081, 39.968573 ], [ -75.586749, 39.968741 ], [ -75.586676, 39.968781 ], [ -75.586426, 39.968919 ], [ -75.586244, 39.969018 ], [ -75.585427, 39.96953 ], [ -75.584994, 39.969792 ], [ -75.584589, 39.97003 ], [ -75.584498, 39.970084 ], [ -75.584361, 39.970165 ], [ -75.584014, 39.970372 ], [ -75.583941, 39.970417 ], [ -75.584032, 39.970496 ], [ -75.584153, 39.970617 ], [ -75.584243, 39.970707 ], [ -75.584404, 39.970883 ], [ -75.584425, 39.970908 ], [ -75.584453, 39.970946 ], [ -75.584471, 39.97098 ], [ -75.584493, 39.971021 ], [ -75.584516, 39.971091 ], [ -75.584522, 39.971164 ], [ -75.58451, 39.971239 ], [ -75.584481, 39.971322 ], [ -75.584431, 39.971416 ], [ -75.584368, 39.971511 ], [ -75.584302, 39.971585 ], [ -75.584234, 39.971647 ], [ -75.584159, 39.971696 ], [ -75.584083, 39.971731 ], [ -75.584003, 39.971755 ], [ -75.583923, 39.971764 ], [ -75.583835, 39.971765 ], [ -75.583747, 39.971761 ], [ -75.58366, 39.971748 ], [ -75.583573, 39.971717 ], [ -75.583492, 39.971679 ], [ -75.583422, 39.97163 ], [ -75.583359, 39.971571 ], [ -75.583302, 39.971486 ], [ -75.583231, 39.97135 ], [ -75.583169, 39.971198 ], [ -75.583107, 39.971053 ], [ -75.58306, 39.970946 ], [ -75.583029, 39.970875 ], [ -75.582957, 39.970763 ], [ -75.582875, 39.970489 ], [ -75.582584, 39.96965 ], [ -75.581918, 39.967759 ], [ -75.581875, 39.967644 ], [ -75.581859, 39.967506 ], [ -75.581855, 39.96748 ], [ -75.581827, 39.967387 ], [ -75.581812, 39.967345 ], [ -75.581791, 39.967292 ], [ -75.581767, 39.967209 ], [ -75.581702, 39.96698 ], [ -75.581691, 39.96689 ], [ -75.581696, 39.966809 ], [ -75.581709, 39.966733 ], [ -75.581735, 39.966664 ], [ -75.581773, 39.966605 ], [ -75.581796, 39.966578 ], [ -75.581823, 39.96655 ], [ -75.581886, 39.966502 ], [ -75.581961, 39.966462 ], [ -75.582047, 39.966434 ], [ -75.58214, 39.966418 ], [ -75.58224, 39.966409 ], [ -75.582336, 39.966412 ], [ -75.582427, 39.966429 ], [ -75.582509, 39.966457 ], [ -75.582586, 39.966496 ], [ -75.582653, 39.966544 ], [ -75.582713, 39.966601 ], [ -75.582757, 39.966663 ], [ -75.582787, 39.966733 ], [ -75.582797, 39.966784 ], [ -75.582797, 39.966833 ], [ -75.582792, 39.966892 ], [ -75.582771, 39.966955 ], [ -75.582737, 39.967017 ], [ -75.5827, 39.967065 ], [ -75.582658, 39.967107 ], [ -75.582608, 39.967151 ], [ -75.58254, 39.967188 ], [ -75.582465, 39.967222 ], [ -75.582408, 39.967242 ], [ -75.582342, 39.967259 ], [ -75.581812, 39.967345 ], [ -75.581761, 39.967356 ], [ -75.581717, 39.967365 ], [ -75.581656, 39.967376 ], [ -75.581277, 39.96745 ], [ -75.581212, 39.967458 ], [ -75.581153, 39.967465 ], [ -75.581087, 39.967473 ], [ -75.580826, 39.967504 ], [ -75.580238, 39.96758 ], [ -75.580103, 39.967599 ], [ -75.580077, 39.967603 ], [ -75.579565, 39.967675 ], [ -75.579522, 39.967681 ], [ -75.57914, 39.967727 ], [ -75.578902, 39.967756 ], [ -75.578623, 39.967796 ], [ -75.578499, 39.967813 ], [ -75.578373, 39.967836 ], [ -75.578211, 39.96786 ], [ -75.577849, 39.967915 ], [ -75.577647, 39.967946 ], [ -75.577233, 39.968008 ], [ -75.576877, 39.968064 ], [ -75.57587, 39.968216 ], [ -75.574938, 39.968357 ], [ -75.57445, 39.96843 ], [ -75.573242, 39.968612 ], [ -75.57234, 39.968753 ], [ -75.571896, 39.968818 ], [ -75.571304, 39.968897 ], [ -75.570324, 39.969051 ], [ -75.569546, 39.969159 ], [ -75.568874, 39.969262 ], [ -75.568747, 39.969279 ], [ -75.568589, 39.969302 ], [ -75.568041, 39.969383 ], [ -75.56759, 39.969453 ], [ -75.567355, 39.969491 ], [ -75.567279, 39.969505 ], [ -75.567064, 39.969539 ], [ -75.566901, 39.969561 ], [ -75.566831, 39.96957 ], [ -75.566619, 39.969601 ], [ -75.566403, 39.969625 ], [ -75.566384, 39.969626 ], [ -75.566152, 39.969645 ], [ -75.565936, 39.969659 ], [ -75.565761, 39.969668 ], [ -75.56519, 39.969677 ], [ -75.564943, 39.969677 ], [ -75.564712, 39.969665 ], [ -75.564698, 39.969664 ], [ -75.564532, 39.969653 ], [ -75.564306, 39.96964 ], [ -75.564075, 39.96962 ], [ -75.563835, 39.969594 ], [ -75.563611, 39.969564 ], [ -75.563381, 39.969528 ], [ -75.563249, 39.969499 ], [ -75.562514, 39.96935 ], [ -75.561653, 39.969156 ], [ -75.560227, 39.968841 ], [ -75.558584, 39.968475 ], [ -75.558208, 39.968385 ], [ -75.55581, 39.967852 ], [ -75.555658, 39.967816 ], [ -75.555398, 39.967756 ], [ -75.554385, 39.967518 ], [ -75.553947, 39.967421 ], [ -75.55321, 39.967257 ], [ -75.552867, 39.967178 ], [ -75.552602, 39.967119 ], [ -75.551975, 39.966981 ], [ -75.551161, 39.9668 ], [ -75.550362, 39.966615 ], [ -75.550186, 39.966573 ], [ -75.549916, 39.966508 ], [ -75.549833, 39.966494 ], [ -75.548332, 39.966151 ], [ -75.548026, 39.96609 ], [ -75.547102, 39.965885 ], [ -75.546747, 39.965807 ], [ -75.546549, 39.965762 ], [ -75.546357, 39.96572 ], [ -75.546172, 39.965686 ], [ -75.545902, 39.965638 ], [ -75.545683, 39.965606 ], [ -75.545538, 39.965588 ], [ -75.545375, 39.965575 ], [ -75.545187, 39.965559 ], [ -75.545006, 39.965548 ], [ -75.544791, 39.96554 ], [ -75.544441, 39.965539 ], [ -75.544189, 39.965537 ], [ -75.542715, 39.965629 ], [ -75.542591, 39.965635 ], [ -75.542293, 39.965649 ], [ -75.541564, 39.9657 ], [ -75.540097, 39.965802 ], [ -75.539176, 39.965872 ], [ -75.538561, 39.965919 ], [ -75.538435, 39.965928 ], [ -75.53802, 39.965958 ], [ -75.535687, 39.966131 ], [ -75.53527, 39.966167 ], [ -75.534988, 39.96619 ], [ -75.534444, 39.966235 ], [ -75.534345, 39.966243 ], [ -75.532938, 39.966356 ], [ -75.531257, 39.966477 ], [ -75.530604, 39.966521 ], [ -75.530313, 39.966541 ], [ -75.530104, 39.966555 ], [ -75.529567, 39.966592 ], [ -75.528669, 39.966657 ], [ -75.528432, 39.966675 ], [ -75.528348, 39.966682 ], [ -75.527923, 39.966705 ], [ -75.527114, 39.966729 ], [ -75.526885, 39.966727 ], [ -75.526822, 39.966726 ], [ -75.526511, 39.966713 ], [ -75.525494, 39.966651 ], [ -75.524344, 39.966575 ], [ -75.524149, 39.966562 ], [ -75.523468, 39.966508 ], [ -75.522846, 39.966468 ], [ -75.522257, 39.966422 ], [ -75.521643, 39.966373 ], [ -75.521385, 39.966358 ], [ -75.521311, 39.966352 ], [ -75.521029, 39.966328 ], [ -75.52051, 39.966293 ], [ -75.519898, 39.966249 ], [ -75.51907, 39.966195 ], [ -75.518031, 39.966124 ], [ -75.517906, 39.966116 ], [ -75.517871, 39.966114 ], [ -75.517392, 39.966079 ], [ -75.5168, 39.966032 ], [ -75.516185, 39.965983 ], [ -75.515413, 39.965931 ], [ -75.514802, 39.965891 ], [ -75.513826, 39.965816 ], [ -75.513106, 39.965768 ], [ -75.511427, 39.965657 ], [ -75.511172, 39.965637 ], [ -75.511012, 39.965629 ], [ -75.510706, 39.96561 ], [ -75.509289, 39.965517 ], [ -75.508875, 39.965489 ], [ -75.508766, 39.965482 ], [ -75.50847, 39.965458 ], [ -75.508383, 39.965451 ], [ -75.508089, 39.96543 ], [ -75.507331, 39.965378 ], [ -75.507024, 39.965356 ], [ -75.506703, 39.965333 ], [ -75.506599, 39.965326 ], [ -75.505882, 39.965275 ], [ -75.505327, 39.965233 ], [ -75.504626, 39.965185 ], [ -75.50416, 39.965154 ], [ -75.503672, 39.965126 ], [ -75.502654, 39.965075 ], [ -75.501635, 39.96503 ], [ -75.501384, 39.965019 ], [ -75.500678, 39.964988 ], [ -75.500416, 39.964977 ], [ -75.500138, 39.964966 ], [ -75.499658, 39.964946 ], [ -75.499149, 39.964923 ], [ -75.49761, 39.964858 ], [ -75.496859, 39.964822 ], [ -75.496603, 39.964811 ], [ -75.494906, 39.964742 ], [ -75.494436, 39.964732 ], [ -75.494098, 39.964734 ], [ -75.493293, 39.964751 ], [ -75.492493, 39.964771 ], [ -75.491925, 39.964791 ], [ -75.491481, 39.964808 ], [ -75.491137, 39.964821 ], [ -75.490477, 39.964845 ], [ -75.489809, 39.964871 ], [ -75.489604, 39.96488 ], [ -75.489593, 39.96488 ], [ -75.489328, 39.964895 ], [ -75.489132, 39.964909 ], [ -75.488982, 39.964923 ], [ -75.488789, 39.964943 ], [ -75.488666, 39.964957 ], [ -75.48856, 39.964971 ], [ -75.488475, 39.96498 ], [ -75.48838, 39.964993 ], [ -75.488125, 39.965029 ], [ -75.48803, 39.965047 ], [ -75.487648, 39.965118 ], [ -75.487293, 39.965198 ], [ -75.487112, 39.965243 ], [ -75.486991, 39.965273 ], [ -75.486936, 39.965288 ], [ -75.486586, 39.965388 ], [ -75.486239, 39.965497 ], [ -75.485974, 39.965587 ], [ -75.485821, 39.965637 ], [ -75.483027, 39.966603 ], [ -75.482755, 39.966698 ], [ -75.48266, 39.966733 ], [ -75.481858, 39.96698 ], [ -75.48109, 39.967231 ], [ -75.480473, 39.96744 ], [ -75.479537, 39.967755 ], [ -75.479236, 39.967858 ], [ -75.47894, 39.96796 ], [ -75.478223, 39.968211 ], [ -75.476784, 39.968699 ], [ -75.476063, 39.968938 ], [ -75.475653, 39.969076 ], [ -75.47482, 39.969356 ], [ -75.474379, 39.969501 ], [ -75.473953, 39.969643 ], [ -75.473879, 39.969668 ], [ -75.473478, 39.969808 ], [ -75.472923, 39.97 ], [ -75.472757, 39.970051 ], [ -75.472642, 39.970087 ], [ -75.472451, 39.970152 ], [ -75.472251, 39.970214 ], [ -75.472061, 39.970272 ], [ -75.471907, 39.970315 ], [ -75.471758, 39.970352 ], [ -75.471559, 39.970409 ], [ -75.471395, 39.97045 ], [ -75.471259, 39.970479 ], [ -75.47106, 39.970521 ], [ -75.470813, 39.970577 ], [ -75.470507, 39.970634 ], [ -75.469839, 39.970749 ], [ -75.469068, 39.97087 ], [ -75.468852, 39.970904 ], [ -75.468002, 39.971044 ], [ -75.467754, 39.971086 ], [ -75.467376, 39.971152 ], [ -75.467066, 39.971222 ], [ -75.46692, 39.971256 ], [ -75.466464, 39.971371 ], [ -75.466011, 39.971498 ], [ -75.465345, 39.971698 ], [ -75.463847, 39.972147 ], [ -75.463552, 39.972229 ], [ -75.462971, 39.972386 ], [ -75.462707, 39.972453 ], [ -75.462366, 39.972536 ], [ -75.462159, 39.972586 ], [ -75.461851, 39.972654 ], [ -75.46158, 39.972703 ], [ -75.4615, 39.972718 ], [ -75.461433, 39.972732 ], [ -75.461171, 39.972778 ], [ -75.460605, 39.972868 ], [ -75.460078, 39.972957 ], [ -75.459479, 39.973051 ], [ -75.459283, 39.973085 ], [ -75.458813, 39.973164 ], [ -75.457582, 39.973379 ], [ -75.456432, 39.973572 ], [ -75.455125, 39.973813 ], [ -75.454736, 39.973879 ], [ -75.454366, 39.973937 ], [ -75.453947, 39.974002 ], [ -75.453807, 39.974025 ], [ -75.453227, 39.974126 ], [ -75.452952, 39.974174 ], [ -75.452306, 39.974284 ], [ -75.451769, 39.97437 ], [ -75.451501, 39.974412 ], [ -75.451371, 39.974438 ], [ -75.451067, 39.974499 ], [ -75.450823, 39.974528 ], [ -75.450778, 39.974533 ], [ -75.450414, 39.974578 ], [ -75.450161, 39.974602 ], [ -75.449861, 39.974627 ], [ -75.449511, 39.974651 ], [ -75.449208, 39.974669 ], [ -75.448953, 39.974681 ], [ -75.447923, 39.974734 ], [ -75.447536, 39.97475 ], [ -75.446994, 39.974771 ], [ -75.446058, 39.974816 ], [ -75.442933, 39.974951 ], [ -75.44219, 39.97499 ], [ -75.4419, 39.975009 ], [ -75.441446, 39.975037 ], [ -75.441307, 39.975041 ], [ -75.440981, 39.975066 ], [ -75.440792, 39.975083 ], [ -75.44058, 39.97511 ], [ -75.440393, 39.975135 ], [ -75.440204, 39.975167 ], [ -75.440032, 39.975198 ], [ -75.439858, 39.975232 ], [ -75.439652, 39.975275 ], [ -75.439428, 39.975328 ], [ -75.439219, 39.975384 ], [ -75.439043, 39.975429 ], [ -75.438853, 39.975484 ], [ -75.438594, 39.97557 ], [ -75.438336, 39.975663 ], [ -75.438282, 39.975684 ], [ -75.438076, 39.97576 ], [ -75.437682, 39.975915 ], [ -75.437375, 39.976036 ], [ -75.437131, 39.976133 ], [ -75.436465, 39.9764 ], [ -75.435857, 39.976647 ], [ -75.435735, 39.976697 ], [ -75.435333, 39.976864 ], [ -75.435189, 39.976925 ], [ -75.434981, 39.977011 ], [ -75.434728, 39.977111 ], [ -75.434502, 39.977211 ], [ -75.43337, 39.977668 ], [ -75.43336, 39.977672 ], [ -75.432718, 39.97793 ], [ -75.43198, 39.978237 ], [ -75.42996, 39.979036 ], [ -75.428349, 39.97969 ], [ -75.42746, 39.980101 ], [ -75.426692, 39.980475 ], [ -75.425904, 39.980866 ], [ -75.425831, 39.9809 ], [ -75.425626, 39.981001 ], [ -75.424976, 39.981319 ], [ -75.424303, 39.981646 ], [ -75.423751, 39.981913 ], [ -75.423054, 39.982246 ], [ -75.422424, 39.982564 ], [ -75.421629, 39.982945 ], [ -75.421215, 39.983148 ], [ -75.419491, 39.98399 ], [ -75.418353, 39.984544 ], [ -75.417346, 39.985028 ], [ -75.417099, 39.985144 ], [ -75.416934, 39.985217 ], [ -75.416787, 39.985278 ], [ -75.416651, 39.985326 ], [ -75.416558, 39.985357 ], [ -75.416406, 39.985403 ], [ -75.416158, 39.985468 ], [ -75.416119, 39.985475 ], [ -75.415976, 39.985506 ], [ -75.415883, 39.985524 ], [ -75.415842, 39.985531 ], [ -75.415652, 39.985558 ], [ -75.415388, 39.985585 ], [ -75.415266, 39.985594 ], [ -75.414794, 39.98563 ], [ -75.413561, 39.985741 ], [ -75.412712, 39.985816 ], [ -75.412135, 39.985864 ], [ -75.410518, 39.986007 ], [ -75.410034, 39.986053 ], [ -75.409213, 39.98611 ], [ -75.408701, 39.986145 ], [ -75.408114, 39.986197 ], [ -75.40763, 39.986233 ], [ -75.406224, 39.98634 ], [ -75.405127, 39.986414 ], [ -75.404511, 39.986467 ], [ -75.403506, 39.986543 ], [ -75.40329, 39.986562 ], [ -75.403122, 39.986576 ], [ -75.402768, 39.986601 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302585", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.599947, 39.952548 ], [ -75.599869, 39.95246 ], [ -75.598496, 39.950912 ], [ -75.598421, 39.950822 ], [ -75.598237, 39.950904 ], [ -75.59715, 39.951398 ], [ -75.596623, 39.951636 ], [ -75.596029, 39.951905 ], [ -75.596094, 39.951979 ], [ -75.596201, 39.952082 ], [ -75.596273, 39.952149 ], [ -75.596346, 39.95222 ], [ -75.596441, 39.952304 ], [ -75.596554, 39.952409 ], [ -75.596836, 39.952667 ], [ -75.597217, 39.95301 ], [ -75.597445, 39.953226 ], [ -75.59762, 39.953385 ], [ -75.597757, 39.953511 ], [ -75.597901, 39.953651 ], [ -75.598047, 39.953787 ], [ -75.598558, 39.954251 ], [ -75.599177, 39.954822 ], [ -75.599333, 39.954966 ], [ -75.599814, 39.955394 ], [ -75.600267, 39.955799 ], [ -75.600991, 39.956467 ], [ -75.601193, 39.956648 ], [ -75.60131, 39.956752 ], [ -75.601914, 39.957298 ], [ -75.602276, 39.95764 ], [ -75.602751, 39.958082 ], [ -75.603177, 39.958489 ], [ -75.603472, 39.958805 ], [ -75.604137, 39.959452 ], [ -75.604232, 39.959537 ], [ -75.604304, 39.959604 ], [ -75.604427, 39.959723 ], [ -75.604488, 39.959776 ], [ -75.604614, 39.959889 ], [ -75.604767, 39.960059 ], [ -75.604798, 39.960093 ], [ -75.604868, 39.960165 ], [ -75.604901, 39.960196 ], [ -75.605077, 39.960361 ], [ -75.605153, 39.960429 ], [ -75.605213, 39.960481 ], [ -75.605274, 39.960547 ], [ -75.605644, 39.960983 ], [ -75.605807, 39.961185 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.60383, 39.960007 ], [ -75.603537, 39.960137 ], [ -75.603262, 39.96026 ], [ -75.602038, 39.960816 ], [ -75.601723, 39.96096 ], [ -75.60098, 39.961293 ], [ -75.60045, 39.961521 ], [ -75.599806, 39.961804 ], [ -75.598996, 39.962157 ], [ -75.598477, 39.962385 ], [ -75.597979, 39.962599 ], [ -75.597362, 39.962872 ], [ -75.596561, 39.963227 ], [ -75.59604, 39.963457 ], [ -75.595858, 39.963539 ], [ -75.59535, 39.963766 ], [ -75.59517, 39.963844 ], [ -75.594661, 39.964068 ], [ -75.593767, 39.964462 ], [ -75.593114, 39.964755 ], [ -75.5924, 39.965068 ], [ -75.592366, 39.965084 ], [ -75.591749, 39.965361 ], [ -75.591414, 39.965516 ], [ -75.591231, 39.965654 ], [ -75.591152, 39.965714 ], [ -75.5911, 39.965759 ], [ -75.591047, 39.965813 ], [ -75.591008, 39.965857 ], [ -75.59098, 39.965893 ], [ -75.590944, 39.965945 ], [ -75.590923, 39.965987 ], [ -75.590903, 39.966048 ], [ -75.590887, 39.966114 ], [ -75.590879, 39.966163 ], [ -75.590867, 39.966237 ], [ -75.590845, 39.966417 ], [ -75.590813, 39.966564 ], [ -75.590797, 39.966625 ], [ -75.590767, 39.966694 ], [ -75.590732, 39.966766 ], [ -75.590666, 39.966859 ], [ -75.590615, 39.966913 ], [ -75.590553, 39.96697 ], [ -75.590487, 39.967022 ], [ -75.590413, 39.967068 ], [ -75.590344, 39.967107 ], [ -75.589913, 39.9673 ], [ -75.58913, 39.96767 ], [ -75.588378, 39.968 ], [ -75.588218, 39.96807 ], [ -75.587623, 39.96833 ], [ -75.587346, 39.968447 ], [ -75.587081, 39.968573 ], [ -75.586749, 39.968741 ], [ -75.586676, 39.968781 ], [ -75.586426, 39.968919 ], [ -75.586244, 39.969018 ], [ -75.585427, 39.96953 ], [ -75.584994, 39.969792 ], [ -75.584589, 39.97003 ], [ -75.584498, 39.970084 ], [ -75.584361, 39.970165 ], [ -75.584014, 39.970372 ], [ -75.583941, 39.970417 ], [ -75.584032, 39.970496 ], [ -75.584153, 39.970617 ], [ -75.584243, 39.970707 ], [ -75.584404, 39.970883 ], [ -75.584425, 39.970908 ], [ -75.584453, 39.970946 ], [ -75.584471, 39.97098 ], [ -75.584493, 39.971021 ], [ -75.584516, 39.971091 ], [ -75.584522, 39.971164 ], [ -75.58451, 39.971239 ], [ -75.584481, 39.971322 ], [ -75.584431, 39.971416 ], [ -75.584368, 39.971511 ], [ -75.584302, 39.971585 ], [ -75.584234, 39.971647 ], [ -75.584159, 39.971696 ], [ -75.584083, 39.971731 ], [ -75.584003, 39.971755 ], [ -75.583923, 39.971764 ], [ -75.583835, 39.971765 ], [ -75.583747, 39.971761 ], [ -75.58366, 39.971748 ], [ -75.583573, 39.971717 ], [ -75.583492, 39.971679 ], [ -75.583422, 39.97163 ], [ -75.583359, 39.971571 ], [ -75.583302, 39.971486 ], [ -75.583231, 39.97135 ], [ -75.583169, 39.971198 ], [ -75.583107, 39.971053 ], [ -75.58306, 39.970946 ], [ -75.583029, 39.970875 ], [ -75.582957, 39.970763 ], [ -75.582875, 39.970489 ], [ -75.582584, 39.96965 ], [ -75.581918, 39.967759 ], [ -75.581875, 39.967644 ], [ -75.581859, 39.967506 ], [ -75.581855, 39.96748 ], [ -75.581827, 39.967387 ], [ -75.581812, 39.967345 ], [ -75.581791, 39.967292 ], [ -75.581767, 39.967209 ], [ -75.581702, 39.96698 ], [ -75.581691, 39.96689 ], [ -75.581696, 39.966809 ], [ -75.581709, 39.966733 ], [ -75.581735, 39.966664 ], [ -75.581773, 39.966605 ], [ -75.581796, 39.966578 ], [ -75.581823, 39.96655 ], [ -75.581886, 39.966502 ], [ -75.581961, 39.966462 ], [ -75.582047, 39.966434 ], [ -75.58214, 39.966418 ], [ -75.58224, 39.966409 ], [ -75.582336, 39.966412 ], [ -75.582427, 39.966429 ], [ -75.582509, 39.966457 ], [ -75.582586, 39.966496 ], [ -75.582653, 39.966544 ], [ -75.582713, 39.966601 ], [ -75.582757, 39.966663 ], [ -75.582787, 39.966733 ], [ -75.582797, 39.966784 ], [ -75.582797, 39.966833 ], [ -75.582792, 39.966892 ], [ -75.582771, 39.966955 ], [ -75.582737, 39.967017 ], [ -75.5827, 39.967065 ], [ -75.582658, 39.967107 ], [ -75.582608, 39.967151 ], [ -75.58254, 39.967188 ], [ -75.582465, 39.967222 ], [ -75.582408, 39.967242 ], [ -75.582342, 39.967259 ], [ -75.581812, 39.967345 ], [ -75.581761, 39.967356 ], [ -75.581717, 39.967365 ], [ -75.581656, 39.967376 ], [ -75.581277, 39.96745 ], [ -75.581212, 39.967458 ], [ -75.581153, 39.967465 ], [ -75.581087, 39.967473 ], [ -75.580826, 39.967504 ], [ -75.580238, 39.96758 ], [ -75.580103, 39.967599 ], [ -75.580077, 39.967603 ], [ -75.579565, 39.967675 ], [ -75.579522, 39.967681 ], [ -75.57914, 39.967727 ], [ -75.578902, 39.967756 ], [ -75.578623, 39.967796 ], [ -75.578499, 39.967813 ], [ -75.578373, 39.967836 ], [ -75.578211, 39.96786 ], [ -75.577849, 39.967915 ], [ -75.577647, 39.967946 ], [ -75.577233, 39.968008 ], [ -75.576877, 39.968064 ], [ -75.57587, 39.968216 ], [ -75.574938, 39.968357 ], [ -75.57445, 39.96843 ], [ -75.573242, 39.968612 ], [ -75.57234, 39.968753 ], [ -75.571896, 39.968818 ], [ -75.571304, 39.968897 ], [ -75.570324, 39.969051 ], [ -75.569546, 39.969159 ], [ -75.568874, 39.969262 ], [ -75.568747, 39.969279 ], [ -75.568589, 39.969302 ], [ -75.568041, 39.969383 ], [ -75.56759, 39.969453 ], [ -75.567355, 39.969491 ], [ -75.567279, 39.969505 ], [ -75.567064, 39.969539 ], [ -75.566901, 39.969561 ], [ -75.566831, 39.96957 ], [ -75.566619, 39.969601 ], [ -75.566403, 39.969625 ], [ -75.566384, 39.969626 ], [ -75.566152, 39.969645 ], [ -75.565936, 39.969659 ], [ -75.565761, 39.969668 ], [ -75.56519, 39.969677 ], [ -75.564943, 39.969677 ], [ -75.564712, 39.969665 ], [ -75.564698, 39.969664 ], [ -75.564532, 39.969653 ], [ -75.564306, 39.96964 ], [ -75.564075, 39.96962 ], [ -75.563835, 39.969594 ], [ -75.563611, 39.969564 ], [ -75.563381, 39.969528 ], [ -75.563249, 39.969499 ], [ -75.562514, 39.96935 ], [ -75.561653, 39.969156 ], [ -75.560227, 39.968841 ], [ -75.558584, 39.968475 ], [ -75.558208, 39.968385 ], [ -75.55581, 39.967852 ], [ -75.555658, 39.967816 ], [ -75.555398, 39.967756 ], [ -75.554385, 39.967518 ], [ -75.553947, 39.967421 ], [ -75.55321, 39.967257 ], [ -75.552867, 39.967178 ], [ -75.552602, 39.967119 ], [ -75.551975, 39.966981 ], [ -75.551161, 39.9668 ], [ -75.550362, 39.966615 ], [ -75.550186, 39.966573 ], [ -75.549916, 39.966508 ], [ -75.549833, 39.966494 ], [ -75.548332, 39.966151 ], [ -75.548026, 39.96609 ], [ -75.547102, 39.965885 ], [ -75.546747, 39.965807 ], [ -75.546549, 39.965762 ], [ -75.546357, 39.96572 ], [ -75.546172, 39.965686 ], [ -75.545902, 39.965638 ], [ -75.545683, 39.965606 ], [ -75.545538, 39.965588 ], [ -75.545375, 39.965575 ], [ -75.545187, 39.965559 ], [ -75.545006, 39.965548 ], [ -75.544791, 39.96554 ], [ -75.544441, 39.965539 ], [ -75.544189, 39.965537 ], [ -75.542715, 39.965629 ], [ -75.542591, 39.965635 ], [ -75.542293, 39.965649 ], [ -75.541564, 39.9657 ], [ -75.540097, 39.965802 ], [ -75.539176, 39.965872 ], [ -75.538561, 39.965919 ], [ -75.538435, 39.965928 ], [ -75.53802, 39.965958 ], [ -75.535687, 39.966131 ], [ -75.53527, 39.966167 ], [ -75.534988, 39.96619 ], [ -75.534444, 39.966235 ], [ -75.534345, 39.966243 ], [ -75.532938, 39.966356 ], [ -75.531257, 39.966477 ], [ -75.530604, 39.966521 ], [ -75.530313, 39.966541 ], [ -75.530104, 39.966555 ], [ -75.529567, 39.966592 ], [ -75.528669, 39.966657 ], [ -75.528432, 39.966675 ], [ -75.528348, 39.966682 ], [ -75.527923, 39.966705 ], [ -75.527114, 39.966729 ], [ -75.526885, 39.966727 ], [ -75.526822, 39.966726 ], [ -75.526511, 39.966713 ], [ -75.525494, 39.966651 ], [ -75.524344, 39.966575 ], [ -75.524149, 39.966562 ], [ -75.523468, 39.966508 ], [ -75.522846, 39.966468 ], [ -75.522257, 39.966422 ], [ -75.521643, 39.966373 ], [ -75.521385, 39.966358 ], [ -75.521311, 39.966352 ], [ -75.521029, 39.966328 ], [ -75.52051, 39.966293 ], [ -75.519898, 39.966249 ], [ -75.51907, 39.966195 ], [ -75.518031, 39.966124 ], [ -75.517906, 39.966116 ], [ -75.517871, 39.966114 ], [ -75.517392, 39.966079 ], [ -75.5168, 39.966032 ], [ -75.516185, 39.965983 ], [ -75.515413, 39.965931 ], [ -75.514802, 39.965891 ], [ -75.513826, 39.965816 ], [ -75.513106, 39.965768 ], [ -75.511427, 39.965657 ], [ -75.511172, 39.965637 ], [ -75.511012, 39.965629 ], [ -75.510706, 39.96561 ], [ -75.509289, 39.965517 ], [ -75.508875, 39.965489 ], [ -75.508766, 39.965482 ], [ -75.50847, 39.965458 ], [ -75.508383, 39.965451 ], [ -75.508089, 39.96543 ], [ -75.507331, 39.965378 ], [ -75.507024, 39.965356 ], [ -75.506703, 39.965333 ], [ -75.506599, 39.965326 ], [ -75.505882, 39.965275 ], [ -75.505327, 39.965233 ], [ -75.504626, 39.965185 ], [ -75.50416, 39.965154 ], [ -75.503672, 39.965126 ], [ -75.502654, 39.965075 ], [ -75.501635, 39.96503 ], [ -75.501384, 39.965019 ], [ -75.500678, 39.964988 ], [ -75.500416, 39.964977 ], [ -75.500138, 39.964966 ], [ -75.499658, 39.964946 ], [ -75.499149, 39.964923 ], [ -75.49761, 39.964858 ], [ -75.496859, 39.964822 ], [ -75.496603, 39.964811 ], [ -75.494906, 39.964742 ], [ -75.494436, 39.964732 ], [ -75.494098, 39.964734 ], [ -75.493293, 39.964751 ], [ -75.492493, 39.964771 ], [ -75.491925, 39.964791 ], [ -75.491481, 39.964808 ], [ -75.491137, 39.964821 ], [ -75.490477, 39.964845 ], [ -75.489809, 39.964871 ], [ -75.489604, 39.96488 ], [ -75.489593, 39.96488 ], [ -75.489328, 39.964895 ], [ -75.489132, 39.964909 ], [ -75.488982, 39.964923 ], [ -75.488789, 39.964943 ], [ -75.488666, 39.964957 ], [ -75.48856, 39.964971 ], [ -75.488475, 39.96498 ], [ -75.48838, 39.964993 ], [ -75.488125, 39.965029 ], [ -75.48803, 39.965047 ], [ -75.487648, 39.965118 ], [ -75.487293, 39.965198 ], [ -75.487112, 39.965243 ], [ -75.486991, 39.965273 ], [ -75.486936, 39.965288 ], [ -75.486586, 39.965388 ], [ -75.486239, 39.965497 ], [ -75.485974, 39.965587 ], [ -75.485821, 39.965637 ], [ -75.483027, 39.966603 ], [ -75.482755, 39.966698 ], [ -75.48266, 39.966733 ], [ -75.481858, 39.96698 ], [ -75.48109, 39.967231 ], [ -75.480473, 39.96744 ], [ -75.479537, 39.967755 ], [ -75.479236, 39.967858 ], [ -75.47894, 39.96796 ], [ -75.478223, 39.968211 ], [ -75.476784, 39.968699 ], [ -75.476063, 39.968938 ], [ -75.475653, 39.969076 ], [ -75.47482, 39.969356 ], [ -75.474379, 39.969501 ], [ -75.473953, 39.969643 ], [ -75.473879, 39.969668 ], [ -75.473478, 39.969808 ], [ -75.472923, 39.97 ], [ -75.472757, 39.970051 ], [ -75.472642, 39.970087 ], [ -75.472451, 39.970152 ], [ -75.472251, 39.970214 ], [ -75.472061, 39.970272 ], [ -75.471907, 39.970315 ], [ -75.471758, 39.970352 ], [ -75.471559, 39.970409 ], [ -75.471395, 39.97045 ], [ -75.471259, 39.970479 ], [ -75.47106, 39.970521 ], [ -75.470813, 39.970577 ], [ -75.470507, 39.970634 ], [ -75.469839, 39.970749 ], [ -75.469068, 39.97087 ], [ -75.468852, 39.970904 ], [ -75.468002, 39.971044 ], [ -75.467754, 39.971086 ], [ -75.467376, 39.971152 ], [ -75.467066, 39.971222 ], [ -75.46692, 39.971256 ], [ -75.466464, 39.971371 ], [ -75.466011, 39.971498 ], [ -75.465345, 39.971698 ], [ -75.463847, 39.972147 ], [ -75.463552, 39.972229 ], [ -75.462971, 39.972386 ], [ -75.462707, 39.972453 ], [ -75.462366, 39.972536 ], [ -75.462159, 39.972586 ], [ -75.461851, 39.972654 ], [ -75.46158, 39.972703 ], [ -75.4615, 39.972718 ], [ -75.461433, 39.972732 ], [ -75.461171, 39.972778 ], [ -75.460605, 39.972868 ], [ -75.460078, 39.972957 ], [ -75.459479, 39.973051 ], [ -75.459283, 39.973085 ], [ -75.458813, 39.973164 ], [ -75.457582, 39.973379 ], [ -75.456432, 39.973572 ], [ -75.455125, 39.973813 ], [ -75.454736, 39.973879 ], [ -75.454366, 39.973937 ], [ -75.453947, 39.974002 ], [ -75.453807, 39.974025 ], [ -75.453227, 39.974126 ], [ -75.452952, 39.974174 ], [ -75.452306, 39.974284 ], [ -75.451769, 39.97437 ], [ -75.451501, 39.974412 ], [ -75.451371, 39.974438 ], [ -75.451067, 39.974499 ], [ -75.450823, 39.974528 ], [ -75.450778, 39.974533 ], [ -75.450414, 39.974578 ], [ -75.450161, 39.974602 ], [ -75.449861, 39.974627 ], [ -75.449511, 39.974651 ], [ -75.449208, 39.974669 ], [ -75.448953, 39.974681 ], [ -75.447923, 39.974734 ], [ -75.447536, 39.97475 ], [ -75.446994, 39.974771 ], [ -75.446058, 39.974816 ], [ -75.442933, 39.974951 ], [ -75.44219, 39.97499 ], [ -75.4419, 39.975009 ], [ -75.441446, 39.975037 ], [ -75.441307, 39.975041 ], [ -75.440981, 39.975066 ], [ -75.440792, 39.975083 ], [ -75.440818, 39.975201 ], [ -75.440925, 39.975778 ], [ -75.440953, 39.975953 ], [ -75.440981, 39.976081 ], [ -75.441023, 39.976192 ], [ -75.44109, 39.976316 ], [ -75.441191, 39.976469 ], [ -75.441308, 39.976621 ], [ -75.441419, 39.976762 ], [ -75.441195, 39.976927 ], [ -75.440574, 39.977216 ], [ -75.440429, 39.977255 ], [ -75.440358, 39.97726 ], [ -75.439669, 39.977571 ], [ -75.439152, 39.977809 ], [ -75.43902, 39.977869 ], [ -75.438952, 39.977897 ], [ -75.438872, 39.97792 ], [ -75.438791, 39.977934 ], [ -75.438712, 39.977937 ], [ -75.43862, 39.977927 ], [ -75.438557, 39.977914 ], [ -75.43849, 39.977889 ], [ -75.438416, 39.977852 ], [ -75.438353, 39.977813 ], [ -75.438304, 39.97777 ], [ -75.438248, 39.977696 ], [ -75.438206, 39.977613 ], [ -75.438166, 39.977492 ], [ -75.438132, 39.977377 ], [ -75.438101, 39.977272 ], [ -75.438064, 39.97716 ], [ -75.438024, 39.97705 ], [ -75.437986, 39.976957 ], [ -75.437949, 39.976876 ], [ -75.437895, 39.976777 ], [ -75.437835, 39.976678 ], [ -75.437743, 39.976549 ], [ -75.437606, 39.976354 ], [ -75.437446, 39.976136 ], [ -75.437375, 39.976036 ], [ -75.437131, 39.976133 ], [ -75.436465, 39.9764 ], [ -75.435857, 39.976647 ], [ -75.435735, 39.976697 ], [ -75.435333, 39.976864 ], [ -75.435189, 39.976925 ], [ -75.434981, 39.977011 ], [ -75.434728, 39.977111 ], [ -75.434502, 39.977211 ], [ -75.43337, 39.977668 ], [ -75.43336, 39.977672 ], [ -75.432718, 39.97793 ], [ -75.43198, 39.978237 ], [ -75.42996, 39.979036 ], [ -75.428349, 39.97969 ], [ -75.42746, 39.980101 ], [ -75.426692, 39.980475 ], [ -75.425904, 39.980866 ], [ -75.425831, 39.9809 ], [ -75.425626, 39.981001 ], [ -75.424976, 39.981319 ], [ -75.424303, 39.981646 ], [ -75.423751, 39.981913 ], [ -75.423054, 39.982246 ], [ -75.422424, 39.982564 ], [ -75.421629, 39.982945 ], [ -75.421215, 39.983148 ], [ -75.419491, 39.98399 ], [ -75.418353, 39.984544 ], [ -75.417346, 39.985028 ], [ -75.417099, 39.985144 ], [ -75.416934, 39.985217 ], [ -75.416787, 39.985278 ], [ -75.416651, 39.985326 ], [ -75.416558, 39.985357 ], [ -75.416406, 39.985403 ], [ -75.416158, 39.985468 ], [ -75.416119, 39.985475 ], [ -75.415976, 39.985506 ], [ -75.415883, 39.985524 ], [ -75.415842, 39.985531 ], [ -75.415652, 39.985558 ], [ -75.415388, 39.985585 ], [ -75.415266, 39.985594 ], [ -75.414794, 39.98563 ], [ -75.413561, 39.985741 ], [ -75.412712, 39.985816 ], [ -75.412135, 39.985864 ], [ -75.410518, 39.986007 ], [ -75.410034, 39.986053 ], [ -75.409213, 39.98611 ], [ -75.408701, 39.986145 ], [ -75.408114, 39.986197 ], [ -75.40763, 39.986233 ], [ -75.406224, 39.98634 ], [ -75.405127, 39.986414 ], [ -75.404511, 39.986467 ], [ -75.403506, 39.986543 ], [ -75.40329, 39.986562 ], [ -75.403122, 39.986576 ], [ -75.402768, 39.986601 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.262072, 39.961859 ], [ -75.261921, 39.961833 ], [ -75.261766, 39.961816 ], [ -75.261596, 39.961807 ], [ -75.261386, 39.961798 ], [ -75.261062, 39.961815 ], [ -75.260925, 39.961818 ], [ -75.259587, 39.96175 ], [ -75.259124, 39.961726 ], [ -75.259023, 39.961722 ], [ -75.258872, 39.961725 ], [ -75.258812, 39.961728 ], [ -75.258716, 39.961773 ], [ -75.258601, 39.961778 ], [ -75.258369, 39.961803 ], [ -75.258003, 39.961866 ], [ -75.25771, 39.961915 ], [ -75.257207, 39.961991 ], [ -75.257304, 39.962069 ], [ -75.257481, 39.962123 ], [ -75.258284, 39.962026 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302586", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.400767, 39.987483 ], [ -75.400137, 39.987773 ], [ -75.400007, 39.987826 ], [ -75.399887, 39.987869 ], [ -75.399746, 39.987908 ], [ -75.399599, 39.987942 ], [ -75.399379, 39.98798 ], [ -75.39911, 39.98802 ], [ -75.39909, 39.987955 ], [ -75.399035, 39.987894 ], [ -75.399, 39.987874 ], [ -75.398916, 39.98785 ], [ -75.398851, 39.987851 ], [ -75.398811, 39.987863 ], [ -75.398822, 39.987763 ], [ -75.398828, 39.987687 ], [ -75.39884, 39.987612 ], [ -75.398851, 39.987547 ], [ -75.398868, 39.987477 ], [ -75.39889, 39.987393 ], [ -75.398919, 39.987299 ], [ -75.398947, 39.987215 ], [ -75.398992, 39.987085 ], [ -75.39911, 39.986756 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302589", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.599947, 39.952548 ], [ -75.599869, 39.95246 ], [ -75.598496, 39.950912 ], [ -75.598421, 39.950822 ], [ -75.598237, 39.950904 ], [ -75.59715, 39.951398 ], [ -75.596623, 39.951636 ], [ -75.596029, 39.951905 ], [ -75.596094, 39.951979 ], [ -75.596201, 39.952082 ], [ -75.596273, 39.952149 ], [ -75.596346, 39.95222 ], [ -75.596441, 39.952304 ], [ -75.596554, 39.952409 ], [ -75.596836, 39.952667 ], [ -75.597217, 39.95301 ], [ -75.597445, 39.953226 ], [ -75.59762, 39.953385 ], [ -75.597757, 39.953511 ], [ -75.597901, 39.953651 ], [ -75.598047, 39.953787 ], [ -75.598558, 39.954251 ], [ -75.599177, 39.954822 ], [ -75.599333, 39.954966 ], [ -75.599814, 39.955394 ], [ -75.600267, 39.955799 ], [ -75.600991, 39.956467 ], [ -75.601193, 39.956648 ], [ -75.60131, 39.956752 ], [ -75.601914, 39.957298 ], [ -75.602276, 39.95764 ], [ -75.602751, 39.958082 ], [ -75.603177, 39.958489 ], [ -75.603472, 39.958805 ], [ -75.604137, 39.959452 ], [ -75.604232, 39.959537 ], [ -75.604304, 39.959604 ], [ -75.604427, 39.959723 ], [ -75.604488, 39.959776 ], [ -75.604614, 39.959889 ], [ -75.604767, 39.960059 ], [ -75.604798, 39.960093 ], [ -75.604868, 39.960165 ], [ -75.604901, 39.960196 ], [ -75.605077, 39.960361 ], [ -75.605153, 39.960429 ], [ -75.605213, 39.960481 ], [ -75.605274, 39.960547 ], [ -75.605644, 39.960983 ], [ -75.605807, 39.961185 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.60383, 39.960007 ], [ -75.603537, 39.960137 ], [ -75.603262, 39.96026 ], [ -75.602038, 39.960816 ], [ -75.601723, 39.96096 ], [ -75.60098, 39.961293 ], [ -75.60045, 39.961521 ], [ -75.599806, 39.961804 ], [ -75.598996, 39.962157 ], [ -75.598477, 39.962385 ], [ -75.597979, 39.962599 ], [ -75.597362, 39.962872 ], [ -75.596561, 39.963227 ], [ -75.59604, 39.963457 ], [ -75.595858, 39.963539 ], [ -75.59535, 39.963766 ], [ -75.59517, 39.963844 ], [ -75.594661, 39.964068 ], [ -75.593767, 39.964462 ], [ -75.593114, 39.964755 ], [ -75.5924, 39.965068 ], [ -75.592366, 39.965084 ], [ -75.591749, 39.965361 ], [ -75.591414, 39.965516 ], [ -75.591231, 39.965654 ], [ -75.591152, 39.965714 ], [ -75.5911, 39.965759 ], [ -75.591047, 39.965813 ], [ -75.591008, 39.965857 ], [ -75.59098, 39.965893 ], [ -75.590944, 39.965945 ], [ -75.590923, 39.965987 ], [ -75.590903, 39.966048 ], [ -75.590887, 39.966114 ], [ -75.590879, 39.966163 ], [ -75.590867, 39.966237 ], [ -75.590845, 39.966417 ], [ -75.590813, 39.966564 ], [ -75.590797, 39.966625 ], [ -75.590767, 39.966694 ], [ -75.590732, 39.966766 ], [ -75.590666, 39.966859 ], [ -75.590615, 39.966913 ], [ -75.590553, 39.96697 ], [ -75.590487, 39.967022 ], [ -75.590413, 39.967068 ], [ -75.590344, 39.967107 ], [ -75.589913, 39.9673 ], [ -75.58913, 39.96767 ], [ -75.588378, 39.968 ], [ -75.588218, 39.96807 ], [ -75.587623, 39.96833 ], [ -75.587346, 39.968447 ], [ -75.587081, 39.968573 ], [ -75.586749, 39.968741 ], [ -75.586676, 39.968781 ], [ -75.586426, 39.968919 ], [ -75.586244, 39.969018 ], [ -75.585427, 39.96953 ], [ -75.584994, 39.969792 ], [ -75.584589, 39.97003 ], [ -75.584498, 39.970084 ], [ -75.584361, 39.970165 ], [ -75.584014, 39.970372 ], [ -75.583941, 39.970417 ], [ -75.584032, 39.970496 ], [ -75.584153, 39.970617 ], [ -75.584243, 39.970707 ], [ -75.584404, 39.970883 ], [ -75.584425, 39.970908 ], [ -75.584453, 39.970946 ], [ -75.584471, 39.97098 ], [ -75.584493, 39.971021 ], [ -75.584516, 39.971091 ], [ -75.584522, 39.971164 ], [ -75.58451, 39.971239 ], [ -75.584481, 39.971322 ], [ -75.584431, 39.971416 ], [ -75.584368, 39.971511 ], [ -75.584302, 39.971585 ], [ -75.584234, 39.971647 ], [ -75.584159, 39.971696 ], [ -75.584083, 39.971731 ], [ -75.584003, 39.971755 ], [ -75.583923, 39.971764 ], [ -75.583835, 39.971765 ], [ -75.583747, 39.971761 ], [ -75.58366, 39.971748 ], [ -75.583573, 39.971717 ], [ -75.583492, 39.971679 ], [ -75.583422, 39.97163 ], [ -75.583359, 39.971571 ], [ -75.583302, 39.971486 ], [ -75.583231, 39.97135 ], [ -75.583169, 39.971198 ], [ -75.583107, 39.971053 ], [ -75.58306, 39.970946 ], [ -75.583029, 39.970875 ], [ -75.582957, 39.970763 ], [ -75.582875, 39.970489 ], [ -75.582584, 39.96965 ], [ -75.581918, 39.967759 ], [ -75.581875, 39.967644 ], [ -75.581859, 39.967506 ], [ -75.581855, 39.96748 ], [ -75.581827, 39.967387 ], [ -75.581812, 39.967345 ], [ -75.581791, 39.967292 ], [ -75.581767, 39.967209 ], [ -75.581702, 39.96698 ], [ -75.581691, 39.96689 ], [ -75.581696, 39.966809 ], [ -75.581709, 39.966733 ], [ -75.581735, 39.966664 ], [ -75.581773, 39.966605 ], [ -75.581796, 39.966578 ], [ -75.581823, 39.96655 ], [ -75.581886, 39.966502 ], [ -75.581961, 39.966462 ], [ -75.582047, 39.966434 ], [ -75.58214, 39.966418 ], [ -75.58224, 39.966409 ], [ -75.582336, 39.966412 ], [ -75.582427, 39.966429 ], [ -75.582509, 39.966457 ], [ -75.582586, 39.966496 ], [ -75.582653, 39.966544 ], [ -75.582713, 39.966601 ], [ -75.582757, 39.966663 ], [ -75.582787, 39.966733 ], [ -75.582797, 39.966784 ], [ -75.582797, 39.966833 ], [ -75.582792, 39.966892 ], [ -75.582771, 39.966955 ], [ -75.582737, 39.967017 ], [ -75.5827, 39.967065 ], [ -75.582658, 39.967107 ], [ -75.582608, 39.967151 ], [ -75.58254, 39.967188 ], [ -75.582465, 39.967222 ], [ -75.582408, 39.967242 ], [ -75.582342, 39.967259 ], [ -75.581812, 39.967345 ], [ -75.581761, 39.967356 ], [ -75.581717, 39.967365 ], [ -75.581656, 39.967376 ], [ -75.581277, 39.96745 ], [ -75.581212, 39.967458 ], [ -75.581153, 39.967465 ], [ -75.581087, 39.967473 ], [ -75.580826, 39.967504 ], [ -75.580238, 39.96758 ], [ -75.580103, 39.967599 ], [ -75.580077, 39.967603 ], [ -75.579565, 39.967675 ], [ -75.579522, 39.967681 ], [ -75.57914, 39.967727 ], [ -75.578902, 39.967756 ], [ -75.578623, 39.967796 ], [ -75.578499, 39.967813 ], [ -75.578373, 39.967836 ], [ -75.578211, 39.96786 ], [ -75.577849, 39.967915 ], [ -75.577647, 39.967946 ], [ -75.577233, 39.968008 ], [ -75.576877, 39.968064 ], [ -75.57587, 39.968216 ], [ -75.574938, 39.968357 ], [ -75.57445, 39.96843 ], [ -75.573242, 39.968612 ], [ -75.57234, 39.968753 ], [ -75.571896, 39.968818 ], [ -75.571304, 39.968897 ], [ -75.570324, 39.969051 ], [ -75.569546, 39.969159 ], [ -75.568874, 39.969262 ], [ -75.568747, 39.969279 ], [ -75.568589, 39.969302 ], [ -75.568041, 39.969383 ], [ -75.56759, 39.969453 ], [ -75.567355, 39.969491 ], [ -75.567279, 39.969505 ], [ -75.567064, 39.969539 ], [ -75.566901, 39.969561 ], [ -75.566831, 39.96957 ], [ -75.566619, 39.969601 ], [ -75.566403, 39.969625 ], [ -75.566384, 39.969626 ], [ -75.566152, 39.969645 ], [ -75.565936, 39.969659 ], [ -75.565761, 39.969668 ], [ -75.56519, 39.969677 ], [ -75.564943, 39.969677 ], [ -75.564712, 39.969665 ], [ -75.564698, 39.969664 ], [ -75.564532, 39.969653 ], [ -75.564306, 39.96964 ], [ -75.564075, 39.96962 ], [ -75.563835, 39.969594 ], [ -75.563611, 39.969564 ], [ -75.563381, 39.969528 ], [ -75.563249, 39.969499 ], [ -75.562514, 39.96935 ], [ -75.561653, 39.969156 ], [ -75.560227, 39.968841 ], [ -75.558584, 39.968475 ], [ -75.558208, 39.968385 ], [ -75.55581, 39.967852 ], [ -75.555658, 39.967816 ], [ -75.555398, 39.967756 ], [ -75.554385, 39.967518 ], [ -75.553947, 39.967421 ], [ -75.55321, 39.967257 ], [ -75.552867, 39.967178 ], [ -75.552602, 39.967119 ], [ -75.551975, 39.966981 ], [ -75.551161, 39.9668 ], [ -75.550362, 39.966615 ], [ -75.550186, 39.966573 ], [ -75.549916, 39.966508 ], [ -75.549833, 39.966494 ], [ -75.548332, 39.966151 ], [ -75.548026, 39.96609 ], [ -75.547102, 39.965885 ], [ -75.546747, 39.965807 ], [ -75.546549, 39.965762 ], [ -75.546357, 39.96572 ], [ -75.546172, 39.965686 ], [ -75.545902, 39.965638 ], [ -75.545683, 39.965606 ], [ -75.545538, 39.965588 ], [ -75.545375, 39.965575 ], [ -75.545187, 39.965559 ], [ -75.545006, 39.965548 ], [ -75.544791, 39.96554 ], [ -75.544441, 39.965539 ], [ -75.544189, 39.965537 ], [ -75.542715, 39.965629 ], [ -75.542591, 39.965635 ], [ -75.542293, 39.965649 ], [ -75.541564, 39.9657 ], [ -75.540097, 39.965802 ], [ -75.539176, 39.965872 ], [ -75.538561, 39.965919 ], [ -75.538435, 39.965928 ], [ -75.53802, 39.965958 ], [ -75.535687, 39.966131 ], [ -75.53527, 39.966167 ], [ -75.534988, 39.96619 ], [ -75.534444, 39.966235 ], [ -75.534345, 39.966243 ], [ -75.532938, 39.966356 ], [ -75.531257, 39.966477 ], [ -75.530604, 39.966521 ], [ -75.530313, 39.966541 ], [ -75.530104, 39.966555 ], [ -75.529567, 39.966592 ], [ -75.528669, 39.966657 ], [ -75.528432, 39.966675 ], [ -75.528348, 39.966682 ], [ -75.527923, 39.966705 ], [ -75.527114, 39.966729 ], [ -75.526885, 39.966727 ], [ -75.526822, 39.966726 ], [ -75.526511, 39.966713 ], [ -75.525494, 39.966651 ], [ -75.524344, 39.966575 ], [ -75.524149, 39.966562 ], [ -75.523468, 39.966508 ], [ -75.522846, 39.966468 ], [ -75.522257, 39.966422 ], [ -75.521643, 39.966373 ], [ -75.521385, 39.966358 ], [ -75.521311, 39.966352 ], [ -75.521029, 39.966328 ], [ -75.52051, 39.966293 ], [ -75.519898, 39.966249 ], [ -75.51907, 39.966195 ], [ -75.518031, 39.966124 ], [ -75.517906, 39.966116 ], [ -75.517871, 39.966114 ], [ -75.517392, 39.966079 ], [ -75.5168, 39.966032 ], [ -75.516185, 39.965983 ], [ -75.515413, 39.965931 ], [ -75.514802, 39.965891 ], [ -75.513826, 39.965816 ], [ -75.513106, 39.965768 ], [ -75.511427, 39.965657 ], [ -75.511172, 39.965637 ], [ -75.511012, 39.965629 ], [ -75.510706, 39.96561 ], [ -75.509289, 39.965517 ], [ -75.508875, 39.965489 ], [ -75.508766, 39.965482 ], [ -75.50847, 39.965458 ], [ -75.508383, 39.965451 ], [ -75.508089, 39.96543 ], [ -75.507331, 39.965378 ], [ -75.507024, 39.965356 ], [ -75.506703, 39.965333 ], [ -75.506599, 39.965326 ], [ -75.505882, 39.965275 ], [ -75.505327, 39.965233 ], [ -75.504626, 39.965185 ], [ -75.50416, 39.965154 ], [ -75.503672, 39.965126 ], [ -75.502654, 39.965075 ], [ -75.501635, 39.96503 ], [ -75.501384, 39.965019 ], [ -75.500678, 39.964988 ], [ -75.500416, 39.964977 ], [ -75.500138, 39.964966 ], [ -75.499658, 39.964946 ], [ -75.499149, 39.964923 ], [ -75.49761, 39.964858 ], [ -75.496859, 39.964822 ], [ -75.496603, 39.964811 ], [ -75.494906, 39.964742 ], [ -75.494436, 39.964732 ], [ -75.494098, 39.964734 ], [ -75.493293, 39.964751 ], [ -75.492493, 39.964771 ], [ -75.491925, 39.964791 ], [ -75.491481, 39.964808 ], [ -75.491137, 39.964821 ], [ -75.490477, 39.964845 ], [ -75.489809, 39.964871 ], [ -75.489604, 39.96488 ], [ -75.489593, 39.96488 ], [ -75.489328, 39.964895 ], [ -75.489132, 39.964909 ], [ -75.488982, 39.964923 ], [ -75.488789, 39.964943 ], [ -75.488666, 39.964957 ], [ -75.48856, 39.964971 ], [ -75.488475, 39.96498 ], [ -75.48838, 39.964993 ], [ -75.488125, 39.965029 ], [ -75.48803, 39.965047 ], [ -75.487648, 39.965118 ], [ -75.487293, 39.965198 ], [ -75.487112, 39.965243 ], [ -75.486991, 39.965273 ], [ -75.486936, 39.965288 ], [ -75.486586, 39.965388 ], [ -75.486239, 39.965497 ], [ -75.485974, 39.965587 ], [ -75.485821, 39.965637 ], [ -75.483027, 39.966603 ], [ -75.482755, 39.966698 ], [ -75.48266, 39.966733 ], [ -75.481858, 39.96698 ], [ -75.48109, 39.967231 ], [ -75.480473, 39.96744 ], [ -75.479537, 39.967755 ], [ -75.479236, 39.967858 ], [ -75.47894, 39.96796 ], [ -75.478223, 39.968211 ], [ -75.476784, 39.968699 ], [ -75.476063, 39.968938 ], [ -75.475653, 39.969076 ], [ -75.47482, 39.969356 ], [ -75.474379, 39.969501 ], [ -75.473953, 39.969643 ], [ -75.473879, 39.969668 ], [ -75.473478, 39.969808 ], [ -75.472923, 39.97 ], [ -75.472757, 39.970051 ], [ -75.472642, 39.970087 ], [ -75.472451, 39.970152 ], [ -75.472251, 39.970214 ], [ -75.472061, 39.970272 ], [ -75.471907, 39.970315 ], [ -75.471758, 39.970352 ], [ -75.471559, 39.970409 ], [ -75.471395, 39.97045 ], [ -75.471259, 39.970479 ], [ -75.47106, 39.970521 ], [ -75.470813, 39.970577 ], [ -75.470507, 39.970634 ], [ -75.469839, 39.970749 ], [ -75.469068, 39.97087 ], [ -75.468852, 39.970904 ], [ -75.468002, 39.971044 ], [ -75.467754, 39.971086 ], [ -75.467376, 39.971152 ], [ -75.467066, 39.971222 ], [ -75.46692, 39.971256 ], [ -75.466464, 39.971371 ], [ -75.466011, 39.971498 ], [ -75.465345, 39.971698 ], [ -75.463847, 39.972147 ], [ -75.463552, 39.972229 ], [ -75.462971, 39.972386 ], [ -75.462707, 39.972453 ], [ -75.462366, 39.972536 ], [ -75.462159, 39.972586 ], [ -75.461851, 39.972654 ], [ -75.46158, 39.972703 ], [ -75.4615, 39.972718 ], [ -75.461433, 39.972732 ], [ -75.461171, 39.972778 ], [ -75.460605, 39.972868 ], [ -75.460078, 39.972957 ], [ -75.459479, 39.973051 ], [ -75.459283, 39.973085 ], [ -75.458813, 39.973164 ], [ -75.457582, 39.973379 ], [ -75.456432, 39.973572 ], [ -75.455125, 39.973813 ], [ -75.454736, 39.973879 ], [ -75.454366, 39.973937 ], [ -75.453947, 39.974002 ], [ -75.453807, 39.974025 ], [ -75.453227, 39.974126 ], [ -75.452952, 39.974174 ], [ -75.452306, 39.974284 ], [ -75.451769, 39.97437 ], [ -75.451501, 39.974412 ], [ -75.451371, 39.974438 ], [ -75.451067, 39.974499 ], [ -75.450823, 39.974528 ], [ -75.450778, 39.974533 ], [ -75.450414, 39.974578 ], [ -75.450161, 39.974602 ], [ -75.449861, 39.974627 ], [ -75.449511, 39.974651 ], [ -75.449208, 39.974669 ], [ -75.448953, 39.974681 ], [ -75.447923, 39.974734 ], [ -75.447536, 39.97475 ], [ -75.446994, 39.974771 ], [ -75.446058, 39.974816 ], [ -75.442933, 39.974951 ], [ -75.44219, 39.97499 ], [ -75.4419, 39.975009 ], [ -75.441446, 39.975037 ], [ -75.441307, 39.975041 ], [ -75.440981, 39.975066 ], [ -75.440792, 39.975083 ], [ -75.440818, 39.975201 ], [ -75.440925, 39.975778 ], [ -75.440953, 39.975953 ], [ -75.440981, 39.976081 ], [ -75.441023, 39.976192 ], [ -75.44109, 39.976316 ], [ -75.441191, 39.976469 ], [ -75.441308, 39.976621 ], [ -75.441419, 39.976762 ], [ -75.441195, 39.976927 ], [ -75.440574, 39.977216 ], [ -75.440429, 39.977255 ], [ -75.440358, 39.97726 ], [ -75.439669, 39.977571 ], [ -75.439152, 39.977809 ], [ -75.43902, 39.977869 ], [ -75.438952, 39.977897 ], [ -75.438872, 39.97792 ], [ -75.438791, 39.977934 ], [ -75.438712, 39.977937 ], [ -75.43862, 39.977927 ], [ -75.438557, 39.977914 ], [ -75.43849, 39.977889 ], [ -75.438416, 39.977852 ], [ -75.438353, 39.977813 ], [ -75.438304, 39.97777 ], [ -75.438248, 39.977696 ], [ -75.438206, 39.977613 ], [ -75.438166, 39.977492 ], [ -75.438132, 39.977377 ], [ -75.438101, 39.977272 ], [ -75.438064, 39.97716 ], [ -75.438024, 39.97705 ], [ -75.437986, 39.976957 ], [ -75.437949, 39.976876 ], [ -75.437895, 39.976777 ], [ -75.437835, 39.976678 ], [ -75.437743, 39.976549 ], [ -75.437606, 39.976354 ], [ -75.437446, 39.976136 ], [ -75.437375, 39.976036 ], [ -75.437131, 39.976133 ], [ -75.436465, 39.9764 ], [ -75.435857, 39.976647 ], [ -75.435735, 39.976697 ], [ -75.435333, 39.976864 ], [ -75.435189, 39.976925 ], [ -75.434981, 39.977011 ], [ -75.434728, 39.977111 ], [ -75.434502, 39.977211 ], [ -75.43337, 39.977668 ], [ -75.43336, 39.977672 ], [ -75.432718, 39.97793 ], [ -75.43198, 39.978237 ], [ -75.42996, 39.979036 ], [ -75.428349, 39.97969 ], [ -75.42746, 39.980101 ], [ -75.426692, 39.980475 ], [ -75.425904, 39.980866 ], [ -75.425831, 39.9809 ], [ -75.425626, 39.981001 ], [ -75.424976, 39.981319 ], [ -75.424303, 39.981646 ], [ -75.423751, 39.981913 ], [ -75.423054, 39.982246 ], [ -75.422424, 39.982564 ], [ -75.421629, 39.982945 ], [ -75.421215, 39.983148 ], [ -75.419491, 39.98399 ], [ -75.418353, 39.984544 ], [ -75.417346, 39.985028 ], [ -75.417099, 39.985144 ], [ -75.416934, 39.985217 ], [ -75.416787, 39.985278 ], [ -75.416651, 39.985326 ], [ -75.416558, 39.985357 ], [ -75.416406, 39.985403 ], [ -75.416158, 39.985468 ], [ -75.416119, 39.985475 ], [ -75.415976, 39.985506 ], [ -75.415883, 39.985524 ], [ -75.415842, 39.985531 ], [ -75.415652, 39.985558 ], [ -75.415388, 39.985585 ], [ -75.415266, 39.985594 ], [ -75.414794, 39.98563 ], [ -75.413561, 39.985741 ], [ -75.412712, 39.985816 ], [ -75.412135, 39.985864 ], [ -75.410518, 39.986007 ], [ -75.410034, 39.986053 ], [ -75.409213, 39.98611 ], [ -75.408701, 39.986145 ], [ -75.408114, 39.986197 ], [ -75.40763, 39.986233 ], [ -75.406224, 39.98634 ], [ -75.405127, 39.986414 ], [ -75.404511, 39.986467 ], [ -75.403506, 39.986543 ], [ -75.40329, 39.986562 ], [ -75.403122, 39.986576 ], [ -75.402768, 39.986601 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302636", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270219, 39.963935 ], [ -75.270696, 39.96355 ], [ -75.270958, 39.963364 ], [ -75.271329, 39.963097 ], [ -75.271586, 39.96292 ], [ -75.272037, 39.962595 ], [ -75.272549, 39.96223 ], [ -75.273, 39.961932 ], [ -75.273055, 39.961901 ], [ -75.27318, 39.961825 ], [ -75.273305, 39.961765 ], [ -75.273429, 39.961717 ], [ -75.273553, 39.961681 ], [ -75.273673, 39.961658 ], [ -75.273704, 39.961655 ], [ -75.274134, 39.961596 ], [ -75.27451, 39.961557 ], [ -75.275472, 39.961436 ], [ -75.275798, 39.961397 ], [ -75.276369, 39.961335 ], [ -75.277384, 39.961217 ], [ -75.277752, 39.961172 ], [ -75.278241, 39.961112 ], [ -75.278438, 39.961092 ], [ -75.279905, 39.960924 ], [ -75.280441, 39.960857 ], [ -75.280851, 39.960814 ], [ -75.281936, 39.960682 ], [ -75.282237, 39.960626 ], [ -75.283006, 39.960466 ], [ -75.283859, 39.960286 ], [ -75.2843, 39.96019 ], [ -75.284517, 39.960142 ], [ -75.285343, 39.959964 ], [ -75.28582, 39.959894 ], [ -75.286109, 39.959851 ], [ -75.286244, 39.959814 ], [ -75.286402, 39.959767 ], [ -75.28693, 39.959593 ], [ -75.287179, 39.959516 ], [ -75.287708, 39.959334 ], [ -75.287923, 39.959745 ], [ -75.287986, 39.959864 ], [ -75.288205, 39.960275 ], [ -75.288362, 39.960571 ], [ -75.288417, 39.960674 ], [ -75.288495, 39.960815 ], [ -75.288611, 39.960998 ], [ -75.288669, 39.961074 ], [ -75.288937, 39.961405 ], [ -75.289157, 39.961677 ], [ -75.289279, 39.961825 ], [ -75.289374, 39.961929 ], [ -75.289549, 39.96212 ], [ -75.289632, 39.962205 ], [ -75.289745, 39.962334 ], [ -75.28987, 39.962467 ], [ -75.290123, 39.962719 ], [ -75.290343, 39.962903 ], [ -75.290692, 39.963201 ], [ -75.290987, 39.963463 ], [ -75.291232, 39.963677 ], [ -75.291609, 39.964009 ], [ -75.291913, 39.964279 ], [ -75.292658, 39.964938 ], [ -75.292806, 39.965064 ], [ -75.293156, 39.965377 ], [ -75.293304, 39.965512 ], [ -75.293463, 39.965649 ], [ -75.29403, 39.966165 ], [ -75.294552, 39.966628 ], [ -75.295085, 39.967132 ], [ -75.29535, 39.967397 ], [ -75.29551, 39.967565 ], [ -75.295631, 39.967678 ], [ -75.295752, 39.967802 ], [ -75.295825, 39.967878 ], [ -75.296114, 39.967743 ], [ -75.296613, 39.96751 ], [ -75.297311, 39.967183 ], [ -75.2976, 39.967057 ], [ -75.298194, 39.966778 ], [ -75.298608, 39.966605 ], [ -75.298892, 39.966477 ], [ -75.299253, 39.966314 ], [ -75.300046, 39.965953 ], [ -75.300191, 39.965886 ], [ -75.300562, 39.965717 ], [ -75.300952, 39.965537 ], [ -75.301093, 39.965478 ], [ -75.301675, 39.96523 ], [ -75.30224, 39.964974 ], [ -75.302431, 39.964887 ], [ -75.302557, 39.964832 ], [ -75.302943, 39.964662 ], [ -75.303161, 39.964566 ], [ -75.303763, 39.964292 ], [ -75.303893, 39.964233 ], [ -75.304144, 39.964121 ], [ -75.304453, 39.963982 ], [ -75.304626, 39.963904 ], [ -75.305837, 39.96337 ], [ -75.306901, 39.962902 ], [ -75.307578, 39.962604 ], [ -75.307772, 39.962516 ], [ -75.308324, 39.962264 ], [ -75.308501, 39.962185 ], [ -75.309078, 39.961932 ], [ -75.309382, 39.961794 ], [ -75.309666, 39.961664 ], [ -75.309831, 39.961589 ], [ -75.310069, 39.961484 ], [ -75.310583, 39.961262 ], [ -75.311071, 39.961045 ], [ -75.311421, 39.960892 ], [ -75.31154, 39.96084 ], [ -75.311816, 39.960715 ], [ -75.31204, 39.960612 ], [ -75.312292, 39.960496 ], [ -75.313082, 39.960149 ], [ -75.313194, 39.960096 ], [ -75.31351, 39.959959 ], [ -75.313773, 39.959845 ], [ -75.31392, 39.959781 ], [ -75.314171, 39.959672 ], [ -75.314422, 39.959564 ], [ -75.314681, 39.959452 ], [ -75.315043, 39.959295 ], [ -75.315606, 39.959041 ], [ -75.316159, 39.95879 ], [ -75.317006, 39.95841 ], [ -75.317324, 39.958279 ], [ -75.317805, 39.958086 ], [ -75.318043, 39.957982 ], [ -75.318601, 39.957741 ], [ -75.319254, 39.957459 ], [ -75.319351, 39.957457 ], [ -75.319435, 39.957428 ], [ -75.319823, 39.957256 ], [ -75.320104, 39.957122 ], [ -75.320194, 39.957077 ], [ -75.320385, 39.956972 ], [ -75.320408, 39.956962 ], [ -75.320703, 39.956793 ], [ -75.320912, 39.956651 ], [ -75.321094, 39.956527 ], [ -75.32123, 39.956429 ], [ -75.321438, 39.956264 ], [ -75.321632, 39.956093 ], [ -75.321737, 39.955997 ], [ -75.321814, 39.955913 ], [ -75.321831, 39.955838 ], [ -75.321989, 39.95567 ], [ -75.322257, 39.955366 ], [ -75.322388, 39.955186 ], [ -75.322561, 39.954927 ], [ -75.32271, 39.954671 ], [ -75.322727, 39.95464 ], [ -75.322795, 39.954513 ], [ -75.322863, 39.954357 ], [ -75.32296, 39.954122 ], [ -75.323043, 39.953887 ], [ -75.323081, 39.953758 ], [ -75.323095, 39.953706 ], [ -75.323193, 39.953296 ], [ -75.323319, 39.952725 ], [ -75.323354, 39.95256 ], [ -75.323404, 39.952337 ], [ -75.323529, 39.951744 ], [ -75.32358, 39.951502 ], [ -75.323732, 39.950812 ], [ -75.323908, 39.950058 ], [ -75.324004, 39.949633 ], [ -75.324126, 39.949087 ], [ -75.324139, 39.949011 ], [ -75.32426, 39.948502 ], [ -75.324339, 39.948212 ], [ -75.324401, 39.948032 ], [ -75.324491, 39.947821 ], [ -75.324596, 39.947602 ], [ -75.324711, 39.947362 ], [ -75.324792, 39.947306 ], [ -75.324844, 39.947236 ], [ -75.325034, 39.946954 ], [ -75.325233, 39.946697 ], [ -75.325435, 39.946438 ], [ -75.32557, 39.946294 ], [ -75.325634, 39.946228 ], [ -75.325727, 39.946135 ], [ -75.325898, 39.945982 ], [ -75.326222, 39.945722 ], [ -75.326416, 39.945567 ], [ -75.326506, 39.945508 ], [ -75.32667, 39.945401 ], [ -75.326893, 39.94526 ], [ -75.327154, 39.945111 ], [ -75.327236, 39.945063 ], [ -75.327468, 39.944922 ], [ -75.327556, 39.944871 ], [ -75.327961, 39.944645 ], [ -75.328143, 39.944548 ], [ -75.328657, 39.944272 ], [ -75.328907, 39.944146 ], [ -75.329706, 39.943722 ], [ -75.330023, 39.943557 ], [ -75.330421, 39.943374 ], [ -75.330911, 39.943161 ], [ -75.331172, 39.943055 ], [ -75.331426, 39.942955 ], [ -75.331664, 39.942872 ], [ -75.332065, 39.942737 ], [ -75.332242, 39.942679 ], [ -75.332321, 39.942653 ], [ -75.332578, 39.942578 ], [ -75.332805, 39.942519 ], [ -75.333122, 39.942434 ], [ -75.333379, 39.942375 ], [ -75.334504, 39.942129 ], [ -75.335306, 39.941949 ], [ -75.335561, 39.941891 ], [ -75.335926, 39.941809 ], [ -75.337082, 39.941554 ], [ -75.337183, 39.941531 ], [ -75.337541, 39.941451 ], [ -75.338343, 39.941271 ], [ -75.338498, 39.941238 ], [ -75.338796, 39.941176 ], [ -75.339257, 39.941081 ], [ -75.340229, 39.940867 ], [ -75.341783, 39.940521 ], [ -75.342405, 39.940376 ], [ -75.343041, 39.940224 ], [ -75.343323, 39.940157 ], [ -75.343424, 39.940131 ], [ -75.343854, 39.940023 ], [ -75.343895, 39.940013 ], [ -75.344267, 39.939921 ], [ -75.344644, 39.939826 ], [ -75.344996, 39.939727 ], [ -75.34521, 39.939668 ], [ -75.345748, 39.93953 ], [ -75.346381, 39.939355 ], [ -75.346777, 39.939251 ], [ -75.347235, 39.939133 ], [ -75.347462, 39.939079 ], [ -75.347892, 39.939026 ], [ -75.347963, 39.939014 ], [ -75.348025, 39.939004 ], [ -75.348102, 39.938987 ], [ -75.34942, 39.938672 ], [ -75.349503, 39.938652 ], [ -75.349768, 39.938589 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.351203, 39.937856 ], [ -75.351137, 39.937849 ], [ -75.351084, 39.93783 ], [ -75.351047, 39.937801 ], [ -75.351024, 39.937766 ], [ -75.35101, 39.93772 ], [ -75.351012, 39.93766 ], [ -75.351012, 39.937591 ], [ -75.351162, 39.937312 ], [ -75.351338, 39.936979 ], [ -75.351407, 39.936816 ], [ -75.351558, 39.936464 ], [ -75.351627, 39.936288 ], [ -75.351795, 39.93586 ], [ -75.352048, 39.935123 ], [ -75.352162, 39.934788 ], [ -75.352248, 39.934515 ], [ -75.352325, 39.934266 ], [ -75.352428, 39.933904 ], [ -75.352475, 39.933626 ], [ -75.352487, 39.933465 ], [ -75.35251, 39.933173 ], [ -75.352509, 39.933051 ], [ -75.352503, 39.93293 ], [ -75.352491, 39.932791 ], [ -75.352451, 39.932562 ], [ -75.352415, 39.93241 ], [ -75.352359, 39.932234 ], [ -75.352313, 39.932069 ], [ -75.352269, 39.931924 ], [ -75.352238, 39.93185 ], [ -75.352138, 39.931776 ], [ -75.35211, 39.931715 ], [ -75.352025, 39.931525 ], [ -75.351558, 39.930468 ], [ -75.351248, 39.929803 ], [ -75.350918, 39.929049 ], [ -75.350772, 39.928737 ], [ -75.350521, 39.928162 ], [ -75.350116, 39.927409 ], [ -75.349797, 39.92685 ], [ -75.349738, 39.926753 ], [ -75.349545, 39.926436 ], [ -75.349071, 39.925656 ], [ -75.348941, 39.925408 ], [ -75.348908, 39.925343 ], [ -75.3488, 39.92511 ], [ -75.348614, 39.924634 ], [ -75.348534, 39.924381 ], [ -75.348464, 39.924116 ], [ -75.348407, 39.923837 ], [ -75.348355, 39.923501 ], [ -75.348303, 39.923106 ], [ -75.34828, 39.922923 ], [ -75.348277, 39.92252 ], [ -75.348293, 39.922349 ], [ -75.348319, 39.922129 ], [ -75.348412, 39.920881 ], [ -75.348444, 39.920514 ], [ -75.348498, 39.919882 ], [ -75.348608, 39.918554 ], [ -75.34862, 39.918427 ], [ -75.348633, 39.918256 ], [ -75.348649, 39.918042 ], [ -75.348693, 39.917984 ], [ -75.348699, 39.917925 ], [ -75.34877, 39.916957 ], [ -75.348787, 39.9167 ], [ -75.348841, 39.916118 ], [ -75.348869, 39.916095 ], [ -75.348907, 39.916076 ], [ -75.349018, 39.916022 ], [ -75.349099, 39.915987 ], [ -75.349553, 39.915983 ], [ -75.349633, 39.915076 ], [ -75.34964, 39.914989 ], [ -75.34964, 39.914747 ], [ -75.349629, 39.914663 ], [ -75.349661, 39.914353 ], [ -75.349708, 39.91423 ], [ -75.349741, 39.914179 ], [ -75.349823, 39.914124 ], [ -75.349912, 39.914089 ], [ -75.350005, 39.914068 ], [ -75.350122, 39.914055 ], [ -75.350248, 39.914055 ], [ -75.35036, 39.914059 ], [ -75.350522, 39.914049 ], [ -75.350721, 39.914038 ], [ -75.351306, 39.914002 ], [ -75.35149, 39.913981 ], [ -75.351593, 39.913978 ], [ -75.352138, 39.913965 ], [ -75.352341, 39.913962 ], [ -75.35247, 39.913953 ], [ -75.352401, 39.913872 ], [ -75.352274, 39.913744 ], [ -75.352246, 39.913703 ], [ -75.352235, 39.91366 ], [ -75.35224, 39.913613 ], [ -75.352257, 39.913568 ], [ -75.352288, 39.913526 ], [ -75.352336, 39.913492 ], [ -75.352397, 39.913466 ], [ -75.352518, 39.913427 ], [ -75.353254, 39.913488 ], [ -75.353586, 39.913495 ], [ -75.353777, 39.913486 ], [ -75.353892, 39.913483 ], [ -75.354513, 39.913374 ], [ -75.35519, 39.913291 ], [ -75.356366, 39.913129 ], [ -75.356417, 39.913123 ], [ -75.357534, 39.912996 ], [ -75.357821, 39.91296 ], [ -75.358032, 39.912935 ], [ -75.358234, 39.912915 ], [ -75.358441, 39.912898 ], [ -75.358668, 39.912886 ], [ -75.359, 39.91288 ], [ -75.359172, 39.912878 ], [ -75.359796, 39.912904 ], [ -75.360424, 39.912921 ], [ -75.361044, 39.912929 ], [ -75.361376, 39.912934 ], [ -75.361708, 39.912953 ], [ -75.362105, 39.912969 ], [ -75.362308, 39.912987 ], [ -75.362822, 39.913013 ], [ -75.363091, 39.913028 ], [ -75.36337, 39.913056 ], [ -75.363804, 39.913084 ], [ -75.364171, 39.913111 ], [ -75.364452, 39.913134 ], [ -75.365377, 39.913213 ], [ -75.365509, 39.913169 ], [ -75.36578, 39.913198 ], [ -75.366075, 39.913236 ], [ -75.366942, 39.91334 ], [ -75.370162, 39.913688 ], [ -75.371817, 39.913909 ], [ -75.372039, 39.91394 ], [ -75.372385, 39.91399 ], [ -75.372681, 39.914027 ], [ -75.373293, 39.914105 ], [ -75.373498, 39.914131 ], [ -75.375523, 39.914429 ], [ -75.376198, 39.914536 ], [ -75.377079, 39.914687 ], [ -75.377307, 39.914725 ], [ -75.377644, 39.914783 ], [ -75.377913, 39.91484 ], [ -75.378001, 39.914858 ], [ -75.378138, 39.914888 ], [ -75.378301, 39.914929 ], [ -75.378669, 39.915029 ], [ -75.378757, 39.915056 ], [ -75.378877, 39.91509 ], [ -75.379207, 39.915183 ], [ -75.379325, 39.915217 ], [ -75.379723, 39.915324 ], [ -75.37982, 39.915351 ], [ -75.379941, 39.915386 ], [ -75.380247, 39.915465 ], [ -75.380445, 39.915518 ], [ -75.380601, 39.915558 ], [ -75.380735, 39.915593 ], [ -75.380884, 39.915623 ], [ -75.381013, 39.915642 ], [ -75.381327, 39.915685 ], [ -75.38206, 39.915785 ], [ -75.382331, 39.915822 ], [ -75.382657, 39.915866 ], [ -75.383152, 39.915932 ], [ -75.384299, 39.91608 ], [ -75.384773, 39.916146 ], [ -75.385909, 39.916304 ], [ -75.386318, 39.916362 ], [ -75.386971, 39.916456 ], [ -75.387875, 39.916577 ], [ -75.388275, 39.91664 ], [ -75.388776, 39.91672 ], [ -75.389701, 39.916855 ], [ -75.390196, 39.916923 ], [ -75.390509, 39.916967 ], [ -75.391292, 39.917072 ], [ -75.392265, 39.917197 ], [ -75.392759, 39.917264 ], [ -75.393275, 39.917335 ], [ -75.395223, 39.917607 ], [ -75.39611, 39.917731 ], [ -75.396611, 39.917795 ], [ -75.396822, 39.917826 ], [ -75.396862, 39.917854 ], [ -75.397037, 39.917888 ], [ -75.397283, 39.917916 ], [ -75.397373, 39.917925 ], [ -75.397449, 39.917926 ], [ -75.397515, 39.917925 ], [ -75.397609, 39.917916 ], [ -75.397692, 39.917904 ], [ -75.397725, 39.917896 ], [ -75.397803, 39.917879 ], [ -75.397934, 39.91784 ], [ -75.398039, 39.9178 ], [ -75.39813, 39.917756 ], [ -75.399153, 39.917164 ], [ -75.399311, 39.91708 ], [ -75.399468, 39.917004 ], [ -75.399611, 39.916948 ], [ -75.399761, 39.9169 ], [ -75.399841, 39.916878 ], [ -75.400003, 39.916841 ], [ -75.400173, 39.916821 ], [ -75.400352, 39.916807 ], [ -75.400461, 39.916807 ], [ -75.400753, 39.916818 ], [ -75.401714, 39.916861 ], [ -75.402714, 39.916917 ], [ -75.403408, 39.91695 ], [ -75.403931, 39.916981 ], [ -75.404112, 39.91699 ], [ -75.404327, 39.917001 ], [ -75.404516, 39.917005 ], [ -75.404737, 39.91701 ], [ -75.405031, 39.917027 ], [ -75.405172, 39.917035 ], [ -75.405399, 39.917048 ], [ -75.405925, 39.917075 ], [ -75.406444, 39.917105 ], [ -75.407724, 39.917185 ], [ -75.408245, 39.917215 ], [ -75.408476, 39.917228 ], [ -75.408805, 39.917243 ], [ -75.409011, 39.917246 ], [ -75.409216, 39.917249 ], [ -75.409419, 39.917246 ], [ -75.409655, 39.917238 ], [ -75.409893, 39.91723 ], [ -75.410113, 39.917217 ], [ -75.410381, 39.917201 ], [ -75.410592, 39.917179 ], [ -75.410826, 39.917153 ], [ -75.411088, 39.917121 ], [ -75.412363, 39.91693 ], [ -75.413384, 39.916785 ], [ -75.415039, 39.916562 ], [ -75.415495, 39.916499 ], [ -75.416891, 39.916305 ], [ -75.417561, 39.916213 ], [ -75.417699, 39.916196 ], [ -75.418252, 39.916117 ], [ -75.418807, 39.916035 ], [ -75.418966, 39.916011 ], [ -75.419854, 39.915883 ], [ -75.420667, 39.915755 ], [ -75.421182, 39.915687 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422868, 39.915448 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424409, 39.915237 ], [ -75.424543, 39.915217 ], [ -75.424587, 39.915209 ], [ -75.424724, 39.915188 ], [ -75.425151, 39.91513 ], [ -75.42528, 39.91511 ], [ -75.426328, 39.91495 ], [ -75.42678, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.439737, 39.912925 ], [ -75.439745, 39.913033 ], [ -75.439776, 39.91352 ], [ -75.439838, 39.91403 ], [ -75.439895, 39.914339 ], [ -75.439928, 39.91457 ], [ -75.439966, 39.914757 ], [ -75.440039, 39.915273 ], [ -75.440219, 39.916371 ], [ -75.440269, 39.916647 ], [ -75.440298, 39.916825 ], [ -75.440323, 39.916975 ], [ -75.440338, 39.917138 ], [ -75.440352, 39.91731 ], [ -75.440446, 39.917632 ], [ -75.440564, 39.917702 ], [ -75.440651, 39.91775 ], [ -75.44072, 39.917794 ], [ -75.440877, 39.917897 ], [ -75.441047, 39.918016 ], [ -75.441116, 39.918068 ], [ -75.441131, 39.918101 ], [ -75.441639, 39.9185 ], [ -75.441752, 39.91858 ], [ -75.441811, 39.918622 ], [ -75.441937, 39.918709 ], [ -75.442039, 39.918786 ], [ -75.44218, 39.918911 ], [ -75.442207, 39.918932 ], [ -75.442223, 39.918952 ], [ -75.442235, 39.918965 ], [ -75.442332, 39.919071 ], [ -75.442455, 39.919205 ], [ -75.442552, 39.919321 ], [ -75.442717, 39.919545 ], [ -75.442805, 39.919675 ], [ -75.442872, 39.9198 ], [ -75.442939, 39.919955 ], [ -75.442999, 39.920148 ], [ -75.443047, 39.920341 ], [ -75.443054, 39.920387 ], [ -75.443079, 39.920536 ], [ -75.443089, 39.92069 ], [ -75.443092, 39.920728 ], [ -75.443097, 39.920781 ], [ -75.443126, 39.920821 ], [ -75.443129, 39.921338 ], [ -75.443146, 39.921943 ], [ -75.443157, 39.92209 ], [ -75.443174, 39.9223 ], [ -75.443231, 39.922632 ], [ -75.443294, 39.922965 ], [ -75.443378, 39.923269 ], [ -75.443522, 39.923696 ], [ -75.443823, 39.924586 ], [ -75.443967, 39.924985 ], [ -75.443958, 39.925029 ], [ -75.444135, 39.925535 ], [ -75.444296, 39.925976 ], [ -75.444524, 39.926539 ], [ -75.444569, 39.926668 ], [ -75.444738, 39.927092 ], [ -75.444857, 39.92741 ], [ -75.445242, 39.928352 ], [ -75.445619, 39.929305 ], [ -75.44568, 39.929272 ], [ -75.447053, 39.928679 ], [ -75.447305, 39.928655 ], [ -75.447415, 39.928594 ], [ -75.447401, 39.928489 ], [ -75.447305, 39.928437 ], [ -75.447235, 39.928441 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302639", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.447235, 39.928441 ], [ -75.447167, 39.928446 ], [ -75.44701, 39.928627 ], [ -75.44623, 39.928955 ], [ -75.445959, 39.929084 ], [ -75.44568, 39.929272 ], [ -75.445591, 39.929067 ], [ -75.44549, 39.92883 ], [ -75.445386, 39.928587 ], [ -75.44532, 39.928411 ], [ -75.445302, 39.928351 ], [ -75.445259, 39.928214 ], [ -75.4452, 39.928047 ], [ -75.445136, 39.927886 ], [ -75.444905, 39.927329 ], [ -75.444798, 39.927051 ], [ -75.444738, 39.926912 ], [ -75.444677, 39.926748 ], [ -75.444571, 39.926429 ], [ -75.444423, 39.926098 ], [ -75.444358, 39.925944 ], [ -75.444154, 39.925385 ], [ -75.44405, 39.925111 ], [ -75.444006, 39.925016 ], [ -75.443967, 39.924985 ], [ -75.443823, 39.924586 ], [ -75.443522, 39.923696 ], [ -75.443378, 39.923269 ], [ -75.443294, 39.922965 ], [ -75.443231, 39.922632 ], [ -75.443174, 39.9223 ], [ -75.443157, 39.92209 ], [ -75.443146, 39.921943 ], [ -75.443129, 39.921338 ], [ -75.443126, 39.920821 ], [ -75.443153, 39.92078 ], [ -75.443152, 39.920742 ], [ -75.443149, 39.920684 ], [ -75.443136, 39.920526 ], [ -75.443126, 39.920415 ], [ -75.443097, 39.92022 ], [ -75.443035, 39.92 ], [ -75.443023, 39.919962 ], [ -75.443002, 39.919902 ], [ -75.442951, 39.919778 ], [ -75.442893, 39.919675 ], [ -75.442793, 39.919498 ], [ -75.4429, 39.919428 ], [ -75.442968, 39.919377 ], [ -75.443005, 39.91934 ], [ -75.443064, 39.919284 ], [ -75.443126, 39.919222 ], [ -75.443202, 39.919143 ], [ -75.443331, 39.919015 ], [ -75.44373, 39.918633 ], [ -75.44383, 39.918548 ], [ -75.443933, 39.918486 ], [ -75.444023, 39.918449 ], [ -75.444018, 39.918403 ], [ -75.444029, 39.918349 ], [ -75.444052, 39.918306 ], [ -75.444098, 39.918262 ], [ -75.444328, 39.918042 ], [ -75.444393, 39.91798 ], [ -75.44471, 39.917688 ], [ -75.444771, 39.917704 ], [ -75.444823, 39.917704 ], [ -75.444868, 39.917694 ], [ -75.44492, 39.91767 ], [ -75.444976, 39.917625 ], [ -75.444721, 39.917489 ], [ -75.44468, 39.917526 ], [ -75.444651, 39.917571 ], [ -75.444648, 39.917604 ], [ -75.444656, 39.917637 ], [ -75.444685, 39.91767 ], [ -75.44471, 39.917688 ], [ -75.444393, 39.91798 ], [ -75.444328, 39.918042 ], [ -75.444098, 39.918262 ], [ -75.444052, 39.918306 ], [ -75.444029, 39.918349 ], [ -75.444018, 39.918403 ], [ -75.444023, 39.918449 ], [ -75.443933, 39.918486 ], [ -75.44383, 39.918548 ], [ -75.44373, 39.918632 ], [ -75.443331, 39.919015 ], [ -75.443202, 39.919143 ], [ -75.443126, 39.919222 ], [ -75.443064, 39.919284 ], [ -75.443005, 39.91934 ], [ -75.442968, 39.919377 ], [ -75.4429, 39.919428 ], [ -75.442793, 39.919498 ], [ -75.44272, 39.919395 ], [ -75.442589, 39.919213 ], [ -75.442489, 39.919097 ], [ -75.442366, 39.918977 ], [ -75.442206, 39.918842 ], [ -75.441955, 39.918652 ], [ -75.441298, 39.918175 ], [ -75.441192, 39.918095 ], [ -75.441161, 39.918076 ], [ -75.441116, 39.918068 ], [ -75.441047, 39.918016 ], [ -75.440877, 39.917897 ], [ -75.44072, 39.917794 ], [ -75.440651, 39.91775 ], [ -75.440564, 39.917702 ], [ -75.440446, 39.917632 ], [ -75.440351, 39.917311 ], [ -75.440338, 39.917138 ], [ -75.440323, 39.916975 ], [ -75.440298, 39.916825 ], [ -75.440269, 39.916646 ], [ -75.440219, 39.916371 ], [ -75.440039, 39.915273 ], [ -75.439966, 39.914757 ], [ -75.439928, 39.91457 ], [ -75.439895, 39.914339 ], [ -75.439838, 39.91403 ], [ -75.439776, 39.91352 ], [ -75.439745, 39.913033 ], [ -75.439737, 39.912925 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436382, 39.913286 ], [ -75.435978, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434501, 39.913693 ], [ -75.434003, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427245, 39.914728 ], [ -75.42631, 39.914885 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421713, 39.91553 ], [ -75.421259, 39.915591 ], [ -75.420859, 39.915647 ], [ -75.420658, 39.915673 ], [ -75.420338, 39.915715 ], [ -75.419935, 39.915774 ], [ -75.419305, 39.915862 ], [ -75.418823, 39.915935 ], [ -75.41868, 39.915958 ], [ -75.417733, 39.916098 ], [ -75.417587, 39.916118 ], [ -75.416877, 39.916218 ], [ -75.415489, 39.916416 ], [ -75.414971, 39.916486 ], [ -75.412762, 39.916795 ], [ -75.411658, 39.916951 ], [ -75.410552, 39.9171 ], [ -75.410209, 39.917134 ], [ -75.40982, 39.917159 ], [ -75.409429, 39.917172 ], [ -75.409025, 39.91717 ], [ -75.409, 39.917169 ], [ -75.408828, 39.917166 ], [ -75.408543, 39.917159 ], [ -75.407625, 39.917103 ], [ -75.406709, 39.917035 ], [ -75.406444, 39.917018 ], [ -75.404876, 39.916925 ], [ -75.404521, 39.91691 ], [ -75.404253, 39.9169 ], [ -75.403742, 39.916873 ], [ -75.403414, 39.916855 ], [ -75.403016, 39.916841 ], [ -75.402721, 39.916824 ], [ -75.401718, 39.91677 ], [ -75.401168, 39.916736 ], [ -75.400898, 39.916723 ], [ -75.40073, 39.916717 ], [ -75.4006, 39.916716 ], [ -75.400421, 39.916713 ], [ -75.400236, 39.916722 ], [ -75.40005, 39.916742 ], [ -75.39988, 39.916771 ], [ -75.399715, 39.91681 ], [ -75.399596, 39.916847 ], [ -75.399447, 39.9169 ], [ -75.399362, 39.916937 ], [ -75.399288, 39.916972 ], [ -75.399192, 39.917021 ], [ -75.399053, 39.917096 ], [ -75.398686, 39.917324 ], [ -75.398491, 39.917446 ], [ -75.398209, 39.917609 ], [ -75.397971, 39.917749 ], [ -75.397835, 39.917801 ], [ -75.397711, 39.917836 ], [ -75.397584, 39.917857 ], [ -75.397455, 39.917864 ], [ -75.397362, 39.917866 ], [ -75.397285, 39.917863 ], [ -75.397196, 39.917854 ], [ -75.397128, 39.917846 ], [ -75.39706, 39.917837 ], [ -75.396982, 39.917826 ], [ -75.396878, 39.917812 ], [ -75.396822, 39.917826 ], [ -75.396611, 39.917795 ], [ -75.39611, 39.917731 ], [ -75.395223, 39.917607 ], [ -75.393275, 39.917335 ], [ -75.392759, 39.917264 ], [ -75.392265, 39.917197 ], [ -75.391292, 39.917072 ], [ -75.390509, 39.916967 ], [ -75.390196, 39.916923 ], [ -75.389701, 39.916855 ], [ -75.388776, 39.91672 ], [ -75.388275, 39.91664 ], [ -75.387875, 39.916577 ], [ -75.386971, 39.916456 ], [ -75.386318, 39.916362 ], [ -75.385909, 39.916304 ], [ -75.384773, 39.916146 ], [ -75.384299, 39.91608 ], [ -75.383152, 39.915932 ], [ -75.382657, 39.915866 ], [ -75.382331, 39.915822 ], [ -75.38206, 39.915785 ], [ -75.381327, 39.915685 ], [ -75.381013, 39.915642 ], [ -75.380884, 39.915623 ], [ -75.380735, 39.915593 ], [ -75.380601, 39.915558 ], [ -75.380445, 39.915518 ], [ -75.380247, 39.915465 ], [ -75.379941, 39.915386 ], [ -75.37982, 39.915351 ], [ -75.379723, 39.915324 ], [ -75.379325, 39.915217 ], [ -75.379207, 39.915183 ], [ -75.378877, 39.91509 ], [ -75.378757, 39.915056 ], [ -75.378669, 39.915029 ], [ -75.378301, 39.914929 ], [ -75.378138, 39.914888 ], [ -75.378001, 39.914858 ], [ -75.377913, 39.91484 ], [ -75.377644, 39.914783 ], [ -75.377307, 39.914725 ], [ -75.377079, 39.914687 ], [ -75.376198, 39.914536 ], [ -75.375523, 39.914429 ], [ -75.373498, 39.914131 ], [ -75.373293, 39.914105 ], [ -75.372681, 39.914027 ], [ -75.372385, 39.91399 ], [ -75.372039, 39.91394 ], [ -75.371817, 39.913909 ], [ -75.370162, 39.913688 ], [ -75.366942, 39.91334 ], [ -75.366075, 39.913236 ], [ -75.36578, 39.913198 ], [ -75.365509, 39.913169 ], [ -75.365381, 39.913097 ], [ -75.36446, 39.913004 ], [ -75.364016, 39.91296 ], [ -75.363794, 39.912949 ], [ -75.363265, 39.912904 ], [ -75.363101, 39.912898 ], [ -75.36289, 39.912884 ], [ -75.362808, 39.912881 ], [ -75.362327, 39.912842 ], [ -75.362117, 39.912827 ], [ -75.361736, 39.912808 ], [ -75.361375, 39.912782 ], [ -75.3612, 39.91278 ], [ -75.360933, 39.912786 ], [ -75.360498, 39.912776 ], [ -75.359824, 39.912752 ], [ -75.35934, 39.912744 ], [ -75.35923, 39.912743 ], [ -75.358936, 39.912749 ], [ -75.358683, 39.912766 ], [ -75.358438, 39.912783 ], [ -75.358292, 39.912799 ], [ -75.358204, 39.912808 ], [ -75.357811, 39.912855 ], [ -75.357512, 39.912893 ], [ -75.356371, 39.913037 ], [ -75.355682, 39.913125 ], [ -75.35527, 39.913177 ], [ -75.354796, 39.913238 ], [ -75.354519, 39.913264 ], [ -75.354445, 39.913275 ], [ -75.354371, 39.913283 ], [ -75.354329, 39.913286 ], [ -75.354095, 39.913323 ], [ -75.353903, 39.91336 ], [ -75.353669, 39.913379 ], [ -75.353304, 39.913388 ], [ -75.352764, 39.913368 ], [ -75.352482, 39.913354 ], [ -75.352301, 39.913351 ], [ -75.352186, 39.91335 ], [ -75.352125, 39.913357 ], [ -75.3521, 39.91337 ], [ -75.352075, 39.91339 ], [ -75.352049, 39.913416 ], [ -75.352025, 39.913497 ], [ -75.35202, 39.913547 ], [ -75.35203, 39.913595 ], [ -75.352057, 39.913647 ], [ -75.352111, 39.913716 ], [ -75.352131, 39.913736 ], [ -75.352176, 39.913784 ], [ -75.352195, 39.913863 ], [ -75.35219, 39.913897 ], [ -75.352172, 39.91393 ], [ -75.352138, 39.913965 ], [ -75.351593, 39.913978 ], [ -75.35149, 39.913981 ], [ -75.351306, 39.914002 ], [ -75.350721, 39.914038 ], [ -75.350522, 39.914049 ], [ -75.35036, 39.914059 ], [ -75.350248, 39.914055 ], [ -75.350122, 39.914055 ], [ -75.350005, 39.914068 ], [ -75.349912, 39.914089 ], [ -75.349823, 39.914124 ], [ -75.349741, 39.914179 ], [ -75.349708, 39.91423 ], [ -75.349661, 39.914353 ], [ -75.349629, 39.914663 ], [ -75.34964, 39.914747 ], [ -75.34964, 39.914989 ], [ -75.349633, 39.915076 ], [ -75.349553, 39.915983 ], [ -75.349099, 39.915987 ], [ -75.348852, 39.915988 ], [ -75.348734, 39.915982 ], [ -75.348723, 39.916109 ], [ -75.348679, 39.916717 ], [ -75.348667, 39.916951 ], [ -75.34861, 39.917928 ], [ -75.34861, 39.917981 ], [ -75.348649, 39.918042 ], [ -75.348633, 39.918256 ], [ -75.34862, 39.918427 ], [ -75.348608, 39.918554 ], [ -75.348498, 39.919882 ], [ -75.348444, 39.920514 ], [ -75.348412, 39.920881 ], [ -75.348319, 39.922129 ], [ -75.348293, 39.922349 ], [ -75.348277, 39.92252 ], [ -75.34828, 39.922923 ], [ -75.348303, 39.923106 ], [ -75.348355, 39.923501 ], [ -75.348407, 39.923837 ], [ -75.348464, 39.924116 ], [ -75.348534, 39.924381 ], [ -75.348614, 39.924634 ], [ -75.3488, 39.92511 ], [ -75.348908, 39.925343 ], [ -75.348941, 39.925408 ], [ -75.349071, 39.925656 ], [ -75.349545, 39.926436 ], [ -75.349738, 39.926753 ], [ -75.349797, 39.92685 ], [ -75.350116, 39.927409 ], [ -75.350521, 39.928162 ], [ -75.350772, 39.928737 ], [ -75.350918, 39.929049 ], [ -75.351248, 39.929803 ], [ -75.351558, 39.930468 ], [ -75.352025, 39.931525 ], [ -75.35211, 39.931715 ], [ -75.352138, 39.931776 ], [ -75.352116, 39.931876 ], [ -75.352138, 39.931978 ], [ -75.352239, 39.932246 ], [ -75.35228, 39.932429 ], [ -75.352308, 39.932582 ], [ -75.352355, 39.932894 ], [ -75.352373, 39.933057 ], [ -75.352372, 39.933069 ], [ -75.35237, 39.933268 ], [ -75.352359, 39.933364 ], [ -75.35233, 39.933597 ], [ -75.352278, 39.93389 ], [ -75.352173, 39.934239 ], [ -75.352072, 39.934546 ], [ -75.35188, 39.93513 ], [ -75.351574, 39.935956 ], [ -75.351518, 39.936108 ], [ -75.351389, 39.936417 ], [ -75.351311, 39.936603 ], [ -75.351108, 39.937033 ], [ -75.35103, 39.937199 ], [ -75.350859, 39.9375 ], [ -75.350833, 39.937559 ], [ -75.350709, 39.937776 ], [ -75.350549, 39.938047 ], [ -75.350477, 39.938168 ], [ -75.350463, 39.938194 ], [ -75.350404, 39.938322 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.350779, 39.937985 ], [ -75.350549, 39.938047 ], [ -75.350151, 39.938154 ], [ -75.349964, 39.938207 ], [ -75.349397, 39.938362 ], [ -75.348765, 39.938516 ], [ -75.348284, 39.938641 ], [ -75.348147, 39.938677 ], [ -75.347563, 39.938852 ], [ -75.347511, 39.938872 ], [ -75.347477, 39.938896 ], [ -75.34745, 39.938921 ], [ -75.347404, 39.93897 ], [ -75.346295, 39.939248 ], [ -75.345693, 39.939411 ], [ -75.345239, 39.939532 ], [ -75.344954, 39.939608 ], [ -75.344549, 39.939715 ], [ -75.344158, 39.939816 ], [ -75.34402, 39.939851 ], [ -75.343229, 39.940056 ], [ -75.342818, 39.940149 ], [ -75.341872, 39.940371 ], [ -75.341188, 39.940522 ], [ -75.34021, 39.94074 ], [ -75.339651, 39.940864 ], [ -75.339199, 39.940963 ], [ -75.338293, 39.941154 ], [ -75.33749, 39.941327 ], [ -75.337192, 39.941398 ], [ -75.337002, 39.94144 ], [ -75.335878, 39.941691 ], [ -75.334415, 39.942018 ], [ -75.333737, 39.942166 ], [ -75.333323, 39.942257 ], [ -75.33263, 39.942426 ], [ -75.332348, 39.942506 ], [ -75.331881, 39.942651 ], [ -75.33171, 39.94271 ], [ -75.331195, 39.942899 ], [ -75.330929, 39.943006 ], [ -75.330379, 39.943241 ], [ -75.330208, 39.943315 ], [ -75.329943, 39.943441 ], [ -75.329569, 39.943625 ], [ -75.329034, 39.943923 ], [ -75.328893, 39.943995 ], [ -75.328687, 39.944106 ], [ -75.328525, 39.944193 ], [ -75.328008, 39.944463 ], [ -75.327755, 39.944604 ], [ -75.327438, 39.944787 ], [ -75.327316, 39.944863 ], [ -75.326785, 39.94517 ], [ -75.326472, 39.945364 ], [ -75.326397, 39.945412 ], [ -75.326341, 39.945448 ], [ -75.326278, 39.945495 ], [ -75.326179, 39.945568 ], [ -75.325972, 39.945726 ], [ -75.325777, 39.945926 ], [ -75.325668, 39.946034 ], [ -75.325437, 39.946262 ], [ -75.325414, 39.946284 ], [ -75.325321, 39.946397 ], [ -75.325127, 39.946627 ], [ -75.324921, 39.946912 ], [ -75.32472, 39.94723 ], [ -75.324698, 39.947275 ], [ -75.324711, 39.947362 ], [ -75.324596, 39.947602 ], [ -75.324491, 39.947821 ], [ -75.324401, 39.948032 ], [ -75.324339, 39.948212 ], [ -75.32426, 39.948502 ], [ -75.324139, 39.949011 ], [ -75.324126, 39.949087 ], [ -75.324004, 39.949633 ], [ -75.323908, 39.950058 ], [ -75.323732, 39.950812 ], [ -75.32358, 39.951502 ], [ -75.323529, 39.951744 ], [ -75.323404, 39.952337 ], [ -75.323354, 39.95256 ], [ -75.323319, 39.952725 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302644", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.447235, 39.928441 ], [ -75.447167, 39.928446 ], [ -75.44701, 39.928627 ], [ -75.44623, 39.928955 ], [ -75.445959, 39.929084 ], [ -75.44568, 39.929272 ], [ -75.445591, 39.929067 ], [ -75.44549, 39.92883 ], [ -75.445386, 39.928587 ], [ -75.44532, 39.928411 ], [ -75.445302, 39.928351 ], [ -75.445259, 39.928214 ], [ -75.4452, 39.928047 ], [ -75.445136, 39.927886 ], [ -75.444905, 39.927329 ], [ -75.444798, 39.927051 ], [ -75.444738, 39.926912 ], [ -75.444677, 39.926748 ], [ -75.444571, 39.926429 ], [ -75.444423, 39.926098 ], [ -75.444358, 39.925944 ], [ -75.444154, 39.925385 ], [ -75.44405, 39.925111 ], [ -75.444006, 39.925016 ], [ -75.443967, 39.924985 ], [ -75.443823, 39.924586 ], [ -75.443522, 39.923696 ], [ -75.443378, 39.923269 ], [ -75.443294, 39.922965 ], [ -75.443231, 39.922632 ], [ -75.443174, 39.9223 ], [ -75.443157, 39.92209 ], [ -75.443146, 39.921943 ], [ -75.443129, 39.921338 ], [ -75.443126, 39.920821 ], [ -75.443153, 39.92078 ], [ -75.443152, 39.920742 ], [ -75.443149, 39.920684 ], [ -75.443136, 39.920526 ], [ -75.443126, 39.920415 ], [ -75.443097, 39.92022 ], [ -75.443035, 39.92 ], [ -75.443023, 39.919962 ], [ -75.443002, 39.919902 ], [ -75.442951, 39.919778 ], [ -75.442893, 39.919675 ], [ -75.442793, 39.919498 ], [ -75.4429, 39.919428 ], [ -75.442968, 39.919377 ], [ -75.443005, 39.91934 ], [ -75.443064, 39.919284 ], [ -75.443126, 39.919222 ], [ -75.443202, 39.919143 ], [ -75.443331, 39.919015 ], [ -75.44373, 39.918633 ], [ -75.44383, 39.918548 ], [ -75.443933, 39.918486 ], [ -75.444023, 39.918449 ], [ -75.444018, 39.918403 ], [ -75.444029, 39.918349 ], [ -75.444052, 39.918306 ], [ -75.444098, 39.918262 ], [ -75.444328, 39.918042 ], [ -75.444393, 39.91798 ], [ -75.44471, 39.917688 ], [ -75.444771, 39.917704 ], [ -75.444823, 39.917704 ], [ -75.444868, 39.917694 ], [ -75.44492, 39.91767 ], [ -75.444976, 39.917625 ], [ -75.444721, 39.917489 ], [ -75.44468, 39.917526 ], [ -75.444651, 39.917571 ], [ -75.444648, 39.917604 ], [ -75.444656, 39.917637 ], [ -75.444685, 39.91767 ], [ -75.44471, 39.917688 ], [ -75.444393, 39.91798 ], [ -75.444328, 39.918042 ], [ -75.444098, 39.918262 ], [ -75.444052, 39.918306 ], [ -75.444029, 39.918349 ], [ -75.444018, 39.918403 ], [ -75.444023, 39.918449 ], [ -75.443933, 39.918486 ], [ -75.44383, 39.918548 ], [ -75.44373, 39.918632 ], [ -75.443331, 39.919015 ], [ -75.443202, 39.919143 ], [ -75.443126, 39.919222 ], [ -75.443064, 39.919284 ], [ -75.443005, 39.91934 ], [ -75.442968, 39.919377 ], [ -75.4429, 39.919428 ], [ -75.442793, 39.919498 ], [ -75.44272, 39.919395 ], [ -75.442589, 39.919213 ], [ -75.442489, 39.919097 ], [ -75.442366, 39.918977 ], [ -75.442206, 39.918842 ], [ -75.441955, 39.918652 ], [ -75.441298, 39.918175 ], [ -75.441192, 39.918095 ], [ -75.441161, 39.918076 ], [ -75.441116, 39.918068 ], [ -75.441047, 39.918016 ], [ -75.440877, 39.917897 ], [ -75.44072, 39.917794 ], [ -75.440651, 39.91775 ], [ -75.440564, 39.917702 ], [ -75.440446, 39.917632 ], [ -75.440351, 39.917311 ], [ -75.440338, 39.917138 ], [ -75.440323, 39.916975 ], [ -75.440298, 39.916825 ], [ -75.440269, 39.916646 ], [ -75.440219, 39.916371 ], [ -75.440039, 39.915273 ], [ -75.439966, 39.914757 ], [ -75.439928, 39.91457 ], [ -75.439895, 39.914339 ], [ -75.439838, 39.91403 ], [ -75.439776, 39.91352 ], [ -75.439745, 39.913033 ], [ -75.439737, 39.912925 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436382, 39.913286 ], [ -75.435978, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434501, 39.913693 ], [ -75.434003, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427245, 39.914728 ], [ -75.42631, 39.914885 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421713, 39.91553 ], [ -75.421259, 39.915591 ], [ -75.420859, 39.915647 ], [ -75.420658, 39.915673 ], [ -75.420338, 39.915715 ], [ -75.419935, 39.915774 ], [ -75.419305, 39.915862 ], [ -75.418823, 39.915935 ], [ -75.41868, 39.915958 ], [ -75.417733, 39.916098 ], [ -75.417587, 39.916118 ], [ -75.416877, 39.916218 ], [ -75.415489, 39.916416 ], [ -75.414971, 39.916486 ], [ -75.412762, 39.916795 ], [ -75.411658, 39.916951 ], [ -75.410552, 39.9171 ], [ -75.410209, 39.917134 ], [ -75.40982, 39.917159 ], [ -75.409429, 39.917172 ], [ -75.409025, 39.91717 ], [ -75.409, 39.917169 ], [ -75.408828, 39.917166 ], [ -75.408543, 39.917159 ], [ -75.407625, 39.917103 ], [ -75.406709, 39.917035 ], [ -75.406444, 39.917018 ], [ -75.404876, 39.916925 ], [ -75.404521, 39.91691 ], [ -75.404253, 39.9169 ], [ -75.403742, 39.916873 ], [ -75.403414, 39.916855 ], [ -75.403016, 39.916841 ], [ -75.402721, 39.916824 ], [ -75.401718, 39.91677 ], [ -75.401168, 39.916736 ], [ -75.400898, 39.916723 ], [ -75.40073, 39.916717 ], [ -75.4006, 39.916716 ], [ -75.400421, 39.916713 ], [ -75.400236, 39.916722 ], [ -75.40005, 39.916742 ], [ -75.39988, 39.916771 ], [ -75.399715, 39.91681 ], [ -75.399596, 39.916847 ], [ -75.399447, 39.9169 ], [ -75.399362, 39.916937 ], [ -75.399288, 39.916972 ], [ -75.399192, 39.917021 ], [ -75.399053, 39.917096 ], [ -75.398686, 39.917324 ], [ -75.398491, 39.917446 ], [ -75.398209, 39.917609 ], [ -75.397971, 39.917749 ], [ -75.397835, 39.917801 ], [ -75.397711, 39.917836 ], [ -75.397584, 39.917857 ], [ -75.397455, 39.917864 ], [ -75.397362, 39.917866 ], [ -75.397285, 39.917863 ], [ -75.397196, 39.917854 ], [ -75.397128, 39.917846 ], [ -75.39706, 39.917837 ], [ -75.396982, 39.917826 ], [ -75.396878, 39.917812 ], [ -75.396822, 39.917826 ], [ -75.396611, 39.917795 ], [ -75.39611, 39.917731 ], [ -75.395223, 39.917607 ], [ -75.393275, 39.917335 ], [ -75.392759, 39.917264 ], [ -75.392265, 39.917197 ], [ -75.391292, 39.917072 ], [ -75.390509, 39.916967 ], [ -75.390196, 39.916923 ], [ -75.389701, 39.916855 ], [ -75.388776, 39.91672 ], [ -75.388275, 39.91664 ], [ -75.387875, 39.916577 ], [ -75.386971, 39.916456 ], [ -75.386318, 39.916362 ], [ -75.385909, 39.916304 ], [ -75.384773, 39.916146 ], [ -75.384299, 39.91608 ], [ -75.383152, 39.915932 ], [ -75.382657, 39.915866 ], [ -75.382331, 39.915822 ], [ -75.38206, 39.915785 ], [ -75.381327, 39.915685 ], [ -75.381013, 39.915642 ], [ -75.380884, 39.915623 ], [ -75.380735, 39.915593 ], [ -75.380601, 39.915558 ], [ -75.380445, 39.915518 ], [ -75.380247, 39.915465 ], [ -75.379941, 39.915386 ], [ -75.37982, 39.915351 ], [ -75.379723, 39.915324 ], [ -75.379325, 39.915217 ], [ -75.379207, 39.915183 ], [ -75.378877, 39.91509 ], [ -75.378757, 39.915056 ], [ -75.378669, 39.915029 ], [ -75.378301, 39.914929 ], [ -75.378138, 39.914888 ], [ -75.378001, 39.914858 ], [ -75.377913, 39.91484 ], [ -75.377644, 39.914783 ], [ -75.377307, 39.914725 ], [ -75.377079, 39.914687 ], [ -75.376198, 39.914536 ], [ -75.375523, 39.914429 ], [ -75.373498, 39.914131 ], [ -75.373293, 39.914105 ], [ -75.372681, 39.914027 ], [ -75.372385, 39.91399 ], [ -75.372039, 39.91394 ], [ -75.371817, 39.913909 ], [ -75.370162, 39.913688 ], [ -75.366942, 39.91334 ], [ -75.366075, 39.913236 ], [ -75.36578, 39.913198 ], [ -75.365509, 39.913169 ], [ -75.365381, 39.913097 ], [ -75.36446, 39.913004 ], [ -75.364016, 39.91296 ], [ -75.363794, 39.912949 ], [ -75.363265, 39.912904 ], [ -75.363101, 39.912898 ], [ -75.36289, 39.912884 ], [ -75.362808, 39.912881 ], [ -75.362327, 39.912842 ], [ -75.362117, 39.912827 ], [ -75.361736, 39.912808 ], [ -75.361375, 39.912782 ], [ -75.3612, 39.91278 ], [ -75.360933, 39.912786 ], [ -75.360498, 39.912776 ], [ -75.359824, 39.912752 ], [ -75.35934, 39.912744 ], [ -75.35923, 39.912743 ], [ -75.358936, 39.912749 ], [ -75.358683, 39.912766 ], [ -75.358438, 39.912783 ], [ -75.358292, 39.912799 ], [ -75.358204, 39.912808 ], [ -75.357811, 39.912855 ], [ -75.357512, 39.912893 ], [ -75.356371, 39.913037 ], [ -75.355682, 39.913125 ], [ -75.35527, 39.913177 ], [ -75.354796, 39.913238 ], [ -75.354519, 39.913264 ], [ -75.354445, 39.913275 ], [ -75.354371, 39.913283 ], [ -75.354329, 39.913286 ], [ -75.354095, 39.913323 ], [ -75.353903, 39.91336 ], [ -75.353669, 39.913379 ], [ -75.353304, 39.913388 ], [ -75.352764, 39.913368 ], [ -75.352482, 39.913354 ], [ -75.352301, 39.913351 ], [ -75.352186, 39.91335 ], [ -75.352125, 39.913357 ], [ -75.3521, 39.91337 ], [ -75.352075, 39.91339 ], [ -75.352049, 39.913416 ], [ -75.352025, 39.913497 ], [ -75.35202, 39.913547 ], [ -75.35203, 39.913595 ], [ -75.352057, 39.913647 ], [ -75.352111, 39.913716 ], [ -75.352131, 39.913736 ], [ -75.352176, 39.913784 ], [ -75.352195, 39.913863 ], [ -75.35219, 39.913897 ], [ -75.352172, 39.91393 ], [ -75.352138, 39.913965 ], [ -75.351593, 39.913978 ], [ -75.35149, 39.913981 ], [ -75.351306, 39.914002 ], [ -75.350721, 39.914038 ], [ -75.350522, 39.914049 ], [ -75.35036, 39.914059 ], [ -75.350248, 39.914055 ], [ -75.350122, 39.914055 ], [ -75.350005, 39.914068 ], [ -75.349912, 39.914089 ], [ -75.349823, 39.914124 ], [ -75.349741, 39.914179 ], [ -75.349708, 39.91423 ], [ -75.349661, 39.914353 ], [ -75.349629, 39.914663 ], [ -75.34964, 39.914747 ], [ -75.34964, 39.914989 ], [ -75.349633, 39.915076 ], [ -75.349553, 39.915983 ], [ -75.349099, 39.915987 ], [ -75.348852, 39.915988 ], [ -75.348734, 39.915982 ], [ -75.348723, 39.916109 ], [ -75.348679, 39.916717 ], [ -75.348667, 39.916951 ], [ -75.34861, 39.917928 ], [ -75.34861, 39.917981 ], [ -75.348649, 39.918042 ], [ -75.348633, 39.918256 ], [ -75.34862, 39.918427 ], [ -75.348608, 39.918554 ], [ -75.348498, 39.919882 ], [ -75.348444, 39.920514 ], [ -75.348412, 39.920881 ], [ -75.348319, 39.922129 ], [ -75.348293, 39.922349 ], [ -75.348277, 39.92252 ], [ -75.34828, 39.922923 ], [ -75.348303, 39.923106 ], [ -75.348355, 39.923501 ], [ -75.348407, 39.923837 ], [ -75.348464, 39.924116 ], [ -75.348534, 39.924381 ], [ -75.348614, 39.924634 ], [ -75.3488, 39.92511 ], [ -75.348908, 39.925343 ], [ -75.348941, 39.925408 ], [ -75.349071, 39.925656 ], [ -75.349545, 39.926436 ], [ -75.349738, 39.926753 ], [ -75.349797, 39.92685 ], [ -75.350116, 39.927409 ], [ -75.350521, 39.928162 ], [ -75.350772, 39.928737 ], [ -75.350918, 39.929049 ], [ -75.351248, 39.929803 ], [ -75.351558, 39.930468 ], [ -75.352025, 39.931525 ], [ -75.35211, 39.931715 ], [ -75.352138, 39.931776 ], [ -75.352116, 39.931876 ], [ -75.352138, 39.931978 ], [ -75.352239, 39.932246 ], [ -75.35228, 39.932429 ], [ -75.352308, 39.932582 ], [ -75.352355, 39.932894 ], [ -75.352373, 39.933057 ], [ -75.352372, 39.933069 ], [ -75.35237, 39.933268 ], [ -75.352359, 39.933364 ], [ -75.35233, 39.933597 ], [ -75.352278, 39.93389 ], [ -75.352173, 39.934239 ], [ -75.352072, 39.934546 ], [ -75.35188, 39.93513 ], [ -75.351574, 39.935956 ], [ -75.351518, 39.936108 ], [ -75.351389, 39.936417 ], [ -75.351311, 39.936603 ], [ -75.351108, 39.937033 ], [ -75.35103, 39.937199 ], [ -75.350859, 39.9375 ], [ -75.350833, 39.937559 ], [ -75.350709, 39.937776 ], [ -75.350549, 39.938047 ], [ -75.350477, 39.938168 ], [ -75.350463, 39.938194 ], [ -75.350404, 39.938322 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.350779, 39.937985 ], [ -75.350549, 39.938047 ], [ -75.350151, 39.938154 ], [ -75.349964, 39.938207 ], [ -75.349397, 39.938362 ], [ -75.348765, 39.938516 ], [ -75.348284, 39.938641 ], [ -75.348147, 39.938677 ], [ -75.347563, 39.938852 ], [ -75.347511, 39.938872 ], [ -75.347477, 39.938896 ], [ -75.34745, 39.938921 ], [ -75.347404, 39.93897 ], [ -75.346295, 39.939248 ], [ -75.345693, 39.939411 ], [ -75.345239, 39.939532 ], [ -75.344954, 39.939608 ], [ -75.344549, 39.939715 ], [ -75.344158, 39.939816 ], [ -75.34402, 39.939851 ], [ -75.343229, 39.940056 ], [ -75.342818, 39.940149 ], [ -75.341872, 39.940371 ], [ -75.341188, 39.940522 ], [ -75.34021, 39.94074 ], [ -75.339651, 39.940864 ], [ -75.339199, 39.940963 ], [ -75.338293, 39.941154 ], [ -75.33749, 39.941327 ], [ -75.337192, 39.941398 ], [ -75.337002, 39.94144 ], [ -75.335878, 39.941691 ], [ -75.334415, 39.942018 ], [ -75.333737, 39.942166 ], [ -75.333323, 39.942257 ], [ -75.33263, 39.942426 ], [ -75.332348, 39.942506 ], [ -75.331881, 39.942651 ], [ -75.33171, 39.94271 ], [ -75.331195, 39.942899 ], [ -75.330929, 39.943006 ], [ -75.330379, 39.943241 ], [ -75.330208, 39.943315 ], [ -75.329943, 39.943441 ], [ -75.329569, 39.943625 ], [ -75.329034, 39.943923 ], [ -75.328893, 39.943995 ], [ -75.328687, 39.944106 ], [ -75.328525, 39.944193 ], [ -75.328008, 39.944463 ], [ -75.327755, 39.944604 ], [ -75.327438, 39.944787 ], [ -75.327316, 39.944863 ], [ -75.326785, 39.94517 ], [ -75.326472, 39.945364 ], [ -75.326397, 39.945412 ], [ -75.326341, 39.945448 ], [ -75.326278, 39.945495 ], [ -75.326179, 39.945568 ], [ -75.325972, 39.945726 ], [ -75.325777, 39.945926 ], [ -75.325668, 39.946034 ], [ -75.325437, 39.946262 ], [ -75.325414, 39.946284 ], [ -75.325321, 39.946397 ], [ -75.325127, 39.946627 ], [ -75.324921, 39.946912 ], [ -75.32472, 39.94723 ], [ -75.324698, 39.947275 ], [ -75.324711, 39.947362 ], [ -75.324596, 39.947602 ], [ -75.324491, 39.947821 ], [ -75.324401, 39.948032 ], [ -75.324339, 39.948212 ], [ -75.32426, 39.948502 ], [ -75.324139, 39.949011 ], [ -75.324126, 39.949087 ], [ -75.324004, 39.949633 ], [ -75.323908, 39.950058 ], [ -75.323732, 39.950812 ], [ -75.32358, 39.951502 ], [ -75.323529, 39.951744 ], [ -75.323404, 39.952337 ], [ -75.323354, 39.95256 ], [ -75.323319, 39.952725 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262163, 39.96188 ], [ -75.262072, 39.961858 ], [ -75.261921, 39.961833 ], [ -75.261766, 39.961816 ], [ -75.261596, 39.961807 ], [ -75.261386, 39.961798 ], [ -75.261062, 39.961815 ], [ -75.260925, 39.961818 ], [ -75.259587, 39.96175 ], [ -75.259123, 39.961727 ], [ -75.259022, 39.961722 ], [ -75.258872, 39.961725 ], [ -75.258812, 39.961728 ], [ -75.258716, 39.961773 ], [ -75.258601, 39.961778 ], [ -75.258369, 39.961803 ], [ -75.258003, 39.961866 ], [ -75.25771, 39.961915 ], [ -75.257207, 39.961991 ], [ -75.257304, 39.962069 ], [ -75.257481, 39.962123 ], [ -75.258284, 39.962026 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302680", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.389211, 39.840348 ], [ -75.389285, 39.840429 ], [ -75.389551, 39.840737 ], [ -75.389769, 39.840982 ], [ -75.390003, 39.841246 ], [ -75.390261, 39.84155 ], [ -75.390672, 39.842009 ], [ -75.390975, 39.842344 ], [ -75.391455, 39.842901 ], [ -75.391506, 39.842959 ], [ -75.391885, 39.843401 ], [ -75.391997, 39.843517 ], [ -75.39218, 39.843702 ], [ -75.392243, 39.843754 ], [ -75.392328, 39.843819 ], [ -75.392389, 39.843857 ], [ -75.392539, 39.843964 ], [ -75.392635, 39.844026 ], [ -75.392738, 39.844089 ], [ -75.393146, 39.844325 ], [ -75.393382, 39.84446 ], [ -75.393626, 39.844594 ], [ -75.393718, 39.844654 ], [ -75.39381, 39.844705 ], [ -75.394151, 39.8449 ], [ -75.394274, 39.844967 ], [ -75.394351, 39.845009 ], [ -75.39437, 39.84502 ], [ -75.3947, 39.845169 ], [ -75.395249, 39.845391 ], [ -75.395577, 39.84551 ], [ -75.396515, 39.845863 ], [ -75.396671, 39.845918 ], [ -75.396931, 39.845997 ], [ -75.397004, 39.846022 ], [ -75.397094, 39.846041 ], [ -75.397264, 39.846084 ], [ -75.39738, 39.846125 ], [ -75.397506, 39.84618 ], [ -75.397652, 39.846264 ], [ -75.39778, 39.846343 ], [ -75.398174, 39.846591 ], [ -75.399242, 39.847295 ], [ -75.399375, 39.847383 ], [ -75.399521, 39.84748 ], [ -75.399761, 39.847636 ], [ -75.400053, 39.847826 ], [ -75.40016, 39.847905 ], [ -75.400249, 39.847978 ], [ -75.400339, 39.848061 ], [ -75.400402, 39.84813 ], [ -75.400461, 39.848203 ], [ -75.400534, 39.848296 ], [ -75.400843, 39.848734 ], [ -75.401195, 39.849232 ], [ -75.401373, 39.849517 ], [ -75.401431, 39.849644 ], [ -75.40148, 39.849781 ], [ -75.401522, 39.849911 ], [ -75.401577, 39.850111 ], [ -75.401624, 39.85031 ], [ -75.401688, 39.850577 ], [ -75.401783, 39.851048 ], [ -75.401804, 39.851149 ], [ -75.40182, 39.851264 ], [ -75.401831, 39.851397 ], [ -75.40184, 39.851555 ], [ -75.401876, 39.852184 ], [ -75.401885, 39.85245 ], [ -75.401905, 39.852573 ], [ -75.40193, 39.852655 ], [ -75.401964, 39.852765 ], [ -75.402003, 39.852855 ], [ -75.40205, 39.852942 ], [ -75.402153, 39.853107 ], [ -75.402256, 39.853245 ], [ -75.402465, 39.85349 ], [ -75.402965, 39.854062 ], [ -75.403077, 39.854196 ], [ -75.403091, 39.854212 ], [ -75.403275, 39.854416 ], [ -75.40337, 39.85451 ], [ -75.403512, 39.854656 ], [ -75.403714, 39.854856 ], [ -75.404173, 39.855278 ], [ -75.404603, 39.855675 ], [ -75.404769, 39.855815 ], [ -75.404894, 39.855931 ], [ -75.405043, 39.856043 ], [ -75.405161, 39.856121 ], [ -75.405312, 39.856204 ], [ -75.405475, 39.856276 ], [ -75.405656, 39.85635 ], [ -75.406595, 39.856747 ], [ -75.407121, 39.856992 ], [ -75.407604, 39.85723 ], [ -75.407872, 39.857381 ], [ -75.408037, 39.85749 ], [ -75.408513, 39.857869 ], [ -75.409556, 39.858686 ], [ -75.409563, 39.858709 ], [ -75.409566, 39.858721 ], [ -75.409573, 39.858732 ], [ -75.409602, 39.858759 ], [ -75.409644, 39.858793 ], [ -75.409803, 39.858912 ], [ -75.409815, 39.858922 ], [ -75.409967, 39.859035 ], [ -75.4102, 39.859204 ], [ -75.410305, 39.85928 ], [ -75.410328, 39.859297 ], [ -75.410358, 39.859319 ], [ -75.410388, 39.859338 ], [ -75.410444, 39.859351 ], [ -75.410524, 39.859417 ], [ -75.410789, 39.859626 ], [ -75.411103, 39.859886 ], [ -75.411279, 39.860032 ], [ -75.411508, 39.860214 ], [ -75.412157, 39.860732 ], [ -75.412421, 39.860934 ], [ -75.412832, 39.861253 ], [ -75.412848, 39.861306 ], [ -75.412976, 39.861415 ], [ -75.413029, 39.861461 ], [ -75.413129, 39.861538 ], [ -75.413208, 39.861594 ], [ -75.413321, 39.861678 ], [ -75.413393, 39.861726 ], [ -75.413485, 39.861742 ], [ -75.413788, 39.861976 ], [ -75.415376, 39.86311 ], [ -75.415795, 39.863388 ], [ -75.416044, 39.863566 ], [ -75.416245, 39.863727 ], [ -75.416381, 39.863836 ], [ -75.416558, 39.863977 ], [ -75.416628, 39.863897 ], [ -75.416694, 39.863818 ], [ -75.416791, 39.863689 ], [ -75.416888, 39.863544 ], [ -75.417238, 39.863043 ], [ -75.417302, 39.86295 ], [ -75.417858, 39.862114 ], [ -75.41798, 39.861942 ], [ -75.418064, 39.861816 ], [ -75.41812, 39.861737 ], [ -75.418183, 39.861635 ], [ -75.418218, 39.861562 ], [ -75.418253, 39.861461 ], [ -75.418385, 39.860797 ], [ -75.418587, 39.859671 ], [ -75.418686, 39.859167 ], [ -75.418754, 39.858823 ], [ -75.418785, 39.85868 ], [ -75.418816, 39.858582 ], [ -75.418863, 39.858473 ], [ -75.41891, 39.858383 ], [ -75.418944, 39.858328 ], [ -75.419021, 39.858219 ], [ -75.419037, 39.8582 ], [ -75.419113, 39.858115 ], [ -75.419226, 39.858008 ], [ -75.419257, 39.857984 ], [ -75.419356, 39.857904 ], [ -75.419491, 39.857811 ], [ -75.419693, 39.857703 ], [ -75.419854, 39.857633 ], [ -75.420012, 39.85758 ], [ -75.420174, 39.857535 ], [ -75.420341, 39.857503 ], [ -75.42051, 39.857482 ], [ -75.420616, 39.857475 ], [ -75.421019, 39.857441 ], [ -75.421099, 39.857475 ], [ -75.421183, 39.857477 ], [ -75.42129, 39.85747 ], [ -75.42152, 39.857448 ], [ -75.42194, 39.857431 ], [ -75.422393, 39.857427 ], [ -75.422405, 39.857427 ], [ -75.422652, 39.857415 ], [ -75.422986, 39.8574 ], [ -75.423833, 39.85734 ], [ -75.424241, 39.857316 ], [ -75.424602, 39.857295 ], [ -75.424706, 39.857243 ], [ -75.4249, 39.857229 ], [ -75.425133, 39.857213 ], [ -75.425394, 39.857195 ], [ -75.425703, 39.857173 ], [ -75.426102, 39.857146 ], [ -75.42644, 39.857133 ], [ -75.426971, 39.857113 ], [ -75.426977, 39.857164 ], [ -75.42701, 39.857508 ], [ -75.427028, 39.857686 ], [ -75.427045, 39.858024 ], [ -75.427074, 39.858388 ], [ -75.427092, 39.858605 ], [ -75.427096, 39.858655 ], [ -75.427179, 39.859491 ], [ -75.427201, 39.859731 ], [ -75.427208, 39.859799 ], [ -75.427229, 39.859981 ], [ -75.427229, 39.859986 ], [ -75.427249, 39.860155 ], [ -75.427264, 39.860282 ], [ -75.42728, 39.860399 ], [ -75.427298, 39.860524 ], [ -75.427343, 39.860838 ], [ -75.427356, 39.860927 ], [ -75.427374, 39.861048 ], [ -75.427391, 39.861162 ], [ -75.427503, 39.861914 ], [ -75.427565, 39.862365 ], [ -75.427666, 39.863126 ], [ -75.427709, 39.863404 ], [ -75.427737, 39.86358 ], [ -75.427762, 39.863743 ], [ -75.427792, 39.863929 ], [ -75.427809, 39.864014 ], [ -75.427836, 39.864165 ], [ -75.427894, 39.864577 ], [ -75.427917, 39.864738 ], [ -75.427934, 39.86486 ], [ -75.428018, 39.865457 ], [ -75.428071, 39.86577 ], [ -75.428094, 39.865907 ], [ -75.428114, 39.866091 ], [ -75.428137, 39.866298 ], [ -75.428161, 39.866519 ], [ -75.428184, 39.866739 ], [ -75.428231, 39.867197 ], [ -75.428291, 39.867764 ], [ -75.428308, 39.867928 ], [ -75.428314, 39.86799 ], [ -75.428418, 39.868922 ], [ -75.42848, 39.868961 ], [ -75.428555, 39.869009 ], [ -75.429092, 39.869321 ], [ -75.42921, 39.869389 ], [ -75.429307, 39.869445 ], [ -75.429371, 39.869472 ], [ -75.429513, 39.869554 ], [ -75.429613, 39.869617 ], [ -75.429638, 39.869632 ], [ -75.429746, 39.869687 ], [ -75.429789, 39.869712 ], [ -75.430045, 39.869848 ], [ -75.430165, 39.869896 ], [ -75.430331, 39.869955 ], [ -75.431079, 39.870222 ], [ -75.431405, 39.870334 ], [ -75.431662, 39.870419 ], [ -75.431866, 39.870487 ], [ -75.432023, 39.870526 ], [ -75.432177, 39.87055 ], [ -75.432354, 39.870567 ], [ -75.432987, 39.870591 ], [ -75.43314, 39.870596 ], [ -75.433591, 39.870608 ], [ -75.434452, 39.870622 ], [ -75.434983, 39.870636 ], [ -75.435544, 39.87065 ], [ -75.436786, 39.870685 ], [ -75.436781, 39.870908 ], [ -75.436785, 39.870958 ], [ -75.436798, 39.871007 ], [ -75.436819, 39.871044 ], [ -75.436844, 39.871074 ], [ -75.436872, 39.871106 ], [ -75.436905, 39.871134 ], [ -75.436934, 39.871154 ], [ -75.437094, 39.871246 ], [ -75.437602, 39.871528 ], [ -75.437851, 39.87167 ], [ -75.437981, 39.871753 ], [ -75.438131, 39.871874 ], [ -75.438554, 39.872242 ], [ -75.439473, 39.873098 ], [ -75.439632, 39.873247 ], [ -75.439654, 39.873347 ], [ -75.439672, 39.873443 ], [ -75.43969, 39.873551 ], [ -75.439713, 39.873653 ], [ -75.439629, 39.873738 ], [ -75.43959, 39.873794 ], [ -75.439565, 39.87384 ], [ -75.439553, 39.873879 ], [ -75.439548, 39.873927 ], [ -75.43955, 39.873968 ], [ -75.439557, 39.874023 ], [ -75.439566, 39.874081 ], [ -75.439578, 39.874111 ], [ -75.439611, 39.874149 ], [ -75.439652, 39.874179 ], [ -75.439702, 39.874192 ], [ -75.439765, 39.874192 ], [ -75.439804, 39.874186 ], [ -75.439868, 39.874175 ], [ -75.439902, 39.874168 ], [ -75.439931, 39.874153 ], [ -75.439957, 39.874129 ], [ -75.439972, 39.874103 ], [ -75.439978, 39.874049 ], [ -75.43997, 39.873962 ], [ -75.439959, 39.87389 ], [ -75.43995, 39.873847 ], [ -75.439943, 39.873829 ], [ -75.43993, 39.873799 ], [ -75.439907, 39.873775 ], [ -75.439831, 39.873721 ], [ -75.439757, 39.873677 ], [ -75.439713, 39.873653 ], [ -75.43969, 39.873551 ], [ -75.439672, 39.873443 ], [ -75.439654, 39.873347 ], [ -75.439632, 39.873246 ], [ -75.439473, 39.873098 ], [ -75.438554, 39.872242 ], [ -75.438131, 39.871874 ], [ -75.437981, 39.871753 ], [ -75.437851, 39.87167 ], [ -75.437602, 39.871528 ], [ -75.437094, 39.871246 ], [ -75.436934, 39.871154 ], [ -75.436905, 39.871134 ], [ -75.436872, 39.871106 ], [ -75.436844, 39.871074 ], [ -75.436819, 39.871044 ], [ -75.436798, 39.871007 ], [ -75.436785, 39.870958 ], [ -75.436781, 39.870908 ], [ -75.436786, 39.870685 ], [ -75.435544, 39.87065 ], [ -75.434983, 39.870636 ], [ -75.434452, 39.870622 ], [ -75.433591, 39.870608 ], [ -75.43314, 39.870596 ], [ -75.432987, 39.870591 ], [ -75.432354, 39.870567 ], [ -75.432177, 39.87055 ], [ -75.432023, 39.870526 ], [ -75.431866, 39.870487 ], [ -75.431662, 39.870419 ], [ -75.431405, 39.870334 ], [ -75.431079, 39.870222 ], [ -75.430331, 39.869955 ], [ -75.430165, 39.869896 ], [ -75.430045, 39.869848 ], [ -75.429789, 39.869712 ], [ -75.429746, 39.869687 ], [ -75.429638, 39.869632 ], [ -75.429613, 39.869617 ], [ -75.429513, 39.869554 ], [ -75.429371, 39.869472 ], [ -75.429307, 39.869445 ], [ -75.42921, 39.869389 ], [ -75.429092, 39.869321 ], [ -75.428555, 39.869009 ], [ -75.42848, 39.868961 ], [ -75.428418, 39.868922 ], [ -75.428418, 39.869007 ], [ -75.42842, 39.869046 ], [ -75.42842, 39.869102 ], [ -75.428435, 39.869214 ], [ -75.428457, 39.869363 ], [ -75.428503, 39.869569 ], [ -75.42853, 39.869707 ], [ -75.428497, 39.869779 ], [ -75.428521, 39.869879 ], [ -75.428541, 39.869951 ], [ -75.428579, 39.870078 ], [ -75.428609, 39.870174 ], [ -75.428688, 39.870238 ], [ -75.428718, 39.87034 ], [ -75.428742, 39.870417 ], [ -75.428871, 39.870819 ], [ -75.428912, 39.870943 ], [ -75.429032, 39.871306 ], [ -75.429077, 39.871414 ], [ -75.429217, 39.871703 ], [ -75.429277, 39.871804 ], [ -75.429306, 39.871857 ], [ -75.429306, 39.871914 ], [ -75.429456, 39.872153 ], [ -75.429511, 39.872239 ], [ -75.429588, 39.872346 ], [ -75.429634, 39.872406 ], [ -75.429733, 39.872537 ], [ -75.429794, 39.872566 ], [ -75.429867, 39.872656 ], [ -75.43006, 39.872867 ], [ -75.430162, 39.872971 ], [ -75.430427, 39.873242 ], [ -75.430613, 39.873439 ], [ -75.430937, 39.873829 ], [ -75.431079, 39.874037 ], [ -75.431219, 39.874295 ], [ -75.431283, 39.874429 ], [ -75.43139, 39.874697 ], [ -75.431467, 39.874956 ], [ -75.431534, 39.875251 ], [ -75.43157, 39.87552 ], [ -75.431581, 39.875648 ], [ -75.43159, 39.875917 ], [ -75.431578, 39.876134 ], [ -75.431523, 39.876425 ], [ -75.431422, 39.876759 ], [ -75.431285, 39.877072 ], [ -75.43121, 39.87722 ], [ -75.431154, 39.877319 ], [ -75.43104, 39.877509 ], [ -75.430819, 39.877831 ], [ -75.429574, 39.87932 ], [ -75.429508, 39.879391 ], [ -75.429268, 39.879701 ], [ -75.429155, 39.879867 ], [ -75.429054, 39.880037 ], [ -75.428968, 39.880213 ], [ -75.428891, 39.880433 ], [ -75.428857, 39.880541 ], [ -75.428842, 39.880637 ], [ -75.428809, 39.880848 ], [ -75.428797, 39.881104 ], [ -75.428795, 39.881191 ], [ -75.428808, 39.88129 ], [ -75.428822, 39.881391 ], [ -75.428842, 39.881488 ], [ -75.428908, 39.881741 ], [ -75.428973, 39.881898 ], [ -75.429085, 39.882112 ], [ -75.429187, 39.882284 ], [ -75.429326, 39.882483 ], [ -75.429468, 39.88267 ], [ -75.430142, 39.883587 ], [ -75.430382, 39.883914 ], [ -75.430594, 39.884219 ], [ -75.430714, 39.884409 ], [ -75.430716, 39.884414 ], [ -75.430746, 39.884468 ], [ -75.430778, 39.884538 ], [ -75.430912, 39.884868 ], [ -75.430956, 39.884972 ], [ -75.431037, 39.885239 ], [ -75.431097, 39.885518 ], [ -75.431131, 39.885785 ], [ -75.431151, 39.88599 ], [ -75.431153, 39.88606 ], [ -75.431147, 39.886238 ], [ -75.431135, 39.886407 ], [ -75.431107, 39.886589 ], [ -75.43099, 39.887091 ], [ -75.430964, 39.887291 ], [ -75.430944, 39.887587 ], [ -75.430934, 39.888509 ], [ -75.430951, 39.889111 ], [ -75.430967, 39.889223 ], [ -75.43101, 39.889461 ], [ -75.43148, 39.891444 ], [ -75.431567, 39.891736 ], [ -75.431649, 39.891928 ], [ -75.431743, 39.892109 ], [ -75.431765, 39.892143 ], [ -75.431873, 39.892306 ], [ -75.432319, 39.892962 ], [ -75.43261, 39.89335 ], [ -75.432616, 39.893356 ], [ -75.432724, 39.89346 ], [ -75.43284, 39.893546 ], [ -75.433017, 39.893651 ], [ -75.433268, 39.893764 ], [ -75.433917, 39.894036 ], [ -75.434198, 39.894152 ], [ -75.43421, 39.894157 ], [ -75.434445, 39.894261 ], [ -75.434648, 39.894374 ], [ -75.434669, 39.894386 ], [ -75.434783, 39.894458 ], [ -75.435064, 39.894667 ], [ -75.435131, 39.894723 ], [ -75.435195, 39.894784 ], [ -75.435293, 39.894867 ], [ -75.435495, 39.895091 ], [ -75.435627, 39.89527 ], [ -75.435698, 39.895365 ], [ -75.435892, 39.895672 ], [ -75.435994, 39.895866 ], [ -75.436073, 39.896019 ], [ -75.436115, 39.896101 ], [ -75.436196, 39.896297 ], [ -75.436331, 39.8967 ], [ -75.436566, 39.897368 ], [ -75.43708, 39.898804 ], [ -75.437345, 39.899601 ], [ -75.437573, 39.900278 ], [ -75.437851, 39.901005 ], [ -75.43825, 39.901745 ], [ -75.438439, 39.902029 ], [ -75.439078, 39.902891 ], [ -75.439459, 39.903411 ], [ -75.439647, 39.903667 ], [ -75.439768, 39.903841 ], [ -75.439899, 39.90406 ], [ -75.439968, 39.904191 ], [ -75.440022, 39.904354 ], [ -75.440062, 39.904503 ], [ -75.440091, 39.904652 ], [ -75.440099, 39.904833 ], [ -75.440086, 39.905049 ], [ -75.440066, 39.905227 ], [ -75.440052, 39.905387 ], [ -75.440013, 39.905885 ], [ -75.439996, 39.906136 ], [ -75.439995, 39.906569 ], [ -75.440022, 39.90697 ], [ -75.440068, 39.907499 ], [ -75.440129, 39.908159 ], [ -75.440161, 39.908746 ], [ -75.440147, 39.909012 ], [ -75.440101, 39.90932 ], [ -75.440041, 39.909665 ], [ -75.439943, 39.910112 ], [ -75.439899, 39.910298 ], [ -75.439861, 39.910522 ], [ -75.439827, 39.91088 ], [ -75.439802, 39.911059 ], [ -75.439774, 39.911259 ], [ -75.43975, 39.911428 ], [ -75.439737, 39.911522 ], [ -75.439723, 39.911629 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436132, 39.913368 ], [ -75.435977, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434502, 39.913692 ], [ -75.434002, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427244, 39.914727 ], [ -75.42631, 39.914886 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421599, 39.915493 ], [ -75.421528, 39.915493 ], [ -75.421444, 39.915492 ], [ -75.421294, 39.915479 ], [ -75.421177, 39.915467 ], [ -75.420919, 39.915425 ], [ -75.420606, 39.915357 ], [ -75.420108, 39.91523 ], [ -75.419827, 39.915163 ], [ -75.419685, 39.915133 ], [ -75.419652, 39.915127 ], [ -75.419501, 39.915106 ], [ -75.41935, 39.915096 ], [ -75.419198, 39.915099 ], [ -75.419048, 39.915113 ], [ -75.4189, 39.915139 ], [ -75.418756, 39.915178 ], [ -75.418618, 39.915227 ], [ -75.418486, 39.915287 ], [ -75.418363, 39.915354 ], [ -75.418258, 39.915425 ], [ -75.418153, 39.915488 ], [ -75.418063, 39.915568 ], [ -75.417948, 39.915688 ], [ -75.417858, 39.915829 ], [ -75.417812, 39.915927 ], [ -75.417733, 39.916098 ], [ -75.417699, 39.916196 ], [ -75.417668, 39.91627 ], [ -75.41761, 39.916404 ], [ -75.417612, 39.916494 ], [ -75.417591, 39.916553 ], [ -75.417568, 39.916612 ], [ -75.417546, 39.91668 ], [ -75.417529, 39.916753 ], [ -75.417524, 39.916803 ], [ -75.417525, 39.91684 ], [ -75.417528, 39.91687 ], [ -75.417531, 39.916896 ], [ -75.41754, 39.916927 ], [ -75.417552, 39.91695 ], [ -75.417563, 39.916974 ], [ -75.417582, 39.917 ], [ -75.417606, 39.917025 ], [ -75.417629, 39.917045 ], [ -75.417668, 39.917073 ], [ -75.417703, 39.917093 ], [ -75.417739, 39.91711 ], [ -75.417775, 39.917118 ], [ -75.417811, 39.917126 ], [ -75.417846, 39.917127 ], [ -75.417897, 39.917127 ], [ -75.417951, 39.917121 ], [ -75.417985, 39.917113 ], [ -75.418015, 39.917099 ], [ -75.418071, 39.917074 ], [ -75.418233, 39.916991 ], [ -75.418406, 39.916902 ], [ -75.418582, 39.916811 ], [ -75.418774, 39.916708 ], [ -75.419064, 39.916561 ], [ -75.419378, 39.916391 ], [ -75.419629, 39.916269 ], [ -75.419887, 39.916154 ], [ -75.420232, 39.916021 ], [ -75.420619, 39.915889 ], [ -75.420864, 39.915819 ], [ -75.421031, 39.915779 ], [ -75.421246, 39.915736 ], [ -75.421372, 39.915712 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422476, 39.915504 ], [ -75.422867, 39.915447 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424408, 39.915236 ], [ -75.424542, 39.915218 ], [ -75.424587, 39.915209 ], [ -75.424723, 39.915188 ], [ -75.42515, 39.915129 ], [ -75.42528, 39.91511 ], [ -75.426327, 39.914951 ], [ -75.426781, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.440326, 39.912147 ], [ -75.441046, 39.911923 ], [ -75.441751, 39.911704 ], [ -75.442303, 39.91154 ], [ -75.442766, 39.911388 ], [ -75.4432, 39.911242 ], [ -75.443747, 39.911048 ], [ -75.443939, 39.910978 ], [ -75.444631, 39.910735 ], [ -75.444932, 39.910624 ], [ -75.445424, 39.91044 ], [ -75.445436, 39.910435 ], [ -75.445742, 39.910316 ], [ -75.445937, 39.910239 ], [ -75.446177, 39.910139 ], [ -75.446377, 39.910054 ], [ -75.446624, 39.909951 ], [ -75.446816, 39.909864 ], [ -75.447079, 39.909738 ], [ -75.447431, 39.909569 ], [ -75.447723, 39.909427 ], [ -75.448058, 39.909253 ], [ -75.448308, 39.90912 ], [ -75.448492, 39.909018 ], [ -75.448587, 39.908965 ], [ -75.448703, 39.908896 ], [ -75.449097, 39.908656 ], [ -75.44915, 39.908623 ], [ -75.44952, 39.908395 ], [ -75.449793, 39.908238 ], [ -75.450759, 39.907682 ], [ -75.452019, 39.906936 ], [ -75.452877, 39.906429 ], [ -75.453211, 39.906233 ], [ -75.45385, 39.905855 ], [ -75.454024, 39.905751 ], [ -75.455632, 39.9048 ], [ -75.456049, 39.904548 ], [ -75.456842, 39.904078 ], [ -75.457488, 39.903698 ], [ -75.457715, 39.903563 ], [ -75.458471, 39.90311 ], [ -75.45857, 39.903048 ], [ -75.458792, 39.902896 ], [ -75.458961, 39.902777 ], [ -75.459203, 39.902595 ], [ -75.459418, 39.90243 ], [ -75.45935, 39.90238 ], [ -75.459166, 39.902228 ], [ -75.459158, 39.902165 ], [ -75.459182, 39.902112 ], [ -75.459276, 39.902094 ], [ -75.459371, 39.902094 ], [ -75.459453, 39.902112 ], [ -75.4595, 39.902103 ], [ -75.459548, 39.902067 ], [ -75.460055, 39.901638 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302681", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.388455, 39.839479 ], [ -75.387523, 39.838426 ], [ -75.387107, 39.838657 ], [ -75.386519, 39.839048 ], [ -75.385972, 39.839299 ], [ -75.385413, 39.839587 ], [ -75.385772, 39.839953 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302682", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.389883, 39.839333 ], [ -75.390289, 39.839119 ], [ -75.390727, 39.838882 ], [ -75.39094, 39.838767 ], [ -75.391247, 39.838584 ], [ -75.391576, 39.83838 ], [ -75.391818, 39.838221 ], [ -75.391939, 39.838142 ], [ -75.39289, 39.837461 ], [ -75.393824, 39.836784 ], [ -75.394562, 39.836238 ], [ -75.394803, 39.836062 ], [ -75.394824, 39.836048 ], [ -75.395067, 39.835896 ], [ -75.395367, 39.836158 ], [ -75.395659, 39.836416 ], [ -75.395671, 39.836467 ], [ -75.395714, 39.836506 ], [ -75.395856, 39.836622 ], [ -75.396003, 39.836735 ], [ -75.396065, 39.836748 ], [ -75.396316, 39.836943 ], [ -75.396822, 39.837377 ], [ -75.396954, 39.837489 ], [ -75.397579, 39.837976 ], [ -75.39817, 39.838467 ], [ -75.398462, 39.838707 ], [ -75.398873, 39.839043 ], [ -75.399124, 39.839251 ], [ -75.399558, 39.839608 ], [ -75.3999, 39.839877 ], [ -75.39992, 39.839937 ], [ -75.400049, 39.840039 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302684", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302686", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.460055, 39.901638 ], [ -75.46009, 39.901603 ], [ -75.460102, 39.901549 ], [ -75.460055, 39.901505 ], [ -75.459984, 39.901505 ], [ -75.459913, 39.901531 ], [ -75.459866, 39.901567 ], [ -75.459418, 39.901942 ], [ -75.459347, 39.902005 ], [ -75.459288, 39.90204 ], [ -75.459241, 39.902049 ], [ -75.459182, 39.902085 ], [ -75.459135, 39.90213 ], [ -75.459135, 39.902165 ], [ -75.459166, 39.902228 ], [ -75.45935, 39.90238 ], [ -75.458767, 39.902792 ], [ -75.458606, 39.902906 ], [ -75.458491, 39.902983 ], [ -75.458394, 39.903044 ], [ -75.458285, 39.903109 ], [ -75.458137, 39.903197 ], [ -75.458036, 39.903261 ], [ -75.45788, 39.903354 ], [ -75.45767, 39.903483 ], [ -75.457411, 39.903636 ], [ -75.456918, 39.903924 ], [ -75.45588, 39.904525 ], [ -75.455438, 39.904789 ], [ -75.454558, 39.905301 ], [ -75.453759, 39.905768 ], [ -75.452699, 39.90641 ], [ -75.451596, 39.90707 ], [ -75.449883, 39.908054 ], [ -75.449437, 39.90831 ], [ -75.448976, 39.908605 ], [ -75.448599, 39.908842 ], [ -75.448453, 39.908934 ], [ -75.448301, 39.909019 ], [ -75.448118, 39.90912 ], [ -75.447822, 39.909276 ], [ -75.447575, 39.909402 ], [ -75.446976, 39.909684 ], [ -75.446766, 39.90978 ], [ -75.446536, 39.909879 ], [ -75.446184, 39.910023 ], [ -75.445766, 39.910187 ], [ -75.445416, 39.910323 ], [ -75.445396, 39.910332 ], [ -75.444574, 39.910638 ], [ -75.443929, 39.910871 ], [ -75.443448, 39.911044 ], [ -75.443139, 39.911152 ], [ -75.44246, 39.911379 ], [ -75.442118, 39.911488 ], [ -75.441544, 39.91166 ], [ -75.441009, 39.911826 ], [ -75.440747, 39.911908 ], [ -75.44061, 39.911951 ], [ -75.440093, 39.912112 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436132, 39.913368 ], [ -75.435977, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434502, 39.913692 ], [ -75.434002, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427244, 39.914727 ], [ -75.42631, 39.914886 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421599, 39.915493 ], [ -75.421528, 39.915493 ], [ -75.421444, 39.915492 ], [ -75.421294, 39.915479 ], [ -75.421177, 39.915467 ], [ -75.420919, 39.915425 ], [ -75.420606, 39.915357 ], [ -75.420108, 39.91523 ], [ -75.419827, 39.915163 ], [ -75.419685, 39.915133 ], [ -75.419652, 39.915127 ], [ -75.419501, 39.915106 ], [ -75.41935, 39.915096 ], [ -75.419198, 39.915099 ], [ -75.419048, 39.915113 ], [ -75.4189, 39.915139 ], [ -75.418756, 39.915178 ], [ -75.418618, 39.915227 ], [ -75.418486, 39.915287 ], [ -75.418363, 39.915354 ], [ -75.418258, 39.915425 ], [ -75.418153, 39.915488 ], [ -75.418063, 39.915568 ], [ -75.417948, 39.915688 ], [ -75.417858, 39.915829 ], [ -75.417812, 39.915927 ], [ -75.417733, 39.916098 ], [ -75.417699, 39.916196 ], [ -75.417668, 39.91627 ], [ -75.41761, 39.916404 ], [ -75.417612, 39.916494 ], [ -75.417591, 39.916553 ], [ -75.417568, 39.916612 ], [ -75.417546, 39.91668 ], [ -75.417529, 39.916753 ], [ -75.417524, 39.916803 ], [ -75.417525, 39.91684 ], [ -75.417528, 39.91687 ], [ -75.417531, 39.916896 ], [ -75.41754, 39.916927 ], [ -75.417552, 39.91695 ], [ -75.417563, 39.916974 ], [ -75.417582, 39.917 ], [ -75.417606, 39.917025 ], [ -75.417629, 39.917045 ], [ -75.417668, 39.917073 ], [ -75.417703, 39.917093 ], [ -75.417739, 39.91711 ], [ -75.417775, 39.917118 ], [ -75.417811, 39.917126 ], [ -75.417846, 39.917127 ], [ -75.417897, 39.917127 ], [ -75.417951, 39.917121 ], [ -75.417985, 39.917113 ], [ -75.418015, 39.917099 ], [ -75.418071, 39.917074 ], [ -75.418233, 39.916991 ], [ -75.418406, 39.916902 ], [ -75.418582, 39.916811 ], [ -75.418774, 39.916708 ], [ -75.419064, 39.916561 ], [ -75.419378, 39.916391 ], [ -75.419629, 39.916269 ], [ -75.419887, 39.916154 ], [ -75.420232, 39.916021 ], [ -75.420619, 39.915889 ], [ -75.420864, 39.915819 ], [ -75.421031, 39.915779 ], [ -75.421246, 39.915736 ], [ -75.421372, 39.915712 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422476, 39.915504 ], [ -75.422867, 39.915447 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424408, 39.915236 ], [ -75.424542, 39.915218 ], [ -75.424587, 39.915209 ], [ -75.424723, 39.915188 ], [ -75.42515, 39.915129 ], [ -75.42528, 39.91511 ], [ -75.426327, 39.914951 ], [ -75.426781, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.439723, 39.911629 ], [ -75.439737, 39.911522 ], [ -75.43975, 39.911428 ], [ -75.439774, 39.911259 ], [ -75.439802, 39.911059 ], [ -75.439827, 39.91088 ], [ -75.439861, 39.910522 ], [ -75.439899, 39.910298 ], [ -75.439943, 39.910112 ], [ -75.440041, 39.909665 ], [ -75.440101, 39.90932 ], [ -75.440147, 39.909012 ], [ -75.440161, 39.908746 ], [ -75.440129, 39.908159 ], [ -75.440068, 39.907499 ], [ -75.440022, 39.90697 ], [ -75.439995, 39.906569 ], [ -75.439996, 39.906136 ], [ -75.440013, 39.905885 ], [ -75.440052, 39.905387 ], [ -75.440066, 39.905227 ], [ -75.440086, 39.905049 ], [ -75.440099, 39.904833 ], [ -75.440091, 39.904652 ], [ -75.440062, 39.904503 ], [ -75.440022, 39.904354 ], [ -75.439968, 39.904191 ], [ -75.439899, 39.90406 ], [ -75.439768, 39.903841 ], [ -75.439647, 39.903667 ], [ -75.439459, 39.903411 ], [ -75.439078, 39.902891 ], [ -75.438439, 39.902029 ], [ -75.43825, 39.901745 ], [ -75.437851, 39.901005 ], [ -75.437573, 39.900278 ], [ -75.437345, 39.899601 ], [ -75.43708, 39.898804 ], [ -75.436566, 39.897368 ], [ -75.436331, 39.8967 ], [ -75.436196, 39.896297 ], [ -75.436115, 39.896101 ], [ -75.436073, 39.896019 ], [ -75.435994, 39.895866 ], [ -75.435892, 39.895672 ], [ -75.435698, 39.895365 ], [ -75.435627, 39.89527 ], [ -75.435495, 39.895091 ], [ -75.435293, 39.894867 ], [ -75.435195, 39.894784 ], [ -75.435131, 39.894723 ], [ -75.435064, 39.894667 ], [ -75.434783, 39.894458 ], [ -75.434669, 39.894386 ], [ -75.434648, 39.894374 ], [ -75.434445, 39.894261 ], [ -75.43421, 39.894157 ], [ -75.434198, 39.894152 ], [ -75.433917, 39.894036 ], [ -75.433268, 39.893764 ], [ -75.433017, 39.893651 ], [ -75.43284, 39.893546 ], [ -75.432724, 39.89346 ], [ -75.432616, 39.893356 ], [ -75.43261, 39.89335 ], [ -75.432319, 39.892962 ], [ -75.431873, 39.892306 ], [ -75.431765, 39.892143 ], [ -75.431743, 39.892109 ], [ -75.431649, 39.891928 ], [ -75.431567, 39.891736 ], [ -75.43148, 39.891444 ], [ -75.43101, 39.889461 ], [ -75.430967, 39.889223 ], [ -75.430951, 39.889111 ], [ -75.430934, 39.888509 ], [ -75.430944, 39.887587 ], [ -75.430964, 39.887291 ], [ -75.43099, 39.887091 ], [ -75.431107, 39.886589 ], [ -75.431135, 39.886407 ], [ -75.431147, 39.886238 ], [ -75.431153, 39.88606 ], [ -75.431151, 39.88599 ], [ -75.431131, 39.885785 ], [ -75.431097, 39.885518 ], [ -75.431037, 39.885239 ], [ -75.430956, 39.884972 ], [ -75.430912, 39.884868 ], [ -75.430778, 39.884538 ], [ -75.430746, 39.884468 ], [ -75.430716, 39.884414 ], [ -75.430714, 39.884409 ], [ -75.430594, 39.884219 ], [ -75.430382, 39.883914 ], [ -75.430142, 39.883587 ], [ -75.429468, 39.88267 ], [ -75.429326, 39.882483 ], [ -75.429187, 39.882284 ], [ -75.429085, 39.882112 ], [ -75.428973, 39.881898 ], [ -75.428908, 39.881741 ], [ -75.428842, 39.881488 ], [ -75.428822, 39.881391 ], [ -75.428808, 39.88129 ], [ -75.428795, 39.881191 ], [ -75.428797, 39.881104 ], [ -75.428809, 39.880848 ], [ -75.428842, 39.880637 ], [ -75.428857, 39.880541 ], [ -75.428891, 39.880433 ], [ -75.428968, 39.880213 ], [ -75.429054, 39.880037 ], [ -75.429155, 39.879867 ], [ -75.429268, 39.879701 ], [ -75.429508, 39.879391 ], [ -75.429574, 39.87932 ], [ -75.430819, 39.877831 ], [ -75.43104, 39.877509 ], [ -75.431154, 39.877319 ], [ -75.43121, 39.87722 ], [ -75.431285, 39.877072 ], [ -75.431422, 39.876759 ], [ -75.431523, 39.876425 ], [ -75.431578, 39.876134 ], [ -75.43159, 39.875917 ], [ -75.431581, 39.875648 ], [ -75.43157, 39.87552 ], [ -75.431534, 39.875251 ], [ -75.431467, 39.874956 ], [ -75.43139, 39.874697 ], [ -75.431283, 39.874429 ], [ -75.431219, 39.874295 ], [ -75.431079, 39.874037 ], [ -75.430937, 39.873829 ], [ -75.430613, 39.873439 ], [ -75.430427, 39.873242 ], [ -75.430162, 39.872971 ], [ -75.43006, 39.872867 ], [ -75.429867, 39.872656 ], [ -75.429794, 39.872566 ], [ -75.429797, 39.872509 ], [ -75.429735, 39.872408 ], [ -75.429662, 39.872312 ], [ -75.429546, 39.872149 ], [ -75.4295, 39.872073 ], [ -75.429425, 39.871952 ], [ -75.42938, 39.871891 ], [ -75.429306, 39.871857 ], [ -75.429277, 39.871804 ], [ -75.429217, 39.871703 ], [ -75.429077, 39.871414 ], [ -75.429032, 39.871306 ], [ -75.428912, 39.870943 ], [ -75.428871, 39.870819 ], [ -75.428742, 39.870417 ], [ -75.428718, 39.87034 ], [ -75.428688, 39.870238 ], [ -75.428719, 39.87016 ], [ -75.42865, 39.869938 ], [ -75.428598, 39.869766 ], [ -75.42853, 39.869707 ], [ -75.428503, 39.869569 ], [ -75.428457, 39.869363 ], [ -75.428435, 39.869214 ], [ -75.42842, 39.869102 ], [ -75.42842, 39.869046 ], [ -75.428418, 39.869007 ], [ -75.428418, 39.868922 ], [ -75.42848, 39.868961 ], [ -75.428555, 39.869009 ], [ -75.429092, 39.869321 ], [ -75.42921, 39.869389 ], [ -75.429307, 39.869445 ], [ -75.429371, 39.869472 ], [ -75.429513, 39.869554 ], [ -75.429613, 39.869617 ], [ -75.429638, 39.869632 ], [ -75.429746, 39.869687 ], [ -75.429789, 39.869712 ], [ -75.430045, 39.869848 ], [ -75.430165, 39.869896 ], [ -75.430331, 39.869955 ], [ -75.431079, 39.870222 ], [ -75.431405, 39.870334 ], [ -75.431662, 39.870419 ], [ -75.431866, 39.870487 ], [ -75.432023, 39.870526 ], [ -75.432177, 39.87055 ], [ -75.432354, 39.870567 ], [ -75.432987, 39.870591 ], [ -75.43314, 39.870596 ], [ -75.433591, 39.870608 ], [ -75.434452, 39.870622 ], [ -75.434983, 39.870636 ], [ -75.435544, 39.87065 ], [ -75.436786, 39.870685 ], [ -75.436781, 39.870908 ], [ -75.436785, 39.870958 ], [ -75.436798, 39.871007 ], [ -75.436819, 39.871044 ], [ -75.436844, 39.871074 ], [ -75.436872, 39.871106 ], [ -75.436905, 39.871134 ], [ -75.436934, 39.871154 ], [ -75.437094, 39.871246 ], [ -75.437602, 39.871528 ], [ -75.437851, 39.87167 ], [ -75.437981, 39.871753 ], [ -75.438131, 39.871874 ], [ -75.438554, 39.872242 ], [ -75.439473, 39.873098 ], [ -75.439632, 39.873247 ], [ -75.439654, 39.873347 ], [ -75.439672, 39.873443 ], [ -75.43969, 39.873551 ], [ -75.439713, 39.873653 ], [ -75.439629, 39.873738 ], [ -75.43959, 39.873794 ], [ -75.439565, 39.87384 ], [ -75.439553, 39.873879 ], [ -75.439548, 39.873927 ], [ -75.43955, 39.873968 ], [ -75.439557, 39.874023 ], [ -75.439566, 39.874081 ], [ -75.439578, 39.874111 ], [ -75.439611, 39.874149 ], [ -75.439652, 39.874179 ], [ -75.439702, 39.874192 ], [ -75.439765, 39.874192 ], [ -75.439804, 39.874186 ], [ -75.439868, 39.874175 ], [ -75.439902, 39.874168 ], [ -75.439931, 39.874153 ], [ -75.439957, 39.874129 ], [ -75.439972, 39.874103 ], [ -75.439978, 39.874049 ], [ -75.43997, 39.873962 ], [ -75.439959, 39.87389 ], [ -75.43995, 39.873847 ], [ -75.439943, 39.873829 ], [ -75.43993, 39.873799 ], [ -75.439907, 39.873775 ], [ -75.439831, 39.873721 ], [ -75.439757, 39.873677 ], [ -75.439713, 39.873653 ], [ -75.43969, 39.873551 ], [ -75.439672, 39.873443 ], [ -75.439654, 39.873347 ], [ -75.439632, 39.873246 ], [ -75.439473, 39.873098 ], [ -75.438554, 39.872242 ], [ -75.438131, 39.871874 ], [ -75.437981, 39.871753 ], [ -75.437851, 39.87167 ], [ -75.437602, 39.871528 ], [ -75.437094, 39.871246 ], [ -75.436934, 39.871154 ], [ -75.436905, 39.871134 ], [ -75.436872, 39.871106 ], [ -75.436844, 39.871074 ], [ -75.436819, 39.871044 ], [ -75.436798, 39.871007 ], [ -75.436785, 39.870958 ], [ -75.436781, 39.870908 ], [ -75.436786, 39.870685 ], [ -75.435544, 39.87065 ], [ -75.434983, 39.870636 ], [ -75.434452, 39.870622 ], [ -75.433591, 39.870608 ], [ -75.43314, 39.870596 ], [ -75.432987, 39.870591 ], [ -75.432354, 39.870567 ], [ -75.432177, 39.87055 ], [ -75.432023, 39.870526 ], [ -75.431866, 39.870487 ], [ -75.431662, 39.870419 ], [ -75.431405, 39.870334 ], [ -75.431079, 39.870222 ], [ -75.430331, 39.869955 ], [ -75.430165, 39.869896 ], [ -75.430045, 39.869848 ], [ -75.429789, 39.869712 ], [ -75.429746, 39.869687 ], [ -75.429638, 39.869632 ], [ -75.429613, 39.869617 ], [ -75.429513, 39.869554 ], [ -75.429371, 39.869472 ], [ -75.429307, 39.869445 ], [ -75.42921, 39.869389 ], [ -75.429092, 39.869321 ], [ -75.428555, 39.869009 ], [ -75.42848, 39.868961 ], [ -75.428418, 39.868922 ], [ -75.428314, 39.86799 ], [ -75.428308, 39.867928 ], [ -75.428291, 39.867764 ], [ -75.428231, 39.867197 ], [ -75.428184, 39.866739 ], [ -75.428161, 39.866519 ], [ -75.428137, 39.866298 ], [ -75.428114, 39.866091 ], [ -75.428094, 39.865907 ], [ -75.428071, 39.86577 ], [ -75.428018, 39.865457 ], [ -75.427934, 39.86486 ], [ -75.427917, 39.864738 ], [ -75.427894, 39.864577 ], [ -75.427836, 39.864165 ], [ -75.427809, 39.864014 ], [ -75.427792, 39.863929 ], [ -75.427762, 39.863743 ], [ -75.427737, 39.86358 ], [ -75.427709, 39.863404 ], [ -75.427666, 39.863126 ], [ -75.427565, 39.862365 ], [ -75.427503, 39.861914 ], [ -75.427391, 39.861162 ], [ -75.427374, 39.861048 ], [ -75.427356, 39.860927 ], [ -75.427343, 39.860838 ], [ -75.427298, 39.860524 ], [ -75.42728, 39.860399 ], [ -75.427264, 39.860282 ], [ -75.427249, 39.860155 ], [ -75.427229, 39.859986 ], [ -75.427229, 39.859981 ], [ -75.427208, 39.859799 ], [ -75.427201, 39.859731 ], [ -75.427179, 39.859491 ], [ -75.427096, 39.858655 ], [ -75.427092, 39.858605 ], [ -75.427074, 39.858388 ], [ -75.427045, 39.858024 ], [ -75.427028, 39.857686 ], [ -75.42701, 39.857508 ], [ -75.426977, 39.857164 ], [ -75.426971, 39.857113 ], [ -75.42644, 39.857133 ], [ -75.426102, 39.857146 ], [ -75.425703, 39.857173 ], [ -75.425394, 39.857195 ], [ -75.425133, 39.857213 ], [ -75.4249, 39.857229 ], [ -75.424706, 39.857243 ], [ -75.424599, 39.857202 ], [ -75.423988, 39.857229 ], [ -75.423404, 39.857255 ], [ -75.422975, 39.857275 ], [ -75.422201, 39.857329 ], [ -75.42134, 39.857389 ], [ -75.421188, 39.857397 ], [ -75.421089, 39.857409 ], [ -75.421019, 39.857441 ], [ -75.420616, 39.857475 ], [ -75.42051, 39.857482 ], [ -75.420341, 39.857503 ], [ -75.420174, 39.857535 ], [ -75.420012, 39.85758 ], [ -75.419854, 39.857633 ], [ -75.419693, 39.857703 ], [ -75.419491, 39.857811 ], [ -75.419356, 39.857904 ], [ -75.419257, 39.857984 ], [ -75.419226, 39.858008 ], [ -75.419113, 39.858115 ], [ -75.419037, 39.8582 ], [ -75.419021, 39.858219 ], [ -75.418944, 39.858328 ], [ -75.41891, 39.858383 ], [ -75.418863, 39.858473 ], [ -75.418816, 39.858582 ], [ -75.418785, 39.85868 ], [ -75.418754, 39.858823 ], [ -75.418686, 39.859167 ], [ -75.418587, 39.859671 ], [ -75.418385, 39.860797 ], [ -75.418253, 39.861461 ], [ -75.418218, 39.861562 ], [ -75.418183, 39.861635 ], [ -75.41812, 39.861737 ], [ -75.418064, 39.861816 ], [ -75.41798, 39.861942 ], [ -75.417858, 39.862114 ], [ -75.417302, 39.86295 ], [ -75.417238, 39.863043 ], [ -75.416888, 39.863544 ], [ -75.416791, 39.863689 ], [ -75.416694, 39.863818 ], [ -75.416628, 39.863897 ], [ -75.416558, 39.863977 ], [ -75.416381, 39.863836 ], [ -75.416245, 39.863727 ], [ -75.416044, 39.863566 ], [ -75.415795, 39.863388 ], [ -75.415376, 39.86311 ], [ -75.413788, 39.861976 ], [ -75.413485, 39.861742 ], [ -75.413462, 39.861683 ], [ -75.413297, 39.861564 ], [ -75.413187, 39.861481 ], [ -75.413079, 39.8614 ], [ -75.412898, 39.861269 ], [ -75.412832, 39.861253 ], [ -75.412421, 39.860934 ], [ -75.412157, 39.860732 ], [ -75.411508, 39.860214 ], [ -75.411279, 39.860032 ], [ -75.411103, 39.859886 ], [ -75.410789, 39.859626 ], [ -75.410524, 39.859417 ], [ -75.410444, 39.859351 ], [ -75.410426, 39.859306 ], [ -75.410402, 39.859284 ], [ -75.410264, 39.859178 ], [ -75.410024, 39.85901 ], [ -75.409803, 39.858847 ], [ -75.409601, 39.858697 ], [ -75.409556, 39.858686 ], [ -75.408513, 39.857869 ], [ -75.408037, 39.85749 ], [ -75.407872, 39.857381 ], [ -75.407604, 39.85723 ], [ -75.407121, 39.856992 ], [ -75.406595, 39.856747 ], [ -75.405656, 39.85635 ], [ -75.405475, 39.856276 ], [ -75.405312, 39.856204 ], [ -75.405161, 39.856121 ], [ -75.405043, 39.856043 ], [ -75.404894, 39.855931 ], [ -75.404769, 39.855815 ], [ -75.404603, 39.855675 ], [ -75.404173, 39.855278 ], [ -75.403714, 39.854856 ], [ -75.403512, 39.854656 ], [ -75.40337, 39.85451 ], [ -75.403275, 39.854416 ], [ -75.403091, 39.854212 ], [ -75.403077, 39.854196 ], [ -75.402965, 39.854062 ], [ -75.402465, 39.85349 ], [ -75.402256, 39.853245 ], [ -75.402153, 39.853107 ], [ -75.40205, 39.852942 ], [ -75.402003, 39.852855 ], [ -75.401964, 39.852765 ], [ -75.40193, 39.852655 ], [ -75.401905, 39.852573 ], [ -75.401885, 39.85245 ], [ -75.401876, 39.852184 ], [ -75.40184, 39.851555 ], [ -75.401831, 39.851397 ], [ -75.40182, 39.851264 ], [ -75.401804, 39.851149 ], [ -75.401783, 39.851048 ], [ -75.401688, 39.850577 ], [ -75.401624, 39.85031 ], [ -75.401577, 39.850111 ], [ -75.401522, 39.849911 ], [ -75.40148, 39.849781 ], [ -75.401431, 39.849644 ], [ -75.401373, 39.849517 ], [ -75.401195, 39.849232 ], [ -75.400843, 39.848734 ], [ -75.400534, 39.848296 ], [ -75.400461, 39.848203 ], [ -75.400402, 39.84813 ], [ -75.400339, 39.848061 ], [ -75.400249, 39.847978 ], [ -75.40016, 39.847905 ], [ -75.400053, 39.847826 ], [ -75.399761, 39.847636 ], [ -75.399521, 39.84748 ], [ -75.399375, 39.847383 ], [ -75.399242, 39.847295 ], [ -75.398174, 39.846591 ], [ -75.39778, 39.846343 ], [ -75.397652, 39.846264 ], [ -75.397506, 39.84618 ], [ -75.39738, 39.846125 ], [ -75.397264, 39.846084 ], [ -75.397094, 39.846041 ], [ -75.397004, 39.846022 ], [ -75.396931, 39.845997 ], [ -75.396671, 39.845918 ], [ -75.396515, 39.845863 ], [ -75.395577, 39.84551 ], [ -75.395249, 39.845391 ], [ -75.3947, 39.845169 ], [ -75.39437, 39.84502 ], [ -75.394351, 39.845009 ], [ -75.394274, 39.844967 ], [ -75.394151, 39.8449 ], [ -75.39381, 39.844705 ], [ -75.393718, 39.844654 ], [ -75.393626, 39.844594 ], [ -75.393382, 39.84446 ], [ -75.393146, 39.844325 ], [ -75.392738, 39.844089 ], [ -75.392635, 39.844026 ], [ -75.392539, 39.843964 ], [ -75.392389, 39.843857 ], [ -75.392328, 39.843819 ], [ -75.392243, 39.843754 ], [ -75.39218, 39.843702 ], [ -75.391997, 39.843517 ], [ -75.391885, 39.843401 ], [ -75.391506, 39.842959 ], [ -75.391455, 39.842901 ], [ -75.390975, 39.842344 ], [ -75.390672, 39.842009 ], [ -75.390261, 39.84155 ], [ -75.390003, 39.841246 ], [ -75.389769, 39.840982 ], [ -75.389551, 39.840737 ], [ -75.389285, 39.840429 ], [ -75.389211, 39.840348 ], [ -75.388812, 39.839894 ], [ -75.387759, 39.840453 ], [ -75.387396, 39.840638 ], [ -75.386675, 39.84101 ], [ -75.386479, 39.841114 ], [ -75.385937, 39.841376 ], [ -75.385809, 39.841438 ], [ -75.385767, 39.841462 ], [ -75.385575, 39.841567 ], [ -75.385505, 39.841609 ], [ -75.3854, 39.841618 ], [ -75.385272, 39.841671 ], [ -75.384996, 39.841808 ], [ -75.384639, 39.842 ], [ -75.384598, 39.84202 ], [ -75.384554, 39.842042 ], [ -75.384327, 39.842155 ], [ -75.383777, 39.842433 ], [ -75.383708, 39.842472 ], [ -75.383621, 39.842523 ], [ -75.383556, 39.842614 ], [ -75.383461, 39.842652 ], [ -75.383361, 39.84271 ], [ -75.383134, 39.842841 ], [ -75.382716, 39.84307 ], [ -75.382415, 39.843219 ], [ -75.381742, 39.843574 ], [ -75.381413, 39.843745 ], [ -75.381001, 39.84397 ], [ -75.380423, 39.844266 ], [ -75.379376, 39.844805 ], [ -75.378807, 39.845099 ], [ -75.378397, 39.84531 ], [ -75.377411, 39.84585 ], [ -75.376899, 39.846118 ], [ -75.376387, 39.84639 ], [ -75.375913, 39.846641 ], [ -75.375416, 39.846883 ], [ -75.374917, 39.847063 ], [ -75.373731, 39.847466 ], [ -75.373168, 39.847679 ], [ -75.372562, 39.847885 ], [ -75.372439, 39.847927 ], [ -75.371876, 39.848123 ], [ -75.371631, 39.848206 ], [ -75.371395, 39.848289 ], [ -75.371232, 39.848354 ], [ -75.370736, 39.848535 ], [ -75.370701, 39.848549 ], [ -75.370318, 39.848714 ], [ -75.369283, 39.849146 ], [ -75.368337, 39.849534 ], [ -75.367622, 39.849829 ], [ -75.366176, 39.850428 ], [ -75.365922, 39.850522 ], [ -75.365875, 39.850542 ], [ -75.365608, 39.850663 ], [ -75.363233, 39.851628 ], [ -75.36298, 39.851265 ], [ -75.362721, 39.850916 ], [ -75.362496, 39.850591 ], [ -75.362203, 39.850162 ], [ -75.361492, 39.849117 ], [ -75.360903, 39.849329 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302688", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "302689", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.385772, 39.839953 ], [ -75.38635, 39.840613 ], [ -75.386571, 39.840883 ], [ -75.386675, 39.84101 ], [ -75.386479, 39.841114 ], [ -75.385937, 39.841376 ], [ -75.385809, 39.841438 ], [ -75.385767, 39.841462 ], [ -75.385575, 39.841567 ], [ -75.385505, 39.841609 ], [ -75.3854, 39.841618 ], [ -75.385272, 39.841671 ], [ -75.384996, 39.841808 ], [ -75.384639, 39.842 ], [ -75.384598, 39.84202 ], [ -75.384554, 39.842042 ], [ -75.384327, 39.842155 ], [ -75.383777, 39.842433 ], [ -75.383708, 39.842472 ], [ -75.383621, 39.842523 ], [ -75.383556, 39.842614 ], [ -75.383461, 39.842652 ], [ -75.383361, 39.84271 ], [ -75.383134, 39.842841 ], [ -75.382716, 39.84307 ], [ -75.382415, 39.843219 ], [ -75.381742, 39.843574 ], [ -75.381413, 39.843745 ], [ -75.381001, 39.84397 ], [ -75.380423, 39.844266 ], [ -75.379376, 39.844805 ], [ -75.378807, 39.845099 ], [ -75.378397, 39.84531 ], [ -75.377411, 39.84585 ], [ -75.376899, 39.846118 ], [ -75.376387, 39.84639 ], [ -75.375913, 39.846641 ], [ -75.375416, 39.846883 ], [ -75.374917, 39.847063 ], [ -75.373731, 39.847466 ], [ -75.373168, 39.847679 ], [ -75.372562, 39.847885 ], [ -75.372439, 39.847927 ], [ -75.371876, 39.848123 ], [ -75.371631, 39.848206 ], [ -75.371395, 39.848289 ], [ -75.371232, 39.848354 ], [ -75.370736, 39.848535 ], [ -75.370701, 39.848549 ], [ -75.370318, 39.848714 ], [ -75.369283, 39.849146 ], [ -75.368337, 39.849534 ], [ -75.367622, 39.849829 ], [ -75.366176, 39.850428 ], [ -75.365922, 39.850522 ], [ -75.365875, 39.850542 ], [ -75.365608, 39.850663 ], [ -75.363233, 39.851628 ], [ -75.36298, 39.851265 ], [ -75.362721, 39.850916 ], [ -75.362496, 39.850591 ], [ -75.362203, 39.850162 ], [ -75.361492, 39.849117 ], [ -75.360903, 39.849329 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "304075", "route_id": "117" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.405039, 39.84819 ], [ -75.40475, 39.848439 ], [ -75.404639, 39.84856 ], [ -75.404459, 39.848789 ], [ -75.404419, 39.848869 ], [ -75.40427, 39.84909 ], [ -75.404069, 39.84945 ], [ -75.404, 39.849759 ], [ -75.404009, 39.85007 ], [ -75.404059, 39.85028 ], [ -75.404149, 39.85043 ], [ -75.404199, 39.85052 ], [ -75.40462, 39.851049 ], [ -75.40535, 39.85071 ], [ -75.406179, 39.850319 ], [ -75.406719, 39.85007 ], [ -75.406899, 39.84998 ], [ -75.40742, 39.84974 ], [ -75.40805, 39.84944 ], [ -75.408779, 39.8491 ], [ -75.4093, 39.848859 ], [ -75.40992, 39.84857 ], [ -75.409279, 39.84777 ], [ -75.40921, 39.84768 ], [ -75.409149, 39.847599 ], [ -75.40904, 39.84746 ], [ -75.408829, 39.847179 ], [ -75.40866, 39.846959 ], [ -75.408429, 39.846799 ], [ -75.408329, 39.84677 ], [ -75.408149, 39.84676 ], [ -75.407919, 39.846819 ], [ -75.40773, 39.84692 ], [ -75.40751, 39.84701 ], [ -75.407199, 39.847159 ], [ -75.40687, 39.84732 ], [ -75.406629, 39.847429 ], [ -75.40598, 39.84774 ], [ -75.405509, 39.847959 ], [ -75.405229, 39.848079 ], [ -75.405039, 39.84819 ], [ -75.40475, 39.848439 ], [ -75.404639, 39.84856 ], [ -75.404459, 39.848789 ], [ -75.404419, 39.848869 ], [ -75.40427, 39.84909 ], [ -75.404069, 39.84945 ], [ -75.404, 39.849759 ], [ -75.404009, 39.85007 ], [ -75.404059, 39.85028 ], [ -75.404149, 39.85043 ], [ -75.404199, 39.85052 ], [ -75.40462, 39.851049 ], [ -75.404229, 39.85126 ], [ -75.404019, 39.851369 ], [ -75.40385, 39.85145 ], [ -75.403739, 39.85152 ], [ -75.403609, 39.85163 ], [ -75.403419, 39.85178 ], [ -75.40328, 39.851939 ], [ -75.40309, 39.85216 ], [ -75.402809, 39.852369 ], [ -75.402519, 39.85251 ], [ -75.40224, 39.852579 ], [ -75.40197, 39.852649 ], [ -75.40193, 39.85244 ], [ -75.40187, 39.85161 ], [ -75.40183, 39.85127 ], [ -75.40179, 39.851019 ], [ -75.401709, 39.850649 ], [ -75.401669, 39.85046 ], [ -75.40157, 39.850049 ], [ -75.40151, 39.849869 ], [ -75.401449, 39.84972 ], [ -75.40139, 39.849599 ], [ -75.40129, 39.849429 ], [ -75.401219, 39.849319 ], [ -75.40102, 39.84901 ], [ -75.400779, 39.848689 ], [ -75.40067, 39.848529 ], [ -75.400499, 39.84829 ], [ -75.400409, 39.84818 ], [ -75.40031, 39.848069 ], [ -75.40017, 39.84795 ], [ -75.39993, 39.847779 ], [ -75.399649, 39.84759 ], [ -75.399369, 39.84741 ], [ -75.39841, 39.846779 ], [ -75.39815, 39.846619 ], [ -75.39796, 39.84649 ], [ -75.39769, 39.84631 ], [ -75.39761, 39.846259 ], [ -75.397529, 39.84622 ], [ -75.39746, 39.846189 ], [ -75.39738, 39.846159 ], [ -75.39729, 39.84613 ], [ -75.397219, 39.84611 ], [ -75.397089, 39.846079 ], [ -75.396909, 39.84604 ], [ -75.396719, 39.845999 ], [ -75.39644, 39.84594 ], [ -75.39621, 39.845889 ], [ -75.39594, 39.845829 ], [ -75.395549, 39.845739 ], [ -75.395329, 39.84569 ], [ -75.39396, 39.845359 ], [ -75.39387, 39.84534 ], [ -75.39377, 39.84532 ], [ -75.39368, 39.84531 ], [ -75.393609, 39.84531 ], [ -75.393629, 39.845259 ], [ -75.39373, 39.845189 ], [ -75.393849, 39.84513 ], [ -75.394059, 39.845079 ], [ -75.39432, 39.845019 ], [ -75.394509, 39.84498 ], [ -75.394739, 39.844919 ], [ -75.39536, 39.84477 ], [ -75.395869, 39.844649 ], [ -75.396219, 39.844569 ], [ -75.39661, 39.844549 ], [ -75.396899, 39.844549 ], [ -75.3972, 39.844559 ], [ -75.39741, 39.844539 ], [ -75.397719, 39.844469 ], [ -75.39792, 39.844379 ], [ -75.398339, 39.84405 ], [ -75.398519, 39.843929 ], [ -75.39881, 39.84379 ], [ -75.399009, 39.84372 ], [ -75.399279, 39.84362 ], [ -75.399459, 39.843549 ], [ -75.399779, 39.843459 ], [ -75.400239, 39.84336 ], [ -75.400629, 39.843289 ], [ -75.4021, 39.843019 ], [ -75.4022, 39.843009 ], [ -75.402849, 39.84279 ], [ -75.402809, 39.842729 ], [ -75.40251, 39.84235 ], [ -75.40197, 39.841659 ], [ -75.40179, 39.84143 ], [ -75.401579, 39.84118 ], [ -75.40156, 39.84116 ], [ -75.40139, 39.84099 ], [ -75.401139, 39.840779 ], [ -75.400689, 39.84048 ], [ -75.400499, 39.84035 ], [ -75.40022, 39.840139 ], [ -75.40007, 39.84003 ], [ -75.39998, 39.839959 ], [ -75.39935, 39.83946 ], [ -75.399109, 39.83927 ], [ -75.398519, 39.838779 ], [ -75.398209, 39.838529 ], [ -75.397989, 39.838349 ], [ -75.39782, 39.83821 ], [ -75.39761, 39.83803 ], [ -75.39759, 39.83802 ], [ -75.39701, 39.837549 ], [ -75.39666, 39.837249 ], [ -75.39634, 39.836989 ], [ -75.396129, 39.836829 ], [ -75.395959, 39.83669 ], [ -75.39566, 39.836439 ], [ -75.39539, 39.83621 ], [ -75.395049, 39.835929 ], [ -75.394799, 39.836089 ], [ -75.39467, 39.836169 ], [ -75.394439, 39.836349 ], [ -75.39437, 39.8364 ], [ -75.394259, 39.836469 ], [ -75.394029, 39.836649 ], [ -75.39382, 39.836809 ], [ -75.393439, 39.837089 ], [ -75.392889, 39.83748 ], [ -75.39233, 39.837879 ], [ -75.39194, 39.838159 ], [ -75.391419, 39.838499 ], [ -75.391269, 39.83859 ], [ -75.39093, 39.838799 ], [ -75.390099, 39.839239 ], [ -75.38987, 39.83936 ], [ -75.38924, 39.83967 ], [ -75.38878, 39.8399 ], [ -75.387719, 39.84045 ], [ -75.38666, 39.84101 ], [ -75.386279, 39.841219 ], [ -75.38622, 39.84125 ], [ -75.38591, 39.841409 ], [ -75.385559, 39.841589 ], [ -75.385029, 39.841859 ], [ -75.384669, 39.842049 ], [ -75.384569, 39.842109 ], [ -75.38433, 39.84224 ], [ -75.38393, 39.84245 ], [ -75.38348, 39.842679 ], [ -75.3831, 39.84288 ], [ -75.38283, 39.843029 ], [ -75.38244, 39.84324 ], [ -75.381999, 39.843469 ], [ -75.381879, 39.84353 ], [ -75.38141, 39.84378 ], [ -75.38126, 39.84386 ], [ -75.38113, 39.843929 ], [ -75.380979, 39.844009 ], [ -75.380659, 39.84417 ], [ -75.380439, 39.844279 ], [ -75.38014, 39.84444 ], [ -75.379629, 39.84471 ], [ -75.37938, 39.844839 ], [ -75.379219, 39.844919 ], [ -75.378869, 39.845109 ], [ -75.37866, 39.84523 ], [ -75.378409, 39.845349 ], [ -75.37803, 39.845559 ], [ -75.37744, 39.845879 ], [ -75.3769, 39.846159 ], [ -75.37641, 39.84641 ], [ -75.375939, 39.84666 ], [ -75.375889, 39.84668 ], [ -75.37559, 39.84683 ], [ -75.37538, 39.84692 ], [ -75.37455, 39.84722 ], [ -75.37375, 39.847509 ], [ -75.37259, 39.84791 ], [ -75.372419, 39.847959 ], [ -75.37212, 39.848059 ], [ -75.37199, 39.8481 ], [ -75.371879, 39.848139 ], [ -75.37182, 39.848159 ], [ -75.37141, 39.8483 ], [ -75.371199, 39.84838 ], [ -75.371079, 39.848429 ], [ -75.37105, 39.848439 ], [ -75.37086, 39.848509 ], [ -75.370749, 39.84855 ], [ -75.37056, 39.84863 ], [ -75.37046, 39.84867 ], [ -75.370319, 39.84873 ], [ -75.3693, 39.84917 ], [ -75.369099, 39.849249 ], [ -75.367649, 39.849849 ], [ -75.36663, 39.85027 ], [ -75.36619, 39.85045 ], [ -75.365809, 39.850599 ], [ -75.36533, 39.8508 ], [ -75.36511, 39.85089 ], [ -75.36488, 39.85098 ], [ -75.363239, 39.851659 ], [ -75.36277, 39.851859 ], [ -75.3624, 39.852009 ], [ -75.361929, 39.852199 ], [ -75.361719, 39.852289 ], [ -75.36161, 39.85233 ], [ -75.361209, 39.852479 ], [ -75.36102, 39.852559 ], [ -75.3608, 39.852649 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85236 ], [ -75.3607, 39.852209 ], [ -75.3607, 39.85208 ], [ -75.36071, 39.851759 ], [ -75.36074, 39.851459 ], [ -75.360769, 39.851109 ], [ -75.3607, 39.851029 ], [ -75.360509, 39.85079 ], [ -75.360279, 39.850479 ], [ -75.36011, 39.85026 ], [ -75.359789, 39.8499 ], [ -75.359639, 39.849759 ], [ -75.359599, 39.84972 ], [ -75.359559, 39.84965 ], [ -75.35954, 39.84963 ], [ -75.35944, 39.849499 ], [ -75.359549, 39.849399 ], [ -75.359609, 39.849329 ], [ -75.35971, 39.84926 ], [ -75.359819, 39.849219 ], [ -75.35994, 39.84917 ], [ -75.359999, 39.84917 ], [ -75.360049, 39.84919 ], [ -75.36011, 39.849219 ], [ -75.360179, 39.849239 ], [ -75.36029, 39.849219 ], [ -75.36061, 39.8491 ], [ -75.36075, 39.849069 ], [ -75.360399, 39.848609 ], [ -75.36038, 39.84858 ], [ -75.36003, 39.84812 ], [ -75.359779, 39.84782 ], [ -75.35976, 39.847789 ], [ -75.35958, 39.84758 ], [ -75.359509, 39.8475 ], [ -75.359279, 39.847609 ], [ -75.359139, 39.84768 ], [ -75.359049, 39.847719 ], [ -75.3589, 39.847789 ], [ -75.35882, 39.84783 ], [ -75.358329, 39.848059 ], [ -75.35885, 39.848769 ], [ -75.35909, 39.849069 ], [ -75.359149, 39.849149 ], [ -75.359229, 39.849249 ], [ -75.359339, 39.84938 ], [ -75.35944, 39.849499 ], [ -75.35954, 39.84963 ], [ -75.359559, 39.84965 ], [ -75.359599, 39.84972 ], [ -75.359639, 39.849759 ], [ -75.359789, 39.8499 ], [ -75.36011, 39.85026 ], [ -75.360279, 39.850479 ], [ -75.360509, 39.85079 ], [ -75.3607, 39.851029 ], [ -75.360769, 39.851109 ], [ -75.36074, 39.851459 ], [ -75.36071, 39.851759 ], [ -75.3607, 39.85208 ], [ -75.3607, 39.852209 ], [ -75.360689, 39.85236 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85297 ], [ -75.360689, 39.85313 ], [ -75.3607, 39.8536 ], [ -75.360719, 39.85398 ], [ -75.360759, 39.854369 ], [ -75.360819, 39.85505 ], [ -75.360859, 39.855359 ], [ -75.360899, 39.855619 ], [ -75.360949, 39.85595 ], [ -75.360999, 39.856179 ], [ -75.361039, 39.856339 ], [ -75.36111, 39.856609 ], [ -75.36116, 39.85684 ], [ -75.36119, 39.856959 ], [ -75.361219, 39.857069 ], [ -75.36124, 39.85713 ], [ -75.36128, 39.85728 ], [ -75.361389, 39.857689 ], [ -75.361439, 39.85783 ], [ -75.361489, 39.857959 ], [ -75.361659, 39.85836 ], [ -75.36168, 39.858409 ], [ -75.361989, 39.85907 ], [ -75.362259, 39.859589 ], [ -75.36295, 39.859319 ], [ -75.363199, 39.859239 ], [ -75.363329, 39.85918 ], [ -75.363909, 39.85891 ], [ -75.36416, 39.858839 ], [ -75.36452, 39.85865 ], [ -75.36592, 39.858049 ], [ -75.36637, 39.857869 ], [ -75.36642, 39.85785 ], [ -75.367379, 39.857439 ], [ -75.36764, 39.8573 ], [ -75.367919, 39.857319 ], [ -75.368229, 39.857339 ], [ -75.368499, 39.857349 ], [ -75.368639, 39.85736 ], [ -75.36893, 39.85738 ], [ -75.369279, 39.857419 ], [ -75.370399, 39.857499 ], [ -75.370569, 39.85754 ], [ -75.37088, 39.857609 ], [ -75.371709, 39.85776 ], [ -75.371659, 39.85792 ], [ -75.371529, 39.85826 ], [ -75.37149, 39.85838 ], [ -75.37141, 39.85857 ], [ -75.371389, 39.858939 ], [ -75.371299, 39.859039 ], [ -75.37123, 39.859129 ], [ -75.371169, 39.859219 ], [ -75.371069, 39.859399 ], [ -75.371019, 39.859499 ], [ -75.37082, 39.85989 ], [ -75.37043, 39.860659 ], [ -75.370049, 39.861389 ], [ -75.36974, 39.86195 ], [ -75.369579, 39.862199 ], [ -75.369459, 39.862379 ], [ -75.36935, 39.86253 ], [ -75.369229, 39.86269 ], [ -75.369129, 39.862829 ], [ -75.36902, 39.862999 ], [ -75.36894, 39.86313 ], [ -75.3688, 39.863459 ], [ -75.368699, 39.86368 ], [ -75.368599, 39.863879 ], [ -75.368699, 39.863899 ], [ -75.368919, 39.86394 ], [ -75.369139, 39.863989 ], [ -75.36926, 39.864009 ], [ -75.36935, 39.86403 ], [ -75.369769, 39.86411 ], [ -75.369909, 39.86414 ], [ -75.370039, 39.864169 ], [ -75.37028, 39.86423 ], [ -75.370399, 39.864269 ], [ -75.37052, 39.86431 ], [ -75.370849, 39.864429 ], [ -75.3711, 39.864529 ], [ -75.37196, 39.864869 ], [ -75.37204, 39.864899 ], [ -75.3729, 39.865249 ], [ -75.373679, 39.86559 ], [ -75.37406, 39.86576 ], [ -75.374439, 39.86592 ], [ -75.375, 39.866169 ], [ -75.37509, 39.86621 ], [ -75.375889, 39.86658 ], [ -75.376059, 39.86666 ], [ -75.376109, 39.866679 ], [ -75.376349, 39.866789 ], [ -75.376789, 39.86699 ], [ -75.377289, 39.8672 ], [ -75.37731, 39.86721 ], [ -75.377679, 39.86736 ], [ -75.37839, 39.867669 ], [ -75.378589, 39.867749 ], [ -75.378679, 39.867789 ], [ -75.37906, 39.867939 ], [ -75.379139, 39.867969 ], [ -75.37942, 39.86809 ], [ -75.379579, 39.86816 ], [ -75.38033, 39.868479 ], [ -75.380529, 39.868559 ], [ -75.380829, 39.868679 ], [ -75.38099, 39.868749 ], [ -75.38131, 39.86888 ], [ -75.38154, 39.86897 ], [ -75.381639, 39.869009 ], [ -75.38199, 39.869139 ], [ -75.38207, 39.86918 ], [ -75.3822, 39.869229 ], [ -75.38225, 39.869099 ], [ -75.38225, 39.86906 ], [ -75.382239, 39.868479 ], [ -75.382239, 39.86844 ], [ -75.382239, 39.86837 ], [ -75.382239, 39.868239 ], [ -75.38222, 39.86774 ], [ -75.38221, 39.86717 ], [ -75.382139, 39.86584 ], [ -75.382089, 39.86431 ], [ -75.38207, 39.863979 ], [ -75.38204, 39.86339 ], [ -75.38204, 39.863089 ], [ -75.38202, 39.86276 ], [ -75.382009, 39.862269 ], [ -75.381999, 39.862089 ], [ -75.38199, 39.86199 ], [ -75.38198, 39.861549 ], [ -75.381959, 39.86063 ], [ -75.38194, 39.859319 ], [ -75.38193, 39.858849 ], [ -75.381999, 39.85839 ], [ -75.38204, 39.857969 ], [ -75.38211, 39.85754 ], [ -75.38217, 39.857059 ], [ -75.38221, 39.85673 ], [ -75.382229, 39.85657 ], [ -75.38235, 39.85559 ], [ -75.38252, 39.85566 ], [ -75.38265, 39.855709 ], [ -75.383439, 39.855969 ], [ -75.383849, 39.8561 ], [ -75.384, 39.856149 ], [ -75.384219, 39.85622 ], [ -75.3846, 39.856339 ], [ -75.38487, 39.856429 ], [ -75.38514, 39.856519 ], [ -75.385299, 39.85658 ], [ -75.385529, 39.85667 ], [ -75.385709, 39.85675 ], [ -75.38595, 39.85686 ], [ -75.38603, 39.856899 ], [ -75.386139, 39.85695 ], [ -75.386279, 39.85702 ], [ -75.386409, 39.857079 ], [ -75.38693, 39.857319 ], [ -75.387599, 39.85763 ], [ -75.38816, 39.857889 ], [ -75.388629, 39.85811 ], [ -75.38919, 39.85837 ], [ -75.38928, 39.858409 ], [ -75.389739, 39.85862 ], [ -75.38991, 39.858699 ], [ -75.390159, 39.85882 ], [ -75.390379, 39.85892 ], [ -75.390459, 39.858959 ], [ -75.39095, 39.85919 ], [ -75.391679, 39.85953 ], [ -75.39189, 39.85963 ], [ -75.39197, 39.859669 ], [ -75.392269, 39.85982 ], [ -75.39256, 39.85998 ], [ -75.39278, 39.860139 ], [ -75.392979, 39.860299 ], [ -75.393119, 39.86043 ], [ -75.393219, 39.86054 ], [ -75.393349, 39.8607 ], [ -75.393429, 39.86081 ], [ -75.393479, 39.86089 ], [ -75.3936, 39.861109 ], [ -75.39377, 39.861469 ], [ -75.39401, 39.86204 ], [ -75.394069, 39.862179 ], [ -75.394119, 39.862299 ], [ -75.39423, 39.862549 ], [ -75.39427, 39.862649 ], [ -75.394329, 39.86279 ], [ -75.39441, 39.86298 ], [ -75.39446, 39.863259 ], [ -75.394469, 39.86348 ], [ -75.39446, 39.86369 ], [ -75.39445, 39.863739 ], [ -75.394439, 39.863789 ], [ -75.394419, 39.86386 ], [ -75.394389, 39.86395 ], [ -75.39436, 39.86403 ], [ -75.39432, 39.86412 ], [ -75.394199, 39.86438 ], [ -75.394119, 39.864549 ], [ -75.39405, 39.864699 ], [ -75.393799, 39.865259 ], [ -75.393759, 39.865349 ], [ -75.39369, 39.865519 ], [ -75.39364, 39.86565 ], [ -75.393529, 39.86595 ], [ -75.39347, 39.86611 ], [ -75.393399, 39.86629 ], [ -75.39332, 39.86648 ], [ -75.39324, 39.86666 ], [ -75.39315, 39.86684 ], [ -75.39292, 39.86729 ], [ -75.39275, 39.86762 ], [ -75.39239, 39.868329 ], [ -75.39233, 39.86844 ], [ -75.39228, 39.86852 ], [ -75.39224, 39.868579 ], [ -75.3922, 39.86863 ], [ -75.39215, 39.868689 ], [ -75.39192, 39.868929 ], [ -75.391539, 39.869299 ], [ -75.39134, 39.869489 ], [ -75.3912, 39.86962 ], [ -75.39108, 39.86973 ], [ -75.39094, 39.869849 ], [ -75.3908, 39.86996 ], [ -75.39, 39.87053 ], [ -75.38967, 39.87077 ], [ -75.389569, 39.870849 ], [ -75.38946, 39.87095 ], [ -75.38932, 39.871099 ], [ -75.389209, 39.87123 ], [ -75.38909, 39.871379 ], [ -75.388979, 39.87152 ], [ -75.38888, 39.871659 ], [ -75.38877, 39.871819 ], [ -75.38868, 39.87196 ], [ -75.38861, 39.872089 ], [ -75.388479, 39.87233 ], [ -75.38843, 39.872439 ], [ -75.388349, 39.872539 ], [ -75.38819, 39.87269 ], [ -75.38851, 39.872829 ], [ -75.388799, 39.87295 ], [ -75.389079, 39.873059 ], [ -75.38928, 39.87314 ], [ -75.389389, 39.873179 ], [ -75.389609, 39.873259 ], [ -75.389799, 39.873329 ], [ -75.3899, 39.873369 ], [ -75.390019, 39.873419 ], [ -75.39022, 39.8735 ], [ -75.390369, 39.87356 ], [ -75.39053, 39.873619 ], [ -75.39057, 39.873639 ], [ -75.390919, 39.87378 ], [ -75.391009, 39.873819 ], [ -75.391179, 39.873899 ], [ -75.39129, 39.87396 ], [ -75.39135, 39.873989 ], [ -75.391369, 39.873999 ], [ -75.391449, 39.87405 ], [ -75.391639, 39.874149 ], [ -75.391689, 39.874179 ], [ -75.39188, 39.87429 ], [ -75.392089, 39.87441 ], [ -75.39212, 39.874429 ], [ -75.392169, 39.87446 ], [ -75.39233, 39.87457 ], [ -75.39255, 39.874719 ], [ -75.392619, 39.874779 ], [ -75.39275, 39.874879 ], [ -75.392849, 39.874959 ], [ -75.393159, 39.87522 ], [ -75.393669, 39.87564 ], [ -75.39395, 39.875869 ], [ -75.39441, 39.876249 ], [ -75.395049, 39.8768 ], [ -75.395139, 39.876869 ], [ -75.395699, 39.877309 ], [ -75.395519, 39.87746 ], [ -75.395099, 39.877739 ], [ -75.39531, 39.87791 ], [ -75.395409, 39.878 ], [ -75.39557, 39.878139 ], [ -75.395639, 39.878219 ], [ -75.395689, 39.87828 ], [ -75.39581, 39.87843 ], [ -75.395919, 39.878569 ], [ -75.3953, 39.878919 ], [ -75.39544, 39.87906 ], [ -75.395589, 39.879209 ], [ -75.39571, 39.87933 ], [ -75.396279, 39.879009 ], [ -75.396399, 39.87916 ], [ -75.396549, 39.87934 ], [ -75.39665, 39.87945 ], [ -75.39671, 39.87952 ], [ -75.39678, 39.8796 ], [ -75.39764, 39.87918 ], [ -75.39769, 39.87924 ], [ -75.397749, 39.87932 ], [ -75.39782, 39.87942 ], [ -75.39792, 39.879569 ], [ -75.398079, 39.87981 ], [ -75.398259, 39.880099 ], [ -75.39842, 39.880359 ], [ -75.39932, 39.881789 ], [ -75.399379, 39.881889 ], [ -75.39944, 39.881979 ], [ -75.39993, 39.88278 ], [ -75.40058, 39.88383 ], [ -75.40092, 39.88438 ], [ -75.40151, 39.88535 ], [ -75.40183, 39.885929 ], [ -75.401989, 39.886219 ], [ -75.4021, 39.88645 ], [ -75.402219, 39.8867 ], [ -75.4025, 39.887289 ], [ -75.40273, 39.88782 ], [ -75.40313, 39.88872 ], [ -75.40319, 39.88887 ], [ -75.40327, 39.88908 ], [ -75.403339, 39.889289 ], [ -75.40395, 39.891089 ], [ -75.40502, 39.894219 ], [ -75.405129, 39.89454 ], [ -75.40526, 39.8949 ], [ -75.40534, 39.895109 ], [ -75.405419, 39.895299 ], [ -75.405499, 39.895479 ], [ -75.40562, 39.89572 ], [ -75.405759, 39.89597 ], [ -75.405859, 39.89615 ], [ -75.405939, 39.89628 ], [ -75.406029, 39.89642 ], [ -75.40614, 39.896569 ], [ -75.40637, 39.89687 ], [ -75.406569, 39.897119 ], [ -75.40679, 39.89736 ], [ -75.406989, 39.897579 ], [ -75.407169, 39.897759 ], [ -75.40732, 39.89789 ], [ -75.407479, 39.89804 ], [ -75.40764, 39.898179 ], [ -75.407799, 39.89831 ], [ -75.40823, 39.89867 ], [ -75.41028, 39.90041 ], [ -75.41231, 39.90211 ], [ -75.412609, 39.90237 ], [ -75.412889, 39.902619 ], [ -75.413099, 39.90281 ], [ -75.413289, 39.902979 ], [ -75.41353, 39.903209 ], [ -75.413729, 39.903409 ], [ -75.4139, 39.903589 ], [ -75.414099, 39.90381 ], [ -75.414279, 39.904 ], [ -75.41447, 39.904209 ], [ -75.414809, 39.90456 ], [ -75.41506, 39.90483 ], [ -75.41519, 39.90497 ], [ -75.41528, 39.90507 ], [ -75.415389, 39.90519 ], [ -75.415569, 39.90537 ], [ -75.41596, 39.90579 ], [ -75.41547, 39.905949 ], [ -75.41457, 39.90625 ], [ -75.41429, 39.90635 ], [ -75.413649, 39.90659 ], [ -75.413139, 39.906829 ], [ -75.4129, 39.90696 ], [ -75.412709, 39.90708 ], [ -75.412509, 39.907209 ], [ -75.41237, 39.90733 ], [ -75.4121, 39.90759 ], [ -75.411839, 39.90787 ], [ -75.411659, 39.907819 ], [ -75.4115, 39.907829 ], [ -75.411359, 39.90787 ], [ -75.41132, 39.907929 ], [ -75.411299, 39.908009 ], [ -75.41132, 39.908109 ], [ -75.411439, 39.90824 ], [ -75.411209, 39.90842 ], [ -75.41102, 39.908529 ], [ -75.410769, 39.908729 ], [ -75.410629, 39.908899 ], [ -75.410589, 39.90896 ], [ -75.410169, 39.90959 ], [ -75.41003, 39.90976 ], [ -75.40967, 39.91004 ], [ -75.41055, 39.911859 ], [ -75.410759, 39.912299 ], [ -75.410949, 39.91262 ], [ -75.411179, 39.912959 ], [ -75.411249, 39.91309 ], [ -75.411269, 39.913139 ], [ -75.411299, 39.91328 ], [ -75.411259, 39.91344 ], [ -75.411179, 39.91355 ], [ -75.41106, 39.91361 ], [ -75.410859, 39.913669 ], [ -75.41065, 39.91381 ], [ -75.410259, 39.9141 ], [ -75.41015, 39.91427 ], [ -75.41007, 39.91444 ], [ -75.41006, 39.91451 ], [ -75.410039, 39.91462 ], [ -75.410079, 39.914839 ], [ -75.410179, 39.915029 ], [ -75.41039, 39.915299 ], [ -75.41064, 39.915469 ], [ -75.41087, 39.915559 ], [ -75.41114, 39.915639 ], [ -75.411269, 39.915649 ], [ -75.41138, 39.915639 ], [ -75.411809, 39.91552 ], [ -75.41196, 39.915479 ], [ -75.41227, 39.915389 ], [ -75.412509, 39.91533 ], [ -75.412689, 39.915289 ], [ -75.412749, 39.915279 ], [ -75.41304, 39.915219 ], [ -75.415089, 39.915039 ], [ -75.41555, 39.91488 ], [ -75.415529, 39.91523 ], [ -75.41552, 39.91551 ], [ -75.415489, 39.91605 ], [ -75.415489, 39.916099 ], [ -75.4155, 39.916449 ], [ -75.41573, 39.91642 ], [ -75.416019, 39.916379 ], [ -75.416659, 39.916289 ], [ -75.41776, 39.91614 ], [ -75.418279, 39.91607 ], [ -75.4188, 39.915999 ], [ -75.419399, 39.915919 ], [ -75.41996, 39.915839 ], [ -75.421839, 39.9156 ], [ -75.422329, 39.9155 ], [ -75.422869, 39.91543 ], [ -75.422959, 39.91542 ], [ -75.42315, 39.915389 ], [ -75.423449, 39.91536 ], [ -75.423639, 39.91533 ], [ -75.42397, 39.915279 ], [ -75.42455, 39.915199 ], [ -75.424839, 39.91515 ], [ -75.425109, 39.915109 ], [ -75.42532, 39.91508 ], [ -75.425569, 39.915039 ], [ -75.42569, 39.915019 ], [ -75.425889, 39.91499 ], [ -75.42632, 39.914929 ], [ -75.426869, 39.914849 ], [ -75.42726, 39.91479 ], [ -75.427319, 39.91478 ], [ -75.42815, 39.91464 ], [ -75.428679, 39.91455 ], [ -75.428809, 39.91454 ], [ -75.429029, 39.914499 ], [ -75.429209, 39.914479 ], [ -75.429269, 39.914469 ], [ -75.43014, 39.91435 ], [ -75.430889, 39.91426 ], [ -75.43149, 39.91417 ], [ -75.43175, 39.914139 ], [ -75.432549, 39.914029 ], [ -75.432899, 39.91399 ], [ -75.433219, 39.913949 ], [ -75.433439, 39.91392 ], [ -75.433489, 39.91391 ], [ -75.433669, 39.91389 ], [ -75.433709, 39.91388 ], [ -75.43374, 39.91388 ], [ -75.43396, 39.913839 ], [ -75.43449, 39.913769 ], [ -75.434699, 39.91374 ], [ -75.434929, 39.9137 ], [ -75.43527, 39.91364 ], [ -75.435369, 39.91362 ], [ -75.435549, 39.913579 ], [ -75.43585, 39.913499 ], [ -75.436089, 39.91343 ], [ -75.43613, 39.913419 ], [ -75.43622, 39.913389 ], [ -75.436359, 39.91334 ], [ -75.436499, 39.91329 ], [ -75.436599, 39.91325 ], [ -75.43738, 39.913029 ], [ -75.437719, 39.91292 ], [ -75.43783, 39.912879 ], [ -75.437949, 39.912839 ], [ -75.438169, 39.912769 ], [ -75.43824, 39.912749 ], [ -75.438389, 39.912699 ], [ -75.43864, 39.91262 ], [ -75.43882, 39.912569 ], [ -75.439079, 39.912489 ], [ -75.439289, 39.912419 ], [ -75.439709, 39.91229 ], [ -75.439709, 39.912499 ], [ -75.43972, 39.912679 ], [ -75.43973, 39.91289 ], [ -75.439739, 39.913049 ], [ -75.439749, 39.913229 ], [ -75.43976, 39.91347 ], [ -75.439789, 39.91373 ], [ -75.43981, 39.913869 ], [ -75.439839, 39.91406 ], [ -75.43995, 39.914749 ], [ -75.43999, 39.915009 ], [ -75.440019, 39.915219 ], [ -75.440069, 39.91551 ], [ -75.44009, 39.91562 ], [ -75.44026, 39.91667 ], [ -75.440289, 39.916829 ], [ -75.44031, 39.91697 ], [ -75.440319, 39.917079 ], [ -75.440319, 39.917179 ], [ -75.44031, 39.917249 ], [ -75.44035, 39.9174 ], [ -75.440379, 39.91749 ], [ -75.440429, 39.91758 ], [ -75.44053, 39.9177 ], [ -75.44081, 39.91788 ], [ -75.440999, 39.918009 ], [ -75.441369, 39.918269 ], [ -75.44178, 39.91858 ], [ -75.441849, 39.918629 ], [ -75.441909, 39.91868 ], [ -75.44215, 39.91887 ], [ -75.44228, 39.918979 ], [ -75.44241, 39.91911 ], [ -75.442489, 39.9192 ], [ -75.44259, 39.91932 ], [ -75.44268, 39.919439 ], [ -75.44277, 39.91957 ], [ -75.44301, 39.919359 ], [ -75.44313, 39.919239 ], [ -75.443379, 39.918999 ], [ -75.443829, 39.91856 ], [ -75.444059, 39.9183 ], [ -75.444779, 39.917609 ], [ -75.444059, 39.9183 ], [ -75.443829, 39.91856 ], [ -75.443379, 39.918999 ], [ -75.44313, 39.919239 ], [ -75.44301, 39.919359 ], [ -75.44277, 39.91957 ], [ -75.44283, 39.91967 ], [ -75.442889, 39.919779 ], [ -75.442939, 39.919889 ], [ -75.44297, 39.919969 ], [ -75.442989, 39.920049 ], [ -75.44304, 39.92022 ], [ -75.443079, 39.920399 ], [ -75.44309, 39.920509 ], [ -75.443109, 39.92083 ], [ -75.443109, 39.92101 ], [ -75.443109, 39.921479 ], [ -75.44313, 39.921839 ], [ -75.44314, 39.922039 ], [ -75.443159, 39.922229 ], [ -75.44318, 39.922389 ], [ -75.443199, 39.92253 ], [ -75.44323, 39.92271 ], [ -75.44328, 39.922949 ], [ -75.44331, 39.92308 ], [ -75.443349, 39.923219 ], [ -75.443379, 39.923309 ], [ -75.44369, 39.924199 ], [ -75.443979, 39.925019 ], [ -75.4443, 39.925899 ], [ -75.44435, 39.92604 ], [ -75.44445, 39.926289 ], [ -75.44457, 39.92658 ], [ -75.44476, 39.92704 ], [ -75.44486, 39.9273 ], [ -75.444999, 39.92765 ], [ -75.44512, 39.92796 ], [ -75.445269, 39.928329 ], [ -75.44538, 39.928619 ], [ -75.44558, 39.92912 ], [ -75.445639, 39.929259 ], [ -75.44616, 39.92902 ], [ -75.446639, 39.92882 ], [ -75.44693, 39.928689 ], [ -75.44701, 39.92867 ], [ -75.447169, 39.92868 ], [ -75.447299, 39.92867 ], [ -75.44737, 39.928629 ], [ -75.447399, 39.92856 ], [ -75.44738, 39.9285 ], [ -75.447309, 39.92846 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "304076", "route_id": "117" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.44723, 39.92846 ], [ -75.44714, 39.92849 ], [ -75.44701, 39.92867 ], [ -75.44693, 39.928689 ], [ -75.446639, 39.92882 ], [ -75.44616, 39.92902 ], [ -75.445639, 39.929259 ], [ -75.44558, 39.92912 ], [ -75.44538, 39.928619 ], [ -75.445269, 39.928329 ], [ -75.44512, 39.92796 ], [ -75.444999, 39.92765 ], [ -75.44486, 39.9273 ], [ -75.44476, 39.92704 ], [ -75.44457, 39.92658 ], [ -75.44445, 39.926289 ], [ -75.44435, 39.92604 ], [ -75.4443, 39.925899 ], [ -75.443979, 39.925019 ], [ -75.44369, 39.924199 ], [ -75.443379, 39.923309 ], [ -75.443349, 39.923219 ], [ -75.44331, 39.92308 ], [ -75.44328, 39.922949 ], [ -75.44323, 39.92271 ], [ -75.443199, 39.92253 ], [ -75.44318, 39.922389 ], [ -75.443159, 39.922229 ], [ -75.44314, 39.922039 ], [ -75.44313, 39.921839 ], [ -75.443109, 39.921479 ], [ -75.443109, 39.92101 ], [ -75.443109, 39.92083 ], [ -75.44309, 39.920509 ], [ -75.443079, 39.920399 ], [ -75.44304, 39.92022 ], [ -75.442989, 39.920049 ], [ -75.44297, 39.919969 ], [ -75.442939, 39.919889 ], [ -75.442889, 39.919779 ], [ -75.44283, 39.91967 ], [ -75.44277, 39.91957 ], [ -75.44301, 39.919359 ], [ -75.44313, 39.919239 ], [ -75.443379, 39.918999 ], [ -75.443829, 39.91856 ], [ -75.444059, 39.9183 ], [ -75.444779, 39.917609 ], [ -75.444059, 39.9183 ], [ -75.443829, 39.91856 ], [ -75.443379, 39.918999 ], [ -75.44313, 39.919239 ], [ -75.44301, 39.919359 ], [ -75.44277, 39.91957 ], [ -75.44268, 39.919439 ], [ -75.44259, 39.91932 ], [ -75.442489, 39.9192 ], [ -75.44241, 39.91911 ], [ -75.44228, 39.918979 ], [ -75.44215, 39.91887 ], [ -75.441909, 39.91868 ], [ -75.441849, 39.918629 ], [ -75.44178, 39.91858 ], [ -75.441369, 39.918269 ], [ -75.440999, 39.918009 ], [ -75.44081, 39.91788 ], [ -75.44053, 39.9177 ], [ -75.440429, 39.91758 ], [ -75.440379, 39.91749 ], [ -75.44035, 39.9174 ], [ -75.44031, 39.917249 ], [ -75.440319, 39.917179 ], [ -75.440319, 39.917079 ], [ -75.44031, 39.91697 ], [ -75.440289, 39.916829 ], [ -75.44026, 39.91667 ], [ -75.44009, 39.91562 ], [ -75.440069, 39.91551 ], [ -75.440019, 39.915219 ], [ -75.43999, 39.915009 ], [ -75.43995, 39.914749 ], [ -75.439839, 39.91406 ], [ -75.43981, 39.913869 ], [ -75.439789, 39.91373 ], [ -75.43976, 39.91347 ], [ -75.439749, 39.913229 ], [ -75.439739, 39.913049 ], [ -75.43973, 39.91289 ], [ -75.43972, 39.912679 ], [ -75.439709, 39.912499 ], [ -75.439709, 39.91229 ], [ -75.439289, 39.912419 ], [ -75.439079, 39.912489 ], [ -75.43882, 39.912569 ], [ -75.43864, 39.91262 ], [ -75.438389, 39.912699 ], [ -75.43824, 39.912749 ], [ -75.438169, 39.912769 ], [ -75.437949, 39.912839 ], [ -75.43783, 39.912879 ], [ -75.437719, 39.91292 ], [ -75.43738, 39.913029 ], [ -75.436599, 39.91325 ], [ -75.436499, 39.91329 ], [ -75.436359, 39.91334 ], [ -75.43622, 39.913389 ], [ -75.43613, 39.913419 ], [ -75.436089, 39.91343 ], [ -75.43585, 39.913499 ], [ -75.435549, 39.913579 ], [ -75.435369, 39.91362 ], [ -75.43527, 39.91364 ], [ -75.434929, 39.9137 ], [ -75.434699, 39.91374 ], [ -75.43449, 39.913769 ], [ -75.43396, 39.913839 ], [ -75.43374, 39.91388 ], [ -75.433709, 39.91388 ], [ -75.433669, 39.91389 ], [ -75.433489, 39.91391 ], [ -75.433439, 39.91392 ], [ -75.433219, 39.913949 ], [ -75.432899, 39.91399 ], [ -75.432549, 39.914029 ], [ -75.43175, 39.914139 ], [ -75.43149, 39.91417 ], [ -75.430889, 39.91426 ], [ -75.43014, 39.91435 ], [ -75.429269, 39.914469 ], [ -75.429209, 39.914479 ], [ -75.429029, 39.914499 ], [ -75.428809, 39.91454 ], [ -75.428679, 39.91455 ], [ -75.42815, 39.91464 ], [ -75.427319, 39.91478 ], [ -75.42726, 39.91479 ], [ -75.426869, 39.914849 ], [ -75.42632, 39.914929 ], [ -75.425889, 39.91499 ], [ -75.42569, 39.915019 ], [ -75.425569, 39.915039 ], [ -75.42532, 39.91508 ], [ -75.425109, 39.915109 ], [ -75.424839, 39.91515 ], [ -75.42455, 39.915199 ], [ -75.42397, 39.915279 ], [ -75.423639, 39.91533 ], [ -75.423449, 39.91536 ], [ -75.42315, 39.915389 ], [ -75.422959, 39.91542 ], [ -75.422869, 39.91543 ], [ -75.422329, 39.9155 ], [ -75.421839, 39.9156 ], [ -75.41996, 39.915839 ], [ -75.419399, 39.915919 ], [ -75.4188, 39.915999 ], [ -75.418279, 39.91607 ], [ -75.41776, 39.91614 ], [ -75.416659, 39.916289 ], [ -75.416019, 39.916379 ], [ -75.41573, 39.91642 ], [ -75.4155, 39.916449 ], [ -75.415489, 39.916099 ], [ -75.415489, 39.91605 ], [ -75.41552, 39.91551 ], [ -75.415529, 39.91523 ], [ -75.41555, 39.91488 ], [ -75.415089, 39.915039 ], [ -75.41304, 39.915219 ], [ -75.412749, 39.915279 ], [ -75.412689, 39.915289 ], [ -75.412509, 39.91533 ], [ -75.41227, 39.915389 ], [ -75.41196, 39.915479 ], [ -75.411809, 39.91552 ], [ -75.41138, 39.915639 ], [ -75.411269, 39.915649 ], [ -75.41114, 39.915639 ], [ -75.41087, 39.915559 ], [ -75.41064, 39.915469 ], [ -75.41039, 39.915299 ], [ -75.410179, 39.915029 ], [ -75.410079, 39.914839 ], [ -75.410039, 39.91462 ], [ -75.41006, 39.91451 ], [ -75.41007, 39.91444 ], [ -75.41015, 39.91427 ], [ -75.410259, 39.9141 ], [ -75.41065, 39.91381 ], [ -75.410859, 39.913669 ], [ -75.41106, 39.91361 ], [ -75.411179, 39.91355 ], [ -75.411259, 39.91344 ], [ -75.411299, 39.91328 ], [ -75.411269, 39.913139 ], [ -75.411249, 39.91309 ], [ -75.411179, 39.912959 ], [ -75.410949, 39.91262 ], [ -75.410759, 39.912299 ], [ -75.41055, 39.911859 ], [ -75.40967, 39.91004 ], [ -75.41003, 39.90976 ], [ -75.410169, 39.90959 ], [ -75.410589, 39.90896 ], [ -75.410629, 39.908899 ], [ -75.410769, 39.908729 ], [ -75.41102, 39.908529 ], [ -75.411209, 39.90842 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.411659, 39.907819 ], [ -75.4115, 39.907829 ], [ -75.411359, 39.90787 ], [ -75.41132, 39.907929 ], [ -75.411299, 39.908009 ], [ -75.41132, 39.908109 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.4121, 39.90759 ], [ -75.41237, 39.90733 ], [ -75.412509, 39.907209 ], [ -75.412709, 39.90708 ], [ -75.4129, 39.90696 ], [ -75.413139, 39.906829 ], [ -75.413649, 39.90659 ], [ -75.41429, 39.90635 ], [ -75.41457, 39.90625 ], [ -75.41547, 39.905949 ], [ -75.41596, 39.90579 ], [ -75.415569, 39.90537 ], [ -75.415389, 39.90519 ], [ -75.41528, 39.90507 ], [ -75.41519, 39.90497 ], [ -75.41506, 39.90483 ], [ -75.414809, 39.90456 ], [ -75.41447, 39.904209 ], [ -75.414279, 39.904 ], [ -75.414099, 39.90381 ], [ -75.4139, 39.903589 ], [ -75.413729, 39.903409 ], [ -75.41353, 39.903209 ], [ -75.413289, 39.902979 ], [ -75.413099, 39.90281 ], [ -75.412889, 39.902619 ], [ -75.412609, 39.90237 ], [ -75.41231, 39.90211 ], [ -75.41028, 39.90041 ], [ -75.40823, 39.89867 ], [ -75.407799, 39.89831 ], [ -75.40764, 39.898179 ], [ -75.407479, 39.89804 ], [ -75.40732, 39.89789 ], [ -75.407169, 39.897759 ], [ -75.406989, 39.897579 ], [ -75.40679, 39.89736 ], [ -75.406569, 39.897119 ], [ -75.40637, 39.89687 ], [ -75.40614, 39.896569 ], [ -75.406029, 39.89642 ], [ -75.405939, 39.89628 ], [ -75.405859, 39.89615 ], [ -75.405759, 39.89597 ], [ -75.40562, 39.89572 ], [ -75.405499, 39.895479 ], [ -75.405419, 39.895299 ], [ -75.40534, 39.895109 ], [ -75.40526, 39.8949 ], [ -75.405129, 39.89454 ], [ -75.40502, 39.894219 ], [ -75.40395, 39.891089 ], [ -75.403339, 39.889289 ], [ -75.40327, 39.88908 ], [ -75.40319, 39.88887 ], [ -75.40313, 39.88872 ], [ -75.40273, 39.88782 ], [ -75.4025, 39.887289 ], [ -75.402219, 39.8867 ], [ -75.4021, 39.88645 ], [ -75.401989, 39.886219 ], [ -75.40183, 39.885929 ], [ -75.40151, 39.88535 ], [ -75.40092, 39.88438 ], [ -75.40058, 39.88383 ], [ -75.39993, 39.88278 ], [ -75.39944, 39.881979 ], [ -75.399379, 39.881889 ], [ -75.39932, 39.881789 ], [ -75.39842, 39.880359 ], [ -75.398259, 39.880099 ], [ -75.398079, 39.87981 ], [ -75.39792, 39.879569 ], [ -75.39782, 39.87942 ], [ -75.397749, 39.87932 ], [ -75.39769, 39.87924 ], [ -75.39764, 39.87918 ], [ -75.39678, 39.8796 ], [ -75.39671, 39.87952 ], [ -75.39665, 39.87945 ], [ -75.396549, 39.87934 ], [ -75.396399, 39.87916 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.3953, 39.878919 ], [ -75.39544, 39.87906 ], [ -75.395589, 39.879209 ], [ -75.39571, 39.87933 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.39581, 39.87843 ], [ -75.395689, 39.87828 ], [ -75.395639, 39.878219 ], [ -75.39557, 39.878139 ], [ -75.395409, 39.878 ], [ -75.39531, 39.87791 ], [ -75.395099, 39.877739 ], [ -75.395519, 39.87746 ], [ -75.395699, 39.877309 ], [ -75.395139, 39.876869 ], [ -75.395049, 39.8768 ], [ -75.39441, 39.876249 ], [ -75.39395, 39.875869 ], [ -75.393669, 39.87564 ], [ -75.393159, 39.87522 ], [ -75.392849, 39.874959 ], [ -75.39275, 39.874879 ], [ -75.392619, 39.874779 ], [ -75.39255, 39.874719 ], [ -75.39233, 39.87457 ], [ -75.392169, 39.87446 ], [ -75.39212, 39.874429 ], [ -75.392089, 39.87441 ], [ -75.39188, 39.87429 ], [ -75.391689, 39.874179 ], [ -75.391639, 39.874149 ], [ -75.391449, 39.87405 ], [ -75.391369, 39.873999 ], [ -75.39135, 39.873989 ], [ -75.39129, 39.87396 ], [ -75.391179, 39.873899 ], [ -75.391009, 39.873819 ], [ -75.390919, 39.87378 ], [ -75.39057, 39.873639 ], [ -75.39053, 39.873619 ], [ -75.390369, 39.87356 ], [ -75.39022, 39.8735 ], [ -75.390019, 39.873419 ], [ -75.3899, 39.873369 ], [ -75.389799, 39.873329 ], [ -75.389609, 39.873259 ], [ -75.389389, 39.873179 ], [ -75.38928, 39.87314 ], [ -75.389079, 39.873059 ], [ -75.388799, 39.87295 ], [ -75.38851, 39.872829 ], [ -75.38819, 39.87269 ], [ -75.388349, 39.872539 ], [ -75.38843, 39.872439 ], [ -75.388479, 39.87233 ], [ -75.38861, 39.872089 ], [ -75.38868, 39.87196 ], [ -75.38877, 39.871819 ], [ -75.38888, 39.871659 ], [ -75.388979, 39.87152 ], [ -75.38909, 39.871379 ], [ -75.389209, 39.87123 ], [ -75.38932, 39.871099 ], [ -75.38946, 39.87095 ], [ -75.389569, 39.870849 ], [ -75.38967, 39.87077 ], [ -75.39, 39.87053 ], [ -75.3908, 39.86996 ], [ -75.39094, 39.869849 ], [ -75.39108, 39.86973 ], [ -75.3912, 39.86962 ], [ -75.39134, 39.869489 ], [ -75.391539, 39.869299 ], [ -75.39192, 39.868929 ], [ -75.39215, 39.868689 ], [ -75.3922, 39.86863 ], [ -75.39224, 39.868579 ], [ -75.39228, 39.86852 ], [ -75.39233, 39.86844 ], [ -75.39239, 39.868329 ], [ -75.39275, 39.86762 ], [ -75.39292, 39.86729 ], [ -75.39315, 39.86684 ], [ -75.39324, 39.86666 ], [ -75.39332, 39.86648 ], [ -75.393399, 39.86629 ], [ -75.39347, 39.86611 ], [ -75.393529, 39.86595 ], [ -75.39364, 39.86565 ], [ -75.39369, 39.865519 ], [ -75.393759, 39.865349 ], [ -75.393799, 39.865259 ], [ -75.39405, 39.864699 ], [ -75.394119, 39.864549 ], [ -75.394199, 39.86438 ], [ -75.39432, 39.86412 ], [ -75.39436, 39.86403 ], [ -75.394389, 39.86395 ], [ -75.394419, 39.86386 ], [ -75.394439, 39.863789 ], [ -75.39445, 39.863739 ], [ -75.39446, 39.86369 ], [ -75.394469, 39.86348 ], [ -75.39446, 39.863259 ], [ -75.39441, 39.86298 ], [ -75.394329, 39.86279 ], [ -75.39427, 39.862649 ], [ -75.39423, 39.862549 ], [ -75.394119, 39.862299 ], [ -75.394069, 39.862179 ], [ -75.39401, 39.86204 ], [ -75.39377, 39.861469 ], [ -75.3936, 39.861109 ], [ -75.393479, 39.86089 ], [ -75.393429, 39.86081 ], [ -75.393349, 39.8607 ], [ -75.393219, 39.86054 ], [ -75.393119, 39.86043 ], [ -75.392979, 39.860299 ], [ -75.39278, 39.860139 ], [ -75.39256, 39.85998 ], [ -75.392269, 39.85982 ], [ -75.39197, 39.859669 ], [ -75.39189, 39.85963 ], [ -75.391679, 39.85953 ], [ -75.39095, 39.85919 ], [ -75.390459, 39.858959 ], [ -75.390379, 39.85892 ], [ -75.390159, 39.85882 ], [ -75.38991, 39.858699 ], [ -75.389739, 39.85862 ], [ -75.38928, 39.858409 ], [ -75.38919, 39.85837 ], [ -75.388629, 39.85811 ], [ -75.38816, 39.857889 ], [ -75.387599, 39.85763 ], [ -75.38693, 39.857319 ], [ -75.386409, 39.857079 ], [ -75.386279, 39.85702 ], [ -75.386139, 39.85695 ], [ -75.38603, 39.856899 ], [ -75.38595, 39.85686 ], [ -75.385709, 39.85675 ], [ -75.385529, 39.85667 ], [ -75.385299, 39.85658 ], [ -75.38514, 39.856519 ], [ -75.38487, 39.856429 ], [ -75.3846, 39.856339 ], [ -75.384219, 39.85622 ], [ -75.384, 39.856149 ], [ -75.383849, 39.8561 ], [ -75.383439, 39.855969 ], [ -75.38265, 39.855709 ], [ -75.38252, 39.85566 ], [ -75.38235, 39.85559 ], [ -75.382229, 39.85657 ], [ -75.38221, 39.85673 ], [ -75.38217, 39.857059 ], [ -75.38211, 39.85754 ], [ -75.38204, 39.857969 ], [ -75.381999, 39.85839 ], [ -75.38193, 39.858849 ], [ -75.38194, 39.859319 ], [ -75.381959, 39.86063 ], [ -75.38198, 39.861549 ], [ -75.38199, 39.86199 ], [ -75.381999, 39.862089 ], [ -75.382009, 39.862269 ], [ -75.38202, 39.86276 ], [ -75.38204, 39.863089 ], [ -75.38204, 39.86339 ], [ -75.38207, 39.863979 ], [ -75.382089, 39.86431 ], [ -75.382139, 39.86584 ], [ -75.38221, 39.86717 ], [ -75.38222, 39.86774 ], [ -75.382239, 39.868239 ], [ -75.382239, 39.86837 ], [ -75.382239, 39.86844 ], [ -75.382239, 39.868479 ], [ -75.38225, 39.86906 ], [ -75.38225, 39.869099 ], [ -75.3822, 39.869229 ], [ -75.38207, 39.86918 ], [ -75.38199, 39.869139 ], [ -75.381639, 39.869009 ], [ -75.38154, 39.86897 ], [ -75.38131, 39.86888 ], [ -75.38099, 39.868749 ], [ -75.380829, 39.868679 ], [ -75.380529, 39.868559 ], [ -75.38033, 39.868479 ], [ -75.379579, 39.86816 ], [ -75.37942, 39.86809 ], [ -75.379139, 39.867969 ], [ -75.37906, 39.867939 ], [ -75.378679, 39.867789 ], [ -75.378589, 39.867749 ], [ -75.37839, 39.867669 ], [ -75.377679, 39.86736 ], [ -75.37731, 39.86721 ], [ -75.377289, 39.8672 ], [ -75.376789, 39.86699 ], [ -75.376349, 39.866789 ], [ -75.376109, 39.866679 ], [ -75.376059, 39.86666 ], [ -75.375889, 39.86658 ], [ -75.37509, 39.86621 ], [ -75.375, 39.866169 ], [ -75.374439, 39.86592 ], [ -75.37406, 39.86576 ], [ -75.373679, 39.86559 ], [ -75.3729, 39.865249 ], [ -75.37204, 39.864899 ], [ -75.37196, 39.864869 ], [ -75.3711, 39.864529 ], [ -75.370849, 39.864429 ], [ -75.37052, 39.86431 ], [ -75.370399, 39.864269 ], [ -75.37028, 39.86423 ], [ -75.370039, 39.864169 ], [ -75.369909, 39.86414 ], [ -75.369769, 39.86411 ], [ -75.36935, 39.86403 ], [ -75.36926, 39.864009 ], [ -75.369139, 39.863989 ], [ -75.368919, 39.86394 ], [ -75.368699, 39.863899 ], [ -75.368599, 39.863879 ], [ -75.368699, 39.86368 ], [ -75.3688, 39.863459 ], [ -75.36894, 39.86313 ], [ -75.36902, 39.862999 ], [ -75.369129, 39.862829 ], [ -75.369229, 39.86269 ], [ -75.36935, 39.86253 ], [ -75.369459, 39.862379 ], [ -75.369579, 39.862199 ], [ -75.36974, 39.86195 ], [ -75.370049, 39.861389 ], [ -75.37043, 39.860659 ], [ -75.37082, 39.85989 ], [ -75.371019, 39.859499 ], [ -75.371069, 39.859399 ], [ -75.371169, 39.859219 ], [ -75.37123, 39.859129 ], [ -75.371299, 39.859039 ], [ -75.371389, 39.858939 ], [ -75.37141, 39.85857 ], [ -75.37149, 39.85838 ], [ -75.371529, 39.85826 ], [ -75.371659, 39.85792 ], [ -75.371709, 39.85776 ], [ -75.37088, 39.857609 ], [ -75.370569, 39.85754 ], [ -75.370399, 39.857499 ], [ -75.369279, 39.857419 ], [ -75.36893, 39.85738 ], [ -75.368639, 39.85736 ], [ -75.368499, 39.857349 ], [ -75.368229, 39.857339 ], [ -75.367919, 39.857319 ], [ -75.36764, 39.8573 ], [ -75.367379, 39.857439 ], [ -75.36642, 39.85785 ], [ -75.36637, 39.857869 ], [ -75.36592, 39.858049 ], [ -75.36452, 39.85865 ], [ -75.36416, 39.858839 ], [ -75.363909, 39.85891 ], [ -75.363329, 39.85918 ], [ -75.363199, 39.859239 ], [ -75.36295, 39.859319 ], [ -75.362259, 39.859589 ], [ -75.361989, 39.85907 ], [ -75.36168, 39.858409 ], [ -75.361659, 39.85836 ], [ -75.361489, 39.857959 ], [ -75.361439, 39.85783 ], [ -75.361389, 39.857689 ], [ -75.36128, 39.85728 ], [ -75.36124, 39.85713 ], [ -75.361219, 39.857069 ], [ -75.36119, 39.856959 ], [ -75.36116, 39.85684 ], [ -75.36111, 39.856609 ], [ -75.361039, 39.856339 ], [ -75.360999, 39.856179 ], [ -75.360949, 39.85595 ], [ -75.360899, 39.855619 ], [ -75.360859, 39.855359 ], [ -75.360819, 39.85505 ], [ -75.360759, 39.854369 ], [ -75.360719, 39.85398 ], [ -75.3607, 39.8536 ], [ -75.360689, 39.85313 ], [ -75.360689, 39.85297 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85236 ], [ -75.3607, 39.852209 ], [ -75.3607, 39.85208 ], [ -75.36071, 39.851759 ], [ -75.36074, 39.851459 ], [ -75.360769, 39.851109 ], [ -75.3607, 39.851029 ], [ -75.360509, 39.85079 ], [ -75.360279, 39.850479 ], [ -75.36011, 39.85026 ], [ -75.359789, 39.8499 ], [ -75.359639, 39.849759 ], [ -75.359599, 39.84972 ], [ -75.359559, 39.84965 ], [ -75.35954, 39.84963 ], [ -75.35944, 39.849499 ], [ -75.359549, 39.849399 ], [ -75.359609, 39.849329 ], [ -75.35971, 39.84926 ], [ -75.359819, 39.849219 ], [ -75.35994, 39.84917 ], [ -75.359999, 39.84917 ], [ -75.360049, 39.84919 ], [ -75.36011, 39.849219 ], [ -75.360179, 39.849239 ], [ -75.36029, 39.849219 ], [ -75.36061, 39.8491 ], [ -75.36075, 39.849069 ], [ -75.360399, 39.848609 ], [ -75.36038, 39.84858 ], [ -75.36003, 39.84812 ], [ -75.359779, 39.84782 ], [ -75.35976, 39.847789 ], [ -75.35958, 39.84758 ], [ -75.359509, 39.8475 ], [ -75.359279, 39.847609 ], [ -75.359139, 39.84768 ], [ -75.359049, 39.847719 ], [ -75.3589, 39.847789 ], [ -75.35882, 39.84783 ], [ -75.358329, 39.848059 ], [ -75.35885, 39.848769 ], [ -75.35909, 39.849069 ], [ -75.359149, 39.849149 ], [ -75.359229, 39.849249 ], [ -75.359339, 39.84938 ], [ -75.35944, 39.849499 ], [ -75.35954, 39.84963 ], [ -75.359559, 39.84965 ], [ -75.359599, 39.84972 ], [ -75.359639, 39.849759 ], [ -75.359789, 39.8499 ], [ -75.36011, 39.85026 ], [ -75.360279, 39.850479 ], [ -75.360509, 39.85079 ], [ -75.3607, 39.851029 ], [ -75.360769, 39.851109 ], [ -75.36074, 39.851459 ], [ -75.36071, 39.851759 ], [ -75.3607, 39.85208 ], [ -75.3607, 39.852209 ], [ -75.360689, 39.85236 ], [ -75.360689, 39.85269 ], [ -75.3608, 39.852649 ], [ -75.36102, 39.852559 ], [ -75.361209, 39.852479 ], [ -75.36161, 39.85233 ], [ -75.361719, 39.852289 ], [ -75.361929, 39.852199 ], [ -75.3624, 39.852009 ], [ -75.36277, 39.851859 ], [ -75.363239, 39.851659 ], [ -75.36488, 39.85098 ], [ -75.36511, 39.85089 ], [ -75.36533, 39.8508 ], [ -75.365809, 39.850599 ], [ -75.36619, 39.85045 ], [ -75.36663, 39.85027 ], [ -75.367649, 39.849849 ], [ -75.369099, 39.849249 ], [ -75.3693, 39.84917 ], [ -75.370319, 39.84873 ], [ -75.37046, 39.84867 ], [ -75.37056, 39.84863 ], [ -75.370749, 39.84855 ], [ -75.37086, 39.848509 ], [ -75.37105, 39.848439 ], [ -75.371079, 39.848429 ], [ -75.371199, 39.84838 ], [ -75.37141, 39.8483 ], [ -75.37182, 39.848159 ], [ -75.371879, 39.848139 ], [ -75.37199, 39.8481 ], [ -75.37212, 39.848059 ], [ -75.372419, 39.847959 ], [ -75.37259, 39.84791 ], [ -75.37375, 39.847509 ], [ -75.37455, 39.84722 ], [ -75.37538, 39.84692 ], [ -75.37559, 39.84683 ], [ -75.375889, 39.84668 ], [ -75.375939, 39.84666 ], [ -75.37641, 39.84641 ], [ -75.3769, 39.846159 ], [ -75.37744, 39.845879 ], [ -75.37803, 39.845559 ], [ -75.378409, 39.845349 ], [ -75.37866, 39.84523 ], [ -75.378869, 39.845109 ], [ -75.379219, 39.844919 ], [ -75.37938, 39.844839 ], [ -75.379629, 39.84471 ], [ -75.38014, 39.84444 ], [ -75.380439, 39.844279 ], [ -75.380659, 39.84417 ], [ -75.380979, 39.844009 ], [ -75.38113, 39.843929 ], [ -75.38126, 39.84386 ], [ -75.38141, 39.84378 ], [ -75.381879, 39.84353 ], [ -75.381999, 39.843469 ], [ -75.38244, 39.84324 ], [ -75.38283, 39.843029 ], [ -75.3831, 39.84288 ], [ -75.38348, 39.842679 ], [ -75.38393, 39.84245 ], [ -75.38433, 39.84224 ], [ -75.384569, 39.842109 ], [ -75.384669, 39.842049 ], [ -75.385029, 39.841859 ], [ -75.385559, 39.841589 ], [ -75.38591, 39.841409 ], [ -75.38622, 39.84125 ], [ -75.386279, 39.841219 ], [ -75.38666, 39.84101 ], [ -75.387719, 39.84045 ], [ -75.38878, 39.8399 ], [ -75.38924, 39.83967 ], [ -75.38987, 39.83936 ], [ -75.390099, 39.839239 ], [ -75.39093, 39.838799 ], [ -75.391269, 39.83859 ], [ -75.391419, 39.838499 ], [ -75.39194, 39.838159 ], [ -75.39233, 39.837879 ], [ -75.392889, 39.83748 ], [ -75.393439, 39.837089 ], [ -75.39382, 39.836809 ], [ -75.394029, 39.836649 ], [ -75.394259, 39.836469 ], [ -75.39437, 39.8364 ], [ -75.394439, 39.836349 ], [ -75.39467, 39.836169 ], [ -75.394799, 39.836089 ], [ -75.395049, 39.835929 ], [ -75.39539, 39.83621 ], [ -75.39566, 39.836439 ], [ -75.395959, 39.83669 ], [ -75.396129, 39.836829 ], [ -75.39634, 39.836989 ], [ -75.39666, 39.837249 ], [ -75.39701, 39.837549 ], [ -75.39759, 39.83802 ], [ -75.39761, 39.83803 ], [ -75.39782, 39.83821 ], [ -75.397989, 39.838349 ], [ -75.398209, 39.838529 ], [ -75.398519, 39.838779 ], [ -75.399109, 39.83927 ], [ -75.39935, 39.83946 ], [ -75.39998, 39.839959 ], [ -75.40007, 39.84003 ], [ -75.40022, 39.840139 ], [ -75.400499, 39.84035 ], [ -75.400689, 39.84048 ], [ -75.401139, 39.840779 ], [ -75.40139, 39.84099 ], [ -75.40156, 39.84116 ], [ -75.401579, 39.84118 ], [ -75.40179, 39.84143 ], [ -75.40197, 39.841659 ], [ -75.40251, 39.84235 ], [ -75.40255, 39.842579 ], [ -75.402519, 39.84272 ], [ -75.402489, 39.84278 ], [ -75.402389, 39.84289 ], [ -75.4022, 39.843009 ], [ -75.4021, 39.843019 ], [ -75.400629, 39.843289 ], [ -75.400239, 39.84336 ], [ -75.399779, 39.843459 ], [ -75.399459, 39.843549 ], [ -75.399279, 39.84362 ], [ -75.399009, 39.84372 ], [ -75.39881, 39.84379 ], [ -75.398519, 39.843929 ], [ -75.398339, 39.84405 ], [ -75.39792, 39.844379 ], [ -75.397719, 39.844469 ], [ -75.39741, 39.844539 ], [ -75.3972, 39.844559 ], [ -75.396899, 39.844549 ], [ -75.39661, 39.844549 ], [ -75.396219, 39.844569 ], [ -75.395869, 39.844649 ], [ -75.39536, 39.84477 ], [ -75.394739, 39.844919 ], [ -75.394509, 39.84498 ], [ -75.39432, 39.845019 ], [ -75.394059, 39.845079 ], [ -75.393849, 39.84513 ], [ -75.39373, 39.845189 ], [ -75.393629, 39.845259 ], [ -75.393609, 39.84531 ], [ -75.39368, 39.84531 ], [ -75.39377, 39.84532 ], [ -75.39387, 39.84534 ], [ -75.39396, 39.845359 ], [ -75.395329, 39.84569 ], [ -75.395549, 39.845739 ], [ -75.39594, 39.845829 ], [ -75.39621, 39.845889 ], [ -75.39644, 39.84594 ], [ -75.396719, 39.845999 ], [ -75.396909, 39.84604 ], [ -75.397089, 39.846079 ], [ -75.397219, 39.84611 ], [ -75.39729, 39.84613 ], [ -75.39738, 39.846159 ], [ -75.39746, 39.846189 ], [ -75.397529, 39.84622 ], [ -75.39761, 39.846259 ], [ -75.39769, 39.84631 ], [ -75.39796, 39.84649 ], [ -75.39815, 39.846619 ], [ -75.39841, 39.846779 ], [ -75.399369, 39.84741 ], [ -75.399649, 39.84759 ], [ -75.39993, 39.847779 ], [ -75.40017, 39.84795 ], [ -75.40031, 39.848069 ], [ -75.400409, 39.84818 ], [ -75.400499, 39.84829 ], [ -75.40067, 39.848529 ], [ -75.400779, 39.848689 ], [ -75.40102, 39.84901 ], [ -75.401219, 39.849319 ], [ -75.40129, 39.849429 ], [ -75.40139, 39.849599 ], [ -75.401449, 39.84972 ], [ -75.40151, 39.849869 ], [ -75.40157, 39.850049 ], [ -75.401669, 39.85046 ], [ -75.401709, 39.850649 ], [ -75.40179, 39.851019 ], [ -75.40183, 39.85127 ], [ -75.40187, 39.85161 ], [ -75.40193, 39.85244 ], [ -75.40197, 39.852649 ], [ -75.40224, 39.852579 ], [ -75.402519, 39.85251 ], [ -75.402809, 39.852369 ], [ -75.40309, 39.85216 ], [ -75.40328, 39.851939 ], [ -75.403419, 39.85178 ], [ -75.403609, 39.85163 ], [ -75.403739, 39.85152 ], [ -75.40385, 39.85145 ], [ -75.404019, 39.851369 ], [ -75.404229, 39.85126 ], [ -75.40462, 39.851049 ], [ -75.40535, 39.85071 ], [ -75.406179, 39.850319 ], [ -75.406719, 39.85007 ], [ -75.406899, 39.84998 ], [ -75.40742, 39.84974 ], [ -75.40805, 39.84944 ], [ -75.408779, 39.8491 ], [ -75.4093, 39.848859 ], [ -75.40992, 39.84857 ], [ -75.409279, 39.84777 ], [ -75.40921, 39.84768 ], [ -75.409149, 39.847599 ], [ -75.40904, 39.84746 ], [ -75.408829, 39.847179 ], [ -75.40866, 39.846959 ], [ -75.408429, 39.846799 ], [ -75.408329, 39.84677 ], [ -75.408149, 39.84676 ], [ -75.407919, 39.846819 ], [ -75.40773, 39.84692 ], [ -75.40751, 39.84701 ], [ -75.407199, 39.847159 ], [ -75.40687, 39.84732 ], [ -75.406629, 39.847429 ], [ -75.40598, 39.84774 ], [ -75.405509, 39.847959 ], [ -75.405229, 39.848079 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "304077", "route_id": "117" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.44723, 39.92846 ], [ -75.44714, 39.92849 ], [ -75.44701, 39.92867 ], [ -75.44693, 39.928689 ], [ -75.446639, 39.92882 ], [ -75.44616, 39.92902 ], [ -75.445639, 39.929259 ], [ -75.44558, 39.92912 ], [ -75.44538, 39.928619 ], [ -75.445269, 39.928329 ], [ -75.44512, 39.92796 ], [ -75.444999, 39.92765 ], [ -75.44486, 39.9273 ], [ -75.44476, 39.92704 ], [ -75.44457, 39.92658 ], [ -75.44445, 39.926289 ], [ -75.44435, 39.92604 ], [ -75.4443, 39.925899 ], [ -75.443979, 39.925019 ], [ -75.44369, 39.924199 ], [ -75.443379, 39.923309 ], [ -75.443349, 39.923219 ], [ -75.44331, 39.92308 ], [ -75.44328, 39.922949 ], [ -75.44323, 39.92271 ], [ -75.443199, 39.92253 ], [ -75.44318, 39.922389 ], [ -75.443159, 39.922229 ], [ -75.44314, 39.922039 ], [ -75.44313, 39.921839 ], [ -75.443109, 39.921479 ], [ -75.443109, 39.92101 ], [ -75.443109, 39.92083 ], [ -75.44309, 39.920509 ], [ -75.443079, 39.920399 ], [ -75.44304, 39.92022 ], [ -75.442989, 39.920049 ], [ -75.44297, 39.919969 ], [ -75.442939, 39.919889 ], [ -75.442889, 39.919779 ], [ -75.44283, 39.91967 ], [ -75.44277, 39.91957 ], [ -75.44301, 39.919359 ], [ -75.44313, 39.919239 ], [ -75.443379, 39.918999 ], [ -75.443829, 39.91856 ], [ -75.444059, 39.9183 ], [ -75.444779, 39.917609 ], [ -75.444059, 39.9183 ], [ -75.443829, 39.91856 ], [ -75.443379, 39.918999 ], [ -75.44313, 39.919239 ], [ -75.44301, 39.919359 ], [ -75.44277, 39.91957 ], [ -75.44268, 39.919439 ], [ -75.44259, 39.91932 ], [ -75.442489, 39.9192 ], [ -75.44241, 39.91911 ], [ -75.44228, 39.918979 ], [ -75.44215, 39.91887 ], [ -75.441909, 39.91868 ], [ -75.441849, 39.918629 ], [ -75.44178, 39.91858 ], [ -75.441369, 39.918269 ], [ -75.440999, 39.918009 ], [ -75.44081, 39.91788 ], [ -75.44053, 39.9177 ], [ -75.440429, 39.91758 ], [ -75.440379, 39.91749 ], [ -75.44035, 39.9174 ], [ -75.44031, 39.917249 ], [ -75.440319, 39.917179 ], [ -75.440319, 39.917079 ], [ -75.44031, 39.91697 ], [ -75.440289, 39.916829 ], [ -75.44026, 39.91667 ], [ -75.44009, 39.91562 ], [ -75.440069, 39.91551 ], [ -75.440019, 39.915219 ], [ -75.43999, 39.915009 ], [ -75.43995, 39.914749 ], [ -75.439839, 39.91406 ], [ -75.43981, 39.913869 ], [ -75.439789, 39.91373 ], [ -75.43976, 39.91347 ], [ -75.439749, 39.913229 ], [ -75.439739, 39.913049 ], [ -75.43973, 39.91289 ], [ -75.43972, 39.912679 ], [ -75.439709, 39.912499 ], [ -75.439709, 39.91229 ], [ -75.439289, 39.912419 ], [ -75.439079, 39.912489 ], [ -75.43882, 39.912569 ], [ -75.43864, 39.91262 ], [ -75.438389, 39.912699 ], [ -75.43824, 39.912749 ], [ -75.438169, 39.912769 ], [ -75.437949, 39.912839 ], [ -75.43783, 39.912879 ], [ -75.437719, 39.91292 ], [ -75.43738, 39.913029 ], [ -75.436599, 39.91325 ], [ -75.436499, 39.91329 ], [ -75.436359, 39.91334 ], [ -75.43622, 39.913389 ], [ -75.43613, 39.913419 ], [ -75.436089, 39.91343 ], [ -75.43585, 39.913499 ], [ -75.435549, 39.913579 ], [ -75.435369, 39.91362 ], [ -75.43527, 39.91364 ], [ -75.434929, 39.9137 ], [ -75.434699, 39.91374 ], [ -75.43449, 39.913769 ], [ -75.43396, 39.913839 ], [ -75.43374, 39.91388 ], [ -75.433709, 39.91388 ], [ -75.433669, 39.91389 ], [ -75.433489, 39.91391 ], [ -75.433439, 39.91392 ], [ -75.433219, 39.913949 ], [ -75.432899, 39.91399 ], [ -75.432549, 39.914029 ], [ -75.43175, 39.914139 ], [ -75.43149, 39.91417 ], [ -75.430889, 39.91426 ], [ -75.43014, 39.91435 ], [ -75.429269, 39.914469 ], [ -75.429209, 39.914479 ], [ -75.429029, 39.914499 ], [ -75.428809, 39.91454 ], [ -75.428679, 39.91455 ], [ -75.42815, 39.91464 ], [ -75.427319, 39.91478 ], [ -75.42726, 39.91479 ], [ -75.426869, 39.914849 ], [ -75.42632, 39.914929 ], [ -75.425889, 39.91499 ], [ -75.42569, 39.915019 ], [ -75.425569, 39.915039 ], [ -75.42532, 39.91508 ], [ -75.425109, 39.915109 ], [ -75.424839, 39.91515 ], [ -75.42455, 39.915199 ], [ -75.42397, 39.915279 ], [ -75.423639, 39.91533 ], [ -75.423449, 39.91536 ], [ -75.42315, 39.915389 ], [ -75.422959, 39.91542 ], [ -75.422869, 39.91543 ], [ -75.422329, 39.9155 ], [ -75.421839, 39.9156 ], [ -75.41996, 39.915839 ], [ -75.419399, 39.915919 ], [ -75.4188, 39.915999 ], [ -75.418279, 39.91607 ], [ -75.41776, 39.91614 ], [ -75.416659, 39.916289 ], [ -75.416019, 39.916379 ], [ -75.41573, 39.91642 ], [ -75.4155, 39.916449 ], [ -75.415489, 39.916099 ], [ -75.415489, 39.91605 ], [ -75.41552, 39.91551 ], [ -75.415529, 39.91523 ], [ -75.41555, 39.91488 ], [ -75.415089, 39.915039 ], [ -75.41304, 39.915219 ], [ -75.412749, 39.915279 ], [ -75.412689, 39.915289 ], [ -75.412509, 39.91533 ], [ -75.41227, 39.915389 ], [ -75.41196, 39.915479 ], [ -75.411809, 39.91552 ], [ -75.41138, 39.915639 ], [ -75.411269, 39.915649 ], [ -75.41114, 39.915639 ], [ -75.41087, 39.915559 ], [ -75.41064, 39.915469 ], [ -75.41039, 39.915299 ], [ -75.410179, 39.915029 ], [ -75.410079, 39.914839 ], [ -75.410039, 39.91462 ], [ -75.41006, 39.91451 ], [ -75.41007, 39.91444 ], [ -75.41015, 39.91427 ], [ -75.410259, 39.9141 ], [ -75.41065, 39.91381 ], [ -75.410859, 39.913669 ], [ -75.41106, 39.91361 ], [ -75.411179, 39.91355 ], [ -75.411259, 39.91344 ], [ -75.411299, 39.91328 ], [ -75.411269, 39.913139 ], [ -75.411249, 39.91309 ], [ -75.411179, 39.912959 ], [ -75.410949, 39.91262 ], [ -75.410759, 39.912299 ], [ -75.41055, 39.911859 ], [ -75.40967, 39.91004 ], [ -75.41003, 39.90976 ], [ -75.410169, 39.90959 ], [ -75.410589, 39.90896 ], [ -75.410629, 39.908899 ], [ -75.410769, 39.908729 ], [ -75.41102, 39.908529 ], [ -75.411209, 39.90842 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.411659, 39.907819 ], [ -75.4115, 39.907829 ], [ -75.411359, 39.90787 ], [ -75.41132, 39.907929 ], [ -75.411299, 39.908009 ], [ -75.41132, 39.908109 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.4121, 39.90759 ], [ -75.41237, 39.90733 ], [ -75.412509, 39.907209 ], [ -75.412709, 39.90708 ], [ -75.4129, 39.90696 ], [ -75.413139, 39.906829 ], [ -75.413649, 39.90659 ], [ -75.41429, 39.90635 ], [ -75.41457, 39.90625 ], [ -75.41547, 39.905949 ], [ -75.41596, 39.90579 ], [ -75.415569, 39.90537 ], [ -75.415389, 39.90519 ], [ -75.41528, 39.90507 ], [ -75.41519, 39.90497 ], [ -75.41506, 39.90483 ], [ -75.414809, 39.90456 ], [ -75.41447, 39.904209 ], [ -75.414279, 39.904 ], [ -75.414099, 39.90381 ], [ -75.4139, 39.903589 ], [ -75.413729, 39.903409 ], [ -75.41353, 39.903209 ], [ -75.413289, 39.902979 ], [ -75.413099, 39.90281 ], [ -75.412889, 39.902619 ], [ -75.412609, 39.90237 ], [ -75.41231, 39.90211 ], [ -75.41028, 39.90041 ], [ -75.40823, 39.89867 ], [ -75.407799, 39.89831 ], [ -75.40764, 39.898179 ], [ -75.407479, 39.89804 ], [ -75.40732, 39.89789 ], [ -75.407169, 39.897759 ], [ -75.406989, 39.897579 ], [ -75.40679, 39.89736 ], [ -75.406569, 39.897119 ], [ -75.40637, 39.89687 ], [ -75.40614, 39.896569 ], [ -75.406029, 39.89642 ], [ -75.405939, 39.89628 ], [ -75.405859, 39.89615 ], [ -75.405759, 39.89597 ], [ -75.40562, 39.89572 ], [ -75.405499, 39.895479 ], [ -75.405419, 39.895299 ], [ -75.40534, 39.895109 ], [ -75.40526, 39.8949 ], [ -75.405129, 39.89454 ], [ -75.40502, 39.894219 ], [ -75.40395, 39.891089 ], [ -75.403339, 39.889289 ], [ -75.40327, 39.88908 ], [ -75.40319, 39.88887 ], [ -75.40313, 39.88872 ], [ -75.40273, 39.88782 ], [ -75.4025, 39.887289 ], [ -75.402219, 39.8867 ], [ -75.4021, 39.88645 ], [ -75.401989, 39.886219 ], [ -75.40183, 39.885929 ], [ -75.40151, 39.88535 ], [ -75.40092, 39.88438 ], [ -75.40058, 39.88383 ], [ -75.39993, 39.88278 ], [ -75.39944, 39.881979 ], [ -75.399379, 39.881889 ], [ -75.39932, 39.881789 ], [ -75.39842, 39.880359 ], [ -75.398259, 39.880099 ], [ -75.398079, 39.87981 ], [ -75.39792, 39.879569 ], [ -75.39782, 39.87942 ], [ -75.397749, 39.87932 ], [ -75.39769, 39.87924 ], [ -75.39764, 39.87918 ], [ -75.39678, 39.8796 ], [ -75.39671, 39.87952 ], [ -75.39665, 39.87945 ], [ -75.396549, 39.87934 ], [ -75.396399, 39.87916 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.3953, 39.878919 ], [ -75.39544, 39.87906 ], [ -75.395589, 39.879209 ], [ -75.39571, 39.87933 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.39581, 39.87843 ], [ -75.395689, 39.87828 ], [ -75.395639, 39.878219 ], [ -75.39557, 39.878139 ], [ -75.395409, 39.878 ], [ -75.39531, 39.87791 ], [ -75.395099, 39.877739 ], [ -75.395519, 39.87746 ], [ -75.395699, 39.877309 ], [ -75.395139, 39.876869 ], [ -75.395049, 39.8768 ], [ -75.39441, 39.876249 ], [ -75.39395, 39.875869 ], [ -75.393669, 39.87564 ], [ -75.393159, 39.87522 ], [ -75.392849, 39.874959 ], [ -75.39275, 39.874879 ], [ -75.392619, 39.874779 ], [ -75.39255, 39.874719 ], [ -75.39233, 39.87457 ], [ -75.392169, 39.87446 ], [ -75.39212, 39.874429 ], [ -75.392089, 39.87441 ], [ -75.39188, 39.87429 ], [ -75.391689, 39.874179 ], [ -75.391639, 39.874149 ], [ -75.391449, 39.87405 ], [ -75.391369, 39.873999 ], [ -75.39135, 39.873989 ], [ -75.39129, 39.87396 ], [ -75.391179, 39.873899 ], [ -75.391009, 39.873819 ], [ -75.390919, 39.87378 ], [ -75.39057, 39.873639 ], [ -75.39053, 39.873619 ], [ -75.390369, 39.87356 ], [ -75.39022, 39.8735 ], [ -75.390019, 39.873419 ], [ -75.3899, 39.873369 ], [ -75.389799, 39.873329 ], [ -75.389609, 39.873259 ], [ -75.389389, 39.873179 ], [ -75.38928, 39.87314 ], [ -75.389079, 39.873059 ], [ -75.388799, 39.87295 ], [ -75.38851, 39.872829 ], [ -75.38819, 39.87269 ], [ -75.388349, 39.872539 ], [ -75.38843, 39.872439 ], [ -75.388479, 39.87233 ], [ -75.38861, 39.872089 ], [ -75.38868, 39.87196 ], [ -75.38877, 39.871819 ], [ -75.38888, 39.871659 ], [ -75.388979, 39.87152 ], [ -75.38909, 39.871379 ], [ -75.389209, 39.87123 ], [ -75.38932, 39.871099 ], [ -75.38946, 39.87095 ], [ -75.389569, 39.870849 ], [ -75.38967, 39.87077 ], [ -75.39, 39.87053 ], [ -75.3908, 39.86996 ], [ -75.39094, 39.869849 ], [ -75.39108, 39.86973 ], [ -75.3912, 39.86962 ], [ -75.39134, 39.869489 ], [ -75.391539, 39.869299 ], [ -75.39192, 39.868929 ], [ -75.39215, 39.868689 ], [ -75.3922, 39.86863 ], [ -75.39224, 39.868579 ], [ -75.39228, 39.86852 ], [ -75.39233, 39.86844 ], [ -75.39239, 39.868329 ], [ -75.39275, 39.86762 ], [ -75.39292, 39.86729 ], [ -75.39315, 39.86684 ], [ -75.39324, 39.86666 ], [ -75.39332, 39.86648 ], [ -75.393399, 39.86629 ], [ -75.39347, 39.86611 ], [ -75.393529, 39.86595 ], [ -75.39364, 39.86565 ], [ -75.39369, 39.865519 ], [ -75.393759, 39.865349 ], [ -75.393799, 39.865259 ], [ -75.39405, 39.864699 ], [ -75.394119, 39.864549 ], [ -75.394199, 39.86438 ], [ -75.39432, 39.86412 ], [ -75.39436, 39.86403 ], [ -75.394389, 39.86395 ], [ -75.394419, 39.86386 ], [ -75.394439, 39.863789 ], [ -75.39445, 39.863739 ], [ -75.39446, 39.86369 ], [ -75.394469, 39.86348 ], [ -75.39446, 39.863259 ], [ -75.39441, 39.86298 ], [ -75.394329, 39.86279 ], [ -75.39427, 39.862649 ], [ -75.39423, 39.862549 ], [ -75.394119, 39.862299 ], [ -75.394069, 39.862179 ], [ -75.39401, 39.86204 ], [ -75.39377, 39.861469 ], [ -75.3936, 39.861109 ], [ -75.393479, 39.86089 ], [ -75.393429, 39.86081 ], [ -75.393349, 39.8607 ], [ -75.393219, 39.86054 ], [ -75.393119, 39.86043 ], [ -75.392979, 39.860299 ], [ -75.39278, 39.860139 ], [ -75.39256, 39.85998 ], [ -75.392269, 39.85982 ], [ -75.39197, 39.859669 ], [ -75.39189, 39.85963 ], [ -75.391679, 39.85953 ], [ -75.39095, 39.85919 ], [ -75.390459, 39.858959 ], [ -75.390379, 39.85892 ], [ -75.390159, 39.85882 ], [ -75.38991, 39.858699 ], [ -75.389739, 39.85862 ], [ -75.38928, 39.858409 ], [ -75.38919, 39.85837 ], [ -75.388629, 39.85811 ], [ -75.38816, 39.857889 ], [ -75.387599, 39.85763 ], [ -75.38693, 39.857319 ], [ -75.386409, 39.857079 ], [ -75.386279, 39.85702 ], [ -75.386139, 39.85695 ], [ -75.38603, 39.856899 ], [ -75.38595, 39.85686 ], [ -75.385709, 39.85675 ], [ -75.385529, 39.85667 ], [ -75.385299, 39.85658 ], [ -75.38514, 39.856519 ], [ -75.38487, 39.856429 ], [ -75.3846, 39.856339 ], [ -75.384219, 39.85622 ], [ -75.384, 39.856149 ], [ -75.383849, 39.8561 ], [ -75.383439, 39.855969 ], [ -75.38265, 39.855709 ], [ -75.38252, 39.85566 ], [ -75.38235, 39.85559 ], [ -75.382229, 39.85657 ], [ -75.38221, 39.85673 ], [ -75.38217, 39.857059 ], [ -75.38211, 39.85754 ], [ -75.38204, 39.857969 ], [ -75.381999, 39.85839 ], [ -75.38193, 39.858849 ], [ -75.38194, 39.859319 ], [ -75.381959, 39.86063 ], [ -75.38198, 39.861549 ], [ -75.38199, 39.86199 ], [ -75.381999, 39.862089 ], [ -75.382009, 39.862269 ], [ -75.38202, 39.86276 ], [ -75.38204, 39.863089 ], [ -75.38204, 39.86339 ], [ -75.38207, 39.863979 ], [ -75.382089, 39.86431 ], [ -75.382139, 39.86584 ], [ -75.38221, 39.86717 ], [ -75.38222, 39.86774 ], [ -75.382239, 39.868239 ], [ -75.382239, 39.86837 ], [ -75.382239, 39.86844 ], [ -75.382239, 39.868479 ], [ -75.38225, 39.86906 ], [ -75.38225, 39.869099 ], [ -75.3822, 39.869229 ], [ -75.38207, 39.86918 ], [ -75.38199, 39.869139 ], [ -75.381639, 39.869009 ], [ -75.38154, 39.86897 ], [ -75.38131, 39.86888 ], [ -75.38099, 39.868749 ], [ -75.380829, 39.868679 ], [ -75.380529, 39.868559 ], [ -75.38033, 39.868479 ], [ -75.379579, 39.86816 ], [ -75.37942, 39.86809 ], [ -75.379139, 39.867969 ], [ -75.37906, 39.867939 ], [ -75.378679, 39.867789 ], [ -75.378589, 39.867749 ], [ -75.37839, 39.867669 ], [ -75.377679, 39.86736 ], [ -75.37731, 39.86721 ], [ -75.377289, 39.8672 ], [ -75.376789, 39.86699 ], [ -75.376349, 39.866789 ], [ -75.376109, 39.866679 ], [ -75.376059, 39.86666 ], [ -75.375889, 39.86658 ], [ -75.37509, 39.86621 ], [ -75.375, 39.866169 ], [ -75.374439, 39.86592 ], [ -75.37406, 39.86576 ], [ -75.373679, 39.86559 ], [ -75.3729, 39.865249 ], [ -75.37204, 39.864899 ], [ -75.37196, 39.864869 ], [ -75.3711, 39.864529 ], [ -75.370849, 39.864429 ], [ -75.37052, 39.86431 ], [ -75.370399, 39.864269 ], [ -75.37028, 39.86423 ], [ -75.370039, 39.864169 ], [ -75.369909, 39.86414 ], [ -75.369769, 39.86411 ], [ -75.36935, 39.86403 ], [ -75.36926, 39.864009 ], [ -75.369139, 39.863989 ], [ -75.368919, 39.86394 ], [ -75.368699, 39.863899 ], [ -75.368599, 39.863879 ], [ -75.368699, 39.86368 ], [ -75.3688, 39.863459 ], [ -75.36894, 39.86313 ], [ -75.36902, 39.862999 ], [ -75.369129, 39.862829 ], [ -75.369229, 39.86269 ], [ -75.36935, 39.86253 ], [ -75.369459, 39.862379 ], [ -75.369579, 39.862199 ], [ -75.36974, 39.86195 ], [ -75.370049, 39.861389 ], [ -75.37043, 39.860659 ], [ -75.37082, 39.85989 ], [ -75.371019, 39.859499 ], [ -75.371069, 39.859399 ], [ -75.371169, 39.859219 ], [ -75.37123, 39.859129 ], [ -75.371299, 39.859039 ], [ -75.371389, 39.858939 ], [ -75.37141, 39.85857 ], [ -75.37149, 39.85838 ], [ -75.371529, 39.85826 ], [ -75.371659, 39.85792 ], [ -75.371709, 39.85776 ], [ -75.37088, 39.857609 ], [ -75.370569, 39.85754 ], [ -75.370399, 39.857499 ], [ -75.369279, 39.857419 ], [ -75.36893, 39.85738 ], [ -75.368639, 39.85736 ], [ -75.368499, 39.857349 ], [ -75.368229, 39.857339 ], [ -75.367919, 39.857319 ], [ -75.36764, 39.8573 ], [ -75.367379, 39.857439 ], [ -75.36642, 39.85785 ], [ -75.36637, 39.857869 ], [ -75.36592, 39.858049 ], [ -75.36452, 39.85865 ], [ -75.36416, 39.858839 ], [ -75.363909, 39.85891 ], [ -75.363329, 39.85918 ], [ -75.363199, 39.859239 ], [ -75.36295, 39.859319 ], [ -75.362259, 39.859589 ], [ -75.361989, 39.85907 ], [ -75.36168, 39.858409 ], [ -75.361659, 39.85836 ], [ -75.361489, 39.857959 ], [ -75.361439, 39.85783 ], [ -75.361389, 39.857689 ], [ -75.36128, 39.85728 ], [ -75.36124, 39.85713 ], [ -75.361219, 39.857069 ], [ -75.36119, 39.856959 ], [ -75.36116, 39.85684 ], [ -75.36111, 39.856609 ], [ -75.361039, 39.856339 ], [ -75.360999, 39.856179 ], [ -75.360949, 39.85595 ], [ -75.360899, 39.855619 ], [ -75.360859, 39.855359 ], [ -75.360819, 39.85505 ], [ -75.360759, 39.854369 ], [ -75.360719, 39.85398 ], [ -75.3607, 39.8536 ], [ -75.360689, 39.85313 ], [ -75.360689, 39.85297 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85236 ], [ -75.3607, 39.852209 ], [ -75.3607, 39.85208 ], [ -75.36071, 39.851759 ], [ -75.36074, 39.851459 ], [ -75.360769, 39.851109 ], [ -75.3607, 39.851029 ], [ -75.360509, 39.85079 ], [ -75.360279, 39.850479 ], [ -75.36011, 39.85026 ], [ -75.359789, 39.8499 ], [ -75.359639, 39.849759 ], [ -75.359599, 39.84972 ], [ -75.359559, 39.84965 ], [ -75.35954, 39.84963 ], [ -75.35944, 39.849499 ], [ -75.359549, 39.849399 ], [ -75.359609, 39.849329 ], [ -75.35971, 39.84926 ], [ -75.359819, 39.849219 ], [ -75.35994, 39.84917 ], [ -75.359999, 39.84917 ], [ -75.360049, 39.84919 ], [ -75.36011, 39.849219 ], [ -75.360179, 39.849239 ], [ -75.36029, 39.849219 ], [ -75.36061, 39.8491 ], [ -75.36075, 39.849069 ], [ -75.360399, 39.848609 ], [ -75.36038, 39.84858 ], [ -75.36003, 39.84812 ], [ -75.359779, 39.84782 ], [ -75.35976, 39.847789 ], [ -75.35958, 39.84758 ], [ -75.359509, 39.8475 ], [ -75.359279, 39.847609 ], [ -75.359139, 39.84768 ], [ -75.359049, 39.847719 ], [ -75.3589, 39.847789 ], [ -75.35882, 39.84783 ], [ -75.358329, 39.848059 ], [ -75.35885, 39.848769 ], [ -75.35909, 39.849069 ], [ -75.359149, 39.849149 ], [ -75.359229, 39.849249 ], [ -75.359339, 39.84938 ], [ -75.35944, 39.849499 ], [ -75.35954, 39.84963 ], [ -75.359559, 39.84965 ], [ -75.359599, 39.84972 ], [ -75.359639, 39.849759 ], [ -75.359789, 39.8499 ], [ -75.36011, 39.85026 ], [ -75.360279, 39.850479 ], [ -75.360509, 39.85079 ], [ -75.3607, 39.851029 ], [ -75.360769, 39.851109 ], [ -75.36074, 39.851459 ], [ -75.36071, 39.851759 ], [ -75.3607, 39.85208 ], [ -75.3607, 39.852209 ], [ -75.360689, 39.85236 ], [ -75.360689, 39.85269 ], [ -75.3608, 39.852649 ], [ -75.36102, 39.852559 ], [ -75.361209, 39.852479 ], [ -75.36161, 39.85233 ], [ -75.361719, 39.852289 ], [ -75.361929, 39.852199 ], [ -75.3624, 39.852009 ], [ -75.36277, 39.851859 ], [ -75.363239, 39.851659 ], [ -75.36488, 39.85098 ], [ -75.36511, 39.85089 ], [ -75.36533, 39.8508 ], [ -75.365809, 39.850599 ], [ -75.36619, 39.85045 ], [ -75.36663, 39.85027 ], [ -75.367649, 39.849849 ], [ -75.369099, 39.849249 ], [ -75.3693, 39.84917 ], [ -75.370319, 39.84873 ], [ -75.37046, 39.84867 ], [ -75.37056, 39.84863 ], [ -75.370749, 39.84855 ], [ -75.37086, 39.848509 ], [ -75.37105, 39.848439 ], [ -75.371079, 39.848429 ], [ -75.371199, 39.84838 ], [ -75.37141, 39.8483 ], [ -75.37182, 39.848159 ], [ -75.371879, 39.848139 ], [ -75.37199, 39.8481 ], [ -75.37212, 39.848059 ], [ -75.372419, 39.847959 ], [ -75.37259, 39.84791 ], [ -75.37375, 39.847509 ], [ -75.37455, 39.84722 ], [ -75.37538, 39.84692 ], [ -75.37559, 39.84683 ], [ -75.375889, 39.84668 ], [ -75.375939, 39.84666 ], [ -75.37641, 39.84641 ], [ -75.3769, 39.846159 ], [ -75.37744, 39.845879 ], [ -75.37803, 39.845559 ], [ -75.378409, 39.845349 ], [ -75.37866, 39.84523 ], [ -75.378869, 39.845109 ], [ -75.379219, 39.844919 ], [ -75.37938, 39.844839 ], [ -75.379629, 39.84471 ], [ -75.38014, 39.84444 ], [ -75.380439, 39.844279 ], [ -75.380659, 39.84417 ], [ -75.380979, 39.844009 ], [ -75.38113, 39.843929 ], [ -75.38126, 39.84386 ], [ -75.38141, 39.84378 ], [ -75.381879, 39.84353 ], [ -75.381999, 39.843469 ], [ -75.38244, 39.84324 ], [ -75.38283, 39.843029 ], [ -75.3831, 39.84288 ], [ -75.38348, 39.842679 ], [ -75.38393, 39.84245 ], [ -75.38433, 39.84224 ], [ -75.384569, 39.842109 ], [ -75.384669, 39.842049 ], [ -75.385029, 39.841859 ], [ -75.385559, 39.841589 ], [ -75.38591, 39.841409 ], [ -75.38622, 39.84125 ], [ -75.386279, 39.841219 ], [ -75.38666, 39.84101 ], [ -75.387719, 39.84045 ], [ -75.38878, 39.8399 ], [ -75.38924, 39.83967 ], [ -75.38987, 39.83936 ], [ -75.390099, 39.839239 ], [ -75.39093, 39.838799 ], [ -75.391269, 39.83859 ], [ -75.391419, 39.838499 ], [ -75.39194, 39.838159 ], [ -75.39233, 39.837879 ], [ -75.392889, 39.83748 ], [ -75.393439, 39.837089 ], [ -75.39382, 39.836809 ], [ -75.394029, 39.836649 ], [ -75.394259, 39.836469 ], [ -75.39437, 39.8364 ], [ -75.394439, 39.836349 ], [ -75.39467, 39.836169 ], [ -75.394799, 39.836089 ], [ -75.395049, 39.835929 ], [ -75.39539, 39.83621 ], [ -75.39566, 39.836439 ], [ -75.395959, 39.83669 ], [ -75.396129, 39.836829 ], [ -75.39634, 39.836989 ], [ -75.39666, 39.837249 ], [ -75.39701, 39.837549 ], [ -75.39759, 39.83802 ], [ -75.39761, 39.83803 ], [ -75.39782, 39.83821 ], [ -75.397989, 39.838349 ], [ -75.398209, 39.838529 ], [ -75.398519, 39.838779 ], [ -75.399109, 39.83927 ], [ -75.39935, 39.83946 ], [ -75.39998, 39.839959 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307153", "route_id": "128" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87889, 40.18067 ], [ -74.87875, 40.18055 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87772, 40.179779 ], [ -74.87771, 40.179619 ], [ -74.87777, 40.17951 ], [ -74.877819, 40.179429 ], [ -74.87794, 40.179359 ], [ -74.878269, 40.17931 ], [ -74.8784, 40.17929 ], [ -74.87848, 40.179279 ], [ -74.878809, 40.17923 ], [ -74.87906, 40.179189 ], [ -74.879439, 40.17913 ], [ -74.879949, 40.17904 ], [ -74.88019, 40.17902 ], [ -74.88032, 40.178979 ], [ -74.88064, 40.178889 ], [ -74.880849, 40.178819 ], [ -74.880929, 40.17879 ], [ -74.881019, 40.17875 ], [ -74.881159, 40.17868 ], [ -74.88135, 40.178559 ], [ -74.88154, 40.17843 ], [ -74.88182, 40.17822 ], [ -74.88203, 40.17807 ], [ -74.88222, 40.17794 ], [ -74.88235, 40.17786 ], [ -74.882459, 40.17779 ], [ -74.88252, 40.177749 ], [ -74.88267, 40.177649 ], [ -74.882829, 40.17758 ], [ -74.88329, 40.177379 ], [ -74.883449, 40.17731 ], [ -74.88384, 40.17713 ], [ -74.884039, 40.17704 ], [ -74.884259, 40.176939 ], [ -74.88479, 40.176729 ], [ -74.884569, 40.175839 ], [ -74.88451, 40.175589 ], [ -74.884409, 40.17516 ], [ -74.88438, 40.17506 ], [ -74.88434, 40.1749 ], [ -74.88429, 40.1747 ], [ -74.884269, 40.17465 ], [ -74.884179, 40.17445 ], [ -74.884049, 40.17426 ], [ -74.883989, 40.17419 ], [ -74.88392, 40.1741 ], [ -74.883679, 40.1739 ], [ -74.88344, 40.173689 ], [ -74.883359, 40.17363 ], [ -74.883179, 40.17348 ], [ -74.881789, 40.1723 ], [ -74.88168, 40.17221 ], [ -74.881469, 40.17203 ], [ -74.8811, 40.171709 ], [ -74.880259, 40.170999 ], [ -74.87996, 40.17074 ], [ -74.87928, 40.17015 ], [ -74.87889, 40.169809 ], [ -74.878769, 40.169709 ], [ -74.878639, 40.1696 ], [ -74.878199, 40.16921 ], [ -74.877789, 40.16886 ], [ -74.87744, 40.16853 ], [ -74.877279, 40.168379 ], [ -74.87723, 40.16834 ], [ -74.877149, 40.168269 ], [ -74.87673, 40.16789 ], [ -74.875889, 40.167179 ], [ -74.875619, 40.166929 ], [ -74.87552, 40.16687 ], [ -74.87543, 40.16679 ], [ -74.87516, 40.166559 ], [ -74.87506, 40.166469 ], [ -74.874629, 40.166049 ], [ -74.874449, 40.165869 ], [ -74.874359, 40.16579 ], [ -74.874219, 40.16565 ], [ -74.87402, 40.16546 ], [ -74.87388, 40.165319 ], [ -74.873769, 40.165209 ], [ -74.87345, 40.1649 ], [ -74.87331, 40.164759 ], [ -74.873279, 40.16473 ], [ -74.87303, 40.16446 ], [ -74.872919, 40.164339 ], [ -74.87253, 40.163949 ], [ -74.87227, 40.163679 ], [ -74.87217, 40.16357 ], [ -74.872109, 40.163509 ], [ -74.872, 40.16339 ], [ -74.871839, 40.163229 ], [ -74.871759, 40.163149 ], [ -74.87151, 40.162899 ], [ -74.87133, 40.162709 ], [ -74.87118, 40.16255 ], [ -74.871069, 40.162439 ], [ -74.870949, 40.16231 ], [ -74.87073, 40.162089 ], [ -74.870539, 40.161899 ], [ -74.87043, 40.161789 ], [ -74.87039, 40.16175 ], [ -74.870259, 40.161609 ], [ -74.870169, 40.161519 ], [ -74.86949, 40.160829 ], [ -74.86935, 40.16069 ], [ -74.869109, 40.160449 ], [ -74.868909, 40.16024 ], [ -74.868739, 40.16007 ], [ -74.868569, 40.159899 ], [ -74.86823, 40.159569 ], [ -74.86773, 40.15905 ], [ -74.86751, 40.158849 ], [ -74.86727, 40.158669 ], [ -74.86678, 40.158359 ], [ -74.866479, 40.158199 ], [ -74.86601, 40.15799 ], [ -74.865269, 40.157729 ], [ -74.86335, 40.157029 ], [ -74.86246, 40.15671 ], [ -74.86196, 40.15653 ], [ -74.86039, 40.155949 ], [ -74.85923, 40.15553 ], [ -74.859119, 40.155489 ], [ -74.85859, 40.1553 ], [ -74.858, 40.15509 ], [ -74.856949, 40.154689 ], [ -74.85643, 40.154499 ], [ -74.856279, 40.15445 ], [ -74.8562, 40.154419 ], [ -74.85599, 40.154339 ], [ -74.855649, 40.15421 ], [ -74.855559, 40.154169 ], [ -74.855279, 40.15438 ], [ -74.85512, 40.154499 ], [ -74.855019, 40.154579 ], [ -74.854839, 40.15472 ], [ -74.854649, 40.154869 ], [ -74.85458, 40.15492 ], [ -74.85436, 40.1551 ], [ -74.854249, 40.15519 ], [ -74.854159, 40.15527 ], [ -74.85409, 40.155319 ], [ -74.853979, 40.155409 ], [ -74.853789, 40.15557 ], [ -74.85363, 40.15571 ], [ -74.85323, 40.156049 ], [ -74.852809, 40.156409 ], [ -74.8527, 40.156499 ], [ -74.85225, 40.15689 ], [ -74.85201, 40.15709 ], [ -74.851959, 40.157139 ], [ -74.851859, 40.157219 ], [ -74.851729, 40.157319 ], [ -74.851139, 40.15781 ], [ -74.85062, 40.15825 ], [ -74.85032, 40.1585 ], [ -74.85004, 40.158729 ], [ -74.84977, 40.15895 ], [ -74.849569, 40.159109 ], [ -74.849309, 40.15932 ], [ -74.849199, 40.15941 ], [ -74.84888, 40.15967 ], [ -74.84869, 40.159819 ], [ -74.8485, 40.15997 ], [ -74.84829, 40.16014 ], [ -74.848119, 40.160279 ], [ -74.847859, 40.16051 ], [ -74.847729, 40.160629 ], [ -74.847539, 40.16079 ], [ -74.84748, 40.16084 ], [ -74.8473, 40.160989 ], [ -74.84716, 40.161099 ], [ -74.84697, 40.161259 ], [ -74.84676, 40.161439 ], [ -74.84671, 40.16148 ], [ -74.84653, 40.161629 ], [ -74.8464, 40.16174 ], [ -74.84604, 40.16204 ], [ -74.84536, 40.162619 ], [ -74.8446, 40.163239 ], [ -74.84384, 40.163859 ], [ -74.84355, 40.16409 ], [ -74.842869, 40.16462 ], [ -74.84262, 40.16482 ], [ -74.84243, 40.164959 ], [ -74.842229, 40.165119 ], [ -74.84185, 40.165419 ], [ -74.841119, 40.16511 ], [ -74.84068, 40.16492 ], [ -74.839079, 40.164319 ], [ -74.838949, 40.16427 ], [ -74.83815, 40.163949 ], [ -74.8369, 40.16346 ], [ -74.836199, 40.16318 ], [ -74.835039, 40.16273 ], [ -74.834399, 40.16248 ], [ -74.833999, 40.1623 ], [ -74.833809, 40.162179 ], [ -74.833639, 40.16204 ], [ -74.83357, 40.16196 ], [ -74.83312, 40.161359 ], [ -74.832779, 40.160919 ], [ -74.8325, 40.160539 ], [ -74.831969, 40.159839 ], [ -74.83047, 40.157819 ], [ -74.829949, 40.157129 ], [ -74.82929, 40.156239 ], [ -74.82903, 40.15589 ], [ -74.828739, 40.155499 ], [ -74.82866, 40.155399 ], [ -74.82816, 40.154699 ], [ -74.827969, 40.154439 ], [ -74.827749, 40.154159 ], [ -74.82755, 40.15391 ], [ -74.826709, 40.152789 ], [ -74.825769, 40.151529 ], [ -74.825009, 40.150469 ], [ -74.824089, 40.14923 ], [ -74.823459, 40.148379 ], [ -74.822919, 40.147599 ], [ -74.822799, 40.14743 ], [ -74.821449, 40.14554 ], [ -74.82123, 40.145239 ], [ -74.821039, 40.144979 ], [ -74.820949, 40.14485 ], [ -74.82084, 40.144699 ], [ -74.820759, 40.144589 ], [ -74.820539, 40.14428 ], [ -74.82083, 40.144159 ], [ -74.82119, 40.14403 ], [ -74.82146, 40.143909 ], [ -74.82123, 40.14357 ], [ -74.821129, 40.143429 ], [ -74.821029, 40.143279 ], [ -74.82096, 40.143189 ], [ -74.82092, 40.14313 ], [ -74.820819, 40.142979 ], [ -74.820719, 40.14284 ], [ -74.82061, 40.1427 ], [ -74.82051, 40.142549 ], [ -74.820399, 40.1424 ], [ -74.82025, 40.142199 ], [ -74.819909, 40.142349 ], [ -74.81936, 40.1426 ], [ -74.819189, 40.142359 ], [ -74.819099, 40.14223 ], [ -74.81904, 40.14214 ], [ -74.818829, 40.14185 ], [ -74.81873, 40.141709 ], [ -74.81849, 40.141369 ], [ -74.81835, 40.141179 ], [ -74.818209, 40.141029 ], [ -74.81804, 40.140849 ], [ -74.81795, 40.140759 ], [ -74.81787, 40.140719 ], [ -74.81746, 40.14043 ], [ -74.817309, 40.14032 ], [ -74.817169, 40.140449 ], [ -74.817, 40.14061 ], [ -74.81682, 40.14077 ], [ -74.816639, 40.140929 ], [ -74.81647, 40.141079 ], [ -74.816279, 40.14125 ], [ -74.816169, 40.141349 ], [ -74.81621, 40.14143 ], [ -74.81603, 40.14152 ], [ -74.815899, 40.1416 ], [ -74.81567, 40.14177 ], [ -74.815269, 40.14214 ], [ -74.81525, 40.142169 ], [ -74.815239, 40.14222 ], [ -74.81525, 40.142259 ], [ -74.815289, 40.1423 ], [ -74.815459, 40.14241 ], [ -74.81543, 40.142459 ], [ -74.815409, 40.14251 ], [ -74.8154, 40.14258 ], [ -74.815409, 40.142639 ], [ -74.815459, 40.1427 ], [ -74.815549, 40.14277 ], [ -74.81567, 40.14285 ], [ -74.815729, 40.14287 ], [ -74.81579, 40.14288 ], [ -74.81589, 40.14287 ], [ -74.8163, 40.142379 ], [ -74.81665, 40.14198 ], [ -74.817259, 40.141389 ], [ -74.817339, 40.14131 ], [ -74.81737, 40.141199 ], [ -74.8175, 40.141079 ], [ -74.81759, 40.140989 ], [ -74.81787, 40.140719 ], [ -74.81845, 40.140219 ], [ -74.818699, 40.140009 ], [ -74.81886, 40.13988 ], [ -74.819019, 40.139739 ], [ -74.81917, 40.139679 ], [ -74.81925, 40.13962 ], [ -74.81936, 40.13953 ], [ -74.820309, 40.13879 ], [ -74.820719, 40.13847 ], [ -74.820989, 40.13827 ], [ -74.821389, 40.138 ], [ -74.821529, 40.13791 ], [ -74.821749, 40.137759 ], [ -74.82192, 40.13765 ], [ -74.822159, 40.137499 ], [ -74.822479, 40.137299 ], [ -74.822559, 40.137249 ], [ -74.822929, 40.137029 ], [ -74.823379, 40.136759 ], [ -74.824049, 40.13637 ], [ -74.82484, 40.135899 ], [ -74.825309, 40.135629 ], [ -74.825359, 40.135599 ], [ -74.825539, 40.13549 ], [ -74.825859, 40.1353 ], [ -74.82609, 40.135159 ], [ -74.826439, 40.13496 ], [ -74.826569, 40.134879 ], [ -74.82677, 40.13476 ], [ -74.82723, 40.13449 ], [ -74.82754, 40.1343 ], [ -74.82772, 40.1342 ], [ -74.82812, 40.13397 ], [ -74.828279, 40.13387 ], [ -74.82843, 40.13378 ], [ -74.82863, 40.13366 ], [ -74.828739, 40.1336 ], [ -74.82885, 40.133529 ], [ -74.82897, 40.13343 ], [ -74.82903, 40.133369 ], [ -74.829099, 40.133289 ], [ -74.829449, 40.133089 ], [ -74.829639, 40.13298 ], [ -74.830079, 40.132729 ], [ -74.83056, 40.13243 ], [ -74.830809, 40.132259 ], [ -74.830939, 40.132169 ], [ -74.83115, 40.132079 ], [ -74.831259, 40.132019 ], [ -74.831349, 40.13195 ], [ -74.83146, 40.13187 ], [ -74.831559, 40.13179 ], [ -74.83168, 40.13168 ], [ -74.831749, 40.13162 ], [ -74.831929, 40.131449 ], [ -74.83199, 40.131399 ], [ -74.832109, 40.131279 ], [ -74.832459, 40.130929 ], [ -74.832519, 40.13087 ], [ -74.83267, 40.13071 ], [ -74.832739, 40.13064 ], [ -74.83294, 40.13044 ], [ -74.83298, 40.130399 ], [ -74.83304, 40.13034 ], [ -74.833329, 40.130049 ], [ -74.83348, 40.12989 ], [ -74.833509, 40.129839 ], [ -74.833539, 40.129759 ], [ -74.833559, 40.129669 ], [ -74.83361, 40.12962 ], [ -74.83371, 40.129509 ], [ -74.833779, 40.12944 ], [ -74.833859, 40.12936 ], [ -74.833989, 40.129229 ], [ -74.83407, 40.129149 ], [ -74.834399, 40.12882 ], [ -74.834629, 40.128589 ], [ -74.83483, 40.128399 ], [ -74.83511, 40.128129 ], [ -74.8352, 40.128039 ], [ -74.835259, 40.127979 ], [ -74.83547, 40.127769 ], [ -74.835489, 40.12775 ], [ -74.835569, 40.127709 ], [ -74.835669, 40.12764 ], [ -74.835789, 40.127519 ], [ -74.83582, 40.127489 ], [ -74.83605, 40.127259 ], [ -74.83614, 40.127169 ], [ -74.836199, 40.12711 ], [ -74.83641, 40.126899 ], [ -74.83658, 40.126719 ], [ -74.836879, 40.12641 ], [ -74.83717, 40.12612 ], [ -74.83775, 40.125529 ], [ -74.837779, 40.1255 ], [ -74.83798, 40.12529 ], [ -74.838409, 40.12486 ], [ -74.83865, 40.124619 ], [ -74.83887, 40.1244 ], [ -74.83928, 40.123979 ], [ -74.839359, 40.123899 ], [ -74.839489, 40.12376 ], [ -74.83959, 40.123649 ], [ -74.839839, 40.1234 ], [ -74.840219, 40.123019 ], [ -74.84045, 40.12279 ], [ -74.840709, 40.12253 ], [ -74.840979, 40.12225 ], [ -74.84131, 40.121919 ], [ -74.84163, 40.121589 ], [ -74.841779, 40.12144 ], [ -74.841929, 40.12128 ], [ -74.84208, 40.121129 ], [ -74.842469, 40.12074 ], [ -74.842679, 40.12052 ], [ -74.84276, 40.12044 ], [ -74.842869, 40.120329 ], [ -74.843009, 40.12019 ], [ -74.84312, 40.120059 ], [ -74.84316, 40.11999 ], [ -74.8432, 40.119869 ], [ -74.843309, 40.119759 ], [ -74.84348, 40.119589 ], [ -74.843669, 40.119399 ], [ -74.84373, 40.119339 ], [ -74.843899, 40.11917 ], [ -74.84432, 40.11874 ], [ -74.84411, 40.118599 ], [ -74.843939, 40.11846 ], [ -74.84388, 40.118399 ], [ -74.84375, 40.11829 ], [ -74.84366, 40.11819 ], [ -74.84361, 40.118129 ], [ -74.84339, 40.11784 ], [ -74.84329, 40.117719 ], [ -74.842769, 40.11703 ], [ -74.84271, 40.11694 ], [ -74.842419, 40.116549 ], [ -74.841869, 40.115799 ], [ -74.8418, 40.115709 ], [ -74.84171, 40.1156 ], [ -74.841549, 40.11539 ], [ -74.841339, 40.11512 ], [ -74.84095, 40.114619 ], [ -74.840739, 40.114349 ], [ -74.84059, 40.11416 ], [ -74.840379, 40.11387 ], [ -74.839579, 40.112829 ], [ -74.83937, 40.11255 ], [ -74.83919, 40.112309 ], [ -74.838639, 40.111589 ], [ -74.83853, 40.11145 ], [ -74.838279, 40.111119 ], [ -74.838129, 40.110929 ], [ -74.83798, 40.11073 ], [ -74.8377, 40.11035 ], [ -74.8373, 40.10983 ], [ -74.837139, 40.109619 ], [ -74.837049, 40.109509 ], [ -74.836969, 40.109409 ], [ -74.8369, 40.109349 ], [ -74.83699, 40.109159 ], [ -74.837009, 40.10912 ], [ -74.83708, 40.10901 ], [ -74.83716, 40.108889 ], [ -74.837199, 40.10883 ], [ -74.837319, 40.10868 ], [ -74.83739, 40.108609 ], [ -74.838039, 40.10792 ], [ -74.83848, 40.107459 ], [ -74.8391, 40.106799 ], [ -74.839529, 40.106349 ], [ -74.840199, 40.105639 ], [ -74.840609, 40.105209 ], [ -74.84109, 40.1047 ], [ -74.841699, 40.10405 ], [ -74.84261, 40.1045 ], [ -74.84311, 40.10472 ], [ -74.844129, 40.105169 ], [ -74.844339, 40.104899 ], [ -74.844519, 40.10486 ], [ -74.84492, 40.104649 ], [ -74.84514, 40.104549 ], [ -74.84554, 40.10432 ], [ -74.845919, 40.104099 ], [ -74.847359, 40.10336 ], [ -74.84748, 40.103299 ], [ -74.84805, 40.103019 ], [ -74.848579, 40.10272 ], [ -74.849349, 40.10229 ], [ -74.84815, 40.10091 ], [ -74.84779, 40.100509 ], [ -74.84748, 40.100159 ], [ -74.84726, 40.09993 ], [ -74.84693, 40.09957 ], [ -74.84725, 40.0994 ], [ -74.848269, 40.09887 ], [ -74.849169, 40.0984 ], [ -74.849889, 40.09802 ], [ -74.849969, 40.097979 ], [ -74.85009, 40.097919 ], [ -74.85108, 40.0974 ], [ -74.851829, 40.097019 ], [ -74.8522, 40.096819 ], [ -74.85282, 40.09649 ], [ -74.852859, 40.096469 ], [ -74.854069, 40.095839 ], [ -74.85468, 40.09551 ], [ -74.85558, 40.095039 ], [ -74.85634, 40.09554 ], [ -74.85752, 40.09624 ], [ -74.857839, 40.096449 ], [ -74.858379, 40.09679 ], [ -74.858579, 40.096909 ], [ -74.858619, 40.09694 ], [ -74.858829, 40.097069 ], [ -74.85967, 40.096749 ], [ -74.85986, 40.09668 ], [ -74.85995, 40.096729 ], [ -74.860149, 40.09686 ], [ -74.86031, 40.09694 ], [ -74.860469, 40.096979 ], [ -74.860639, 40.096999 ], [ -74.8607, 40.097169 ], [ -74.860769, 40.09732 ], [ -74.86103, 40.097809 ], [ -74.86116, 40.098069 ], [ -74.86147, 40.098639 ], [ -74.861799, 40.09922 ], [ -74.861859, 40.099349 ], [ -74.86192, 40.09949 ], [ -74.86255, 40.100679 ], [ -74.862759, 40.101069 ], [ -74.862789, 40.101129 ], [ -74.86286, 40.10128 ], [ -74.862929, 40.101419 ], [ -74.86301, 40.101569 ], [ -74.86304, 40.10162 ], [ -74.86309, 40.10171 ], [ -74.86314, 40.1018 ], [ -74.86319, 40.101879 ], [ -74.863329, 40.102119 ], [ -74.863569, 40.102489 ], [ -74.863599, 40.10253 ], [ -74.863699, 40.10265 ], [ -74.863749, 40.10272 ], [ -74.8639, 40.10292 ], [ -74.864059, 40.1031 ], [ -74.86417, 40.10326 ], [ -74.864199, 40.103309 ], [ -74.864279, 40.10342 ], [ -74.8644, 40.1036 ], [ -74.86449, 40.103769 ], [ -74.86463, 40.10406 ], [ -74.864649, 40.104099 ], [ -74.86467, 40.10418 ], [ -74.86475, 40.104459 ], [ -74.864779, 40.104639 ], [ -74.86557, 40.104639 ], [ -74.865759, 40.10525 ], [ -74.865809, 40.10532 ], [ -74.865899, 40.1054 ], [ -74.86597, 40.105469 ], [ -74.86624, 40.105629 ], [ -74.866349, 40.10568 ], [ -74.866489, 40.105749 ], [ -74.86692, 40.105989 ], [ -74.867129, 40.10612 ], [ -74.86705, 40.106189 ], [ -74.86673, 40.106549 ], [ -74.867799, 40.107089 ], [ -74.86832, 40.107349 ], [ -74.868379, 40.10738 ], [ -74.870049, 40.10823 ], [ -74.870539, 40.10768 ], [ -74.87064, 40.10756 ], [ -74.871, 40.10711 ], [ -74.871079, 40.106999 ], [ -74.871209, 40.106899 ], [ -74.87128, 40.10686 ], [ -74.87178, 40.106739 ], [ -74.872199, 40.10767 ], [ -74.872419, 40.10812 ], [ -74.872559, 40.10829 ], [ -74.872739, 40.108419 ], [ -74.872839, 40.10846 ], [ -74.87294, 40.1085 ], [ -74.873149, 40.108539 ], [ -74.873369, 40.108529 ], [ -74.87367, 40.108439 ], [ -74.873769, 40.108419 ], [ -74.87561, 40.10785 ], [ -74.875749, 40.10774 ], [ -74.875849, 40.10759 ], [ -74.875889, 40.10741 ], [ -74.87587, 40.10731 ], [ -74.876559, 40.10712 ], [ -74.877029, 40.106989 ], [ -74.87705, 40.10704 ], [ -74.87714, 40.10724 ], [ -74.877159, 40.107279 ], [ -74.87727, 40.10751 ], [ -74.87736, 40.107719 ], [ -74.87744, 40.107879 ], [ -74.877549, 40.10811 ], [ -74.87767, 40.108329 ], [ -74.877819, 40.10867 ], [ -74.87795, 40.10895 ], [ -74.87798, 40.10902 ], [ -74.87843, 40.109979 ], [ -74.878459, 40.110039 ], [ -74.87849, 40.11011 ], [ -74.878549, 40.110229 ], [ -74.87857, 40.11026 ], [ -74.87866, 40.11044 ], [ -74.878729, 40.110589 ], [ -74.87879, 40.11072 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.87879, 40.11072 ], [ -74.878729, 40.110589 ], [ -74.87866, 40.11044 ], [ -74.87857, 40.11026 ], [ -74.878549, 40.110229 ], [ -74.87849, 40.11011 ], [ -74.878459, 40.110039 ], [ -74.87843, 40.109979 ], [ -74.87798, 40.10902 ], [ -74.87795, 40.10895 ], [ -74.877819, 40.10867 ], [ -74.87767, 40.108329 ], [ -74.877549, 40.10811 ], [ -74.87744, 40.107879 ], [ -74.87736, 40.107719 ], [ -74.87727, 40.10751 ], [ -74.877159, 40.107279 ], [ -74.87714, 40.10724 ], [ -74.87705, 40.10704 ], [ -74.877029, 40.106989 ], [ -74.87695, 40.106809 ], [ -74.876829, 40.106559 ], [ -74.87669, 40.106279 ], [ -74.876659, 40.10621 ], [ -74.876529, 40.105929 ], [ -74.876379, 40.1056 ], [ -74.87632, 40.105469 ], [ -74.87619, 40.105199 ], [ -74.876169, 40.10516 ], [ -74.8761, 40.105019 ], [ -74.875989, 40.1048 ], [ -74.87565, 40.10409 ], [ -74.875569, 40.103919 ], [ -74.875439, 40.10363 ], [ -74.875389, 40.10352 ], [ -74.87501, 40.10265 ], [ -74.87487, 40.10227 ], [ -74.874849, 40.102219 ], [ -74.874809, 40.102129 ], [ -74.87478, 40.102039 ], [ -74.8747, 40.101789 ], [ -74.87466, 40.101669 ], [ -74.87462, 40.10153 ], [ -74.87456, 40.10128 ], [ -74.874499, 40.101 ], [ -74.87448, 40.1009 ], [ -74.874459, 40.10073 ], [ -74.87393, 40.100779 ], [ -74.873649, 40.10081 ], [ -74.87343, 40.100859 ], [ -74.87327, 40.10092 ], [ -74.87313, 40.10101 ], [ -74.873049, 40.101119 ], [ -74.872919, 40.101299 ], [ -74.872779, 40.10154 ], [ -74.872689, 40.101679 ], [ -74.87249, 40.101609 ], [ -74.872419, 40.101579 ], [ -74.87177, 40.101339 ], [ -74.871799, 40.10128 ], [ -74.871659, 40.101229 ], [ -74.87146, 40.101149 ], [ -74.87124, 40.101069 ], [ -74.871039, 40.10099 ], [ -74.87082, 40.10091 ], [ -74.87061, 40.10083 ], [ -74.87039, 40.10074 ], [ -74.87029, 40.100859 ], [ -74.87012, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.869819, 40.100959 ], [ -74.86965, 40.100859 ], [ -74.86952, 40.10081 ], [ -74.869109, 40.10074 ], [ -74.86895, 40.100689 ], [ -74.868869, 40.100619 ], [ -74.868819, 40.10056 ], [ -74.86858, 40.10012 ], [ -74.869459, 40.09985 ], [ -74.869679, 40.099789 ], [ -74.87024, 40.099609 ], [ -74.870669, 40.09947 ], [ -74.87096, 40.09938 ], [ -74.87187, 40.0991 ], [ -74.872059, 40.09904 ], [ -74.872199, 40.098999 ], [ -74.87299, 40.09876 ], [ -74.873289, 40.09867 ], [ -74.873639, 40.09857 ], [ -74.87389, 40.09851 ], [ -74.874219, 40.098459 ], [ -74.87448, 40.09847 ], [ -74.874549, 40.09848 ], [ -74.87462, 40.0985 ], [ -74.87466, 40.098519 ], [ -74.87469, 40.098539 ], [ -74.874719, 40.09857 ], [ -74.87474, 40.0986 ], [ -74.87479, 40.09869 ], [ -74.87483, 40.09878 ], [ -74.87487, 40.098889 ], [ -74.874899, 40.09904 ], [ -74.87492, 40.099159 ], [ -74.87492, 40.099239 ], [ -74.874909, 40.09931 ], [ -74.87489, 40.09937 ], [ -74.87487, 40.09941 ], [ -74.874849, 40.099439 ], [ -74.874819, 40.09947 ], [ -74.87479, 40.09949 ], [ -74.87474, 40.099509 ], [ -74.87469, 40.099519 ], [ -74.874639, 40.099519 ], [ -74.874589, 40.099509 ], [ -74.87453, 40.09949 ], [ -74.87447, 40.09946 ], [ -74.87438, 40.0994 ], [ -74.87421, 40.099269 ], [ -74.874139, 40.099079 ], [ -74.87407, 40.098899 ], [ -74.87406, 40.098879 ], [ -74.87389, 40.09851 ], [ -74.873859, 40.098459 ], [ -74.87381, 40.0984 ], [ -74.87376, 40.098359 ], [ -74.873639, 40.0983 ], [ -74.87348, 40.09824 ], [ -74.87327, 40.098159 ], [ -74.872959, 40.098069 ], [ -74.8729, 40.098009 ], [ -74.87286, 40.09796 ], [ -74.872779, 40.09785 ], [ -74.87276, 40.097819 ], [ -74.872739, 40.097789 ], [ -74.87272, 40.097739 ], [ -74.87271, 40.097699 ], [ -74.872699, 40.097649 ], [ -74.872699, 40.09758 ], [ -74.872699, 40.097519 ], [ -74.872699, 40.097439 ], [ -74.872739, 40.097379 ], [ -74.87299, 40.09703 ], [ -74.87307, 40.096919 ], [ -74.87317, 40.09677 ], [ -74.873379, 40.096629 ], [ -74.873549, 40.096559 ], [ -74.873729, 40.096559 ], [ -74.87397, 40.0966 ], [ -74.87442, 40.096799 ], [ -74.874489, 40.096829 ], [ -74.8746, 40.09686 ], [ -74.87469, 40.09688 ], [ -74.87489, 40.09687 ], [ -74.875089, 40.096819 ], [ -74.87534, 40.096729 ], [ -74.876299, 40.096299 ], [ -74.876609, 40.09616 ], [ -74.877059, 40.09596 ], [ -74.879129, 40.09506 ], [ -74.879589, 40.094859 ], [ -74.880349, 40.09455 ], [ -74.881379, 40.0941 ], [ -74.882679, 40.09353 ], [ -74.88317, 40.093329 ], [ -74.883309, 40.09328 ], [ -74.88344, 40.093229 ], [ -74.88366, 40.09317 ], [ -74.883899, 40.0931 ], [ -74.88456, 40.09289 ], [ -74.885019, 40.092749 ], [ -74.885389, 40.09264 ], [ -74.885519, 40.092599 ], [ -74.886509, 40.092329 ], [ -74.88744, 40.092039 ], [ -74.887779, 40.091939 ], [ -74.88824, 40.09181 ], [ -74.888809, 40.09164 ], [ -74.88983, 40.091339 ], [ -74.89085, 40.09104 ], [ -74.891869, 40.09073 ], [ -74.892909, 40.090419 ], [ -74.89391, 40.09012 ], [ -74.894799, 40.08985 ], [ -74.895729, 40.08958 ], [ -74.89626, 40.08942 ], [ -74.896689, 40.0893 ], [ -74.89765, 40.088999 ], [ -74.898439, 40.08878 ], [ -74.89883, 40.08866 ], [ -74.89936, 40.08849 ], [ -74.90034, 40.08821 ], [ -74.9013, 40.087919 ], [ -74.90162, 40.087829 ], [ -74.90206, 40.087709 ], [ -74.90225, 40.087659 ], [ -74.90319, 40.087369 ], [ -74.90354, 40.08726 ], [ -74.903619, 40.08724 ], [ -74.904069, 40.087119 ], [ -74.90423, 40.08743 ], [ -74.904789, 40.088549 ], [ -74.905239, 40.08941 ], [ -74.905689, 40.090359 ], [ -74.90593, 40.09085 ], [ -74.906309, 40.09166 ], [ -74.9067, 40.092429 ], [ -74.90678, 40.092579 ], [ -74.90679, 40.092609 ], [ -74.90697, 40.09298 ], [ -74.907119, 40.09327 ], [ -74.907169, 40.09347 ], [ -74.90718, 40.09352 ], [ -74.907219, 40.09364 ], [ -74.907299, 40.0937 ], [ -74.90741, 40.09372 ], [ -74.907519, 40.09372 ], [ -74.907579, 40.0937 ], [ -74.907879, 40.093659 ], [ -74.90796, 40.09365 ], [ -74.908019, 40.09364 ], [ -74.9081, 40.09363 ], [ -74.908249, 40.09362 ], [ -74.90836, 40.09363 ], [ -74.908429, 40.093669 ], [ -74.9085, 40.09374 ], [ -74.90853, 40.09381 ], [ -74.90855, 40.0939 ], [ -74.90822, 40.09392 ], [ -74.9079, 40.093939 ], [ -74.907519, 40.09397 ], [ -74.907399, 40.09398 ], [ -74.907339, 40.09391 ], [ -74.907209, 40.09383 ], [ -74.907079, 40.09374 ], [ -74.906489, 40.0938 ], [ -74.906489, 40.09391 ], [ -74.906499, 40.094049 ], [ -74.90723, 40.09399 ], [ -74.907399, 40.09398 ], [ -74.907519, 40.09397 ], [ -74.9079, 40.093939 ], [ -74.90822, 40.09392 ], [ -74.90855, 40.0939 ], [ -74.908829, 40.09388 ], [ -74.909, 40.093869 ], [ -74.90918, 40.093859 ], [ -74.909379, 40.093839 ], [ -74.90949, 40.09383 ], [ -74.90958, 40.09383 ], [ -74.909729, 40.09382 ], [ -74.90984, 40.09381 ], [ -74.910039, 40.0938 ], [ -74.910189, 40.09379 ], [ -74.91061, 40.093759 ], [ -74.91084, 40.093749 ], [ -74.910999, 40.09374 ], [ -74.911659, 40.0937 ], [ -74.911809, 40.093689 ], [ -74.912399, 40.093659 ], [ -74.912479, 40.09365 ], [ -74.912669, 40.09364 ], [ -74.912919, 40.09363 ], [ -74.913059, 40.09362 ], [ -74.91341, 40.093589 ], [ -74.913739, 40.093569 ], [ -74.91402, 40.09355 ], [ -74.91422, 40.09354 ], [ -74.914599, 40.093509 ], [ -74.91488, 40.093479 ], [ -74.91537, 40.093409 ], [ -74.91566, 40.09335 ], [ -74.916, 40.09328 ], [ -74.91645, 40.09319 ], [ -74.91655, 40.09317 ], [ -74.916889, 40.09309 ], [ -74.91749, 40.092959 ], [ -74.917599, 40.092939 ], [ -74.9183, 40.092779 ], [ -74.91961, 40.092479 ], [ -74.919949, 40.092409 ], [ -74.920569, 40.09229 ], [ -74.92073, 40.09226 ], [ -74.920939, 40.092209 ], [ -74.92114, 40.092159 ], [ -74.921429, 40.092069 ], [ -74.921789, 40.091969 ], [ -74.92208, 40.0919 ], [ -74.92248, 40.09181 ], [ -74.9229, 40.091689 ], [ -74.92326, 40.09157 ], [ -74.923509, 40.09146 ], [ -74.92374, 40.091349 ], [ -74.92401, 40.091149 ], [ -74.924179, 40.09102 ], [ -74.92442, 40.09086 ], [ -74.924539, 40.090779 ], [ -74.92488, 40.090529 ], [ -74.925169, 40.09032 ], [ -74.92538, 40.090159 ], [ -74.925479, 40.090089 ], [ -74.925749, 40.089889 ], [ -74.925979, 40.089719 ], [ -74.926209, 40.089549 ], [ -74.926329, 40.089459 ], [ -74.92654, 40.0893 ], [ -74.92686, 40.08906 ], [ -74.92727, 40.08876 ], [ -74.92739, 40.08867 ], [ -74.92745, 40.088629 ], [ -74.92785, 40.08833 ], [ -74.92826, 40.088019 ], [ -74.928539, 40.087819 ], [ -74.928719, 40.08768 ], [ -74.928959, 40.08752 ], [ -74.929229, 40.08732 ], [ -74.929309, 40.08726 ], [ -74.929539, 40.087099 ], [ -74.929769, 40.08696 ], [ -74.929989, 40.08686 ], [ -74.930219, 40.08678 ], [ -74.930479, 40.08671 ], [ -74.931009, 40.08661 ], [ -74.931339, 40.08653 ], [ -74.93166, 40.08642 ], [ -74.931869, 40.08633 ], [ -74.93199, 40.08627 ], [ -74.932099, 40.086209 ], [ -74.932189, 40.08615 ], [ -74.932279, 40.08608 ], [ -74.932369, 40.086 ], [ -74.93256, 40.08582 ], [ -74.93271, 40.085669 ], [ -74.93302, 40.085399 ], [ -74.933219, 40.08525 ], [ -74.93328, 40.08519 ], [ -74.93342, 40.08509 ], [ -74.933579, 40.08498 ], [ -74.93374, 40.08488 ], [ -74.93393, 40.084779 ], [ -74.93423, 40.08463 ], [ -74.934519, 40.085 ], [ -74.93474, 40.08524 ], [ -74.934849, 40.08534 ], [ -74.935, 40.08546 ], [ -74.935289, 40.085589 ], [ -74.935659, 40.08572 ], [ -74.93603, 40.085849 ], [ -74.93631, 40.08598 ], [ -74.936649, 40.08617 ], [ -74.936829, 40.086279 ], [ -74.93716, 40.0865 ], [ -74.937309, 40.08669 ], [ -74.93756, 40.08699 ], [ -74.93771, 40.08716 ], [ -74.93788, 40.087359 ], [ -74.93837, 40.08795 ], [ -74.938889, 40.088629 ], [ -74.93909, 40.088889 ], [ -74.939429, 40.08933 ], [ -74.939649, 40.089609 ], [ -74.93973, 40.089709 ], [ -74.939839, 40.08985 ], [ -74.93995, 40.089989 ], [ -74.940199, 40.0903 ], [ -74.94054, 40.090709 ], [ -74.94129, 40.091609 ], [ -74.94161, 40.09199 ], [ -74.94179, 40.0922 ], [ -74.94189, 40.092329 ], [ -74.942049, 40.092519 ], [ -74.942089, 40.092569 ], [ -74.94216, 40.092659 ], [ -74.942269, 40.09281 ], [ -74.942319, 40.092879 ], [ -74.94238, 40.092949 ], [ -74.94246, 40.093049 ], [ -74.94261, 40.093219 ], [ -74.9427, 40.093319 ], [ -74.942759, 40.093399 ], [ -74.94287, 40.09352 ], [ -74.94328, 40.094029 ], [ -74.94382, 40.09469 ], [ -74.94386, 40.094739 ], [ -74.94404, 40.09496 ], [ -74.94431, 40.095279 ], [ -74.944429, 40.09544 ], [ -74.944479, 40.0955 ], [ -74.94454, 40.095569 ], [ -74.94499, 40.09614 ], [ -74.945289, 40.09649 ], [ -74.94536, 40.09658 ], [ -74.94549, 40.096729 ], [ -74.94558, 40.096839 ], [ -74.945779, 40.097079 ], [ -74.945909, 40.09724 ], [ -74.945959, 40.097289 ], [ -74.94611, 40.097459 ], [ -74.946269, 40.097649 ], [ -74.946359, 40.09776 ], [ -74.94662, 40.098069 ], [ -74.94671, 40.098169 ], [ -74.946909, 40.09841 ], [ -74.946999, 40.098519 ], [ -74.9471, 40.098639 ], [ -74.947139, 40.09869 ], [ -74.94729, 40.09886 ], [ -74.947349, 40.09894 ], [ -74.947619, 40.099259 ], [ -74.947659, 40.0993 ], [ -74.947849, 40.099519 ], [ -74.947949, 40.09964 ], [ -74.948029, 40.09974 ], [ -74.948209, 40.099979 ], [ -74.948379, 40.1002 ], [ -74.948469, 40.100339 ], [ -74.948569, 40.100499 ], [ -74.94878, 40.10084 ], [ -74.94887, 40.10099 ], [ -74.949109, 40.101489 ], [ -74.949249, 40.101779 ], [ -74.949419, 40.102149 ], [ -74.94949, 40.102309 ], [ -74.94954, 40.10243 ], [ -74.94962, 40.102589 ], [ -74.949729, 40.10283 ], [ -74.9498, 40.10298 ], [ -74.94998, 40.10337 ], [ -74.950009, 40.10343 ], [ -74.950059, 40.10354 ], [ -74.95021, 40.103849 ], [ -74.950279, 40.104 ], [ -74.9503, 40.10405 ], [ -74.95039, 40.10424 ], [ -74.95044, 40.10434 ], [ -74.950499, 40.104459 ], [ -74.95071, 40.104899 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957029, 40.114389 ], [ -74.95714, 40.114559 ], [ -74.957289, 40.114829 ], [ -74.95736, 40.115009 ], [ -74.95737, 40.115249 ], [ -74.957289, 40.11542 ], [ -74.957169, 40.11557 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952439, 40.12079 ], [ -74.95268, 40.121229 ], [ -74.95287, 40.121569 ], [ -74.952929, 40.12162 ], [ -74.95304, 40.121649 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.958909, 40.11747 ], [ -74.95903, 40.117449 ], [ -74.95917, 40.11746 ], [ -74.9593, 40.117509 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307155", "route_id": "128" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87889, 40.18067 ], [ -74.87875, 40.18055 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87772, 40.179779 ], [ -74.87771, 40.179619 ], [ -74.87777, 40.17951 ], [ -74.877819, 40.179429 ], [ -74.87794, 40.179359 ], [ -74.878269, 40.17931 ], [ -74.8784, 40.17929 ], [ -74.87848, 40.179279 ], [ -74.878809, 40.17923 ], [ -74.87906, 40.179189 ], [ -74.879439, 40.17913 ], [ -74.879949, 40.17904 ], [ -74.88019, 40.17902 ], [ -74.88032, 40.178979 ], [ -74.88064, 40.178889 ], [ -74.880849, 40.178819 ], [ -74.880929, 40.17879 ], [ -74.881019, 40.17875 ], [ -74.881159, 40.17868 ], [ -74.88135, 40.178559 ], [ -74.88154, 40.17843 ], [ -74.88182, 40.17822 ], [ -74.88203, 40.17807 ], [ -74.88222, 40.17794 ], [ -74.88235, 40.17786 ], [ -74.882459, 40.17779 ], [ -74.88252, 40.177749 ], [ -74.88267, 40.177649 ], [ -74.882829, 40.17758 ], [ -74.88329, 40.177379 ], [ -74.883449, 40.17731 ], [ -74.88384, 40.17713 ], [ -74.884039, 40.17704 ], [ -74.884259, 40.176939 ], [ -74.88479, 40.176729 ], [ -74.884569, 40.175839 ], [ -74.88451, 40.175589 ], [ -74.884409, 40.17516 ], [ -74.88438, 40.17506 ], [ -74.88434, 40.1749 ], [ -74.88429, 40.1747 ], [ -74.884269, 40.17465 ], [ -74.884179, 40.17445 ], [ -74.884049, 40.17426 ], [ -74.883989, 40.17419 ], [ -74.88392, 40.1741 ], [ -74.883679, 40.1739 ], [ -74.88344, 40.173689 ], [ -74.883359, 40.17363 ], [ -74.883179, 40.17348 ], [ -74.881789, 40.1723 ], [ -74.88168, 40.17221 ], [ -74.881469, 40.17203 ], [ -74.8811, 40.171709 ], [ -74.880259, 40.170999 ], [ -74.87996, 40.17074 ], [ -74.87928, 40.17015 ], [ -74.87889, 40.169809 ], [ -74.878769, 40.169709 ], [ -74.878639, 40.1696 ], [ -74.878199, 40.16921 ], [ -74.877789, 40.16886 ], [ -74.87744, 40.16853 ], [ -74.877279, 40.168379 ], [ -74.87723, 40.16834 ], [ -74.877149, 40.168269 ], [ -74.87673, 40.16789 ], [ -74.875889, 40.167179 ], [ -74.875619, 40.166929 ], [ -74.87552, 40.16687 ], [ -74.87543, 40.16679 ], [ -74.87516, 40.166559 ], [ -74.87506, 40.166469 ], [ -74.874629, 40.166049 ], [ -74.874449, 40.165869 ], [ -74.874359, 40.16579 ], [ -74.874219, 40.16565 ], [ -74.87402, 40.16546 ], [ -74.87388, 40.165319 ], [ -74.873769, 40.165209 ], [ -74.87345, 40.1649 ], [ -74.87331, 40.164759 ], [ -74.873279, 40.16473 ], [ -74.87303, 40.16446 ], [ -74.872919, 40.164339 ], [ -74.87253, 40.163949 ], [ -74.87227, 40.163679 ], [ -74.87217, 40.16357 ], [ -74.872109, 40.163509 ], [ -74.872, 40.16339 ], [ -74.871839, 40.163229 ], [ -74.871759, 40.163149 ], [ -74.87151, 40.162899 ], [ -74.87133, 40.162709 ], [ -74.87118, 40.16255 ], [ -74.871069, 40.162439 ], [ -74.870949, 40.16231 ], [ -74.87073, 40.162089 ], [ -74.870539, 40.161899 ], [ -74.87043, 40.161789 ], [ -74.87039, 40.16175 ], [ -74.870259, 40.161609 ], [ -74.870169, 40.161519 ], [ -74.86949, 40.160829 ], [ -74.86935, 40.16069 ], [ -74.869109, 40.160449 ], [ -74.868909, 40.16024 ], [ -74.868739, 40.16007 ], [ -74.868569, 40.159899 ], [ -74.86823, 40.159569 ], [ -74.86773, 40.15905 ], [ -74.86751, 40.158849 ], [ -74.86727, 40.158669 ], [ -74.86678, 40.158359 ], [ -74.866479, 40.158199 ], [ -74.86601, 40.15799 ], [ -74.865269, 40.157729 ], [ -74.86335, 40.157029 ], [ -74.86246, 40.15671 ], [ -74.86196, 40.15653 ], [ -74.86039, 40.155949 ], [ -74.85923, 40.15553 ], [ -74.859119, 40.155489 ], [ -74.85859, 40.1553 ], [ -74.858, 40.15509 ], [ -74.856949, 40.154689 ], [ -74.85643, 40.154499 ], [ -74.856279, 40.15445 ], [ -74.8562, 40.154419 ], [ -74.85599, 40.154339 ], [ -74.855649, 40.15421 ], [ -74.855559, 40.154169 ], [ -74.855279, 40.15438 ], [ -74.85512, 40.154499 ], [ -74.855019, 40.154579 ], [ -74.854839, 40.15472 ], [ -74.854649, 40.154869 ], [ -74.85458, 40.15492 ], [ -74.85436, 40.1551 ], [ -74.854249, 40.15519 ], [ -74.854159, 40.15527 ], [ -74.85409, 40.155319 ], [ -74.853979, 40.155409 ], [ -74.853789, 40.15557 ], [ -74.85363, 40.15571 ], [ -74.85323, 40.156049 ], [ -74.852809, 40.156409 ], [ -74.8527, 40.156499 ], [ -74.85225, 40.15689 ], [ -74.85201, 40.15709 ], [ -74.851959, 40.157139 ], [ -74.851859, 40.157219 ], [ -74.851729, 40.157319 ], [ -74.851139, 40.15781 ], [ -74.85062, 40.15825 ], [ -74.85032, 40.1585 ], [ -74.85004, 40.158729 ], [ -74.84977, 40.15895 ], [ -74.849569, 40.159109 ], [ -74.849309, 40.15932 ], [ -74.849199, 40.15941 ], [ -74.84888, 40.15967 ], [ -74.84869, 40.159819 ], [ -74.8485, 40.15997 ], [ -74.84829, 40.16014 ], [ -74.848119, 40.160279 ], [ -74.847859, 40.16051 ], [ -74.847729, 40.160629 ], [ -74.847539, 40.16079 ], [ -74.84748, 40.16084 ], [ -74.8473, 40.160989 ], [ -74.84716, 40.161099 ], [ -74.84697, 40.161259 ], [ -74.84676, 40.161439 ], [ -74.84671, 40.16148 ], [ -74.84653, 40.161629 ], [ -74.8464, 40.16174 ], [ -74.84604, 40.16204 ], [ -74.84536, 40.162619 ], [ -74.8446, 40.163239 ], [ -74.84384, 40.163859 ], [ -74.84355, 40.16409 ], [ -74.842869, 40.16462 ], [ -74.84262, 40.16482 ], [ -74.84243, 40.164959 ], [ -74.842229, 40.165119 ], [ -74.84185, 40.165419 ], [ -74.841119, 40.16511 ], [ -74.84068, 40.16492 ], [ -74.839079, 40.164319 ], [ -74.838949, 40.16427 ], [ -74.83815, 40.163949 ], [ -74.8369, 40.16346 ], [ -74.836199, 40.16318 ], [ -74.835039, 40.16273 ], [ -74.834399, 40.16248 ], [ -74.833999, 40.1623 ], [ -74.833809, 40.162179 ], [ -74.833639, 40.16204 ], [ -74.83357, 40.16196 ], [ -74.83312, 40.161359 ], [ -74.832779, 40.160919 ], [ -74.8325, 40.160539 ], [ -74.831969, 40.159839 ], [ -74.83047, 40.157819 ], [ -74.829949, 40.157129 ], [ -74.82929, 40.156239 ], [ -74.82903, 40.15589 ], [ -74.828739, 40.155499 ], [ -74.82866, 40.155399 ], [ -74.82816, 40.154699 ], [ -74.827969, 40.154439 ], [ -74.827749, 40.154159 ], [ -74.82755, 40.15391 ], [ -74.826709, 40.152789 ], [ -74.825769, 40.151529 ], [ -74.825009, 40.150469 ], [ -74.824089, 40.14923 ], [ -74.823459, 40.148379 ], [ -74.822919, 40.147599 ], [ -74.822799, 40.14743 ], [ -74.821449, 40.14554 ], [ -74.82123, 40.145239 ], [ -74.821039, 40.144979 ], [ -74.820949, 40.14485 ], [ -74.82084, 40.144699 ], [ -74.820759, 40.144589 ], [ -74.820539, 40.14428 ], [ -74.82083, 40.144159 ], [ -74.82119, 40.14403 ], [ -74.82146, 40.143909 ], [ -74.82123, 40.14357 ], [ -74.821129, 40.143429 ], [ -74.821029, 40.143279 ], [ -74.82096, 40.143189 ], [ -74.82092, 40.14313 ], [ -74.820819, 40.142979 ], [ -74.820719, 40.14284 ], [ -74.82061, 40.1427 ], [ -74.82051, 40.142549 ], [ -74.820399, 40.1424 ], [ -74.82025, 40.142199 ], [ -74.819909, 40.142349 ], [ -74.81936, 40.1426 ], [ -74.819189, 40.142359 ], [ -74.819099, 40.14223 ], [ -74.81904, 40.14214 ], [ -74.818829, 40.14185 ], [ -74.81873, 40.141709 ], [ -74.81849, 40.141369 ], [ -74.81835, 40.141179 ], [ -74.818209, 40.141029 ], [ -74.81804, 40.140849 ], [ -74.81795, 40.140759 ], [ -74.81787, 40.140719 ], [ -74.81746, 40.14043 ], [ -74.817309, 40.14032 ], [ -74.817169, 40.140449 ], [ -74.817, 40.14061 ], [ -74.81682, 40.14077 ], [ -74.816639, 40.140929 ], [ -74.81647, 40.141079 ], [ -74.816279, 40.14125 ], [ -74.816169, 40.141349 ], [ -74.81621, 40.14143 ], [ -74.81603, 40.14152 ], [ -74.815899, 40.1416 ], [ -74.81567, 40.14177 ], [ -74.815269, 40.14214 ], [ -74.81525, 40.142169 ], [ -74.815239, 40.14222 ], [ -74.81525, 40.142259 ], [ -74.815289, 40.1423 ], [ -74.815459, 40.14241 ], [ -74.81543, 40.142459 ], [ -74.815409, 40.14251 ], [ -74.8154, 40.14258 ], [ -74.815409, 40.142639 ], [ -74.815459, 40.1427 ], [ -74.815549, 40.14277 ], [ -74.81567, 40.14285 ], [ -74.815729, 40.14287 ], [ -74.81579, 40.14288 ], [ -74.81589, 40.14287 ], [ -74.8163, 40.142379 ], [ -74.81665, 40.14198 ], [ -74.817259, 40.141389 ], [ -74.817339, 40.14131 ], [ -74.81737, 40.141199 ], [ -74.8175, 40.141079 ], [ -74.81759, 40.140989 ], [ -74.81787, 40.140719 ], [ -74.81845, 40.140219 ], [ -74.818699, 40.140009 ], [ -74.81886, 40.13988 ], [ -74.819019, 40.139739 ], [ -74.81917, 40.139679 ], [ -74.81925, 40.13962 ], [ -74.81936, 40.13953 ], [ -74.820309, 40.13879 ], [ -74.820719, 40.13847 ], [ -74.820989, 40.13827 ], [ -74.821389, 40.138 ], [ -74.821529, 40.13791 ], [ -74.821749, 40.137759 ], [ -74.82192, 40.13765 ], [ -74.822159, 40.137499 ], [ -74.822479, 40.137299 ], [ -74.822559, 40.137249 ], [ -74.822929, 40.137029 ], [ -74.823379, 40.136759 ], [ -74.824049, 40.13637 ], [ -74.82484, 40.135899 ], [ -74.825309, 40.135629 ], [ -74.825359, 40.135599 ], [ -74.825539, 40.13549 ], [ -74.825859, 40.1353 ], [ -74.82609, 40.135159 ], [ -74.826439, 40.13496 ], [ -74.826569, 40.134879 ], [ -74.82677, 40.13476 ], [ -74.82723, 40.13449 ], [ -74.82754, 40.1343 ], [ -74.82772, 40.1342 ], [ -74.82812, 40.13397 ], [ -74.828279, 40.13387 ], [ -74.82843, 40.13378 ], [ -74.82863, 40.13366 ], [ -74.828739, 40.1336 ], [ -74.82885, 40.133529 ], [ -74.82897, 40.13343 ], [ -74.82903, 40.133369 ], [ -74.829099, 40.133289 ], [ -74.829449, 40.133089 ], [ -74.829639, 40.13298 ], [ -74.830079, 40.132729 ], [ -74.83056, 40.13243 ], [ -74.830809, 40.132259 ], [ -74.830939, 40.132169 ], [ -74.83115, 40.132079 ], [ -74.831259, 40.132019 ], [ -74.831349, 40.13195 ], [ -74.83146, 40.13187 ], [ -74.831559, 40.13179 ], [ -74.83168, 40.13168 ], [ -74.831749, 40.13162 ], [ -74.831929, 40.131449 ], [ -74.83199, 40.131399 ], [ -74.832109, 40.131279 ], [ -74.832459, 40.130929 ], [ -74.832519, 40.13087 ], [ -74.83267, 40.13071 ], [ -74.832739, 40.13064 ], [ -74.83294, 40.13044 ], [ -74.83298, 40.130399 ], [ -74.83304, 40.13034 ], [ -74.833329, 40.130049 ], [ -74.83348, 40.12989 ], [ -74.833509, 40.129839 ], [ -74.833539, 40.129759 ], [ -74.833559, 40.129669 ], [ -74.83361, 40.12962 ], [ -74.83371, 40.129509 ], [ -74.833779, 40.12944 ], [ -74.833859, 40.12936 ], [ -74.833989, 40.129229 ], [ -74.83407, 40.129149 ], [ -74.834399, 40.12882 ], [ -74.834629, 40.128589 ], [ -74.83483, 40.128399 ], [ -74.83511, 40.128129 ], [ -74.8352, 40.128039 ], [ -74.835259, 40.127979 ], [ -74.83547, 40.127769 ], [ -74.835489, 40.12775 ], [ -74.835569, 40.127709 ], [ -74.835669, 40.12764 ], [ -74.835789, 40.127519 ], [ -74.83582, 40.127489 ], [ -74.83605, 40.127259 ], [ -74.83614, 40.127169 ], [ -74.836199, 40.12711 ], [ -74.83641, 40.126899 ], [ -74.83658, 40.126719 ], [ -74.836879, 40.12641 ], [ -74.83717, 40.12612 ], [ -74.83775, 40.125529 ], [ -74.837779, 40.1255 ], [ -74.83798, 40.12529 ], [ -74.838409, 40.12486 ], [ -74.83865, 40.124619 ], [ -74.83887, 40.1244 ], [ -74.83928, 40.123979 ], [ -74.839359, 40.123899 ], [ -74.839489, 40.12376 ], [ -74.83959, 40.123649 ], [ -74.839839, 40.1234 ], [ -74.840219, 40.123019 ], [ -74.84045, 40.12279 ], [ -74.840709, 40.12253 ], [ -74.840979, 40.12225 ], [ -74.84131, 40.121919 ], [ -74.84163, 40.121589 ], [ -74.841779, 40.12144 ], [ -74.841929, 40.12128 ], [ -74.84208, 40.121129 ], [ -74.842469, 40.12074 ], [ -74.842679, 40.12052 ], [ -74.84276, 40.12044 ], [ -74.842869, 40.120329 ], [ -74.843009, 40.12019 ], [ -74.84312, 40.120059 ], [ -74.84316, 40.11999 ], [ -74.8432, 40.119869 ], [ -74.843309, 40.119759 ], [ -74.84348, 40.119589 ], [ -74.843669, 40.119399 ], [ -74.84373, 40.119339 ], [ -74.843899, 40.11917 ], [ -74.84432, 40.11874 ], [ -74.84411, 40.118599 ], [ -74.843939, 40.11846 ], [ -74.84388, 40.118399 ], [ -74.84375, 40.11829 ], [ -74.84366, 40.11819 ], [ -74.84361, 40.118129 ], [ -74.84339, 40.11784 ], [ -74.84329, 40.117719 ], [ -74.842769, 40.11703 ], [ -74.84271, 40.11694 ], [ -74.842419, 40.116549 ], [ -74.841869, 40.115799 ], [ -74.8418, 40.115709 ], [ -74.84171, 40.1156 ], [ -74.841549, 40.11539 ], [ -74.841339, 40.11512 ], [ -74.84095, 40.114619 ], [ -74.840739, 40.114349 ], [ -74.84059, 40.11416 ], [ -74.840379, 40.11387 ], [ -74.839579, 40.112829 ], [ -74.83937, 40.11255 ], [ -74.83919, 40.112309 ], [ -74.838639, 40.111589 ], [ -74.83853, 40.11145 ], [ -74.838279, 40.111119 ], [ -74.838129, 40.110929 ], [ -74.83798, 40.11073 ], [ -74.8377, 40.11035 ], [ -74.8373, 40.10983 ], [ -74.837139, 40.109619 ], [ -74.837049, 40.109509 ], [ -74.836969, 40.109409 ], [ -74.8369, 40.109349 ], [ -74.83699, 40.109159 ], [ -74.837009, 40.10912 ], [ -74.83708, 40.10901 ], [ -74.83716, 40.108889 ], [ -74.837199, 40.10883 ], [ -74.837319, 40.10868 ], [ -74.83739, 40.108609 ], [ -74.838039, 40.10792 ], [ -74.83848, 40.107459 ], [ -74.8391, 40.106799 ], [ -74.839529, 40.106349 ], [ -74.840199, 40.105639 ], [ -74.840609, 40.105209 ], [ -74.84109, 40.1047 ], [ -74.841699, 40.10405 ], [ -74.84261, 40.1045 ], [ -74.84311, 40.10472 ], [ -74.844129, 40.105169 ], [ -74.844339, 40.104899 ], [ -74.844519, 40.10486 ], [ -74.84492, 40.104649 ], [ -74.84514, 40.104549 ], [ -74.84554, 40.10432 ], [ -74.845919, 40.104099 ], [ -74.847359, 40.10336 ], [ -74.84748, 40.103299 ], [ -74.84805, 40.103019 ], [ -74.848579, 40.10272 ], [ -74.849349, 40.10229 ], [ -74.84815, 40.10091 ], [ -74.84779, 40.100509 ], [ -74.84748, 40.100159 ], [ -74.84726, 40.09993 ], [ -74.84693, 40.09957 ], [ -74.84725, 40.0994 ], [ -74.848269, 40.09887 ], [ -74.849169, 40.0984 ], [ -74.849889, 40.09802 ], [ -74.849969, 40.097979 ], [ -74.85009, 40.097919 ], [ -74.85108, 40.0974 ], [ -74.851829, 40.097019 ], [ -74.8522, 40.096819 ], [ -74.85282, 40.09649 ], [ -74.852859, 40.096469 ], [ -74.854069, 40.095839 ], [ -74.85468, 40.09551 ], [ -74.85558, 40.095039 ], [ -74.85634, 40.09554 ], [ -74.85752, 40.09624 ], [ -74.857839, 40.096449 ], [ -74.858379, 40.09679 ], [ -74.858579, 40.096909 ], [ -74.858619, 40.09694 ], [ -74.858829, 40.097069 ], [ -74.85967, 40.096749 ], [ -74.85986, 40.09668 ], [ -74.85995, 40.096729 ], [ -74.860149, 40.09686 ], [ -74.86031, 40.09694 ], [ -74.860469, 40.096979 ], [ -74.860639, 40.096999 ], [ -74.8607, 40.097169 ], [ -74.860769, 40.09732 ], [ -74.86103, 40.097809 ], [ -74.86116, 40.098069 ], [ -74.86147, 40.098639 ], [ -74.861799, 40.09922 ], [ -74.861859, 40.099349 ], [ -74.86192, 40.09949 ], [ -74.86255, 40.100679 ], [ -74.862759, 40.101069 ], [ -74.862789, 40.101129 ], [ -74.86286, 40.10128 ], [ -74.862929, 40.101419 ], [ -74.86301, 40.101569 ], [ -74.86304, 40.10162 ], [ -74.86309, 40.10171 ], [ -74.86314, 40.1018 ], [ -74.86319, 40.101879 ], [ -74.863329, 40.102119 ], [ -74.863569, 40.102489 ], [ -74.863599, 40.10253 ], [ -74.863699, 40.10265 ], [ -74.863749, 40.10272 ], [ -74.8639, 40.10292 ], [ -74.864059, 40.1031 ], [ -74.86417, 40.10326 ], [ -74.864199, 40.103309 ], [ -74.864279, 40.10342 ], [ -74.8644, 40.1036 ], [ -74.86449, 40.103769 ], [ -74.86463, 40.10406 ], [ -74.864649, 40.104099 ], [ -74.86467, 40.10418 ], [ -74.86475, 40.104459 ], [ -74.864779, 40.104639 ], [ -74.86557, 40.104639 ], [ -74.865759, 40.10525 ], [ -74.865809, 40.10532 ], [ -74.865899, 40.1054 ], [ -74.86597, 40.105469 ], [ -74.86624, 40.105629 ], [ -74.866349, 40.10568 ], [ -74.866489, 40.105749 ], [ -74.86692, 40.105989 ], [ -74.867129, 40.10612 ], [ -74.86705, 40.106189 ], [ -74.86673, 40.106549 ], [ -74.867799, 40.107089 ], [ -74.86832, 40.107349 ], [ -74.868379, 40.10738 ], [ -74.870049, 40.10823 ], [ -74.870539, 40.10768 ], [ -74.87064, 40.10756 ], [ -74.871, 40.10711 ], [ -74.871079, 40.106999 ], [ -74.871209, 40.106899 ], [ -74.87128, 40.10686 ], [ -74.87178, 40.106739 ], [ -74.872199, 40.10767 ], [ -74.872419, 40.10812 ], [ -74.872559, 40.10829 ], [ -74.872739, 40.108419 ], [ -74.872839, 40.10846 ], [ -74.87294, 40.1085 ], [ -74.873149, 40.108539 ], [ -74.873369, 40.108529 ], [ -74.87367, 40.108439 ], [ -74.873769, 40.108419 ], [ -74.87561, 40.10785 ], [ -74.875749, 40.10774 ], [ -74.875849, 40.10759 ], [ -74.875889, 40.10741 ], [ -74.87587, 40.10731 ], [ -74.876559, 40.10712 ], [ -74.877029, 40.106989 ], [ -74.87705, 40.10704 ], [ -74.87714, 40.10724 ], [ -74.877159, 40.107279 ], [ -74.87727, 40.10751 ], [ -74.87736, 40.107719 ], [ -74.87744, 40.107879 ], [ -74.877549, 40.10811 ], [ -74.87767, 40.108329 ], [ -74.877819, 40.10867 ], [ -74.87795, 40.10895 ], [ -74.87798, 40.10902 ], [ -74.87843, 40.109979 ], [ -74.878459, 40.110039 ], [ -74.87849, 40.11011 ], [ -74.878549, 40.110229 ], [ -74.87857, 40.11026 ], [ -74.87866, 40.11044 ], [ -74.878729, 40.110589 ], [ -74.87879, 40.11072 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.87879, 40.11072 ], [ -74.878729, 40.110589 ], [ -74.87866, 40.11044 ], [ -74.87857, 40.11026 ], [ -74.878549, 40.110229 ], [ -74.87849, 40.11011 ], [ -74.878459, 40.110039 ], [ -74.87843, 40.109979 ], [ -74.87798, 40.10902 ], [ -74.87795, 40.10895 ], [ -74.877819, 40.10867 ], [ -74.87767, 40.108329 ], [ -74.877549, 40.10811 ], [ -74.87744, 40.107879 ], [ -74.87736, 40.107719 ], [ -74.87727, 40.10751 ], [ -74.877159, 40.107279 ], [ -74.87714, 40.10724 ], [ -74.87705, 40.10704 ], [ -74.877029, 40.106989 ], [ -74.87695, 40.106809 ], [ -74.876829, 40.106559 ], [ -74.87669, 40.106279 ], [ -74.876659, 40.10621 ], [ -74.876529, 40.105929 ], [ -74.876379, 40.1056 ], [ -74.87632, 40.105469 ], [ -74.87619, 40.105199 ], [ -74.876169, 40.10516 ], [ -74.8761, 40.105019 ], [ -74.875989, 40.1048 ], [ -74.87565, 40.10409 ], [ -74.875569, 40.103919 ], [ -74.875439, 40.10363 ], [ -74.875389, 40.10352 ], [ -74.87501, 40.10265 ], [ -74.87487, 40.10227 ], [ -74.874849, 40.102219 ], [ -74.874809, 40.102129 ], [ -74.87478, 40.102039 ], [ -74.8747, 40.101789 ], [ -74.87466, 40.101669 ], [ -74.87462, 40.10153 ], [ -74.87456, 40.10128 ], [ -74.874499, 40.101 ], [ -74.87448, 40.1009 ], [ -74.874459, 40.10073 ], [ -74.87393, 40.100779 ], [ -74.873649, 40.10081 ], [ -74.87343, 40.100859 ], [ -74.87327, 40.10092 ], [ -74.87313, 40.10101 ], [ -74.873049, 40.101119 ], [ -74.872919, 40.101299 ], [ -74.872779, 40.10154 ], [ -74.872689, 40.101679 ], [ -74.87249, 40.101609 ], [ -74.872419, 40.101579 ], [ -74.87177, 40.101339 ], [ -74.871799, 40.10128 ], [ -74.871659, 40.101229 ], [ -74.87146, 40.101149 ], [ -74.87124, 40.101069 ], [ -74.871039, 40.10099 ], [ -74.87082, 40.10091 ], [ -74.87061, 40.10083 ], [ -74.87039, 40.10074 ], [ -74.87029, 40.100859 ], [ -74.87012, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.869819, 40.100959 ], [ -74.86965, 40.100859 ], [ -74.86952, 40.10081 ], [ -74.869109, 40.10074 ], [ -74.86895, 40.100689 ], [ -74.868869, 40.100619 ], [ -74.868819, 40.10056 ], [ -74.86858, 40.10012 ], [ -74.869459, 40.09985 ], [ -74.869679, 40.099789 ], [ -74.87024, 40.099609 ], [ -74.870669, 40.09947 ], [ -74.87096, 40.09938 ], [ -74.87187, 40.0991 ], [ -74.872059, 40.09904 ], [ -74.872199, 40.098999 ], [ -74.87299, 40.09876 ], [ -74.873289, 40.09867 ], [ -74.873639, 40.09857 ], [ -74.87389, 40.09851 ], [ -74.874219, 40.098459 ], [ -74.87448, 40.09847 ], [ -74.874549, 40.09848 ], [ -74.87462, 40.0985 ], [ -74.87466, 40.098519 ], [ -74.87469, 40.098539 ], [ -74.874719, 40.09857 ], [ -74.87474, 40.0986 ], [ -74.87479, 40.09869 ], [ -74.87483, 40.09878 ], [ -74.87487, 40.098889 ], [ -74.874899, 40.09904 ], [ -74.87492, 40.099159 ], [ -74.87492, 40.099239 ], [ -74.874909, 40.09931 ], [ -74.87489, 40.09937 ], [ -74.87487, 40.09941 ], [ -74.874849, 40.099439 ], [ -74.874819, 40.09947 ], [ -74.87479, 40.09949 ], [ -74.87474, 40.099509 ], [ -74.87469, 40.099519 ], [ -74.874639, 40.099519 ], [ -74.874589, 40.099509 ], [ -74.87453, 40.09949 ], [ -74.87447, 40.09946 ], [ -74.87438, 40.0994 ], [ -74.87421, 40.099269 ], [ -74.874139, 40.099079 ], [ -74.87407, 40.098899 ], [ -74.87406, 40.098879 ], [ -74.87389, 40.09851 ], [ -74.873859, 40.098459 ], [ -74.87381, 40.0984 ], [ -74.87376, 40.098359 ], [ -74.873639, 40.0983 ], [ -74.87348, 40.09824 ], [ -74.87327, 40.098159 ], [ -74.872959, 40.098069 ], [ -74.8729, 40.098009 ], [ -74.87286, 40.09796 ], [ -74.872779, 40.09785 ], [ -74.87276, 40.097819 ], [ -74.872739, 40.097789 ], [ -74.87272, 40.097739 ], [ -74.87271, 40.097699 ], [ -74.872699, 40.097649 ], [ -74.872699, 40.09758 ], [ -74.872699, 40.097519 ], [ -74.872699, 40.097439 ], [ -74.872739, 40.097379 ], [ -74.87299, 40.09703 ], [ -74.87307, 40.096919 ], [ -74.87317, 40.09677 ], [ -74.873379, 40.096629 ], [ -74.873549, 40.096559 ], [ -74.873729, 40.096559 ], [ -74.87397, 40.0966 ], [ -74.87442, 40.096799 ], [ -74.874489, 40.096829 ], [ -74.8746, 40.09686 ], [ -74.87469, 40.09688 ], [ -74.87489, 40.09687 ], [ -74.875089, 40.096819 ], [ -74.87534, 40.096729 ], [ -74.876299, 40.096299 ], [ -74.876609, 40.09616 ], [ -74.877059, 40.09596 ], [ -74.879129, 40.09506 ], [ -74.879589, 40.094859 ], [ -74.880349, 40.09455 ], [ -74.881379, 40.0941 ], [ -74.882679, 40.09353 ], [ -74.88317, 40.093329 ], [ -74.883309, 40.09328 ], [ -74.88344, 40.093229 ], [ -74.88366, 40.09317 ], [ -74.883899, 40.0931 ], [ -74.88456, 40.09289 ], [ -74.885019, 40.092749 ], [ -74.885389, 40.09264 ], [ -74.885519, 40.092599 ], [ -74.886509, 40.092329 ], [ -74.88744, 40.092039 ], [ -74.887779, 40.091939 ], [ -74.88824, 40.09181 ], [ -74.888809, 40.09164 ], [ -74.88983, 40.091339 ], [ -74.89085, 40.09104 ], [ -74.891869, 40.09073 ], [ -74.892909, 40.090419 ], [ -74.89391, 40.09012 ], [ -74.894799, 40.08985 ], [ -74.895729, 40.08958 ], [ -74.89626, 40.08942 ], [ -74.896689, 40.0893 ], [ -74.89765, 40.088999 ], [ -74.898439, 40.08878 ], [ -74.89883, 40.08866 ], [ -74.89936, 40.08849 ], [ -74.90034, 40.08821 ], [ -74.9013, 40.087919 ], [ -74.90162, 40.087829 ], [ -74.90206, 40.087709 ], [ -74.90225, 40.087659 ], [ -74.90319, 40.087369 ], [ -74.90354, 40.08726 ], [ -74.903619, 40.08724 ], [ -74.904069, 40.087119 ], [ -74.90423, 40.08743 ], [ -74.904789, 40.088549 ], [ -74.905239, 40.08941 ], [ -74.905689, 40.090359 ], [ -74.90593, 40.09085 ], [ -74.906309, 40.09166 ], [ -74.9067, 40.092429 ], [ -74.90678, 40.092579 ], [ -74.90679, 40.092609 ], [ -74.90697, 40.09298 ], [ -74.907119, 40.09327 ], [ -74.907169, 40.09347 ], [ -74.90718, 40.09352 ], [ -74.907219, 40.09364 ], [ -74.907299, 40.0937 ], [ -74.90741, 40.09372 ], [ -74.907519, 40.09372 ], [ -74.907579, 40.0937 ], [ -74.907879, 40.093659 ], [ -74.90796, 40.09365 ], [ -74.908019, 40.09364 ], [ -74.9081, 40.09363 ], [ -74.908249, 40.09362 ], [ -74.90836, 40.09363 ], [ -74.908429, 40.093669 ], [ -74.9085, 40.09374 ], [ -74.90853, 40.09381 ], [ -74.90855, 40.0939 ], [ -74.90822, 40.09392 ], [ -74.9079, 40.093939 ], [ -74.907519, 40.09397 ], [ -74.907399, 40.09398 ], [ -74.907339, 40.09391 ], [ -74.907209, 40.09383 ], [ -74.907079, 40.09374 ], [ -74.906489, 40.0938 ], [ -74.906489, 40.09391 ], [ -74.906499, 40.094049 ], [ -74.90723, 40.09399 ], [ -74.907399, 40.09398 ], [ -74.907519, 40.09397 ], [ -74.9079, 40.093939 ], [ -74.90822, 40.09392 ], [ -74.90855, 40.0939 ], [ -74.908829, 40.09388 ], [ -74.909, 40.093869 ], [ -74.90918, 40.093859 ], [ -74.909379, 40.093839 ], [ -74.90949, 40.09383 ], [ -74.90958, 40.09383 ], [ -74.909729, 40.09382 ], [ -74.90984, 40.09381 ], [ -74.910039, 40.0938 ], [ -74.910189, 40.09379 ], [ -74.91061, 40.093759 ], [ -74.91084, 40.093749 ], [ -74.910999, 40.09374 ], [ -74.911659, 40.0937 ], [ -74.911809, 40.093689 ], [ -74.912399, 40.093659 ], [ -74.912479, 40.09365 ], [ -74.912669, 40.09364 ], [ -74.912919, 40.09363 ], [ -74.913059, 40.09362 ], [ -74.91341, 40.093589 ], [ -74.913739, 40.093569 ], [ -74.91402, 40.09355 ], [ -74.91422, 40.09354 ], [ -74.914599, 40.093509 ], [ -74.91488, 40.093479 ], [ -74.91537, 40.093409 ], [ -74.91566, 40.09335 ], [ -74.916, 40.09328 ], [ -74.91645, 40.09319 ], [ -74.91655, 40.09317 ], [ -74.916889, 40.09309 ], [ -74.91749, 40.092959 ], [ -74.917599, 40.092939 ], [ -74.9183, 40.092779 ], [ -74.91961, 40.092479 ], [ -74.919949, 40.092409 ], [ -74.920569, 40.09229 ], [ -74.92073, 40.09226 ], [ -74.920939, 40.092209 ], [ -74.92114, 40.092159 ], [ -74.921429, 40.092069 ], [ -74.921789, 40.091969 ], [ -74.92208, 40.0919 ], [ -74.92248, 40.09181 ], [ -74.9229, 40.091689 ], [ -74.92326, 40.09157 ], [ -74.923509, 40.09146 ], [ -74.92374, 40.091349 ], [ -74.92401, 40.091149 ], [ -74.924179, 40.09102 ], [ -74.92442, 40.09086 ], [ -74.924539, 40.090779 ], [ -74.92488, 40.090529 ], [ -74.925169, 40.09032 ], [ -74.92538, 40.090159 ], [ -74.925479, 40.090089 ], [ -74.925749, 40.089889 ], [ -74.925979, 40.089719 ], [ -74.926209, 40.089549 ], [ -74.926329, 40.089459 ], [ -74.92654, 40.0893 ], [ -74.92686, 40.08906 ], [ -74.92727, 40.08876 ], [ -74.92739, 40.08867 ], [ -74.92745, 40.088629 ], [ -74.92785, 40.08833 ], [ -74.92826, 40.088019 ], [ -74.928539, 40.087819 ], [ -74.928719, 40.08768 ], [ -74.928959, 40.08752 ], [ -74.929229, 40.08732 ], [ -74.929309, 40.08726 ], [ -74.929539, 40.087099 ], [ -74.929769, 40.08696 ], [ -74.929989, 40.08686 ], [ -74.930219, 40.08678 ], [ -74.930479, 40.08671 ], [ -74.931009, 40.08661 ], [ -74.931339, 40.08653 ], [ -74.93166, 40.08642 ], [ -74.931869, 40.08633 ], [ -74.93199, 40.08627 ], [ -74.932099, 40.086209 ], [ -74.932189, 40.08615 ], [ -74.932279, 40.08608 ], [ -74.932369, 40.086 ], [ -74.93256, 40.08582 ], [ -74.93271, 40.085669 ], [ -74.93302, 40.085399 ], [ -74.933219, 40.08525 ], [ -74.93328, 40.08519 ], [ -74.93342, 40.08509 ], [ -74.933579, 40.08498 ], [ -74.93374, 40.08488 ], [ -74.93393, 40.084779 ], [ -74.93423, 40.08463 ], [ -74.934519, 40.085 ], [ -74.93474, 40.08524 ], [ -74.934849, 40.08534 ], [ -74.935, 40.08546 ], [ -74.935289, 40.085589 ], [ -74.935659, 40.08572 ], [ -74.93603, 40.085849 ], [ -74.93631, 40.08598 ], [ -74.936649, 40.08617 ], [ -74.936829, 40.086279 ], [ -74.93716, 40.0865 ], [ -74.937309, 40.08669 ], [ -74.93756, 40.08699 ], [ -74.93771, 40.08716 ], [ -74.93788, 40.087359 ], [ -74.93837, 40.08795 ], [ -74.938889, 40.088629 ], [ -74.93909, 40.088889 ], [ -74.939429, 40.08933 ], [ -74.939649, 40.089609 ], [ -74.93973, 40.089709 ], [ -74.939839, 40.08985 ], [ -74.93995, 40.089989 ], [ -74.940199, 40.0903 ], [ -74.94054, 40.090709 ], [ -74.94129, 40.091609 ], [ -74.94161, 40.09199 ], [ -74.94179, 40.0922 ], [ -74.94189, 40.092329 ], [ -74.942049, 40.092519 ], [ -74.942089, 40.092569 ], [ -74.94216, 40.092659 ], [ -74.942269, 40.09281 ], [ -74.942319, 40.092879 ], [ -74.94238, 40.092949 ], [ -74.94246, 40.093049 ], [ -74.94261, 40.093219 ], [ -74.9427, 40.093319 ], [ -74.942759, 40.093399 ], [ -74.94287, 40.09352 ], [ -74.94328, 40.094029 ], [ -74.94382, 40.09469 ], [ -74.94386, 40.094739 ], [ -74.94404, 40.09496 ], [ -74.94431, 40.095279 ], [ -74.944429, 40.09544 ], [ -74.944479, 40.0955 ], [ -74.94454, 40.095569 ], [ -74.94499, 40.09614 ], [ -74.945289, 40.09649 ], [ -74.94536, 40.09658 ], [ -74.94549, 40.096729 ], [ -74.94558, 40.096839 ], [ -74.945779, 40.097079 ], [ -74.945909, 40.09724 ], [ -74.945959, 40.097289 ], [ -74.94611, 40.097459 ], [ -74.946269, 40.097649 ], [ -74.946359, 40.09776 ], [ -74.94662, 40.098069 ], [ -74.94671, 40.098169 ], [ -74.946909, 40.09841 ], [ -74.946999, 40.098519 ], [ -74.9471, 40.098639 ], [ -74.947139, 40.09869 ], [ -74.94729, 40.09886 ], [ -74.947349, 40.09894 ], [ -74.947619, 40.099259 ], [ -74.947659, 40.0993 ], [ -74.947849, 40.099519 ], [ -74.947949, 40.09964 ], [ -74.948029, 40.09974 ], [ -74.948209, 40.099979 ], [ -74.948379, 40.1002 ], [ -74.948469, 40.100339 ], [ -74.948569, 40.100499 ], [ -74.94878, 40.10084 ], [ -74.94887, 40.10099 ], [ -74.949109, 40.101489 ], [ -74.949249, 40.101779 ], [ -74.949419, 40.102149 ], [ -74.94949, 40.102309 ], [ -74.94954, 40.10243 ], [ -74.94962, 40.102589 ], [ -74.949729, 40.10283 ], [ -74.9498, 40.10298 ], [ -74.94998, 40.10337 ], [ -74.950009, 40.10343 ], [ -74.950059, 40.10354 ], [ -74.95021, 40.103849 ], [ -74.950279, 40.104 ], [ -74.9503, 40.10405 ], [ -74.95039, 40.10424 ], [ -74.95044, 40.10434 ], [ -74.950499, 40.104459 ], [ -74.95071, 40.104899 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957029, 40.114389 ], [ -74.95714, 40.114559 ], [ -74.957289, 40.114829 ], [ -74.95736, 40.115009 ], [ -74.95737, 40.115249 ], [ -74.957289, 40.11542 ], [ -74.957169, 40.11557 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952439, 40.12079 ], [ -74.95268, 40.121229 ], [ -74.95287, 40.121569 ], [ -74.952929, 40.12162 ], [ -74.95304, 40.121649 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.958909, 40.11747 ], [ -74.95903, 40.117449 ], [ -74.95917, 40.11746 ], [ -74.9593, 40.117509 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307156", "route_id": "128" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.95071, 40.104899 ], [ -74.950499, 40.104459 ], [ -74.95044, 40.10434 ], [ -74.95039, 40.10424 ], [ -74.9503, 40.10405 ], [ -74.950279, 40.104 ], [ -74.95021, 40.103849 ], [ -74.950059, 40.10354 ], [ -74.950009, 40.10343 ], [ -74.94998, 40.10337 ], [ -74.9498, 40.10298 ], [ -74.949729, 40.10283 ], [ -74.94962, 40.102589 ], [ -74.94954, 40.10243 ], [ -74.94949, 40.102309 ], [ -74.949419, 40.102149 ], [ -74.949249, 40.101779 ], [ -74.949109, 40.101489 ], [ -74.94887, 40.10099 ], [ -74.94878, 40.10084 ], [ -74.948569, 40.100499 ], [ -74.948469, 40.100339 ], [ -74.948379, 40.1002 ], [ -74.948209, 40.099979 ], [ -74.948029, 40.09974 ], [ -74.947949, 40.09964 ], [ -74.947849, 40.099519 ], [ -74.947659, 40.0993 ], [ -74.947619, 40.099259 ], [ -74.947349, 40.09894 ], [ -74.94729, 40.09886 ], [ -74.947139, 40.09869 ], [ -74.9471, 40.098639 ], [ -74.946999, 40.098519 ], [ -74.946909, 40.09841 ], [ -74.94671, 40.098169 ], [ -74.94662, 40.098069 ], [ -74.946359, 40.09776 ], [ -74.946269, 40.097649 ], [ -74.94611, 40.097459 ], [ -74.945959, 40.097289 ], [ -74.945909, 40.09724 ], [ -74.945779, 40.097079 ], [ -74.94558, 40.096839 ], [ -74.94549, 40.096729 ], [ -74.94536, 40.09658 ], [ -74.945289, 40.09649 ], [ -74.94499, 40.09614 ], [ -74.94454, 40.095569 ], [ -74.944479, 40.0955 ], [ -74.944429, 40.09544 ], [ -74.94431, 40.095279 ], [ -74.94404, 40.09496 ], [ -74.94386, 40.094739 ], [ -74.94382, 40.09469 ], [ -74.94328, 40.094029 ], [ -74.94287, 40.09352 ], [ -74.942759, 40.093399 ], [ -74.9427, 40.093319 ], [ -74.94261, 40.093219 ], [ -74.94246, 40.093049 ], [ -74.94238, 40.092949 ], [ -74.942319, 40.092879 ], [ -74.942269, 40.09281 ], [ -74.94216, 40.092659 ], [ -74.942089, 40.092569 ], [ -74.942049, 40.092519 ], [ -74.94189, 40.092329 ], [ -74.94179, 40.0922 ], [ -74.94161, 40.09199 ], [ -74.94129, 40.091609 ], [ -74.94054, 40.090709 ], [ -74.940199, 40.0903 ], [ -74.93995, 40.089989 ], [ -74.939839, 40.08985 ], [ -74.93973, 40.089709 ], [ -74.939649, 40.089609 ], [ -74.939429, 40.08933 ], [ -74.93909, 40.088889 ], [ -74.938889, 40.088629 ], [ -74.93837, 40.08795 ], [ -74.93788, 40.087359 ], [ -74.93771, 40.08716 ], [ -74.93756, 40.08699 ], [ -74.937309, 40.08669 ], [ -74.93716, 40.0865 ], [ -74.93711, 40.086309 ], [ -74.93708, 40.086199 ], [ -74.93703, 40.08606 ], [ -74.936969, 40.08591 ], [ -74.9369, 40.0857 ], [ -74.936869, 40.08554 ], [ -74.936859, 40.085319 ], [ -74.936869, 40.08506 ], [ -74.936879, 40.084839 ], [ -74.936859, 40.084689 ], [ -74.936829, 40.08455 ], [ -74.936789, 40.08445 ], [ -74.936729, 40.084329 ], [ -74.936649, 40.084229 ], [ -74.936199, 40.083659 ], [ -74.936099, 40.08371 ], [ -74.93553, 40.08398 ], [ -74.935389, 40.084049 ], [ -74.935289, 40.0841 ], [ -74.93519, 40.084149 ], [ -74.93509, 40.084199 ], [ -74.93499, 40.08425 ], [ -74.934339, 40.084579 ], [ -74.93423, 40.08463 ], [ -74.93393, 40.084779 ], [ -74.93374, 40.08488 ], [ -74.933579, 40.08498 ], [ -74.93342, 40.08509 ], [ -74.93328, 40.08519 ], [ -74.933219, 40.08525 ], [ -74.93302, 40.085399 ], [ -74.93271, 40.085669 ], [ -74.93256, 40.08582 ], [ -74.932369, 40.086 ], [ -74.932279, 40.08608 ], [ -74.932189, 40.08615 ], [ -74.932099, 40.086209 ], [ -74.93199, 40.08627 ], [ -74.931869, 40.08633 ], [ -74.93166, 40.08642 ], [ -74.931339, 40.08653 ], [ -74.931009, 40.08661 ], [ -74.930479, 40.08671 ], [ -74.930219, 40.08678 ], [ -74.929989, 40.08686 ], [ -74.929769, 40.08696 ], [ -74.929539, 40.087099 ], [ -74.929309, 40.08726 ], [ -74.929229, 40.08732 ], [ -74.928959, 40.08752 ], [ -74.928719, 40.08768 ], [ -74.928539, 40.087819 ], [ -74.92826, 40.088019 ], [ -74.92785, 40.08833 ], [ -74.92745, 40.088629 ], [ -74.92739, 40.08867 ], [ -74.92727, 40.08876 ], [ -74.92686, 40.08906 ], [ -74.92654, 40.0893 ], [ -74.926329, 40.089459 ], [ -74.926209, 40.089549 ], [ -74.925979, 40.089719 ], [ -74.925749, 40.089889 ], [ -74.925479, 40.090089 ], [ -74.92538, 40.090159 ], [ -74.925169, 40.09032 ], [ -74.92488, 40.090529 ], [ -74.924539, 40.090779 ], [ -74.92442, 40.09086 ], [ -74.924179, 40.09102 ], [ -74.92401, 40.091149 ], [ -74.92374, 40.091349 ], [ -74.923509, 40.09146 ], [ -74.92326, 40.09157 ], [ -74.9229, 40.091689 ], [ -74.92248, 40.09181 ], [ -74.92208, 40.0919 ], [ -74.921789, 40.091969 ], [ -74.921429, 40.092069 ], [ -74.92114, 40.092159 ], [ -74.920939, 40.092209 ], [ -74.92073, 40.09226 ], [ -74.920569, 40.09229 ], [ -74.919949, 40.092409 ], [ -74.91961, 40.092479 ], [ -74.9183, 40.092779 ], [ -74.917599, 40.092939 ], [ -74.91749, 40.092959 ], [ -74.916889, 40.09309 ], [ -74.91655, 40.09317 ], [ -74.91645, 40.09319 ], [ -74.916, 40.09328 ], [ -74.91566, 40.09335 ], [ -74.91537, 40.093409 ], [ -74.91488, 40.093479 ], [ -74.914599, 40.093509 ], [ -74.91422, 40.09354 ], [ -74.91402, 40.09355 ], [ -74.913739, 40.093569 ], [ -74.91341, 40.093589 ], [ -74.913059, 40.09362 ], [ -74.912919, 40.09363 ], [ -74.912669, 40.09364 ], [ -74.912479, 40.09365 ], [ -74.912399, 40.093659 ], [ -74.911809, 40.093689 ], [ -74.911659, 40.0937 ], [ -74.910999, 40.09374 ], [ -74.91084, 40.093749 ], [ -74.91061, 40.093759 ], [ -74.910189, 40.09379 ], [ -74.910039, 40.0938 ], [ -74.90984, 40.09381 ], [ -74.909729, 40.09382 ], [ -74.90958, 40.09383 ], [ -74.90949, 40.09383 ], [ -74.909379, 40.093839 ], [ -74.90918, 40.093859 ], [ -74.909, 40.093869 ], [ -74.908829, 40.09388 ], [ -74.90855, 40.0939 ], [ -74.90822, 40.09392 ], [ -74.9079, 40.093939 ], [ -74.907519, 40.09397 ], [ -74.907399, 40.09398 ], [ -74.907339, 40.09391 ], [ -74.907209, 40.09383 ], [ -74.907079, 40.09374 ], [ -74.906489, 40.0938 ], [ -74.906489, 40.09391 ], [ -74.906499, 40.094049 ], [ -74.90723, 40.09399 ], [ -74.907399, 40.09398 ], [ -74.907519, 40.09397 ], [ -74.9079, 40.093939 ], [ -74.90822, 40.09392 ], [ -74.90855, 40.0939 ], [ -74.90853, 40.09381 ], [ -74.9085, 40.09374 ], [ -74.908429, 40.093669 ], [ -74.90836, 40.09363 ], [ -74.908249, 40.09362 ], [ -74.9081, 40.09363 ], [ -74.908019, 40.09364 ], [ -74.90796, 40.09365 ], [ -74.907879, 40.093659 ], [ -74.907579, 40.0937 ], [ -74.907519, 40.09372 ], [ -74.90741, 40.09372 ], [ -74.907299, 40.0937 ], [ -74.907219, 40.09364 ], [ -74.90718, 40.09352 ], [ -74.907169, 40.09347 ], [ -74.907119, 40.09327 ], [ -74.90697, 40.09298 ], [ -74.90679, 40.092609 ], [ -74.90678, 40.092579 ], [ -74.9067, 40.092429 ], [ -74.906309, 40.09166 ], [ -74.90593, 40.09085 ], [ -74.905689, 40.090359 ], [ -74.905239, 40.08941 ], [ -74.904789, 40.088549 ], [ -74.90423, 40.08743 ], [ -74.904069, 40.087119 ], [ -74.903619, 40.08724 ], [ -74.90354, 40.08726 ], [ -74.90319, 40.087369 ], [ -74.90225, 40.087659 ], [ -74.90206, 40.087709 ], [ -74.90162, 40.087829 ], [ -74.9013, 40.087919 ], [ -74.90034, 40.08821 ], [ -74.89936, 40.08849 ], [ -74.89883, 40.08866 ], [ -74.898439, 40.08878 ], [ -74.89765, 40.088999 ], [ -74.896689, 40.0893 ], [ -74.89626, 40.08942 ], [ -74.895729, 40.08958 ], [ -74.894799, 40.08985 ], [ -74.89391, 40.09012 ], [ -74.892909, 40.090419 ], [ -74.891869, 40.09073 ], [ -74.89085, 40.09104 ], [ -74.88983, 40.091339 ], [ -74.888809, 40.09164 ], [ -74.88824, 40.09181 ], [ -74.887779, 40.091939 ], [ -74.88744, 40.092039 ], [ -74.886509, 40.092329 ], [ -74.885519, 40.092599 ], [ -74.885389, 40.09264 ], [ -74.885019, 40.092749 ], [ -74.88456, 40.09289 ], [ -74.883899, 40.0931 ], [ -74.88366, 40.09317 ], [ -74.88344, 40.093229 ], [ -74.883309, 40.09328 ], [ -74.88317, 40.093329 ], [ -74.882679, 40.09353 ], [ -74.881379, 40.0941 ], [ -74.880349, 40.09455 ], [ -74.879589, 40.094859 ], [ -74.879129, 40.09506 ], [ -74.877059, 40.09596 ], [ -74.876609, 40.09616 ], [ -74.876299, 40.096299 ], [ -74.87534, 40.096729 ], [ -74.875089, 40.096819 ], [ -74.87489, 40.09687 ], [ -74.87469, 40.09688 ], [ -74.8746, 40.09686 ], [ -74.874489, 40.096829 ], [ -74.87442, 40.096799 ], [ -74.87397, 40.0966 ], [ -74.87345, 40.096369 ], [ -74.87317, 40.09677 ], [ -74.87307, 40.096919 ], [ -74.87299, 40.09703 ], [ -74.872739, 40.097379 ], [ -74.872699, 40.097439 ], [ -74.872649, 40.09751 ], [ -74.87244, 40.097799 ], [ -74.87236, 40.097919 ], [ -74.872959, 40.098069 ], [ -74.87327, 40.098159 ], [ -74.87348, 40.09824 ], [ -74.873639, 40.0983 ], [ -74.87376, 40.098359 ], [ -74.87381, 40.0984 ], [ -74.873859, 40.098459 ], [ -74.87389, 40.09851 ], [ -74.873639, 40.09857 ], [ -74.873289, 40.09867 ], [ -74.87299, 40.09876 ], [ -74.872199, 40.098999 ], [ -74.872059, 40.09904 ], [ -74.87187, 40.0991 ], [ -74.87096, 40.09938 ], [ -74.870669, 40.09947 ], [ -74.87024, 40.099609 ], [ -74.870049, 40.099619 ], [ -74.869899, 40.099619 ], [ -74.869689, 40.099619 ], [ -74.86921, 40.09959 ], [ -74.868819, 40.09956 ], [ -74.86871, 40.09956 ], [ -74.868609, 40.099609 ], [ -74.868509, 40.09974 ], [ -74.868479, 40.09984 ], [ -74.86849, 40.09995 ], [ -74.86858, 40.10012 ], [ -74.868819, 40.10056 ], [ -74.868869, 40.100619 ], [ -74.86895, 40.100689 ], [ -74.869109, 40.10074 ], [ -74.86952, 40.10081 ], [ -74.86965, 40.100859 ], [ -74.869819, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.87012, 40.100959 ], [ -74.87029, 40.100859 ], [ -74.87039, 40.10074 ], [ -74.87061, 40.10083 ], [ -74.87082, 40.10091 ], [ -74.871039, 40.10099 ], [ -74.87124, 40.101069 ], [ -74.87146, 40.101149 ], [ -74.871659, 40.101229 ], [ -74.871799, 40.10128 ], [ -74.87177, 40.101339 ], [ -74.872419, 40.101579 ], [ -74.87249, 40.101609 ], [ -74.872689, 40.101679 ], [ -74.872779, 40.10154 ], [ -74.872919, 40.101299 ], [ -74.873049, 40.101119 ], [ -74.87313, 40.10101 ], [ -74.87327, 40.10092 ], [ -74.87343, 40.100859 ], [ -74.873649, 40.10081 ], [ -74.87393, 40.100779 ], [ -74.874459, 40.10073 ], [ -74.87448, 40.1009 ], [ -74.874499, 40.101 ], [ -74.87456, 40.10128 ], [ -74.87462, 40.10153 ], [ -74.87466, 40.101669 ], [ -74.8747, 40.101789 ], [ -74.87478, 40.102039 ], [ -74.874809, 40.102129 ], [ -74.874849, 40.102219 ], [ -74.87487, 40.10227 ], [ -74.87501, 40.10265 ], [ -74.875389, 40.10352 ], [ -74.875439, 40.10363 ], [ -74.875569, 40.103919 ], [ -74.87565, 40.10409 ], [ -74.875989, 40.1048 ], [ -74.8761, 40.105019 ], [ -74.876169, 40.10516 ], [ -74.87619, 40.105199 ], [ -74.87632, 40.105469 ], [ -74.876379, 40.1056 ], [ -74.876529, 40.105929 ], [ -74.876659, 40.10621 ], [ -74.87669, 40.106279 ], [ -74.876829, 40.106559 ], [ -74.87695, 40.106809 ], [ -74.877029, 40.106989 ], [ -74.87705, 40.10704 ], [ -74.87714, 40.10724 ], [ -74.877159, 40.107279 ], [ -74.87727, 40.10751 ], [ -74.87736, 40.107719 ], [ -74.87744, 40.107879 ], [ -74.877549, 40.10811 ], [ -74.87767, 40.108329 ], [ -74.877819, 40.10867 ], [ -74.87795, 40.10895 ], [ -74.87798, 40.10902 ], [ -74.87843, 40.109979 ], [ -74.878459, 40.110039 ], [ -74.87849, 40.11011 ], [ -74.878549, 40.110229 ], [ -74.87857, 40.11026 ], [ -74.87866, 40.11044 ], [ -74.878729, 40.110589 ], [ -74.87879, 40.11072 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.87879, 40.11072 ], [ -74.878729, 40.110589 ], [ -74.87866, 40.11044 ], [ -74.87857, 40.11026 ], [ -74.878549, 40.110229 ], [ -74.87849, 40.11011 ], [ -74.878459, 40.110039 ], [ -74.87843, 40.109979 ], [ -74.87798, 40.10902 ], [ -74.87795, 40.10895 ], [ -74.877819, 40.10867 ], [ -74.87767, 40.108329 ], [ -74.877549, 40.10811 ], [ -74.87744, 40.107879 ], [ -74.87736, 40.107719 ], [ -74.87727, 40.10751 ], [ -74.877159, 40.107279 ], [ -74.87714, 40.10724 ], [ -74.87705, 40.10704 ], [ -74.877029, 40.106989 ], [ -74.876559, 40.10712 ], [ -74.87587, 40.10731 ], [ -74.875889, 40.10741 ], [ -74.875849, 40.10759 ], [ -74.875749, 40.10774 ], [ -74.87561, 40.10785 ], [ -74.873769, 40.108419 ], [ -74.87367, 40.108439 ], [ -74.873369, 40.108529 ], [ -74.873149, 40.108539 ], [ -74.87294, 40.1085 ], [ -74.872839, 40.10846 ], [ -74.872739, 40.108419 ], [ -74.872559, 40.10829 ], [ -74.872419, 40.10812 ], [ -74.872199, 40.10767 ], [ -74.87178, 40.106739 ], [ -74.87128, 40.10686 ], [ -74.871209, 40.106899 ], [ -74.871079, 40.106999 ], [ -74.871, 40.10711 ], [ -74.87064, 40.10756 ], [ -74.870539, 40.10768 ], [ -74.870049, 40.10823 ], [ -74.868379, 40.10738 ], [ -74.86832, 40.107349 ], [ -74.867799, 40.107089 ], [ -74.86673, 40.106549 ], [ -74.865939, 40.10614 ], [ -74.865809, 40.106069 ], [ -74.865219, 40.10576 ], [ -74.86508, 40.1057 ], [ -74.86471, 40.10561 ], [ -74.864769, 40.10524 ], [ -74.86479, 40.10504 ], [ -74.86479, 40.10487 ], [ -74.86479, 40.10477 ], [ -74.864779, 40.104639 ], [ -74.86475, 40.104459 ], [ -74.86467, 40.10418 ], [ -74.864649, 40.104099 ], [ -74.86463, 40.10406 ], [ -74.86449, 40.103769 ], [ -74.8644, 40.1036 ], [ -74.864279, 40.10342 ], [ -74.864199, 40.103309 ], [ -74.86417, 40.10326 ], [ -74.864059, 40.1031 ], [ -74.8639, 40.10292 ], [ -74.863749, 40.10272 ], [ -74.863699, 40.10265 ], [ -74.863599, 40.10253 ], [ -74.863569, 40.102489 ], [ -74.863329, 40.102119 ], [ -74.86319, 40.101879 ], [ -74.86314, 40.1018 ], [ -74.86309, 40.10171 ], [ -74.86304, 40.10162 ], [ -74.86301, 40.101569 ], [ -74.862929, 40.101419 ], [ -74.86286, 40.10128 ], [ -74.862789, 40.101129 ], [ -74.862759, 40.101069 ], [ -74.86255, 40.100679 ], [ -74.86192, 40.09949 ], [ -74.861859, 40.099349 ], [ -74.861799, 40.09922 ], [ -74.86147, 40.098639 ], [ -74.86116, 40.098069 ], [ -74.86103, 40.097809 ], [ -74.860769, 40.09732 ], [ -74.8607, 40.097169 ], [ -74.860639, 40.096999 ], [ -74.860469, 40.096979 ], [ -74.86031, 40.09694 ], [ -74.860149, 40.09686 ], [ -74.85995, 40.096729 ], [ -74.85986, 40.09668 ], [ -74.85932, 40.096349 ], [ -74.85913, 40.09623 ], [ -74.85828, 40.09572 ], [ -74.85719, 40.09507 ], [ -74.85639, 40.0946 ], [ -74.85615, 40.09473 ], [ -74.85581, 40.09491 ], [ -74.85558, 40.095039 ], [ -74.85468, 40.09551 ], [ -74.854069, 40.095839 ], [ -74.852859, 40.096469 ], [ -74.85282, 40.09649 ], [ -74.8522, 40.096819 ], [ -74.851829, 40.097019 ], [ -74.85108, 40.0974 ], [ -74.85009, 40.097919 ], [ -74.849969, 40.097979 ], [ -74.849889, 40.09802 ], [ -74.849169, 40.0984 ], [ -74.848269, 40.09887 ], [ -74.84725, 40.0994 ], [ -74.84693, 40.09957 ], [ -74.84726, 40.09993 ], [ -74.84748, 40.100159 ], [ -74.84779, 40.100509 ], [ -74.84815, 40.10091 ], [ -74.849349, 40.10229 ], [ -74.848579, 40.10272 ], [ -74.84805, 40.103019 ], [ -74.84748, 40.103299 ], [ -74.847359, 40.10336 ], [ -74.845919, 40.104099 ], [ -74.84554, 40.10432 ], [ -74.84514, 40.104549 ], [ -74.84492, 40.104649 ], [ -74.844519, 40.10486 ], [ -74.844339, 40.104899 ], [ -74.844129, 40.105169 ], [ -74.84311, 40.10472 ], [ -74.84261, 40.1045 ], [ -74.841699, 40.10405 ], [ -74.84109, 40.1047 ], [ -74.840609, 40.105209 ], [ -74.840199, 40.105639 ], [ -74.839529, 40.106349 ], [ -74.8391, 40.106799 ], [ -74.83848, 40.107459 ], [ -74.838039, 40.10792 ], [ -74.83739, 40.108609 ], [ -74.837319, 40.10868 ], [ -74.837199, 40.10883 ], [ -74.83716, 40.108889 ], [ -74.83708, 40.10901 ], [ -74.837009, 40.10912 ], [ -74.83699, 40.109159 ], [ -74.8369, 40.109349 ], [ -74.836969, 40.109409 ], [ -74.837049, 40.109509 ], [ -74.837139, 40.109619 ], [ -74.8373, 40.10983 ], [ -74.8377, 40.11035 ], [ -74.83798, 40.11073 ], [ -74.838129, 40.110929 ], [ -74.838279, 40.111119 ], [ -74.83853, 40.11145 ], [ -74.838639, 40.111589 ], [ -74.83919, 40.112309 ], [ -74.83937, 40.11255 ], [ -74.839579, 40.112829 ], [ -74.840379, 40.11387 ], [ -74.84059, 40.11416 ], [ -74.840739, 40.114349 ], [ -74.84095, 40.114619 ], [ -74.841339, 40.11512 ], [ -74.841549, 40.11539 ], [ -74.84171, 40.1156 ], [ -74.8418, 40.115709 ], [ -74.841869, 40.115799 ], [ -74.842419, 40.116549 ], [ -74.84271, 40.11694 ], [ -74.842769, 40.11703 ], [ -74.84329, 40.117719 ], [ -74.84339, 40.11784 ], [ -74.84361, 40.118129 ], [ -74.84366, 40.11819 ], [ -74.84375, 40.11829 ], [ -74.84388, 40.118399 ], [ -74.843939, 40.11846 ], [ -74.84411, 40.118599 ], [ -74.84432, 40.11874 ], [ -74.843899, 40.11917 ], [ -74.84373, 40.119339 ], [ -74.843669, 40.119399 ], [ -74.84348, 40.119589 ], [ -74.843309, 40.119759 ], [ -74.8432, 40.119869 ], [ -74.84311, 40.11991 ], [ -74.843039, 40.119949 ], [ -74.84298, 40.11999 ], [ -74.842919, 40.120039 ], [ -74.842589, 40.120389 ], [ -74.842499, 40.120479 ], [ -74.84231, 40.120679 ], [ -74.842009, 40.12099 ], [ -74.841929, 40.12107 ], [ -74.84181, 40.12119 ], [ -74.841609, 40.121379 ], [ -74.841459, 40.12153 ], [ -74.841159, 40.121829 ], [ -74.840839, 40.12216 ], [ -74.840569, 40.12244 ], [ -74.840299, 40.12271 ], [ -74.8401, 40.122919 ], [ -74.83947, 40.123559 ], [ -74.83924, 40.12379 ], [ -74.83916, 40.12387 ], [ -74.838729, 40.12431 ], [ -74.838499, 40.124539 ], [ -74.837859, 40.125189 ], [ -74.837599, 40.125439 ], [ -74.83707, 40.125999 ], [ -74.837, 40.126079 ], [ -74.836749, 40.12632 ], [ -74.83658, 40.1265 ], [ -74.83645, 40.126629 ], [ -74.836299, 40.126789 ], [ -74.83601, 40.127079 ], [ -74.835849, 40.127239 ], [ -74.83573, 40.12736 ], [ -74.83564, 40.12746 ], [ -74.83556, 40.127579 ], [ -74.835529, 40.12763 ], [ -74.83551, 40.127679 ], [ -74.835489, 40.12775 ], [ -74.83547, 40.127769 ], [ -74.835259, 40.127979 ], [ -74.8352, 40.128039 ], [ -74.83511, 40.128129 ], [ -74.83483, 40.128399 ], [ -74.834629, 40.128589 ], [ -74.834399, 40.12882 ], [ -74.83407, 40.129149 ], [ -74.833989, 40.129229 ], [ -74.833859, 40.12936 ], [ -74.833779, 40.12944 ], [ -74.83371, 40.129509 ], [ -74.83361, 40.12962 ], [ -74.833559, 40.129669 ], [ -74.833499, 40.1297 ], [ -74.83343, 40.129749 ], [ -74.83335, 40.12983 ], [ -74.833199, 40.12998 ], [ -74.833009, 40.13017 ], [ -74.8328, 40.130389 ], [ -74.832559, 40.13063 ], [ -74.8324, 40.13079 ], [ -74.832339, 40.130849 ], [ -74.83204, 40.13116 ], [ -74.83195, 40.13125 ], [ -74.831879, 40.13132 ], [ -74.83182, 40.131379 ], [ -74.83164, 40.131539 ], [ -74.831579, 40.13159 ], [ -74.831469, 40.13169 ], [ -74.83124, 40.13188 ], [ -74.831199, 40.131909 ], [ -74.83106, 40.13204 ], [ -74.830939, 40.132169 ], [ -74.830809, 40.132259 ], [ -74.83056, 40.13243 ], [ -74.830079, 40.132729 ], [ -74.829639, 40.13298 ], [ -74.829449, 40.133089 ], [ -74.829099, 40.133289 ], [ -74.82899, 40.13332 ], [ -74.8289, 40.133359 ], [ -74.82875, 40.133439 ], [ -74.82862, 40.13351 ], [ -74.828509, 40.13358 ], [ -74.82835, 40.13368 ], [ -74.82822, 40.13376 ], [ -74.828199, 40.13377 ], [ -74.82813, 40.133809 ], [ -74.82804, 40.13386 ], [ -74.82762, 40.134099 ], [ -74.82744, 40.13421 ], [ -74.827389, 40.13424 ], [ -74.827149, 40.13438 ], [ -74.82668, 40.13466 ], [ -74.82647, 40.134789 ], [ -74.826339, 40.13486 ], [ -74.826, 40.135059 ], [ -74.82575, 40.13521 ], [ -74.825189, 40.135539 ], [ -74.824769, 40.135789 ], [ -74.823749, 40.136399 ], [ -74.82323, 40.136699 ], [ -74.8225, 40.137139 ], [ -74.822399, 40.1372 ], [ -74.821839, 40.13755 ], [ -74.821619, 40.137679 ], [ -74.82143, 40.13782 ], [ -74.82106, 40.13807 ], [ -74.82087, 40.13819 ], [ -74.820639, 40.13835 ], [ -74.820359, 40.13856 ], [ -74.81925, 40.13944 ], [ -74.81918, 40.139499 ], [ -74.819049, 40.13961 ], [ -74.819019, 40.139739 ], [ -74.81886, 40.13988 ], [ -74.818699, 40.140009 ], [ -74.81845, 40.140219 ], [ -74.81787, 40.140719 ], [ -74.81746, 40.14043 ], [ -74.817309, 40.14032 ], [ -74.817169, 40.140449 ], [ -74.817, 40.14061 ], [ -74.81682, 40.14077 ], [ -74.816639, 40.140929 ], [ -74.81647, 40.141079 ], [ -74.816279, 40.14125 ], [ -74.816169, 40.141349 ], [ -74.81621, 40.14143 ], [ -74.81603, 40.14152 ], [ -74.815899, 40.1416 ], [ -74.81567, 40.14177 ], [ -74.815269, 40.14214 ], [ -74.81525, 40.142169 ], [ -74.815239, 40.14222 ], [ -74.81525, 40.142259 ], [ -74.815289, 40.1423 ], [ -74.815459, 40.14241 ], [ -74.81543, 40.142459 ], [ -74.815409, 40.14251 ], [ -74.8154, 40.14258 ], [ -74.815409, 40.142639 ], [ -74.815459, 40.1427 ], [ -74.815549, 40.14277 ], [ -74.81567, 40.14285 ], [ -74.815729, 40.14287 ], [ -74.81579, 40.14288 ], [ -74.81589, 40.14287 ], [ -74.8163, 40.142379 ], [ -74.81665, 40.14198 ], [ -74.817259, 40.141389 ], [ -74.817339, 40.14131 ], [ -74.81737, 40.141199 ], [ -74.8175, 40.141079 ], [ -74.81759, 40.140989 ], [ -74.81787, 40.140719 ], [ -74.8179, 40.14079 ], [ -74.817979, 40.140899 ], [ -74.818109, 40.141079 ], [ -74.81823, 40.14125 ], [ -74.81873, 40.14195 ], [ -74.818879, 40.142179 ], [ -74.81894, 40.142259 ], [ -74.81904, 40.14241 ], [ -74.81922, 40.14267 ], [ -74.81936, 40.1426 ], [ -74.819909, 40.142349 ], [ -74.82025, 40.142199 ], [ -74.820399, 40.1424 ], [ -74.82051, 40.142549 ], [ -74.82061, 40.1427 ], [ -74.820719, 40.14284 ], [ -74.820819, 40.142979 ], [ -74.82092, 40.14313 ], [ -74.82096, 40.143189 ], [ -74.821029, 40.143279 ], [ -74.821129, 40.143429 ], [ -74.82123, 40.14357 ], [ -74.82146, 40.143909 ], [ -74.82119, 40.14403 ], [ -74.82083, 40.144159 ], [ -74.820539, 40.14428 ], [ -74.820409, 40.144339 ], [ -74.820629, 40.14464 ], [ -74.820679, 40.144699 ], [ -74.820819, 40.144899 ], [ -74.82092, 40.14503 ], [ -74.820999, 40.145149 ], [ -74.82132, 40.145589 ], [ -74.82224, 40.1469 ], [ -74.822649, 40.147489 ], [ -74.82277, 40.147669 ], [ -74.823299, 40.148389 ], [ -74.82488, 40.150539 ], [ -74.82565, 40.15157 ], [ -74.82767, 40.154309 ], [ -74.82781, 40.154499 ], [ -74.828059, 40.15482 ], [ -74.828189, 40.15499 ], [ -74.828549, 40.15546 ], [ -74.82863, 40.15556 ], [ -74.82983, 40.15719 ], [ -74.83033, 40.15788 ], [ -74.831839, 40.159909 ], [ -74.832389, 40.160619 ], [ -74.83267, 40.160989 ], [ -74.832999, 40.161439 ], [ -74.833149, 40.16165 ], [ -74.83326, 40.161789 ], [ -74.833449, 40.16203 ], [ -74.83367, 40.162239 ], [ -74.83393, 40.1624 ], [ -74.83428, 40.16257 ], [ -74.83482, 40.162779 ], [ -74.834939, 40.16283 ], [ -74.835659, 40.16311 ], [ -74.836109, 40.16328 ], [ -74.8365, 40.163429 ], [ -74.83682, 40.16355 ], [ -74.837279, 40.16374 ], [ -74.838049, 40.164039 ], [ -74.83889, 40.16437 ], [ -74.839029, 40.164429 ], [ -74.840619, 40.165049 ], [ -74.841, 40.1652 ], [ -74.841159, 40.16526 ], [ -74.841749, 40.165499 ], [ -74.84185, 40.165419 ], [ -74.842229, 40.165119 ], [ -74.84243, 40.164959 ], [ -74.84262, 40.16482 ], [ -74.842869, 40.16462 ], [ -74.84355, 40.16409 ], [ -74.84384, 40.163859 ], [ -74.8446, 40.163239 ], [ -74.84536, 40.162619 ], [ -74.84604, 40.16204 ], [ -74.8464, 40.16174 ], [ -74.84653, 40.161629 ], [ -74.84671, 40.16148 ], [ -74.84676, 40.161439 ], [ -74.84697, 40.161259 ], [ -74.84716, 40.161099 ], [ -74.8473, 40.160989 ], [ -74.84748, 40.16084 ], [ -74.847539, 40.16079 ], [ -74.847729, 40.160629 ], [ -74.847859, 40.16051 ], [ -74.848119, 40.160279 ], [ -74.84829, 40.16014 ], [ -74.8485, 40.15997 ], [ -74.84869, 40.159819 ], [ -74.84888, 40.15967 ], [ -74.849199, 40.15941 ], [ -74.849309, 40.15932 ], [ -74.849569, 40.159109 ], [ -74.84977, 40.15895 ], [ -74.85004, 40.158729 ], [ -74.85032, 40.1585 ], [ -74.85062, 40.15825 ], [ -74.851139, 40.15781 ], [ -74.851729, 40.157319 ], [ -74.851859, 40.157219 ], [ -74.851959, 40.157139 ], [ -74.85201, 40.15709 ], [ -74.85225, 40.15689 ], [ -74.8527, 40.156499 ], [ -74.852809, 40.156409 ], [ -74.85323, 40.156049 ], [ -74.85363, 40.15571 ], [ -74.853789, 40.15557 ], [ -74.853979, 40.155409 ], [ -74.85409, 40.155319 ], [ -74.854159, 40.15527 ], [ -74.854249, 40.15519 ], [ -74.85436, 40.1551 ], [ -74.85458, 40.15492 ], [ -74.854649, 40.154869 ], [ -74.854839, 40.15472 ], [ -74.855019, 40.154579 ], [ -74.85512, 40.154499 ], [ -74.855279, 40.15438 ], [ -74.855559, 40.154169 ], [ -74.855649, 40.15421 ], [ -74.85599, 40.154339 ], [ -74.8562, 40.154419 ], [ -74.856279, 40.15445 ], [ -74.85643, 40.154499 ], [ -74.856949, 40.154689 ], [ -74.858, 40.15509 ], [ -74.85859, 40.1553 ], [ -74.859119, 40.155489 ], [ -74.85923, 40.15553 ], [ -74.86039, 40.155949 ], [ -74.86196, 40.15653 ], [ -74.86246, 40.15671 ], [ -74.86335, 40.157029 ], [ -74.865269, 40.157729 ], [ -74.86601, 40.15799 ], [ -74.866479, 40.158199 ], [ -74.86678, 40.158359 ], [ -74.86727, 40.158669 ], [ -74.86751, 40.158849 ], [ -74.86773, 40.15905 ], [ -74.86823, 40.159569 ], [ -74.868569, 40.159899 ], [ -74.868739, 40.16007 ], [ -74.868909, 40.16024 ], [ -74.869109, 40.160449 ], [ -74.86935, 40.16069 ], [ -74.86949, 40.160829 ], [ -74.870169, 40.161519 ], [ -74.870259, 40.161609 ], [ -74.87039, 40.16175 ], [ -74.87043, 40.161789 ], [ -74.870539, 40.161899 ], [ -74.87073, 40.162089 ], [ -74.870949, 40.16231 ], [ -74.871069, 40.162439 ], [ -74.87118, 40.16255 ], [ -74.87133, 40.162709 ], [ -74.87151, 40.162899 ], [ -74.871759, 40.163149 ], [ -74.871839, 40.163229 ], [ -74.872, 40.16339 ], [ -74.872109, 40.163509 ], [ -74.87217, 40.16357 ], [ -74.87227, 40.163679 ], [ -74.87253, 40.163949 ], [ -74.872919, 40.164339 ], [ -74.87303, 40.16446 ], [ -74.873279, 40.16473 ], [ -74.87331, 40.164759 ], [ -74.87345, 40.1649 ], [ -74.873769, 40.165209 ], [ -74.87388, 40.165319 ], [ -74.87402, 40.16546 ], [ -74.874219, 40.16565 ], [ -74.874359, 40.16579 ], [ -74.874449, 40.165869 ], [ -74.874629, 40.166049 ], [ -74.87506, 40.166469 ], [ -74.87516, 40.166559 ], [ -74.87543, 40.16679 ], [ -74.87552, 40.16687 ], [ -74.875619, 40.166929 ], [ -74.875889, 40.167179 ], [ -74.87673, 40.16789 ], [ -74.877149, 40.168269 ], [ -74.87723, 40.16834 ], [ -74.877279, 40.168379 ], [ -74.87744, 40.16853 ], [ -74.877789, 40.16886 ], [ -74.878199, 40.16921 ], [ -74.878639, 40.1696 ], [ -74.878769, 40.169709 ], [ -74.87889, 40.169809 ], [ -74.87928, 40.17015 ], [ -74.87996, 40.17074 ], [ -74.880259, 40.170999 ], [ -74.8811, 40.171709 ], [ -74.881469, 40.17203 ], [ -74.88168, 40.17221 ], [ -74.881789, 40.1723 ], [ -74.883179, 40.17348 ], [ -74.883359, 40.17363 ], [ -74.88344, 40.173689 ], [ -74.883679, 40.1739 ], [ -74.88392, 40.1741 ], [ -74.883989, 40.17419 ], [ -74.884049, 40.17426 ], [ -74.884179, 40.17445 ], [ -74.884269, 40.17465 ], [ -74.88429, 40.1747 ], [ -74.88434, 40.1749 ], [ -74.88438, 40.17506 ], [ -74.884409, 40.17516 ], [ -74.88451, 40.175589 ], [ -74.884569, 40.175839 ], [ -74.88479, 40.176729 ], [ -74.884259, 40.176939 ], [ -74.884039, 40.17704 ], [ -74.88384, 40.17713 ], [ -74.883449, 40.17731 ], [ -74.88329, 40.177379 ], [ -74.882829, 40.17758 ], [ -74.88267, 40.177649 ], [ -74.882559, 40.17767 ], [ -74.882509, 40.17768 ], [ -74.882469, 40.17769 ], [ -74.8824, 40.17771 ], [ -74.88234, 40.177729 ], [ -74.882289, 40.177749 ], [ -74.88217, 40.1778 ], [ -74.88176, 40.177989 ], [ -74.88145, 40.17814 ], [ -74.88091, 40.178379 ], [ -74.880799, 40.178439 ], [ -74.88056, 40.17858 ], [ -74.88014, 40.17875 ], [ -74.879899, 40.17884 ], [ -74.879809, 40.17888 ], [ -74.879589, 40.17895 ], [ -74.87934, 40.17902 ], [ -74.87911, 40.179069 ], [ -74.87857, 40.179159 ], [ -74.87834, 40.179069 ], [ -74.878229, 40.179009 ], [ -74.87816, 40.178979 ], [ -74.87799, 40.178899 ], [ -74.877829, 40.17888 ], [ -74.877689, 40.17888 ], [ -74.877599, 40.178919 ], [ -74.877519, 40.178989 ], [ -74.877469, 40.17906 ], [ -74.877459, 40.17913 ], [ -74.877459, 40.17922 ], [ -74.877459, 40.17931 ], [ -74.877469, 40.179439 ], [ -74.877609, 40.179969 ], [ -74.87763, 40.180049 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307158", "route_id": "128" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952439, 40.12079 ], [ -74.95268, 40.121229 ], [ -74.95287, 40.121569 ], [ -74.952929, 40.12162 ], [ -74.95304, 40.121649 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.95071, 40.104899 ], [ -74.950499, 40.104459 ], [ -74.95044, 40.10434 ], [ -74.95039, 40.10424 ], [ -74.9503, 40.10405 ], [ -74.950279, 40.104 ], [ -74.95021, 40.103849 ], [ -74.950059, 40.10354 ], [ -74.950009, 40.10343 ], [ -74.94998, 40.10337 ], [ -74.9498, 40.10298 ], [ -74.949729, 40.10283 ], [ -74.94962, 40.102589 ], [ -74.94954, 40.10243 ], [ -74.94949, 40.102309 ], [ -74.949419, 40.102149 ], [ -74.949249, 40.101779 ], [ -74.949109, 40.101489 ], [ -74.94887, 40.10099 ], [ -74.94878, 40.10084 ], [ -74.948569, 40.100499 ], [ -74.948469, 40.100339 ], [ -74.948379, 40.1002 ], [ -74.948209, 40.099979 ], [ -74.948029, 40.09974 ], [ -74.947949, 40.09964 ], [ -74.947849, 40.099519 ], [ -74.947659, 40.0993 ], [ -74.947619, 40.099259 ], [ -74.947349, 40.09894 ], [ -74.94729, 40.09886 ], [ -74.947139, 40.09869 ], [ -74.9471, 40.098639 ], [ -74.946999, 40.098519 ], [ -74.946909, 40.09841 ], [ -74.94671, 40.098169 ], [ -74.94662, 40.098069 ], [ -74.946359, 40.09776 ], [ -74.946269, 40.097649 ], [ -74.94611, 40.097459 ], [ -74.945959, 40.097289 ], [ -74.945909, 40.09724 ], [ -74.945779, 40.097079 ], [ -74.94558, 40.096839 ], [ -74.94549, 40.096729 ], [ -74.94536, 40.09658 ], [ -74.945289, 40.09649 ], [ -74.94499, 40.09614 ], [ -74.94454, 40.095569 ], [ -74.944479, 40.0955 ], [ -74.944429, 40.09544 ], [ -74.94431, 40.095279 ], [ -74.94404, 40.09496 ], [ -74.94386, 40.094739 ], [ -74.94382, 40.09469 ], [ -74.94328, 40.094029 ], [ -74.94287, 40.09352 ], [ -74.942759, 40.093399 ], [ -74.9427, 40.093319 ], [ -74.94261, 40.093219 ], [ -74.94246, 40.093049 ], [ -74.94238, 40.092949 ], [ -74.942319, 40.092879 ], [ -74.942269, 40.09281 ], [ -74.94216, 40.092659 ], [ -74.942089, 40.092569 ], [ -74.942049, 40.092519 ], [ -74.94189, 40.092329 ], [ -74.94179, 40.0922 ], [ -74.94161, 40.09199 ], [ -74.94129, 40.091609 ], [ -74.94054, 40.090709 ], [ -74.940199, 40.0903 ], [ -74.93995, 40.089989 ], [ -74.939839, 40.08985 ], [ -74.93973, 40.089709 ], [ -74.939649, 40.089609 ], [ -74.939429, 40.08933 ], [ -74.93909, 40.088889 ], [ -74.938889, 40.088629 ], [ -74.93837, 40.08795 ], [ -74.93788, 40.087359 ], [ -74.93771, 40.08716 ], [ -74.93756, 40.08699 ], [ -74.937309, 40.08669 ], [ -74.93716, 40.0865 ], [ -74.93711, 40.086309 ], [ -74.93708, 40.086199 ], [ -74.93703, 40.08606 ], [ -74.936969, 40.08591 ], [ -74.9369, 40.0857 ], [ -74.936869, 40.08554 ], [ -74.936859, 40.085319 ], [ -74.936869, 40.08506 ], [ -74.936879, 40.084839 ], [ -74.936859, 40.084689 ], [ -74.936829, 40.08455 ], [ -74.936789, 40.08445 ], [ -74.936729, 40.084329 ], [ -74.936649, 40.084229 ], [ -74.936199, 40.083659 ], [ -74.936099, 40.08371 ], [ -74.93553, 40.08398 ], [ -74.935389, 40.084049 ], [ -74.935289, 40.0841 ], [ -74.93519, 40.084149 ], [ -74.93509, 40.084199 ], [ -74.93499, 40.08425 ], [ -74.934339, 40.084579 ], [ -74.93423, 40.08463 ], [ -74.93393, 40.084779 ], [ -74.93374, 40.08488 ], [ -74.933579, 40.08498 ], [ -74.93342, 40.08509 ], [ -74.93328, 40.08519 ], [ -74.933219, 40.08525 ], [ -74.93302, 40.085399 ], [ -74.93271, 40.085669 ], [ -74.93256, 40.08582 ], [ -74.932369, 40.086 ], [ -74.932279, 40.08608 ], [ -74.932189, 40.08615 ], [ -74.932099, 40.086209 ], [ -74.93199, 40.08627 ], [ -74.931869, 40.08633 ], [ -74.93166, 40.08642 ], [ -74.931339, 40.08653 ], [ -74.931009, 40.08661 ], [ -74.930479, 40.08671 ], [ -74.930219, 40.08678 ], [ -74.929989, 40.08686 ], [ -74.929769, 40.08696 ], [ -74.929539, 40.087099 ], [ -74.929309, 40.08726 ], [ -74.929229, 40.08732 ], [ -74.928959, 40.08752 ], [ -74.928719, 40.08768 ], [ -74.928539, 40.087819 ], [ -74.92826, 40.088019 ], [ -74.92785, 40.08833 ], [ -74.92745, 40.088629 ], [ -74.92739, 40.08867 ], [ -74.92727, 40.08876 ], [ -74.92686, 40.08906 ], [ -74.92654, 40.0893 ], [ -74.926329, 40.089459 ], [ -74.926209, 40.089549 ], [ -74.925979, 40.089719 ], [ -74.925749, 40.089889 ], [ -74.925479, 40.090089 ], [ -74.92538, 40.090159 ], [ -74.925169, 40.09032 ], [ -74.92488, 40.090529 ], [ -74.924539, 40.090779 ], [ -74.92442, 40.09086 ], [ -74.924179, 40.09102 ], [ -74.92401, 40.091149 ], [ -74.92374, 40.091349 ], [ -74.923509, 40.09146 ], [ -74.92326, 40.09157 ], [ -74.9229, 40.091689 ], [ -74.92248, 40.09181 ], [ -74.92208, 40.0919 ], [ -74.921789, 40.091969 ], [ -74.921429, 40.092069 ], [ -74.92114, 40.092159 ], [ -74.920939, 40.092209 ], [ -74.92073, 40.09226 ], [ -74.920569, 40.09229 ], [ -74.919949, 40.092409 ], [ -74.91961, 40.092479 ], [ -74.9183, 40.092779 ], [ -74.917599, 40.092939 ], [ -74.91749, 40.092959 ], [ -74.916889, 40.09309 ], [ -74.91655, 40.09317 ], [ -74.91645, 40.09319 ], [ -74.916, 40.09328 ], [ -74.91566, 40.09335 ], [ -74.91537, 40.093409 ], [ -74.91488, 40.093479 ], [ -74.914599, 40.093509 ], [ -74.91422, 40.09354 ], [ -74.91402, 40.09355 ], [ -74.913739, 40.093569 ], [ -74.91341, 40.093589 ], [ -74.913059, 40.09362 ], [ -74.912919, 40.09363 ], [ -74.912669, 40.09364 ], [ -74.912479, 40.09365 ], [ -74.912399, 40.093659 ], [ -74.911809, 40.093689 ], [ -74.911659, 40.0937 ], [ -74.910999, 40.09374 ], [ -74.91084, 40.093749 ], [ -74.91061, 40.093759 ], [ -74.910189, 40.09379 ], [ -74.910039, 40.0938 ], [ -74.90984, 40.09381 ], [ -74.909729, 40.09382 ], [ -74.90958, 40.09383 ], [ -74.90949, 40.09383 ], [ -74.909379, 40.093839 ], [ -74.90918, 40.093859 ], [ -74.909, 40.093869 ], [ -74.908829, 40.09388 ], [ -74.90855, 40.0939 ], [ -74.90822, 40.09392 ], [ -74.9079, 40.093939 ], [ -74.907519, 40.09397 ], [ -74.907399, 40.09398 ], [ -74.907339, 40.09391 ], [ -74.907209, 40.09383 ], [ -74.907079, 40.09374 ], [ -74.906489, 40.0938 ], [ -74.906489, 40.09391 ], [ -74.906499, 40.094049 ], [ -74.90723, 40.09399 ], [ -74.907399, 40.09398 ], [ -74.907519, 40.09397 ], [ -74.9079, 40.093939 ], [ -74.90822, 40.09392 ], [ -74.90855, 40.0939 ], [ -74.90853, 40.09381 ], [ -74.9085, 40.09374 ], [ -74.908429, 40.093669 ], [ -74.90836, 40.09363 ], [ -74.908249, 40.09362 ], [ -74.9081, 40.09363 ], [ -74.908019, 40.09364 ], [ -74.90796, 40.09365 ], [ -74.907879, 40.093659 ], [ -74.907579, 40.0937 ], [ -74.907519, 40.09372 ], [ -74.90741, 40.09372 ], [ -74.907299, 40.0937 ], [ -74.907219, 40.09364 ], [ -74.90718, 40.09352 ], [ -74.907169, 40.09347 ], [ -74.907119, 40.09327 ], [ -74.90697, 40.09298 ], [ -74.90679, 40.092609 ], [ -74.90678, 40.092579 ], [ -74.9067, 40.092429 ], [ -74.906309, 40.09166 ], [ -74.90593, 40.09085 ], [ -74.905689, 40.090359 ], [ -74.905239, 40.08941 ], [ -74.904789, 40.088549 ], [ -74.90423, 40.08743 ], [ -74.904069, 40.087119 ], [ -74.903619, 40.08724 ], [ -74.90354, 40.08726 ], [ -74.90319, 40.087369 ], [ -74.90225, 40.087659 ], [ -74.90206, 40.087709 ], [ -74.90162, 40.087829 ], [ -74.9013, 40.087919 ], [ -74.90034, 40.08821 ], [ -74.89936, 40.08849 ], [ -74.89883, 40.08866 ], [ -74.898439, 40.08878 ], [ -74.89765, 40.088999 ], [ -74.896689, 40.0893 ], [ -74.89626, 40.08942 ], [ -74.895729, 40.08958 ], [ -74.894799, 40.08985 ], [ -74.89391, 40.09012 ], [ -74.892909, 40.090419 ], [ -74.891869, 40.09073 ], [ -74.89085, 40.09104 ], [ -74.88983, 40.091339 ], [ -74.888809, 40.09164 ], [ -74.88824, 40.09181 ], [ -74.887779, 40.091939 ], [ -74.88744, 40.092039 ], [ -74.886509, 40.092329 ], [ -74.885519, 40.092599 ], [ -74.885389, 40.09264 ], [ -74.885019, 40.092749 ], [ -74.88456, 40.09289 ], [ -74.883899, 40.0931 ], [ -74.88366, 40.09317 ], [ -74.88344, 40.093229 ], [ -74.883309, 40.09328 ], [ -74.88317, 40.093329 ], [ -74.882679, 40.09353 ], [ -74.881379, 40.0941 ], [ -74.880349, 40.09455 ], [ -74.879589, 40.094859 ], [ -74.879129, 40.09506 ], [ -74.877059, 40.09596 ], [ -74.876609, 40.09616 ], [ -74.876299, 40.096299 ], [ -74.87534, 40.096729 ], [ -74.875089, 40.096819 ], [ -74.87489, 40.09687 ], [ -74.87469, 40.09688 ], [ -74.8746, 40.09686 ], [ -74.874489, 40.096829 ], [ -74.87442, 40.096799 ], [ -74.87397, 40.0966 ], [ -74.87345, 40.096369 ], [ -74.87317, 40.09677 ], [ -74.87307, 40.096919 ], [ -74.87299, 40.09703 ], [ -74.872739, 40.097379 ], [ -74.872699, 40.097439 ], [ -74.872649, 40.09751 ], [ -74.87244, 40.097799 ], [ -74.87236, 40.097919 ], [ -74.872959, 40.098069 ], [ -74.87327, 40.098159 ], [ -74.87348, 40.09824 ], [ -74.873639, 40.0983 ], [ -74.87376, 40.098359 ], [ -74.87381, 40.0984 ], [ -74.873859, 40.098459 ], [ -74.87389, 40.09851 ], [ -74.873639, 40.09857 ], [ -74.873289, 40.09867 ], [ -74.87299, 40.09876 ], [ -74.872199, 40.098999 ], [ -74.872059, 40.09904 ], [ -74.87187, 40.0991 ], [ -74.87096, 40.09938 ], [ -74.870669, 40.09947 ], [ -74.87024, 40.099609 ], [ -74.870049, 40.099619 ], [ -74.869899, 40.099619 ], [ -74.869689, 40.099619 ], [ -74.86921, 40.09959 ], [ -74.868819, 40.09956 ], [ -74.86871, 40.09956 ], [ -74.868609, 40.099609 ], [ -74.868509, 40.09974 ], [ -74.868479, 40.09984 ], [ -74.86849, 40.09995 ], [ -74.86858, 40.10012 ], [ -74.868819, 40.10056 ], [ -74.868869, 40.100619 ], [ -74.86895, 40.100689 ], [ -74.869109, 40.10074 ], [ -74.86952, 40.10081 ], [ -74.86965, 40.100859 ], [ -74.869819, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.87012, 40.100959 ], [ -74.87029, 40.100859 ], [ -74.87039, 40.10074 ], [ -74.87061, 40.10083 ], [ -74.87082, 40.10091 ], [ -74.871039, 40.10099 ], [ -74.87124, 40.101069 ], [ -74.87146, 40.101149 ], [ -74.871659, 40.101229 ], [ -74.871799, 40.10128 ], [ -74.87177, 40.101339 ], [ -74.872419, 40.101579 ], [ -74.87249, 40.101609 ], [ -74.872689, 40.101679 ], [ -74.872779, 40.10154 ], [ -74.872919, 40.101299 ], [ -74.873049, 40.101119 ], [ -74.87313, 40.10101 ], [ -74.87327, 40.10092 ], [ -74.87343, 40.100859 ], [ -74.873649, 40.10081 ], [ -74.87393, 40.100779 ], [ -74.874459, 40.10073 ], [ -74.87448, 40.1009 ], [ -74.874499, 40.101 ], [ -74.87456, 40.10128 ], [ -74.87462, 40.10153 ], [ -74.87466, 40.101669 ], [ -74.8747, 40.101789 ], [ -74.87478, 40.102039 ], [ -74.874809, 40.102129 ], [ -74.874849, 40.102219 ], [ -74.87487, 40.10227 ], [ -74.87501, 40.10265 ], [ -74.875389, 40.10352 ], [ -74.875439, 40.10363 ], [ -74.875569, 40.103919 ], [ -74.87565, 40.10409 ], [ -74.875989, 40.1048 ], [ -74.8761, 40.105019 ], [ -74.876169, 40.10516 ], [ -74.87619, 40.105199 ], [ -74.87632, 40.105469 ], [ -74.876379, 40.1056 ], [ -74.876529, 40.105929 ], [ -74.876659, 40.10621 ], [ -74.87669, 40.106279 ], [ -74.876829, 40.106559 ], [ -74.87695, 40.106809 ], [ -74.877029, 40.106989 ], [ -74.87705, 40.10704 ], [ -74.87714, 40.10724 ], [ -74.877159, 40.107279 ], [ -74.87727, 40.10751 ], [ -74.87736, 40.107719 ], [ -74.87744, 40.107879 ], [ -74.877549, 40.10811 ], [ -74.87767, 40.108329 ], [ -74.877819, 40.10867 ], [ -74.87795, 40.10895 ], [ -74.87798, 40.10902 ], [ -74.87843, 40.109979 ], [ -74.878459, 40.110039 ], [ -74.87849, 40.11011 ], [ -74.878549, 40.110229 ], [ -74.87857, 40.11026 ], [ -74.87866, 40.11044 ], [ -74.878729, 40.110589 ], [ -74.87879, 40.11072 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.87879, 40.11072 ], [ -74.878729, 40.110589 ], [ -74.87866, 40.11044 ], [ -74.87857, 40.11026 ], [ -74.878549, 40.110229 ], [ -74.87849, 40.11011 ], [ -74.878459, 40.110039 ], [ -74.87843, 40.109979 ], [ -74.87798, 40.10902 ], [ -74.87795, 40.10895 ], [ -74.877819, 40.10867 ], [ -74.87767, 40.108329 ], [ -74.877549, 40.10811 ], [ -74.87744, 40.107879 ], [ -74.87736, 40.107719 ], [ -74.87727, 40.10751 ], [ -74.877159, 40.107279 ], [ -74.87714, 40.10724 ], [ -74.87705, 40.10704 ], [ -74.877029, 40.106989 ], [ -74.876559, 40.10712 ], [ -74.87587, 40.10731 ], [ -74.875889, 40.10741 ], [ -74.875849, 40.10759 ], [ -74.875749, 40.10774 ], [ -74.87561, 40.10785 ], [ -74.873769, 40.108419 ], [ -74.87367, 40.108439 ], [ -74.873369, 40.108529 ], [ -74.873149, 40.108539 ], [ -74.87294, 40.1085 ], [ -74.872839, 40.10846 ], [ -74.872739, 40.108419 ], [ -74.872559, 40.10829 ], [ -74.872419, 40.10812 ], [ -74.872199, 40.10767 ], [ -74.87178, 40.106739 ], [ -74.87128, 40.10686 ], [ -74.871209, 40.106899 ], [ -74.871079, 40.106999 ], [ -74.871, 40.10711 ], [ -74.87064, 40.10756 ], [ -74.870539, 40.10768 ], [ -74.870049, 40.10823 ], [ -74.868379, 40.10738 ], [ -74.86832, 40.107349 ], [ -74.867799, 40.107089 ], [ -74.86673, 40.106549 ], [ -74.865939, 40.10614 ], [ -74.865809, 40.106069 ], [ -74.865219, 40.10576 ], [ -74.86508, 40.1057 ], [ -74.86471, 40.10561 ], [ -74.864769, 40.10524 ], [ -74.86479, 40.10504 ], [ -74.86479, 40.10487 ], [ -74.86479, 40.10477 ], [ -74.864779, 40.104639 ], [ -74.86475, 40.104459 ], [ -74.86467, 40.10418 ], [ -74.864649, 40.104099 ], [ -74.86463, 40.10406 ], [ -74.86449, 40.103769 ], [ -74.8644, 40.1036 ], [ -74.864279, 40.10342 ], [ -74.864199, 40.103309 ], [ -74.86417, 40.10326 ], [ -74.864059, 40.1031 ], [ -74.8639, 40.10292 ], [ -74.863749, 40.10272 ], [ -74.863699, 40.10265 ], [ -74.863599, 40.10253 ], [ -74.863569, 40.102489 ], [ -74.863329, 40.102119 ], [ -74.86319, 40.101879 ], [ -74.86314, 40.1018 ], [ -74.86309, 40.10171 ], [ -74.86304, 40.10162 ], [ -74.86301, 40.101569 ], [ -74.862929, 40.101419 ], [ -74.86286, 40.10128 ], [ -74.862789, 40.101129 ], [ -74.862759, 40.101069 ], [ -74.86255, 40.100679 ], [ -74.86192, 40.09949 ], [ -74.861859, 40.099349 ], [ -74.861799, 40.09922 ], [ -74.86147, 40.098639 ], [ -74.86116, 40.098069 ], [ -74.86103, 40.097809 ], [ -74.860769, 40.09732 ], [ -74.8607, 40.097169 ], [ -74.860639, 40.096999 ], [ -74.860469, 40.096979 ], [ -74.86031, 40.09694 ], [ -74.860149, 40.09686 ], [ -74.85995, 40.096729 ], [ -74.85986, 40.09668 ], [ -74.85932, 40.096349 ], [ -74.85913, 40.09623 ], [ -74.85828, 40.09572 ], [ -74.85719, 40.09507 ], [ -74.85639, 40.0946 ], [ -74.85615, 40.09473 ], [ -74.85581, 40.09491 ], [ -74.85558, 40.095039 ], [ -74.85468, 40.09551 ], [ -74.854069, 40.095839 ], [ -74.852859, 40.096469 ], [ -74.85282, 40.09649 ], [ -74.8522, 40.096819 ], [ -74.851829, 40.097019 ], [ -74.85108, 40.0974 ], [ -74.85009, 40.097919 ], [ -74.849969, 40.097979 ], [ -74.849889, 40.09802 ], [ -74.849169, 40.0984 ], [ -74.848269, 40.09887 ], [ -74.84725, 40.0994 ], [ -74.84693, 40.09957 ], [ -74.84726, 40.09993 ], [ -74.84748, 40.100159 ], [ -74.84779, 40.100509 ], [ -74.84815, 40.10091 ], [ -74.849349, 40.10229 ], [ -74.848579, 40.10272 ], [ -74.84805, 40.103019 ], [ -74.84748, 40.103299 ], [ -74.847359, 40.10336 ], [ -74.845919, 40.104099 ], [ -74.84554, 40.10432 ], [ -74.84514, 40.104549 ], [ -74.84492, 40.104649 ], [ -74.844519, 40.10486 ], [ -74.844339, 40.104899 ], [ -74.844129, 40.105169 ], [ -74.84311, 40.10472 ], [ -74.84261, 40.1045 ], [ -74.841699, 40.10405 ], [ -74.84109, 40.1047 ], [ -74.840609, 40.105209 ], [ -74.840199, 40.105639 ], [ -74.839529, 40.106349 ], [ -74.8391, 40.106799 ], [ -74.83848, 40.107459 ], [ -74.838039, 40.10792 ], [ -74.83739, 40.108609 ], [ -74.837319, 40.10868 ], [ -74.837199, 40.10883 ], [ -74.83716, 40.108889 ], [ -74.83708, 40.10901 ], [ -74.837009, 40.10912 ], [ -74.83699, 40.109159 ], [ -74.8369, 40.109349 ], [ -74.836969, 40.109409 ], [ -74.837049, 40.109509 ], [ -74.837139, 40.109619 ], [ -74.8373, 40.10983 ], [ -74.8377, 40.11035 ], [ -74.83798, 40.11073 ], [ -74.838129, 40.110929 ], [ -74.838279, 40.111119 ], [ -74.83853, 40.11145 ], [ -74.838639, 40.111589 ], [ -74.83919, 40.112309 ], [ -74.83937, 40.11255 ], [ -74.839579, 40.112829 ], [ -74.840379, 40.11387 ], [ -74.84059, 40.11416 ], [ -74.840739, 40.114349 ], [ -74.84095, 40.114619 ], [ -74.841339, 40.11512 ], [ -74.841549, 40.11539 ], [ -74.84171, 40.1156 ], [ -74.8418, 40.115709 ], [ -74.841869, 40.115799 ], [ -74.842419, 40.116549 ], [ -74.84271, 40.11694 ], [ -74.842769, 40.11703 ], [ -74.84329, 40.117719 ], [ -74.84339, 40.11784 ], [ -74.84361, 40.118129 ], [ -74.84366, 40.11819 ], [ -74.84375, 40.11829 ], [ -74.84388, 40.118399 ], [ -74.843939, 40.11846 ], [ -74.84411, 40.118599 ], [ -74.84432, 40.11874 ], [ -74.843899, 40.11917 ], [ -74.84373, 40.119339 ], [ -74.843669, 40.119399 ], [ -74.84348, 40.119589 ], [ -74.843309, 40.119759 ], [ -74.8432, 40.119869 ], [ -74.84311, 40.11991 ], [ -74.843039, 40.119949 ], [ -74.84298, 40.11999 ], [ -74.842919, 40.120039 ], [ -74.842589, 40.120389 ], [ -74.842499, 40.120479 ], [ -74.84231, 40.120679 ], [ -74.842009, 40.12099 ], [ -74.841929, 40.12107 ], [ -74.84181, 40.12119 ], [ -74.841609, 40.121379 ], [ -74.841459, 40.12153 ], [ -74.841159, 40.121829 ], [ -74.840839, 40.12216 ], [ -74.840569, 40.12244 ], [ -74.840299, 40.12271 ], [ -74.8401, 40.122919 ], [ -74.83947, 40.123559 ], [ -74.83924, 40.12379 ], [ -74.83916, 40.12387 ], [ -74.838729, 40.12431 ], [ -74.838499, 40.124539 ], [ -74.837859, 40.125189 ], [ -74.837599, 40.125439 ], [ -74.83707, 40.125999 ], [ -74.837, 40.126079 ], [ -74.836749, 40.12632 ], [ -74.83658, 40.1265 ], [ -74.83645, 40.126629 ], [ -74.836299, 40.126789 ], [ -74.83601, 40.127079 ], [ -74.835849, 40.127239 ], [ -74.83573, 40.12736 ], [ -74.83564, 40.12746 ], [ -74.83556, 40.127579 ], [ -74.835529, 40.12763 ], [ -74.83551, 40.127679 ], [ -74.835489, 40.12775 ], [ -74.83547, 40.127769 ], [ -74.835259, 40.127979 ], [ -74.8352, 40.128039 ], [ -74.83511, 40.128129 ], [ -74.83483, 40.128399 ], [ -74.834629, 40.128589 ], [ -74.834399, 40.12882 ], [ -74.83407, 40.129149 ], [ -74.833989, 40.129229 ], [ -74.833859, 40.12936 ], [ -74.833779, 40.12944 ], [ -74.83371, 40.129509 ], [ -74.83361, 40.12962 ], [ -74.833559, 40.129669 ], [ -74.833499, 40.1297 ], [ -74.83343, 40.129749 ], [ -74.83335, 40.12983 ], [ -74.833199, 40.12998 ], [ -74.833009, 40.13017 ], [ -74.8328, 40.130389 ], [ -74.832559, 40.13063 ], [ -74.8324, 40.13079 ], [ -74.832339, 40.130849 ], [ -74.83204, 40.13116 ], [ -74.83195, 40.13125 ], [ -74.831879, 40.13132 ], [ -74.83182, 40.131379 ], [ -74.83164, 40.131539 ], [ -74.831579, 40.13159 ], [ -74.831469, 40.13169 ], [ -74.83124, 40.13188 ], [ -74.831199, 40.131909 ], [ -74.83106, 40.13204 ], [ -74.830939, 40.132169 ], [ -74.830809, 40.132259 ], [ -74.83056, 40.13243 ], [ -74.830079, 40.132729 ], [ -74.829639, 40.13298 ], [ -74.829449, 40.133089 ], [ -74.829099, 40.133289 ], [ -74.82899, 40.13332 ], [ -74.8289, 40.133359 ], [ -74.82875, 40.133439 ], [ -74.82862, 40.13351 ], [ -74.828509, 40.13358 ], [ -74.82835, 40.13368 ], [ -74.82822, 40.13376 ], [ -74.828199, 40.13377 ], [ -74.82813, 40.133809 ], [ -74.82804, 40.13386 ], [ -74.82762, 40.134099 ], [ -74.82744, 40.13421 ], [ -74.827389, 40.13424 ], [ -74.827149, 40.13438 ], [ -74.82668, 40.13466 ], [ -74.82647, 40.134789 ], [ -74.826339, 40.13486 ], [ -74.826, 40.135059 ], [ -74.82575, 40.13521 ], [ -74.825189, 40.135539 ], [ -74.824769, 40.135789 ], [ -74.823749, 40.136399 ], [ -74.82323, 40.136699 ], [ -74.8225, 40.137139 ], [ -74.822399, 40.1372 ], [ -74.821839, 40.13755 ], [ -74.821619, 40.137679 ], [ -74.82143, 40.13782 ], [ -74.82106, 40.13807 ], [ -74.82087, 40.13819 ], [ -74.820639, 40.13835 ], [ -74.820359, 40.13856 ], [ -74.81925, 40.13944 ], [ -74.81918, 40.139499 ], [ -74.819049, 40.13961 ], [ -74.819019, 40.139739 ], [ -74.81886, 40.13988 ], [ -74.818699, 40.140009 ], [ -74.81845, 40.140219 ], [ -74.81787, 40.140719 ], [ -74.81746, 40.14043 ], [ -74.817309, 40.14032 ], [ -74.817169, 40.140449 ], [ -74.817, 40.14061 ], [ -74.81682, 40.14077 ], [ -74.816639, 40.140929 ], [ -74.81647, 40.141079 ], [ -74.816279, 40.14125 ], [ -74.816169, 40.141349 ], [ -74.81621, 40.14143 ], [ -74.81603, 40.14152 ], [ -74.815899, 40.1416 ], [ -74.81567, 40.14177 ], [ -74.815269, 40.14214 ], [ -74.81525, 40.142169 ], [ -74.815239, 40.14222 ], [ -74.81525, 40.142259 ], [ -74.815289, 40.1423 ], [ -74.815459, 40.14241 ], [ -74.81543, 40.142459 ], [ -74.815409, 40.14251 ], [ -74.8154, 40.14258 ], [ -74.815409, 40.142639 ], [ -74.815459, 40.1427 ], [ -74.815549, 40.14277 ], [ -74.81567, 40.14285 ], [ -74.815729, 40.14287 ], [ -74.81579, 40.14288 ], [ -74.81589, 40.14287 ], [ -74.8163, 40.142379 ], [ -74.81665, 40.14198 ], [ -74.817259, 40.141389 ], [ -74.817339, 40.14131 ], [ -74.81737, 40.141199 ], [ -74.8175, 40.141079 ], [ -74.81759, 40.140989 ], [ -74.81787, 40.140719 ], [ -74.8179, 40.14079 ], [ -74.817979, 40.140899 ], [ -74.818109, 40.141079 ], [ -74.81823, 40.14125 ], [ -74.81873, 40.14195 ], [ -74.818879, 40.142179 ], [ -74.81894, 40.142259 ], [ -74.81904, 40.14241 ], [ -74.81922, 40.14267 ], [ -74.81936, 40.1426 ], [ -74.819909, 40.142349 ], [ -74.82025, 40.142199 ], [ -74.820399, 40.1424 ], [ -74.82051, 40.142549 ], [ -74.82061, 40.1427 ], [ -74.820719, 40.14284 ], [ -74.820819, 40.142979 ], [ -74.82092, 40.14313 ], [ -74.82096, 40.143189 ], [ -74.821029, 40.143279 ], [ -74.821129, 40.143429 ], [ -74.82123, 40.14357 ], [ -74.82146, 40.143909 ], [ -74.82119, 40.14403 ], [ -74.82083, 40.144159 ], [ -74.820539, 40.14428 ], [ -74.820409, 40.144339 ], [ -74.820629, 40.14464 ], [ -74.820679, 40.144699 ], [ -74.820819, 40.144899 ], [ -74.82092, 40.14503 ], [ -74.820999, 40.145149 ], [ -74.82132, 40.145589 ], [ -74.82224, 40.1469 ], [ -74.822649, 40.147489 ], [ -74.82277, 40.147669 ], [ -74.823299, 40.148389 ], [ -74.82488, 40.150539 ], [ -74.82565, 40.15157 ], [ -74.82767, 40.154309 ], [ -74.82781, 40.154499 ], [ -74.828059, 40.15482 ], [ -74.828189, 40.15499 ], [ -74.828549, 40.15546 ], [ -74.82863, 40.15556 ], [ -74.82983, 40.15719 ], [ -74.83033, 40.15788 ], [ -74.831839, 40.159909 ], [ -74.832389, 40.160619 ], [ -74.83267, 40.160989 ], [ -74.832999, 40.161439 ], [ -74.833149, 40.16165 ], [ -74.83326, 40.161789 ], [ -74.833449, 40.16203 ], [ -74.83367, 40.162239 ], [ -74.83393, 40.1624 ], [ -74.83428, 40.16257 ], [ -74.83482, 40.162779 ], [ -74.834939, 40.16283 ], [ -74.835659, 40.16311 ], [ -74.836109, 40.16328 ], [ -74.8365, 40.163429 ], [ -74.83682, 40.16355 ], [ -74.837279, 40.16374 ], [ -74.838049, 40.164039 ], [ -74.83889, 40.16437 ], [ -74.839029, 40.164429 ], [ -74.840619, 40.165049 ], [ -74.841, 40.1652 ], [ -74.841159, 40.16526 ], [ -74.841749, 40.165499 ], [ -74.84185, 40.165419 ], [ -74.842229, 40.165119 ], [ -74.84243, 40.164959 ], [ -74.84262, 40.16482 ], [ -74.842869, 40.16462 ], [ -74.84355, 40.16409 ], [ -74.84384, 40.163859 ], [ -74.8446, 40.163239 ], [ -74.84536, 40.162619 ], [ -74.84604, 40.16204 ], [ -74.8464, 40.16174 ], [ -74.84653, 40.161629 ], [ -74.84671, 40.16148 ], [ -74.84676, 40.161439 ], [ -74.84697, 40.161259 ], [ -74.84716, 40.161099 ], [ -74.8473, 40.160989 ], [ -74.84748, 40.16084 ], [ -74.847539, 40.16079 ], [ -74.847729, 40.160629 ], [ -74.847859, 40.16051 ], [ -74.848119, 40.160279 ], [ -74.84829, 40.16014 ], [ -74.8485, 40.15997 ], [ -74.84869, 40.159819 ], [ -74.84888, 40.15967 ], [ -74.849199, 40.15941 ], [ -74.849309, 40.15932 ], [ -74.849569, 40.159109 ], [ -74.84977, 40.15895 ], [ -74.85004, 40.158729 ], [ -74.85032, 40.1585 ], [ -74.85062, 40.15825 ], [ -74.851139, 40.15781 ], [ -74.851729, 40.157319 ], [ -74.851859, 40.157219 ], [ -74.851959, 40.157139 ], [ -74.85201, 40.15709 ], [ -74.85225, 40.15689 ], [ -74.8527, 40.156499 ], [ -74.852809, 40.156409 ], [ -74.85323, 40.156049 ], [ -74.85363, 40.15571 ], [ -74.853789, 40.15557 ], [ -74.853979, 40.155409 ], [ -74.85409, 40.155319 ], [ -74.854159, 40.15527 ], [ -74.854249, 40.15519 ], [ -74.85436, 40.1551 ], [ -74.85458, 40.15492 ], [ -74.854649, 40.154869 ], [ -74.854839, 40.15472 ], [ -74.855019, 40.154579 ], [ -74.85512, 40.154499 ], [ -74.855279, 40.15438 ], [ -74.855559, 40.154169 ], [ -74.855649, 40.15421 ], [ -74.85599, 40.154339 ], [ -74.8562, 40.154419 ], [ -74.856279, 40.15445 ], [ -74.85643, 40.154499 ], [ -74.856949, 40.154689 ], [ -74.858, 40.15509 ], [ -74.85859, 40.1553 ], [ -74.859119, 40.155489 ], [ -74.85923, 40.15553 ], [ -74.86039, 40.155949 ], [ -74.86196, 40.15653 ], [ -74.86246, 40.15671 ], [ -74.86335, 40.157029 ], [ -74.865269, 40.157729 ], [ -74.86601, 40.15799 ], [ -74.866479, 40.158199 ], [ -74.86678, 40.158359 ], [ -74.86727, 40.158669 ], [ -74.86751, 40.158849 ], [ -74.86773, 40.15905 ], [ -74.86823, 40.159569 ], [ -74.868569, 40.159899 ], [ -74.868739, 40.16007 ], [ -74.868909, 40.16024 ], [ -74.869109, 40.160449 ], [ -74.86935, 40.16069 ], [ -74.86949, 40.160829 ], [ -74.870169, 40.161519 ], [ -74.870259, 40.161609 ], [ -74.87039, 40.16175 ], [ -74.87043, 40.161789 ], [ -74.870539, 40.161899 ], [ -74.87073, 40.162089 ], [ -74.870949, 40.16231 ], [ -74.871069, 40.162439 ], [ -74.87118, 40.16255 ], [ -74.87133, 40.162709 ], [ -74.87151, 40.162899 ], [ -74.871759, 40.163149 ], [ -74.871839, 40.163229 ], [ -74.872, 40.16339 ], [ -74.872109, 40.163509 ], [ -74.87217, 40.16357 ], [ -74.87227, 40.163679 ], [ -74.87253, 40.163949 ], [ -74.872919, 40.164339 ], [ -74.87303, 40.16446 ], [ -74.873279, 40.16473 ], [ -74.87331, 40.164759 ], [ -74.87345, 40.1649 ], [ -74.873769, 40.165209 ], [ -74.87388, 40.165319 ], [ -74.87402, 40.16546 ], [ -74.874219, 40.16565 ], [ -74.874359, 40.16579 ], [ -74.874449, 40.165869 ], [ -74.874629, 40.166049 ], [ -74.87506, 40.166469 ], [ -74.87516, 40.166559 ], [ -74.87543, 40.16679 ], [ -74.87552, 40.16687 ], [ -74.875619, 40.166929 ], [ -74.875889, 40.167179 ], [ -74.87673, 40.16789 ], [ -74.877149, 40.168269 ], [ -74.87723, 40.16834 ], [ -74.877279, 40.168379 ], [ -74.87744, 40.16853 ], [ -74.877789, 40.16886 ], [ -74.878199, 40.16921 ], [ -74.878639, 40.1696 ], [ -74.878769, 40.169709 ], [ -74.87889, 40.169809 ], [ -74.87928, 40.17015 ], [ -74.87996, 40.17074 ], [ -74.880259, 40.170999 ], [ -74.8811, 40.171709 ], [ -74.881469, 40.17203 ], [ -74.88168, 40.17221 ], [ -74.881789, 40.1723 ], [ -74.883179, 40.17348 ], [ -74.883359, 40.17363 ], [ -74.88344, 40.173689 ], [ -74.883679, 40.1739 ], [ -74.88392, 40.1741 ], [ -74.883989, 40.17419 ], [ -74.884049, 40.17426 ], [ -74.884179, 40.17445 ], [ -74.884269, 40.17465 ], [ -74.88429, 40.1747 ], [ -74.88434, 40.1749 ], [ -74.88438, 40.17506 ], [ -74.884409, 40.17516 ], [ -74.88451, 40.175589 ], [ -74.884569, 40.175839 ], [ -74.88479, 40.176729 ], [ -74.884259, 40.176939 ], [ -74.884039, 40.17704 ], [ -74.88384, 40.17713 ], [ -74.883449, 40.17731 ], [ -74.88329, 40.177379 ], [ -74.882829, 40.17758 ], [ -74.88267, 40.177649 ], [ -74.882559, 40.17767 ], [ -74.882509, 40.17768 ], [ -74.882469, 40.17769 ], [ -74.8824, 40.17771 ], [ -74.88234, 40.177729 ], [ -74.882289, 40.177749 ], [ -74.88217, 40.1778 ], [ -74.88176, 40.177989 ], [ -74.88145, 40.17814 ], [ -74.88091, 40.178379 ], [ -74.880799, 40.178439 ], [ -74.88056, 40.17858 ], [ -74.88014, 40.17875 ], [ -74.879899, 40.17884 ], [ -74.879809, 40.17888 ], [ -74.879589, 40.17895 ], [ -74.87934, 40.17902 ], [ -74.87911, 40.179069 ], [ -74.87857, 40.179159 ], [ -74.87834, 40.179069 ], [ -74.878229, 40.179009 ], [ -74.87816, 40.178979 ], [ -74.87799, 40.178899 ], [ -74.877829, 40.17888 ], [ -74.877689, 40.17888 ], [ -74.877599, 40.178919 ], [ -74.877519, 40.178989 ], [ -74.877469, 40.17906 ], [ -74.877459, 40.17913 ], [ -74.877459, 40.17922 ], [ -74.877459, 40.17931 ], [ -74.877469, 40.179439 ], [ -74.877609, 40.179969 ], [ -74.87763, 40.180049 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307159", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87889, 40.18067 ], [ -74.87875, 40.18055 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87772, 40.179779 ], [ -74.87771, 40.179619 ], [ -74.87777, 40.17951 ], [ -74.877819, 40.179429 ], [ -74.87794, 40.179359 ], [ -74.878269, 40.17931 ], [ -74.8784, 40.17929 ], [ -74.87848, 40.179279 ], [ -74.878809, 40.17923 ], [ -74.87906, 40.179189 ], [ -74.879439, 40.17913 ], [ -74.879949, 40.17904 ], [ -74.88019, 40.17902 ], [ -74.88032, 40.178979 ], [ -74.88064, 40.178889 ], [ -74.880849, 40.178819 ], [ -74.880929, 40.17879 ], [ -74.881019, 40.17875 ], [ -74.881159, 40.17868 ], [ -74.88135, 40.178559 ], [ -74.88154, 40.17843 ], [ -74.88182, 40.17822 ], [ -74.88203, 40.17807 ], [ -74.88222, 40.17794 ], [ -74.88235, 40.17786 ], [ -74.882459, 40.17779 ], [ -74.88252, 40.177749 ], [ -74.88267, 40.177649 ], [ -74.882829, 40.17758 ], [ -74.88329, 40.177379 ], [ -74.883449, 40.17731 ], [ -74.88384, 40.17713 ], [ -74.884039, 40.17704 ], [ -74.884259, 40.176939 ], [ -74.88479, 40.176729 ], [ -74.88519, 40.176539 ], [ -74.88533, 40.176469 ], [ -74.885429, 40.17641 ], [ -74.885529, 40.17635 ], [ -74.885619, 40.176289 ], [ -74.88595, 40.176039 ], [ -74.88608, 40.175939 ], [ -74.88653, 40.1756 ], [ -74.886649, 40.17551 ], [ -74.886729, 40.17545 ], [ -74.887099, 40.17516 ], [ -74.88739, 40.174929 ], [ -74.88757, 40.17479 ], [ -74.88797, 40.17446 ], [ -74.88834, 40.17418 ], [ -74.88873, 40.173869 ], [ -74.88892, 40.17372 ], [ -74.889619, 40.17317 ], [ -74.89018, 40.17273 ], [ -74.890479, 40.172499 ], [ -74.89067, 40.172339 ], [ -74.89091, 40.172149 ], [ -74.891409, 40.17176 ], [ -74.891769, 40.17148 ], [ -74.89194, 40.171339 ], [ -74.89243, 40.17095 ], [ -74.892819, 40.170639 ], [ -74.89333, 40.17023 ], [ -74.893569, 40.17003 ], [ -74.893989, 40.169709 ], [ -74.894339, 40.16943 ], [ -74.894669, 40.169169 ], [ -74.89508, 40.16885 ], [ -74.8955, 40.16852 ], [ -74.8958, 40.168289 ], [ -74.8963, 40.167899 ], [ -74.89635, 40.16786 ], [ -74.896449, 40.16777 ], [ -74.896499, 40.167729 ], [ -74.896599, 40.167659 ], [ -74.896689, 40.1676 ], [ -74.89676, 40.167549 ], [ -74.896869, 40.167479 ], [ -74.896949, 40.16743 ], [ -74.89737, 40.167209 ], [ -74.897759, 40.167019 ], [ -74.89815, 40.166819 ], [ -74.89829, 40.166749 ], [ -74.898669, 40.166559 ], [ -74.8989, 40.16644 ], [ -74.899, 40.166389 ], [ -74.89908, 40.16635 ], [ -74.899869, 40.16597 ], [ -74.89991, 40.165949 ], [ -74.900139, 40.16582 ], [ -74.900229, 40.165769 ], [ -74.900549, 40.16561 ], [ -74.90116, 40.165309 ], [ -74.90193, 40.164949 ], [ -74.90215, 40.16484 ], [ -74.902359, 40.16474 ], [ -74.902439, 40.164699 ], [ -74.902479, 40.164679 ], [ -74.90278, 40.16454 ], [ -74.902939, 40.16446 ], [ -74.903129, 40.16437 ], [ -74.90336, 40.16426 ], [ -74.903399, 40.164239 ], [ -74.903559, 40.164159 ], [ -74.90364, 40.16412 ], [ -74.90372, 40.16408 ], [ -74.903879, 40.16401 ], [ -74.904019, 40.16394 ], [ -74.90418, 40.163869 ], [ -74.904609, 40.16366 ], [ -74.90468, 40.16363 ], [ -74.904919, 40.163499 ], [ -74.905009, 40.16346 ], [ -74.905139, 40.16339 ], [ -74.905229, 40.163349 ], [ -74.905419, 40.163249 ], [ -74.905639, 40.163139 ], [ -74.90584, 40.163039 ], [ -74.90601, 40.162959 ], [ -74.90619, 40.162869 ], [ -74.906269, 40.16283 ], [ -74.90639, 40.162779 ], [ -74.906589, 40.162679 ], [ -74.906979, 40.16248 ], [ -74.90705, 40.162449 ], [ -74.907249, 40.162359 ], [ -74.907349, 40.16231 ], [ -74.907429, 40.162269 ], [ -74.907519, 40.162229 ], [ -74.90772, 40.16213 ], [ -74.907849, 40.162059 ], [ -74.908069, 40.16195 ], [ -74.908299, 40.16183 ], [ -74.908509, 40.161729 ], [ -74.9088, 40.16159 ], [ -74.9089, 40.161539 ], [ -74.909289, 40.161339 ], [ -74.90953, 40.161179 ], [ -74.909679, 40.16103 ], [ -74.909919, 40.160739 ], [ -74.91003, 40.16057 ], [ -74.910089, 40.16048 ], [ -74.91016, 40.160369 ], [ -74.910319, 40.16012 ], [ -74.910369, 40.16003 ], [ -74.910399, 40.159989 ], [ -74.910449, 40.159909 ], [ -74.910509, 40.159809 ], [ -74.91056, 40.159749 ], [ -74.91066, 40.159629 ], [ -74.9107, 40.15959 ], [ -74.91075, 40.15952 ], [ -74.910849, 40.15944 ], [ -74.91111, 40.15925 ], [ -74.910939, 40.159119 ], [ -74.91079, 40.158999 ], [ -74.910729, 40.15895 ], [ -74.910309, 40.15861 ], [ -74.91012, 40.1585 ], [ -74.909909, 40.15843 ], [ -74.90958, 40.158379 ], [ -74.90853, 40.15841 ], [ -74.90827, 40.15842 ], [ -74.90765, 40.15843 ], [ -74.90747, 40.15844 ], [ -74.90701, 40.158449 ], [ -74.9066, 40.15843 ], [ -74.9058, 40.158379 ], [ -74.905319, 40.15833 ], [ -74.90475, 40.158279 ], [ -74.904239, 40.15823 ], [ -74.903699, 40.158179 ], [ -74.903169, 40.158129 ], [ -74.90269, 40.15806 ], [ -74.90206, 40.15796 ], [ -74.901629, 40.15788 ], [ -74.90106, 40.157749 ], [ -74.900369, 40.15761 ], [ -74.900049, 40.15754 ], [ -74.89981, 40.157489 ], [ -74.8995, 40.157379 ], [ -74.899209, 40.157209 ], [ -74.898879, 40.156869 ], [ -74.898519, 40.15638 ], [ -74.89823, 40.15598 ], [ -74.898069, 40.155759 ], [ -74.897899, 40.15553 ], [ -74.897669, 40.155219 ], [ -74.89743, 40.154889 ], [ -74.897309, 40.15473 ], [ -74.89701, 40.154319 ], [ -74.89679, 40.15402 ], [ -74.89584, 40.15232 ], [ -74.895559, 40.15185 ], [ -74.89523, 40.151259 ], [ -74.895099, 40.151019 ], [ -74.8946, 40.15013 ], [ -74.89454, 40.150019 ], [ -74.894069, 40.14906 ], [ -74.89383, 40.14837 ], [ -74.893489, 40.147399 ], [ -74.89333, 40.14693 ], [ -74.892759, 40.14546 ], [ -74.892579, 40.145039 ], [ -74.8919, 40.143619 ], [ -74.891689, 40.14311 ], [ -74.89157, 40.14275 ], [ -74.891319, 40.14196 ], [ -74.89117, 40.14149 ], [ -74.89095, 40.140849 ], [ -74.89063, 40.139759 ], [ -74.890379, 40.13906 ], [ -74.89022, 40.138589 ], [ -74.89014, 40.13828 ], [ -74.89013, 40.138209 ], [ -74.890019, 40.137579 ], [ -74.889969, 40.137119 ], [ -74.889929, 40.136429 ], [ -74.889849, 40.13475 ], [ -74.88982, 40.134529 ], [ -74.889749, 40.13432 ], [ -74.889659, 40.13412 ], [ -74.88941, 40.133739 ], [ -74.889159, 40.133369 ], [ -74.88901, 40.13313 ], [ -74.888889, 40.13298 ], [ -74.88852, 40.132529 ], [ -74.88843, 40.13243 ], [ -74.8883, 40.132279 ], [ -74.888049, 40.131989 ], [ -74.887629, 40.132269 ], [ -74.88752, 40.132349 ], [ -74.887419, 40.13241 ], [ -74.887179, 40.132569 ], [ -74.88704, 40.13267 ], [ -74.88668, 40.132909 ], [ -74.88614, 40.133269 ], [ -74.88599, 40.133379 ], [ -74.88559, 40.133649 ], [ -74.8855, 40.133709 ], [ -74.885389, 40.13379 ], [ -74.884989, 40.134069 ], [ -74.884679, 40.134269 ], [ -74.884169, 40.134619 ], [ -74.883989, 40.13474 ], [ -74.883909, 40.134789 ], [ -74.883809, 40.13485 ], [ -74.883669, 40.13495 ], [ -74.883579, 40.13502 ], [ -74.883309, 40.1352 ], [ -74.88312, 40.135329 ], [ -74.882859, 40.135509 ], [ -74.88243, 40.135799 ], [ -74.88225, 40.13592 ], [ -74.88182, 40.136219 ], [ -74.88176, 40.136259 ], [ -74.881699, 40.1363 ], [ -74.8815, 40.136439 ], [ -74.88141, 40.136509 ], [ -74.881249, 40.136619 ], [ -74.880839, 40.1369 ], [ -74.880749, 40.136959 ], [ -74.88063, 40.137039 ], [ -74.880429, 40.13718 ], [ -74.880299, 40.13727 ], [ -74.88028, 40.13729 ], [ -74.880119, 40.137399 ], [ -74.87951, 40.13782 ], [ -74.87934, 40.137939 ], [ -74.8791, 40.13811 ], [ -74.87852, 40.138509 ], [ -74.87821, 40.13872 ], [ -74.876939, 40.139579 ], [ -74.8766, 40.139829 ], [ -74.875979, 40.14025 ], [ -74.875529, 40.140559 ], [ -74.875439, 40.14062 ], [ -74.87534, 40.14069 ], [ -74.875139, 40.140819 ], [ -74.874999, 40.140809 ], [ -74.874939, 40.1408 ], [ -74.874899, 40.14079 ], [ -74.874849, 40.14077 ], [ -74.8748, 40.140739 ], [ -74.874759, 40.14071 ], [ -74.874759, 40.140639 ], [ -74.874759, 40.140559 ], [ -74.874769, 40.140399 ], [ -74.874769, 40.14035 ], [ -74.87478, 40.14026 ], [ -74.8748, 40.13989 ], [ -74.8748, 40.139749 ], [ -74.87478, 40.139389 ], [ -74.874729, 40.13901 ], [ -74.874719, 40.138959 ], [ -74.87465, 40.138599 ], [ -74.874539, 40.13818 ], [ -74.87447, 40.137939 ], [ -74.874359, 40.13764 ], [ -74.874229, 40.137319 ], [ -74.874049, 40.1369 ], [ -74.87393, 40.136689 ], [ -74.873859, 40.13655 ], [ -74.87379, 40.136409 ], [ -74.87367, 40.136139 ], [ -74.87361, 40.13601 ], [ -74.87353, 40.13585 ], [ -74.87349, 40.135769 ], [ -74.87344, 40.135679 ], [ -74.873369, 40.13557 ], [ -74.8733, 40.13547 ], [ -74.873189, 40.135329 ], [ -74.873009, 40.13513 ], [ -74.872869, 40.134979 ], [ -74.872659, 40.13468 ], [ -74.872469, 40.134459 ], [ -74.872239, 40.134169 ], [ -74.87204, 40.133889 ], [ -74.871979, 40.133809 ], [ -74.871889, 40.13369 ], [ -74.871709, 40.13341 ], [ -74.87168, 40.133359 ], [ -74.8716, 40.13325 ], [ -74.87124, 40.132739 ], [ -74.87102, 40.132449 ], [ -74.870949, 40.132369 ], [ -74.870629, 40.131999 ], [ -74.87015, 40.131449 ], [ -74.87007, 40.131359 ], [ -74.86926, 40.13044 ], [ -74.869199, 40.13037 ], [ -74.86872, 40.12982 ], [ -74.867439, 40.128389 ], [ -74.86718, 40.12808 ], [ -74.86688, 40.12774 ], [ -74.866749, 40.127619 ], [ -74.86652, 40.127769 ], [ -74.866119, 40.128029 ], [ -74.86534, 40.12857 ], [ -74.86512, 40.12872 ], [ -74.86489, 40.128879 ], [ -74.86453, 40.129139 ], [ -74.863199, 40.130029 ], [ -74.862889, 40.13025 ], [ -74.861529, 40.13117 ], [ -74.861219, 40.131379 ], [ -74.858479, 40.13324 ], [ -74.858109, 40.132819 ], [ -74.856999, 40.131479 ], [ -74.85611, 40.130399 ], [ -74.85553, 40.12971 ], [ -74.85468, 40.12864 ], [ -74.854109, 40.127889 ], [ -74.85386, 40.127529 ], [ -74.853749, 40.12739 ], [ -74.853659, 40.12727 ], [ -74.85309, 40.126529 ], [ -74.85293, 40.12632 ], [ -74.852709, 40.12602 ], [ -74.852449, 40.12568 ], [ -74.852269, 40.125449 ], [ -74.85221, 40.125369 ], [ -74.85212, 40.125249 ], [ -74.85176, 40.12478 ], [ -74.851459, 40.124379 ], [ -74.85125, 40.124099 ], [ -74.850729, 40.12342 ], [ -74.850519, 40.12316 ], [ -74.850339, 40.122929 ], [ -74.850099, 40.122639 ], [ -74.85, 40.122479 ], [ -74.84987, 40.122299 ], [ -74.84955, 40.121929 ], [ -74.849439, 40.12179 ], [ -74.84933, 40.121649 ], [ -74.849169, 40.12145 ], [ -74.849, 40.121229 ], [ -74.848769, 40.120929 ], [ -74.848439, 40.12052 ], [ -74.848399, 40.12047 ], [ -74.84816, 40.12025 ], [ -74.847949, 40.12009 ], [ -74.8477, 40.11992 ], [ -74.84742, 40.119769 ], [ -74.84721, 40.119689 ], [ -74.846909, 40.119569 ], [ -74.846559, 40.11947 ], [ -74.846379, 40.119419 ], [ -74.846059, 40.119339 ], [ -74.84609, 40.119149 ], [ -74.84617, 40.118979 ], [ -74.8463, 40.118849 ], [ -74.846379, 40.118789 ], [ -74.84663, 40.11866 ], [ -74.846769, 40.118599 ], [ -74.84693, 40.118529 ], [ -74.84756, 40.118239 ], [ -74.847849, 40.11812 ], [ -74.84825, 40.11795 ], [ -74.84841, 40.118129 ], [ -74.84878, 40.11856 ], [ -74.84927, 40.119119 ], [ -74.849309, 40.119159 ], [ -74.849849, 40.119759 ], [ -74.850419, 40.119509 ], [ -74.851099, 40.119149 ], [ -74.85216, 40.118619 ], [ -74.85247, 40.11847 ], [ -74.85306, 40.118159 ], [ -74.85315, 40.11812 ], [ -74.853249, 40.11801 ], [ -74.85342, 40.117609 ], [ -74.853489, 40.11747 ], [ -74.85372, 40.11692 ], [ -74.853849, 40.116619 ], [ -74.853929, 40.11638 ], [ -74.853979, 40.116169 ], [ -74.853979, 40.116079 ], [ -74.85401, 40.11594 ], [ -74.85404, 40.115729 ], [ -74.854149, 40.11496 ], [ -74.85428, 40.11405 ], [ -74.854329, 40.1137 ], [ -74.854379, 40.113299 ], [ -74.85441, 40.11306 ], [ -74.85444, 40.11289 ], [ -74.854479, 40.112669 ], [ -74.8545, 40.112489 ], [ -74.854559, 40.111959 ], [ -74.854599, 40.111689 ], [ -74.85463, 40.111479 ], [ -74.854659, 40.11126 ], [ -74.85476, 40.110699 ], [ -74.854839, 40.11017 ], [ -74.854869, 40.10992 ], [ -74.85494, 40.10938 ], [ -74.855009, 40.108869 ], [ -74.85504, 40.108689 ], [ -74.855059, 40.10858 ], [ -74.855109, 40.10828 ], [ -74.855139, 40.1081 ], [ -74.85516, 40.107969 ], [ -74.85521, 40.1076 ], [ -74.85527, 40.10721 ], [ -74.855289, 40.107079 ], [ -74.85536, 40.106519 ], [ -74.85544, 40.105909 ], [ -74.855509, 40.105369 ], [ -74.85557, 40.104829 ], [ -74.85557, 40.1047 ], [ -74.85558, 40.10461 ], [ -74.855589, 40.1045 ], [ -74.855599, 40.10441 ], [ -74.85563, 40.10417 ], [ -74.85563, 40.104129 ], [ -74.855679, 40.103759 ], [ -74.855729, 40.10324 ], [ -74.85584, 40.102119 ], [ -74.85584, 40.102059 ], [ -74.85585, 40.101969 ], [ -74.8559, 40.10135 ], [ -74.85594, 40.100759 ], [ -74.855999, 40.100149 ], [ -74.856039, 40.099869 ], [ -74.85606, 40.09937 ], [ -74.85611, 40.09876 ], [ -74.85611, 40.09868 ], [ -74.856089, 40.09859 ], [ -74.85606, 40.098539 ], [ -74.85617, 40.098439 ], [ -74.85635, 40.09833 ], [ -74.85678, 40.097999 ], [ -74.8571, 40.09776 ], [ -74.857259, 40.09768 ], [ -74.857539, 40.09758 ], [ -74.85787, 40.097449 ], [ -74.858479, 40.097199 ], [ -74.85868, 40.09713 ], [ -74.858829, 40.097069 ], [ -74.85967, 40.096749 ], [ -74.85986, 40.09668 ], [ -74.85995, 40.096729 ], [ -74.860149, 40.09686 ], [ -74.86031, 40.09694 ], [ -74.860469, 40.096979 ], [ -74.860639, 40.096999 ], [ -74.8607, 40.097169 ], [ -74.860769, 40.09732 ], [ -74.86103, 40.097809 ], [ -74.86116, 40.098069 ], [ -74.86147, 40.098639 ], [ -74.861799, 40.09922 ], [ -74.861859, 40.099349 ], [ -74.86192, 40.09949 ], [ -74.86255, 40.100679 ], [ -74.862759, 40.101069 ], [ -74.862789, 40.101129 ], [ -74.86286, 40.10128 ], [ -74.862929, 40.101419 ], [ -74.86301, 40.101569 ], [ -74.86304, 40.10162 ], [ -74.86309, 40.10171 ], [ -74.86314, 40.1018 ], [ -74.86319, 40.101879 ], [ -74.863329, 40.102119 ], [ -74.86358, 40.101969 ], [ -74.86373, 40.101879 ], [ -74.86389, 40.101779 ], [ -74.863959, 40.101749 ], [ -74.864, 40.10173 ], [ -74.86417, 40.10164 ], [ -74.86427, 40.101589 ], [ -74.86445, 40.101499 ], [ -74.86472, 40.10138 ], [ -74.865039, 40.101249 ], [ -74.865359, 40.101129 ], [ -74.86562, 40.101039 ], [ -74.86615, 40.100869 ], [ -74.86687, 40.10065 ], [ -74.867609, 40.100419 ], [ -74.86795, 40.10031 ], [ -74.868199, 40.100229 ], [ -74.868379, 40.100239 ], [ -74.868509, 40.1003 ], [ -74.868639, 40.100409 ], [ -74.868819, 40.10056 ], [ -74.868869, 40.100619 ], [ -74.86895, 40.100689 ], [ -74.869109, 40.10074 ], [ -74.86952, 40.10081 ], [ -74.86965, 40.100859 ], [ -74.869819, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.87012, 40.100959 ], [ -74.87029, 40.100859 ], [ -74.87039, 40.10074 ], [ -74.87061, 40.10083 ], [ -74.87082, 40.10091 ], [ -74.871039, 40.10099 ], [ -74.87124, 40.101069 ], [ -74.87146, 40.101149 ], [ -74.871659, 40.101229 ], [ -74.871799, 40.10128 ], [ -74.87177, 40.101339 ], [ -74.872419, 40.101579 ], [ -74.87249, 40.101609 ], [ -74.872689, 40.101679 ], [ -74.872779, 40.10154 ], [ -74.872919, 40.101299 ], [ -74.873049, 40.101119 ], [ -74.87313, 40.10101 ], [ -74.87327, 40.10092 ], [ -74.87343, 40.100859 ], [ -74.873649, 40.10081 ], [ -74.87393, 40.100779 ], [ -74.874459, 40.10073 ], [ -74.87448, 40.1009 ], [ -74.874499, 40.101 ], [ -74.87456, 40.10128 ], [ -74.87462, 40.10153 ], [ -74.87466, 40.101669 ], [ -74.8747, 40.101789 ], [ -74.87478, 40.102039 ], [ -74.874809, 40.102129 ], [ -74.874849, 40.102219 ], [ -74.87487, 40.10227 ], [ -74.87501, 40.10265 ], [ -74.875389, 40.10352 ], [ -74.875439, 40.10363 ], [ -74.875569, 40.103919 ], [ -74.87565, 40.10409 ], [ -74.875989, 40.1048 ], [ -74.8761, 40.105019 ], [ -74.876169, 40.10516 ], [ -74.87619, 40.105199 ], [ -74.87632, 40.105469 ], [ -74.876379, 40.1056 ], [ -74.876529, 40.105929 ], [ -74.876659, 40.10621 ], [ -74.87669, 40.106279 ], [ -74.876829, 40.106559 ], [ -74.87695, 40.106809 ], [ -74.877029, 40.106989 ], [ -74.87705, 40.10704 ], [ -74.87714, 40.10724 ], [ -74.877159, 40.107279 ], [ -74.87727, 40.10751 ], [ -74.87736, 40.107719 ], [ -74.87744, 40.107879 ], [ -74.877549, 40.10811 ], [ -74.87767, 40.108329 ], [ -74.877819, 40.10867 ], [ -74.87795, 40.10895 ], [ -74.87798, 40.10902 ], [ -74.87843, 40.109979 ], [ -74.878459, 40.110039 ], [ -74.87849, 40.11011 ], [ -74.878549, 40.110229 ], [ -74.87857, 40.11026 ], [ -74.87866, 40.11044 ], [ -74.878729, 40.110589 ], [ -74.87879, 40.11072 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.879219, 40.11165 ], [ -74.879309, 40.11183 ], [ -74.87937, 40.111959 ], [ -74.87957, 40.11234 ], [ -74.879809, 40.11281 ], [ -74.879989, 40.113209 ], [ -74.880439, 40.114289 ], [ -74.880579, 40.114659 ], [ -74.88064, 40.114819 ], [ -74.880709, 40.114999 ], [ -74.880889, 40.1155 ], [ -74.880979, 40.11597 ], [ -74.88099, 40.11603 ], [ -74.881029, 40.116359 ], [ -74.881069, 40.11674 ], [ -74.881509, 40.11674 ], [ -74.88162, 40.11674 ], [ -74.881969, 40.11676 ], [ -74.882729, 40.116899 ], [ -74.8833, 40.11703 ], [ -74.883459, 40.116629 ], [ -74.883499, 40.116539 ], [ -74.88366, 40.116099 ], [ -74.883729, 40.115909 ], [ -74.883959, 40.115279 ], [ -74.884049, 40.115079 ], [ -74.88411, 40.11497 ], [ -74.88415, 40.114899 ], [ -74.884169, 40.11486 ], [ -74.884309, 40.114709 ], [ -74.88437, 40.114649 ], [ -74.88461, 40.114449 ], [ -74.884889, 40.114349 ], [ -74.8851, 40.114289 ], [ -74.88532, 40.114269 ], [ -74.885649, 40.114279 ], [ -74.885849, 40.11433 ], [ -74.885939, 40.114349 ], [ -74.88618, 40.114449 ], [ -74.886369, 40.114569 ], [ -74.886469, 40.11467 ], [ -74.886609, 40.114809 ], [ -74.88667, 40.114899 ], [ -74.886689, 40.11495 ], [ -74.886749, 40.115109 ], [ -74.886779, 40.115259 ], [ -74.886749, 40.115469 ], [ -74.886739, 40.115559 ], [ -74.88662, 40.11588 ], [ -74.886429, 40.116349 ], [ -74.886299, 40.11669 ], [ -74.886249, 40.116819 ], [ -74.88608, 40.117259 ], [ -74.885979, 40.11747 ], [ -74.885969, 40.1175 ], [ -74.88591, 40.11759 ], [ -74.885839, 40.11768 ], [ -74.88569, 40.11785 ], [ -74.88555, 40.11794 ], [ -74.885489, 40.117979 ], [ -74.885339, 40.118049 ], [ -74.885199, 40.11812 ], [ -74.884769, 40.118249 ], [ -74.884349, 40.11837 ], [ -74.884889, 40.119599 ], [ -74.884979, 40.11981 ], [ -74.885339, 40.12063 ], [ -74.88551, 40.12101 ], [ -74.885749, 40.12152 ], [ -74.885919, 40.12145 ], [ -74.88618, 40.12134 ], [ -74.88776, 40.12073 ], [ -74.88789, 40.120669 ], [ -74.888169, 40.12056 ], [ -74.88837, 40.12047 ], [ -74.889839, 40.119849 ], [ -74.890959, 40.119389 ], [ -74.891049, 40.11935 ], [ -74.89206, 40.11893 ], [ -74.892309, 40.11883 ], [ -74.892949, 40.11857 ], [ -74.893179, 40.11847 ], [ -74.893479, 40.118349 ], [ -74.89419, 40.118059 ], [ -74.89388, 40.117539 ], [ -74.89383, 40.117329 ], [ -74.893859, 40.11711 ], [ -74.89396, 40.11692 ], [ -74.89401, 40.116879 ], [ -74.89405, 40.11684 ], [ -74.894129, 40.11677 ], [ -74.894519, 40.1166 ], [ -74.89481, 40.11647 ], [ -74.89536, 40.11624 ], [ -74.895609, 40.11614 ], [ -74.89652, 40.11576 ], [ -74.89712, 40.11551 ], [ -74.89739, 40.1154 ], [ -74.89769, 40.115279 ], [ -74.89742, 40.11494 ], [ -74.897309, 40.114799 ], [ -74.899739, 40.1138 ], [ -74.900009, 40.113669 ], [ -74.90008, 40.11362 ], [ -74.90012, 40.113579 ], [ -74.900189, 40.113489 ], [ -74.900229, 40.113399 ], [ -74.90025, 40.113289 ], [ -74.900239, 40.11318 ], [ -74.90018, 40.11305 ], [ -74.90012, 40.112949 ], [ -74.89941, 40.111959 ], [ -74.89931, 40.1118 ], [ -74.899249, 40.111679 ], [ -74.89922, 40.11155 ], [ -74.89922, 40.11152 ], [ -74.89922, 40.11138 ], [ -74.89923, 40.11134 ], [ -74.899249, 40.11126 ], [ -74.89935, 40.11108 ], [ -74.899509, 40.11092 ], [ -74.89973, 40.1108 ], [ -74.900149, 40.110659 ], [ -74.900589, 40.11053 ], [ -74.900739, 40.110499 ], [ -74.90107, 40.11044 ], [ -74.90238, 40.110239 ], [ -74.902489, 40.110749 ], [ -74.902529, 40.11102 ], [ -74.90255, 40.11138 ], [ -74.90255, 40.111689 ], [ -74.90252, 40.11199 ], [ -74.9022, 40.11377 ], [ -74.902139, 40.1145 ], [ -74.90216, 40.11467 ], [ -74.902359, 40.115259 ], [ -74.902399, 40.1154 ], [ -74.90247, 40.115619 ], [ -74.90261, 40.116069 ], [ -74.902669, 40.116269 ], [ -74.90273, 40.116629 ], [ -74.90274, 40.116789 ], [ -74.902719, 40.11714 ], [ -74.9027, 40.117439 ], [ -74.90261, 40.11748 ], [ -74.902079, 40.11873 ], [ -74.90198, 40.11891 ], [ -74.901729, 40.119309 ], [ -74.90157, 40.119689 ], [ -74.90129, 40.120399 ], [ -74.90034, 40.12286 ], [ -74.900279, 40.122999 ], [ -74.90016, 40.12331 ], [ -74.90009, 40.12351 ], [ -74.90004, 40.123649 ], [ -74.899969, 40.12396 ], [ -74.900379, 40.12386 ], [ -74.90075, 40.12379 ], [ -74.90102, 40.123749 ], [ -74.90125, 40.123719 ], [ -74.901589, 40.12367 ], [ -74.901819, 40.123649 ], [ -74.90233, 40.1236 ], [ -74.902569, 40.12358 ], [ -74.90278, 40.123569 ], [ -74.903029, 40.123559 ], [ -74.90319, 40.123559 ], [ -74.903389, 40.123569 ], [ -74.903519, 40.12358 ], [ -74.90382, 40.12361 ], [ -74.90387, 40.123619 ], [ -74.904339, 40.12368 ], [ -74.90453, 40.123289 ], [ -74.904639, 40.12306 ], [ -74.904959, 40.12241 ], [ -74.90529, 40.121739 ], [ -74.905459, 40.12142 ], [ -74.90565, 40.121029 ], [ -74.905819, 40.120689 ], [ -74.906049, 40.120229 ], [ -74.906259, 40.1198 ], [ -74.906409, 40.119489 ], [ -74.90687, 40.11854 ], [ -74.90706, 40.118149 ], [ -74.907309, 40.117619 ], [ -74.90763, 40.11701 ], [ -74.907849, 40.116629 ], [ -74.908149, 40.116099 ], [ -74.90863, 40.115359 ], [ -74.90898, 40.11485 ], [ -74.9097, 40.11379 ], [ -74.90998, 40.113379 ], [ -74.91029, 40.112919 ], [ -74.910869, 40.112029 ], [ -74.9112, 40.111509 ], [ -74.91165, 40.11081 ], [ -74.911799, 40.110569 ], [ -74.912289, 40.109799 ], [ -74.912749, 40.109079 ], [ -74.912969, 40.10874 ], [ -74.91322, 40.108359 ], [ -74.91349, 40.10794 ], [ -74.914049, 40.107069 ], [ -74.91413, 40.10695 ], [ -74.9142, 40.106829 ], [ -74.91488, 40.105819 ], [ -74.91521, 40.10533 ], [ -74.91525, 40.105269 ], [ -74.91542, 40.105009 ], [ -74.915499, 40.10489 ], [ -74.91605, 40.10406 ], [ -74.91618, 40.103859 ], [ -74.91637, 40.103579 ], [ -74.916789, 40.102959 ], [ -74.91727, 40.10225 ], [ -74.917599, 40.101749 ], [ -74.91776, 40.101499 ], [ -74.918099, 40.10099 ], [ -74.91844, 40.10048 ], [ -74.91888, 40.099809 ], [ -74.919149, 40.09941 ], [ -74.91921, 40.09932 ], [ -74.91929, 40.09921 ], [ -74.91935, 40.09912 ], [ -74.919849, 40.09841 ], [ -74.92006, 40.09811 ], [ -74.92011, 40.09803 ], [ -74.92037, 40.09766 ], [ -74.920979, 40.09788 ], [ -74.92114, 40.09794 ], [ -74.921259, 40.097979 ], [ -74.92141, 40.09803 ], [ -74.922429, 40.09841 ], [ -74.922559, 40.098459 ], [ -74.922789, 40.098549 ], [ -74.92295, 40.09867 ], [ -74.924319, 40.10036 ], [ -74.92491, 40.10108 ], [ -74.92518, 40.101409 ], [ -74.92529, 40.101569 ], [ -74.92551, 40.10192 ], [ -74.925889, 40.10255 ], [ -74.926059, 40.10283 ], [ -74.92663, 40.103759 ], [ -74.926749, 40.10396 ], [ -74.9268, 40.10405 ], [ -74.926879, 40.10423 ], [ -74.92708, 40.10454 ], [ -74.927229, 40.10479 ], [ -74.92731, 40.104929 ], [ -74.927419, 40.105119 ], [ -74.927509, 40.105269 ], [ -74.92767, 40.10552 ], [ -74.927859, 40.105819 ], [ -74.927909, 40.105889 ], [ -74.928129, 40.106249 ], [ -74.928449, 40.10675 ], [ -74.92861, 40.106989 ], [ -74.92906, 40.107699 ], [ -74.928599, 40.1076 ], [ -74.927919, 40.107449 ], [ -74.927559, 40.107369 ], [ -74.92659, 40.10715 ], [ -74.926479, 40.10713 ], [ -74.9264, 40.10711 ], [ -74.92631, 40.107089 ], [ -74.926059, 40.10703 ], [ -74.92595, 40.107009 ], [ -74.92573, 40.10696 ], [ -74.92564, 40.10694 ], [ -74.92506, 40.106829 ], [ -74.92488, 40.106799 ], [ -74.924619, 40.10676 ], [ -74.92451, 40.106739 ], [ -74.92421, 40.10668 ], [ -74.92383, 40.106629 ], [ -74.923779, 40.106619 ], [ -74.923539, 40.10659 ], [ -74.9233, 40.106559 ], [ -74.92313, 40.106529 ], [ -74.92304, 40.106519 ], [ -74.922969, 40.10651 ], [ -74.922779, 40.10648 ], [ -74.922599, 40.106459 ], [ -74.92245, 40.106439 ], [ -74.92223, 40.10641 ], [ -74.922059, 40.10639 ], [ -74.921669, 40.10633 ], [ -74.92079, 40.10621 ], [ -74.92073, 40.10648 ], [ -74.920679, 40.10667 ], [ -74.92065, 40.106809 ], [ -74.92056, 40.107169 ], [ -74.920539, 40.107259 ], [ -74.920409, 40.107789 ], [ -74.920409, 40.107909 ], [ -74.920439, 40.10802 ], [ -74.920449, 40.108079 ], [ -74.920569, 40.108239 ], [ -74.92083, 40.108349 ], [ -74.920989, 40.10838 ], [ -74.92106, 40.10839 ], [ -74.92123, 40.1084 ], [ -74.921289, 40.10841 ], [ -74.921399, 40.108429 ], [ -74.92159, 40.10846 ], [ -74.92173, 40.10848 ], [ -74.92191, 40.108509 ], [ -74.92221, 40.10855 ], [ -74.922339, 40.10856 ], [ -74.922649, 40.108619 ], [ -74.922909, 40.10866 ], [ -74.92308, 40.108689 ], [ -74.923509, 40.10875 ], [ -74.92366, 40.10877 ], [ -74.92393, 40.10882 ], [ -74.92407, 40.10884 ], [ -74.92419, 40.10886 ], [ -74.924449, 40.10891 ], [ -74.924579, 40.10893 ], [ -74.92469, 40.108959 ], [ -74.925079, 40.109049 ], [ -74.92518, 40.109069 ], [ -74.925339, 40.10911 ], [ -74.92556, 40.109159 ], [ -74.925749, 40.1092 ], [ -74.92592, 40.109259 ], [ -74.926069, 40.109309 ], [ -74.92617, 40.109409 ], [ -74.92626, 40.109499 ], [ -74.92637, 40.10963 ], [ -74.926609, 40.109939 ], [ -74.926789, 40.11018 ], [ -74.927549, 40.10983 ], [ -74.927739, 40.10974 ], [ -74.92784, 40.109699 ], [ -74.928139, 40.10956 ], [ -74.9283, 40.10948 ], [ -74.928449, 40.109409 ], [ -74.928759, 40.10927 ], [ -74.92879, 40.109259 ], [ -74.92929, 40.10902 ], [ -74.929769, 40.108789 ], [ -74.930489, 40.108439 ], [ -74.93077, 40.10831 ], [ -74.930789, 40.1083 ], [ -74.930929, 40.108239 ], [ -74.93135, 40.10805 ], [ -74.9315, 40.107979 ], [ -74.93185, 40.107819 ], [ -74.932269, 40.107639 ], [ -74.932409, 40.10759 ], [ -74.932509, 40.10757 ], [ -74.93262, 40.10756 ], [ -74.9328, 40.10759 ], [ -74.93342, 40.107729 ], [ -74.933629, 40.10778 ], [ -74.93378, 40.107819 ], [ -74.9342, 40.10793 ], [ -74.93481, 40.1081 ], [ -74.93582, 40.10838 ], [ -74.9359, 40.1084 ], [ -74.936049, 40.108449 ], [ -74.9364, 40.10855 ], [ -74.93676, 40.10865 ], [ -74.93744, 40.10883 ], [ -74.93752, 40.10885 ], [ -74.93775, 40.10891 ], [ -74.93789, 40.10894 ], [ -74.938089, 40.108989 ], [ -74.9387, 40.109159 ], [ -74.939659, 40.109409 ], [ -74.94102, 40.109759 ], [ -74.941319, 40.109849 ], [ -74.94193, 40.11002 ], [ -74.9422, 40.1101 ], [ -74.942449, 40.11017 ], [ -74.94293, 40.110299 ], [ -74.944869, 40.11091 ], [ -74.945009, 40.110969 ], [ -74.945409, 40.110239 ], [ -74.945549, 40.10999 ], [ -74.945779, 40.109669 ], [ -74.94598, 40.10948 ], [ -74.946509, 40.108959 ], [ -74.946999, 40.10847 ], [ -74.947089, 40.10838 ], [ -74.947229, 40.108249 ], [ -74.947349, 40.10813 ], [ -74.947529, 40.10795 ], [ -74.947939, 40.107549 ], [ -74.9481, 40.1074 ], [ -74.948799, 40.106719 ], [ -74.949099, 40.10642 ], [ -74.94932, 40.106199 ], [ -74.94953, 40.106009 ], [ -74.94962, 40.105919 ], [ -74.949869, 40.10568 ], [ -74.95012, 40.105439 ], [ -74.950359, 40.105209 ], [ -74.950459, 40.105119 ], [ -74.95071, 40.104899 ], [ -74.950909, 40.10471 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.95493, 40.100759 ], [ -74.95511, 40.100609 ], [ -74.955309, 40.100439 ], [ -74.95547, 40.1003 ], [ -74.955639, 40.100149 ], [ -74.95607, 40.09976 ], [ -74.956129, 40.099709 ], [ -74.95647, 40.09941 ], [ -74.956629, 40.099269 ], [ -74.956799, 40.09911 ], [ -74.95696, 40.09896 ], [ -74.957439, 40.098529 ], [ -74.95773, 40.09822 ], [ -74.95791, 40.098009 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ], [ -74.981509, 40.064339 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307160", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87889, 40.18067 ], [ -74.87875, 40.18055 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87772, 40.179779 ], [ -74.87771, 40.179619 ], [ -74.87777, 40.17951 ], [ -74.877819, 40.179429 ], [ -74.87794, 40.179359 ], [ -74.878269, 40.17931 ], [ -74.8784, 40.17929 ], [ -74.87848, 40.179279 ], [ -74.878809, 40.17923 ], [ -74.87906, 40.179189 ], [ -74.879439, 40.17913 ], [ -74.879949, 40.17904 ], [ -74.88019, 40.17902 ], [ -74.88032, 40.178979 ], [ -74.88064, 40.178889 ], [ -74.880849, 40.178819 ], [ -74.880929, 40.17879 ], [ -74.881019, 40.17875 ], [ -74.881159, 40.17868 ], [ -74.88135, 40.178559 ], [ -74.88154, 40.17843 ], [ -74.88182, 40.17822 ], [ -74.88203, 40.17807 ], [ -74.88222, 40.17794 ], [ -74.88235, 40.17786 ], [ -74.882459, 40.17779 ], [ -74.88252, 40.177749 ], [ -74.88267, 40.177649 ], [ -74.882829, 40.17758 ], [ -74.88329, 40.177379 ], [ -74.883449, 40.17731 ], [ -74.88384, 40.17713 ], [ -74.884039, 40.17704 ], [ -74.884259, 40.176939 ], [ -74.88479, 40.176729 ], [ -74.88519, 40.176539 ], [ -74.88533, 40.176469 ], [ -74.885429, 40.17641 ], [ -74.885529, 40.17635 ], [ -74.885619, 40.176289 ], [ -74.88595, 40.176039 ], [ -74.88608, 40.175939 ], [ -74.88653, 40.1756 ], [ -74.886649, 40.17551 ], [ -74.886729, 40.17545 ], [ -74.887099, 40.17516 ], [ -74.88739, 40.174929 ], [ -74.88757, 40.17479 ], [ -74.88797, 40.17446 ], [ -74.88834, 40.17418 ], [ -74.88873, 40.173869 ], [ -74.88892, 40.17372 ], [ -74.889619, 40.17317 ], [ -74.89018, 40.17273 ], [ -74.890479, 40.172499 ], [ -74.89067, 40.172339 ], [ -74.89091, 40.172149 ], [ -74.891409, 40.17176 ], [ -74.891769, 40.17148 ], [ -74.89194, 40.171339 ], [ -74.89243, 40.17095 ], [ -74.892819, 40.170639 ], [ -74.89333, 40.17023 ], [ -74.893569, 40.17003 ], [ -74.893989, 40.169709 ], [ -74.894339, 40.16943 ], [ -74.894669, 40.169169 ], [ -74.89508, 40.16885 ], [ -74.8955, 40.16852 ], [ -74.8958, 40.168289 ], [ -74.8963, 40.167899 ], [ -74.89635, 40.16786 ], [ -74.896449, 40.16777 ], [ -74.896499, 40.167729 ], [ -74.896599, 40.167659 ], [ -74.896689, 40.1676 ], [ -74.89676, 40.167549 ], [ -74.896869, 40.167479 ], [ -74.896949, 40.16743 ], [ -74.89737, 40.167209 ], [ -74.897759, 40.167019 ], [ -74.89815, 40.166819 ], [ -74.89829, 40.166749 ], [ -74.898669, 40.166559 ], [ -74.8989, 40.16644 ], [ -74.899, 40.166389 ], [ -74.89908, 40.16635 ], [ -74.899869, 40.16597 ], [ -74.89991, 40.165949 ], [ -74.900139, 40.16582 ], [ -74.900229, 40.165769 ], [ -74.900549, 40.16561 ], [ -74.90116, 40.165309 ], [ -74.90193, 40.164949 ], [ -74.90215, 40.16484 ], [ -74.902359, 40.16474 ], [ -74.902439, 40.164699 ], [ -74.902479, 40.164679 ], [ -74.90278, 40.16454 ], [ -74.902939, 40.16446 ], [ -74.903129, 40.16437 ], [ -74.90336, 40.16426 ], [ -74.903399, 40.164239 ], [ -74.903559, 40.164159 ], [ -74.90364, 40.16412 ], [ -74.90372, 40.16408 ], [ -74.903879, 40.16401 ], [ -74.904019, 40.16394 ], [ -74.90418, 40.163869 ], [ -74.904609, 40.16366 ], [ -74.90468, 40.16363 ], [ -74.904919, 40.163499 ], [ -74.905009, 40.16346 ], [ -74.905139, 40.16339 ], [ -74.905229, 40.163349 ], [ -74.905419, 40.163249 ], [ -74.905639, 40.163139 ], [ -74.90584, 40.163039 ], [ -74.90601, 40.162959 ], [ -74.90619, 40.162869 ], [ -74.906269, 40.16283 ], [ -74.90639, 40.162779 ], [ -74.906589, 40.162679 ], [ -74.906979, 40.16248 ], [ -74.90705, 40.162449 ], [ -74.907249, 40.162359 ], [ -74.907349, 40.16231 ], [ -74.907429, 40.162269 ], [ -74.907519, 40.162229 ], [ -74.90772, 40.16213 ], [ -74.907849, 40.162059 ], [ -74.908069, 40.16195 ], [ -74.908299, 40.16183 ], [ -74.908509, 40.161729 ], [ -74.9088, 40.16159 ], [ -74.9089, 40.161539 ], [ -74.909289, 40.161339 ], [ -74.90953, 40.161179 ], [ -74.909679, 40.16103 ], [ -74.909919, 40.160739 ], [ -74.91003, 40.16057 ], [ -74.910089, 40.16048 ], [ -74.91016, 40.160369 ], [ -74.910319, 40.16012 ], [ -74.910369, 40.16003 ], [ -74.910399, 40.159989 ], [ -74.910449, 40.159909 ], [ -74.910509, 40.159809 ], [ -74.91056, 40.159749 ], [ -74.91066, 40.159629 ], [ -74.9107, 40.15959 ], [ -74.91075, 40.15952 ], [ -74.910849, 40.15944 ], [ -74.91111, 40.15925 ], [ -74.910939, 40.159119 ], [ -74.91079, 40.158999 ], [ -74.910729, 40.15895 ], [ -74.910309, 40.15861 ], [ -74.91012, 40.1585 ], [ -74.909909, 40.15843 ], [ -74.90958, 40.158379 ], [ -74.90853, 40.15841 ], [ -74.90827, 40.15842 ], [ -74.90765, 40.15843 ], [ -74.90747, 40.15844 ], [ -74.90701, 40.158449 ], [ -74.9066, 40.15843 ], [ -74.9058, 40.158379 ], [ -74.905319, 40.15833 ], [ -74.90475, 40.158279 ], [ -74.904239, 40.15823 ], [ -74.903699, 40.158179 ], [ -74.903169, 40.158129 ], [ -74.90269, 40.15806 ], [ -74.90206, 40.15796 ], [ -74.901629, 40.15788 ], [ -74.90106, 40.157749 ], [ -74.900369, 40.15761 ], [ -74.900049, 40.15754 ], [ -74.89981, 40.157489 ], [ -74.8995, 40.157379 ], [ -74.899209, 40.157209 ], [ -74.898879, 40.156869 ], [ -74.898519, 40.15638 ], [ -74.89823, 40.15598 ], [ -74.898069, 40.155759 ], [ -74.897899, 40.15553 ], [ -74.897669, 40.155219 ], [ -74.89743, 40.154889 ], [ -74.897309, 40.15473 ], [ -74.89701, 40.154319 ], [ -74.89679, 40.15402 ], [ -74.89584, 40.15232 ], [ -74.895559, 40.15185 ], [ -74.89523, 40.151259 ], [ -74.895099, 40.151019 ], [ -74.8946, 40.15013 ], [ -74.89454, 40.150019 ], [ -74.894069, 40.14906 ], [ -74.89383, 40.14837 ], [ -74.893489, 40.147399 ], [ -74.89333, 40.14693 ], [ -74.892759, 40.14546 ], [ -74.892579, 40.145039 ], [ -74.8919, 40.143619 ], [ -74.891689, 40.14311 ], [ -74.89157, 40.14275 ], [ -74.891319, 40.14196 ], [ -74.89117, 40.14149 ], [ -74.89095, 40.140849 ], [ -74.89063, 40.139759 ], [ -74.890379, 40.13906 ], [ -74.89022, 40.138589 ], [ -74.89014, 40.13828 ], [ -74.89013, 40.138209 ], [ -74.890019, 40.137579 ], [ -74.889969, 40.137119 ], [ -74.889929, 40.136429 ], [ -74.889849, 40.13475 ], [ -74.88982, 40.134529 ], [ -74.889749, 40.13432 ], [ -74.889659, 40.13412 ], [ -74.88941, 40.133739 ], [ -74.889159, 40.133369 ], [ -74.88901, 40.13313 ], [ -74.888889, 40.13298 ], [ -74.88852, 40.132529 ], [ -74.88843, 40.13243 ], [ -74.8883, 40.132279 ], [ -74.888049, 40.131989 ], [ -74.887629, 40.132269 ], [ -74.88752, 40.132349 ], [ -74.887419, 40.13241 ], [ -74.887179, 40.132569 ], [ -74.88704, 40.13267 ], [ -74.88668, 40.132909 ], [ -74.88614, 40.133269 ], [ -74.88599, 40.133379 ], [ -74.88559, 40.133649 ], [ -74.8855, 40.133709 ], [ -74.885389, 40.13379 ], [ -74.884989, 40.134069 ], [ -74.884679, 40.134269 ], [ -74.884169, 40.134619 ], [ -74.883989, 40.13474 ], [ -74.883909, 40.134789 ], [ -74.883809, 40.13485 ], [ -74.883669, 40.13495 ], [ -74.883579, 40.13502 ], [ -74.883309, 40.1352 ], [ -74.88312, 40.135329 ], [ -74.882859, 40.135509 ], [ -74.88243, 40.135799 ], [ -74.88225, 40.13592 ], [ -74.88182, 40.136219 ], [ -74.88176, 40.136259 ], [ -74.881699, 40.1363 ], [ -74.8815, 40.136439 ], [ -74.88141, 40.136509 ], [ -74.881249, 40.136619 ], [ -74.880839, 40.1369 ], [ -74.880749, 40.136959 ], [ -74.88063, 40.137039 ], [ -74.880429, 40.13718 ], [ -74.880299, 40.13727 ], [ -74.88028, 40.13729 ], [ -74.880119, 40.137399 ], [ -74.87951, 40.13782 ], [ -74.87934, 40.137939 ], [ -74.8791, 40.13811 ], [ -74.87852, 40.138509 ], [ -74.87821, 40.13872 ], [ -74.876939, 40.139579 ], [ -74.8766, 40.139829 ], [ -74.875979, 40.14025 ], [ -74.875529, 40.140559 ], [ -74.875439, 40.14062 ], [ -74.87534, 40.14069 ], [ -74.875139, 40.140819 ], [ -74.874999, 40.140809 ], [ -74.874939, 40.1408 ], [ -74.874899, 40.14079 ], [ -74.874849, 40.14077 ], [ -74.8748, 40.140739 ], [ -74.874759, 40.14071 ], [ -74.874759, 40.140639 ], [ -74.874759, 40.140559 ], [ -74.874769, 40.140399 ], [ -74.874769, 40.14035 ], [ -74.87478, 40.14026 ], [ -74.8748, 40.13989 ], [ -74.8748, 40.139749 ], [ -74.87478, 40.139389 ], [ -74.874729, 40.13901 ], [ -74.874719, 40.138959 ], [ -74.87465, 40.138599 ], [ -74.874539, 40.13818 ], [ -74.87447, 40.137939 ], [ -74.874359, 40.13764 ], [ -74.874229, 40.137319 ], [ -74.874049, 40.1369 ], [ -74.87393, 40.136689 ], [ -74.873859, 40.13655 ], [ -74.87379, 40.136409 ], [ -74.87367, 40.136139 ], [ -74.87361, 40.13601 ], [ -74.87353, 40.13585 ], [ -74.87349, 40.135769 ], [ -74.87344, 40.135679 ], [ -74.873369, 40.13557 ], [ -74.8733, 40.13547 ], [ -74.873189, 40.135329 ], [ -74.873009, 40.13513 ], [ -74.872869, 40.134979 ], [ -74.872659, 40.13468 ], [ -74.872469, 40.134459 ], [ -74.872239, 40.134169 ], [ -74.87204, 40.133889 ], [ -74.871979, 40.133809 ], [ -74.871889, 40.13369 ], [ -74.871709, 40.13341 ], [ -74.87168, 40.133359 ], [ -74.8716, 40.13325 ], [ -74.87124, 40.132739 ], [ -74.87102, 40.132449 ], [ -74.870949, 40.132369 ], [ -74.870629, 40.131999 ], [ -74.87015, 40.131449 ], [ -74.87007, 40.131359 ], [ -74.86926, 40.13044 ], [ -74.869199, 40.13037 ], [ -74.86872, 40.12982 ], [ -74.867439, 40.128389 ], [ -74.86718, 40.12808 ], [ -74.86688, 40.12774 ], [ -74.866749, 40.127619 ], [ -74.86652, 40.127769 ], [ -74.866119, 40.128029 ], [ -74.86534, 40.12857 ], [ -74.86512, 40.12872 ], [ -74.86489, 40.128879 ], [ -74.86453, 40.129139 ], [ -74.863199, 40.130029 ], [ -74.862889, 40.13025 ], [ -74.861529, 40.13117 ], [ -74.861219, 40.131379 ], [ -74.858479, 40.13324 ], [ -74.858109, 40.132819 ], [ -74.856999, 40.131479 ], [ -74.85611, 40.130399 ], [ -74.85553, 40.12971 ], [ -74.85468, 40.12864 ], [ -74.854109, 40.127889 ], [ -74.85386, 40.127529 ], [ -74.853749, 40.12739 ], [ -74.853659, 40.12727 ], [ -74.85309, 40.126529 ], [ -74.85293, 40.12632 ], [ -74.852709, 40.12602 ], [ -74.852449, 40.12568 ], [ -74.852269, 40.125449 ], [ -74.85221, 40.125369 ], [ -74.85212, 40.125249 ], [ -74.85176, 40.12478 ], [ -74.851459, 40.124379 ], [ -74.85125, 40.124099 ], [ -74.850729, 40.12342 ], [ -74.850519, 40.12316 ], [ -74.850339, 40.122929 ], [ -74.850099, 40.122639 ], [ -74.85, 40.122479 ], [ -74.84987, 40.122299 ], [ -74.84955, 40.121929 ], [ -74.849439, 40.12179 ], [ -74.84933, 40.121649 ], [ -74.849169, 40.12145 ], [ -74.849, 40.121229 ], [ -74.848769, 40.120929 ], [ -74.848439, 40.12052 ], [ -74.848399, 40.12047 ], [ -74.84816, 40.12025 ], [ -74.847949, 40.12009 ], [ -74.8477, 40.11992 ], [ -74.84742, 40.119769 ], [ -74.84721, 40.119689 ], [ -74.846909, 40.119569 ], [ -74.846559, 40.11947 ], [ -74.846379, 40.119419 ], [ -74.846059, 40.119339 ], [ -74.84609, 40.119149 ], [ -74.84617, 40.118979 ], [ -74.8463, 40.118849 ], [ -74.846379, 40.118789 ], [ -74.84663, 40.11866 ], [ -74.846769, 40.118599 ], [ -74.84693, 40.118529 ], [ -74.84756, 40.118239 ], [ -74.847849, 40.11812 ], [ -74.84825, 40.11795 ], [ -74.84841, 40.118129 ], [ -74.84878, 40.11856 ], [ -74.84927, 40.119119 ], [ -74.849309, 40.119159 ], [ -74.849849, 40.119759 ], [ -74.850419, 40.119509 ], [ -74.851099, 40.119149 ], [ -74.85216, 40.118619 ], [ -74.85247, 40.11847 ], [ -74.85306, 40.118159 ], [ -74.85315, 40.11812 ], [ -74.853249, 40.11801 ], [ -74.85342, 40.117609 ], [ -74.853489, 40.11747 ], [ -74.85372, 40.11692 ], [ -74.853849, 40.116619 ], [ -74.853929, 40.11638 ], [ -74.853979, 40.116169 ], [ -74.853979, 40.116079 ], [ -74.85401, 40.11594 ], [ -74.85404, 40.115729 ], [ -74.854149, 40.11496 ], [ -74.85428, 40.11405 ], [ -74.854329, 40.1137 ], [ -74.854379, 40.113299 ], [ -74.85441, 40.11306 ], [ -74.85444, 40.11289 ], [ -74.854479, 40.112669 ], [ -74.8545, 40.112489 ], [ -74.854559, 40.111959 ], [ -74.854599, 40.111689 ], [ -74.85463, 40.111479 ], [ -74.854659, 40.11126 ], [ -74.85476, 40.110699 ], [ -74.854839, 40.11017 ], [ -74.854869, 40.10992 ], [ -74.85494, 40.10938 ], [ -74.855009, 40.108869 ], [ -74.85504, 40.108689 ], [ -74.855059, 40.10858 ], [ -74.855109, 40.10828 ], [ -74.855139, 40.1081 ], [ -74.85516, 40.107969 ], [ -74.85521, 40.1076 ], [ -74.85527, 40.10721 ], [ -74.855289, 40.107079 ], [ -74.85536, 40.106519 ], [ -74.85544, 40.105909 ], [ -74.855509, 40.105369 ], [ -74.85557, 40.104829 ], [ -74.85557, 40.1047 ], [ -74.85558, 40.10461 ], [ -74.855589, 40.1045 ], [ -74.855599, 40.10441 ], [ -74.85563, 40.10417 ], [ -74.85563, 40.104129 ], [ -74.855679, 40.103759 ], [ -74.855729, 40.10324 ], [ -74.85584, 40.102119 ], [ -74.85584, 40.102059 ], [ -74.85585, 40.101969 ], [ -74.8559, 40.10135 ], [ -74.85594, 40.100759 ], [ -74.855999, 40.100149 ], [ -74.856039, 40.099869 ], [ -74.85606, 40.09937 ], [ -74.85611, 40.09876 ], [ -74.85611, 40.09868 ], [ -74.856089, 40.09859 ], [ -74.85606, 40.098539 ], [ -74.85617, 40.098439 ], [ -74.85635, 40.09833 ], [ -74.85678, 40.097999 ], [ -74.8571, 40.09776 ], [ -74.857259, 40.09768 ], [ -74.857539, 40.09758 ], [ -74.85787, 40.097449 ], [ -74.858479, 40.097199 ], [ -74.85868, 40.09713 ], [ -74.858829, 40.097069 ], [ -74.85967, 40.096749 ], [ -74.85986, 40.09668 ], [ -74.85995, 40.096729 ], [ -74.860149, 40.09686 ], [ -74.86031, 40.09694 ], [ -74.860469, 40.096979 ], [ -74.860639, 40.096999 ], [ -74.8607, 40.097169 ], [ -74.860769, 40.09732 ], [ -74.86103, 40.097809 ], [ -74.86116, 40.098069 ], [ -74.86147, 40.098639 ], [ -74.861799, 40.09922 ], [ -74.861859, 40.099349 ], [ -74.86192, 40.09949 ], [ -74.86255, 40.100679 ], [ -74.862759, 40.101069 ], [ -74.862789, 40.101129 ], [ -74.86286, 40.10128 ], [ -74.862929, 40.101419 ], [ -74.86301, 40.101569 ], [ -74.86304, 40.10162 ], [ -74.86309, 40.10171 ], [ -74.86314, 40.1018 ], [ -74.86319, 40.101879 ], [ -74.863329, 40.102119 ], [ -74.86358, 40.101969 ], [ -74.86373, 40.101879 ], [ -74.86389, 40.101779 ], [ -74.863959, 40.101749 ], [ -74.864, 40.10173 ], [ -74.86417, 40.10164 ], [ -74.86427, 40.101589 ], [ -74.86445, 40.101499 ], [ -74.86472, 40.10138 ], [ -74.865039, 40.101249 ], [ -74.865359, 40.101129 ], [ -74.86562, 40.101039 ], [ -74.86615, 40.100869 ], [ -74.86687, 40.10065 ], [ -74.867609, 40.100419 ], [ -74.86795, 40.10031 ], [ -74.868199, 40.100229 ], [ -74.868379, 40.100239 ], [ -74.868509, 40.1003 ], [ -74.868639, 40.100409 ], [ -74.868819, 40.10056 ], [ -74.868869, 40.100619 ], [ -74.86895, 40.100689 ], [ -74.869109, 40.10074 ], [ -74.86952, 40.10081 ], [ -74.86965, 40.100859 ], [ -74.869819, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.87012, 40.100959 ], [ -74.87029, 40.100859 ], [ -74.87039, 40.10074 ], [ -74.87061, 40.10083 ], [ -74.87082, 40.10091 ], [ -74.871039, 40.10099 ], [ -74.87124, 40.101069 ], [ -74.87146, 40.101149 ], [ -74.871659, 40.101229 ], [ -74.871799, 40.10128 ], [ -74.87177, 40.101339 ], [ -74.872419, 40.101579 ], [ -74.87249, 40.101609 ], [ -74.872689, 40.101679 ], [ -74.872779, 40.10154 ], [ -74.872919, 40.101299 ], [ -74.873049, 40.101119 ], [ -74.87313, 40.10101 ], [ -74.87327, 40.10092 ], [ -74.87343, 40.100859 ], [ -74.873649, 40.10081 ], [ -74.87393, 40.100779 ], [ -74.874459, 40.10073 ], [ -74.87448, 40.1009 ], [ -74.874499, 40.101 ], [ -74.87456, 40.10128 ], [ -74.87462, 40.10153 ], [ -74.87466, 40.101669 ], [ -74.8747, 40.101789 ], [ -74.87478, 40.102039 ], [ -74.874809, 40.102129 ], [ -74.874849, 40.102219 ], [ -74.87487, 40.10227 ], [ -74.87501, 40.10265 ], [ -74.875389, 40.10352 ], [ -74.875439, 40.10363 ], [ -74.875569, 40.103919 ], [ -74.87565, 40.10409 ], [ -74.875989, 40.1048 ], [ -74.8761, 40.105019 ], [ -74.876169, 40.10516 ], [ -74.87619, 40.105199 ], [ -74.87632, 40.105469 ], [ -74.876379, 40.1056 ], [ -74.876529, 40.105929 ], [ -74.876659, 40.10621 ], [ -74.87669, 40.106279 ], [ -74.876829, 40.106559 ], [ -74.87695, 40.106809 ], [ -74.877029, 40.106989 ], [ -74.87705, 40.10704 ], [ -74.87714, 40.10724 ], [ -74.877159, 40.107279 ], [ -74.87727, 40.10751 ], [ -74.87736, 40.107719 ], [ -74.87744, 40.107879 ], [ -74.877549, 40.10811 ], [ -74.87767, 40.108329 ], [ -74.877819, 40.10867 ], [ -74.87795, 40.10895 ], [ -74.87798, 40.10902 ], [ -74.87843, 40.109979 ], [ -74.878459, 40.110039 ], [ -74.87849, 40.11011 ], [ -74.878549, 40.110229 ], [ -74.87857, 40.11026 ], [ -74.87866, 40.11044 ], [ -74.878729, 40.110589 ], [ -74.87879, 40.11072 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.879219, 40.11165 ], [ -74.879309, 40.11183 ], [ -74.87937, 40.111959 ], [ -74.87957, 40.11234 ], [ -74.879809, 40.11281 ], [ -74.879989, 40.113209 ], [ -74.880439, 40.114289 ], [ -74.880579, 40.114659 ], [ -74.88064, 40.114819 ], [ -74.880709, 40.114999 ], [ -74.880889, 40.1155 ], [ -74.880979, 40.11597 ], [ -74.88099, 40.11603 ], [ -74.881029, 40.116359 ], [ -74.881069, 40.11674 ], [ -74.881509, 40.11674 ], [ -74.88162, 40.11674 ], [ -74.881969, 40.11676 ], [ -74.882729, 40.116899 ], [ -74.8833, 40.11703 ], [ -74.883549, 40.11711 ], [ -74.883639, 40.117149 ], [ -74.8838, 40.117259 ], [ -74.88389, 40.11737 ], [ -74.88392, 40.11741 ], [ -74.884029, 40.11766 ], [ -74.884349, 40.11837 ], [ -74.884889, 40.119599 ], [ -74.884979, 40.11981 ], [ -74.885339, 40.12063 ], [ -74.88551, 40.12101 ], [ -74.885749, 40.12152 ], [ -74.885919, 40.12145 ], [ -74.88618, 40.12134 ], [ -74.88776, 40.12073 ], [ -74.88789, 40.120669 ], [ -74.888169, 40.12056 ], [ -74.88837, 40.12047 ], [ -74.889839, 40.119849 ], [ -74.890959, 40.119389 ], [ -74.891049, 40.11935 ], [ -74.89206, 40.11893 ], [ -74.892309, 40.11883 ], [ -74.892949, 40.11857 ], [ -74.893179, 40.11847 ], [ -74.893479, 40.118349 ], [ -74.89419, 40.118059 ], [ -74.895659, 40.117439 ], [ -74.896139, 40.117239 ], [ -74.896329, 40.117159 ], [ -74.89689, 40.116909 ], [ -74.898439, 40.11629 ], [ -74.899929, 40.11567 ], [ -74.90067, 40.115359 ], [ -74.901359, 40.115019 ], [ -74.901769, 40.11486 ], [ -74.90216, 40.11467 ], [ -74.902359, 40.115259 ], [ -74.902399, 40.1154 ], [ -74.90247, 40.115619 ], [ -74.90261, 40.116069 ], [ -74.902669, 40.116269 ], [ -74.90273, 40.116629 ], [ -74.90274, 40.116789 ], [ -74.902719, 40.11714 ], [ -74.9027, 40.117439 ], [ -74.90261, 40.11748 ], [ -74.902079, 40.11873 ], [ -74.90198, 40.11891 ], [ -74.901729, 40.119309 ], [ -74.90157, 40.119689 ], [ -74.90129, 40.120399 ], [ -74.90034, 40.12286 ], [ -74.900279, 40.122999 ], [ -74.90016, 40.12331 ], [ -74.90009, 40.12351 ], [ -74.90004, 40.123649 ], [ -74.899969, 40.12396 ], [ -74.900379, 40.12386 ], [ -74.90075, 40.12379 ], [ -74.90102, 40.123749 ], [ -74.90125, 40.123719 ], [ -74.901589, 40.12367 ], [ -74.901819, 40.123649 ], [ -74.90233, 40.1236 ], [ -74.902569, 40.12358 ], [ -74.90278, 40.123569 ], [ -74.903029, 40.123559 ], [ -74.90319, 40.123559 ], [ -74.903389, 40.123569 ], [ -74.903519, 40.12358 ], [ -74.90382, 40.12361 ], [ -74.90387, 40.123619 ], [ -74.904339, 40.12368 ], [ -74.90453, 40.123289 ], [ -74.904639, 40.12306 ], [ -74.904959, 40.12241 ], [ -74.90529, 40.121739 ], [ -74.905459, 40.12142 ], [ -74.90565, 40.121029 ], [ -74.905819, 40.120689 ], [ -74.906049, 40.120229 ], [ -74.906259, 40.1198 ], [ -74.906409, 40.119489 ], [ -74.90687, 40.11854 ], [ -74.90706, 40.118149 ], [ -74.907309, 40.117619 ], [ -74.90763, 40.11701 ], [ -74.907849, 40.116629 ], [ -74.908149, 40.116099 ], [ -74.90863, 40.115359 ], [ -74.90898, 40.11485 ], [ -74.9097, 40.11379 ], [ -74.90998, 40.113379 ], [ -74.91029, 40.112919 ], [ -74.910869, 40.112029 ], [ -74.9112, 40.111509 ], [ -74.91165, 40.11081 ], [ -74.911799, 40.110569 ], [ -74.912289, 40.109799 ], [ -74.912749, 40.109079 ], [ -74.912969, 40.10874 ], [ -74.91322, 40.108359 ], [ -74.91349, 40.10794 ], [ -74.914049, 40.107069 ], [ -74.91413, 40.10695 ], [ -74.9142, 40.106829 ], [ -74.91488, 40.105819 ], [ -74.91521, 40.10533 ], [ -74.91525, 40.105269 ], [ -74.91542, 40.105009 ], [ -74.915499, 40.10489 ], [ -74.91605, 40.10406 ], [ -74.91618, 40.103859 ], [ -74.91637, 40.103579 ], [ -74.916789, 40.102959 ], [ -74.91727, 40.10225 ], [ -74.917599, 40.101749 ], [ -74.91776, 40.101499 ], [ -74.918099, 40.10099 ], [ -74.91844, 40.10048 ], [ -74.91888, 40.099809 ], [ -74.919149, 40.09941 ], [ -74.91921, 40.09932 ], [ -74.91929, 40.09921 ], [ -74.91935, 40.09912 ], [ -74.919849, 40.09841 ], [ -74.92006, 40.09811 ], [ -74.92011, 40.09803 ], [ -74.92037, 40.09766 ], [ -74.920979, 40.09788 ], [ -74.92114, 40.09794 ], [ -74.921259, 40.097979 ], [ -74.92141, 40.09803 ], [ -74.922429, 40.09841 ], [ -74.922559, 40.098459 ], [ -74.922789, 40.098549 ], [ -74.92295, 40.09867 ], [ -74.924319, 40.10036 ], [ -74.92491, 40.10108 ], [ -74.92518, 40.101409 ], [ -74.92529, 40.101569 ], [ -74.92551, 40.10192 ], [ -74.925889, 40.10255 ], [ -74.926059, 40.10283 ], [ -74.92663, 40.103759 ], [ -74.926749, 40.10396 ], [ -74.9268, 40.10405 ], [ -74.926879, 40.10423 ], [ -74.92708, 40.10454 ], [ -74.927229, 40.10479 ], [ -74.92731, 40.104929 ], [ -74.927419, 40.105119 ], [ -74.927509, 40.105269 ], [ -74.92767, 40.10552 ], [ -74.927859, 40.105819 ], [ -74.927909, 40.105889 ], [ -74.928129, 40.106249 ], [ -74.928449, 40.10675 ], [ -74.92861, 40.106989 ], [ -74.92906, 40.107699 ], [ -74.929269, 40.10802 ], [ -74.92934, 40.10812 ], [ -74.92938, 40.108179 ], [ -74.929769, 40.108789 ], [ -74.930489, 40.108439 ], [ -74.93077, 40.10831 ], [ -74.930789, 40.1083 ], [ -74.930929, 40.108239 ], [ -74.93135, 40.10805 ], [ -74.9315, 40.107979 ], [ -74.93185, 40.107819 ], [ -74.932269, 40.107639 ], [ -74.932409, 40.10759 ], [ -74.932509, 40.10757 ], [ -74.93262, 40.10756 ], [ -74.9328, 40.10759 ], [ -74.93342, 40.107729 ], [ -74.933629, 40.10778 ], [ -74.93378, 40.107819 ], [ -74.9342, 40.10793 ], [ -74.93481, 40.1081 ], [ -74.93582, 40.10838 ], [ -74.9359, 40.1084 ], [ -74.936049, 40.108449 ], [ -74.9364, 40.10855 ], [ -74.93676, 40.10865 ], [ -74.93744, 40.10883 ], [ -74.93752, 40.10885 ], [ -74.93775, 40.10891 ], [ -74.93789, 40.10894 ], [ -74.938089, 40.108989 ], [ -74.9387, 40.109159 ], [ -74.939659, 40.109409 ], [ -74.94102, 40.109759 ], [ -74.941319, 40.109849 ], [ -74.94193, 40.11002 ], [ -74.9422, 40.1101 ], [ -74.942449, 40.11017 ], [ -74.94293, 40.110299 ], [ -74.944869, 40.11091 ], [ -74.945009, 40.110969 ], [ -74.945409, 40.110239 ], [ -74.945549, 40.10999 ], [ -74.945779, 40.109669 ], [ -74.94598, 40.10948 ], [ -74.946509, 40.108959 ], [ -74.946999, 40.10847 ], [ -74.947089, 40.10838 ], [ -74.947229, 40.108249 ], [ -74.947349, 40.10813 ], [ -74.947529, 40.10795 ], [ -74.947939, 40.107549 ], [ -74.9481, 40.1074 ], [ -74.948799, 40.106719 ], [ -74.949099, 40.10642 ], [ -74.94932, 40.106199 ], [ -74.94953, 40.106009 ], [ -74.94962, 40.105919 ], [ -74.949869, 40.10568 ], [ -74.95012, 40.105439 ], [ -74.950359, 40.105209 ], [ -74.950459, 40.105119 ], [ -74.95071, 40.104899 ], [ -74.950909, 40.10471 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.95493, 40.100759 ], [ -74.95511, 40.100609 ], [ -74.955309, 40.100439 ], [ -74.95547, 40.1003 ], [ -74.955639, 40.100149 ], [ -74.95607, 40.09976 ], [ -74.956129, 40.099709 ], [ -74.95647, 40.09941 ], [ -74.956629, 40.099269 ], [ -74.956799, 40.09911 ], [ -74.95696, 40.09896 ], [ -74.957439, 40.098529 ], [ -74.95773, 40.09822 ], [ -74.95791, 40.098009 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ], [ -74.981509, 40.064339 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307161", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.910467, 40.159869 ], [ -74.910522, 40.159787 ], [ -74.910603, 40.15968 ], [ -74.910698, 40.159576 ], [ -74.91077, 40.159507 ], [ -74.910971, 40.159333 ], [ -74.911099, 40.159239 ], [ -74.911, 40.159155 ], [ -74.910767, 40.158963 ], [ -74.910513, 40.158778 ], [ -74.910308, 40.158622 ], [ -74.910198, 40.15855 ], [ -74.910091, 40.158494 ], [ -74.909973, 40.158448 ], [ -74.909853, 40.158414 ], [ -74.909728, 40.158392 ], [ -74.909577, 40.15838 ], [ -74.908928, 40.158387 ], [ -74.908526, 40.158398 ], [ -74.907995, 40.158418 ], [ -74.907512, 40.158434 ], [ -74.906903, 40.158442 ], [ -74.90664, 40.158432 ], [ -74.905828, 40.158373 ], [ -74.905329, 40.158335 ], [ -74.90475, 40.158277 ], [ -74.904271, 40.158232 ], [ -74.903718, 40.158176 ], [ -74.903168, 40.158122 ], [ -74.902684, 40.158061 ], [ -74.902069, 40.157959 ], [ -74.901676, 40.157892 ], [ -74.901017, 40.157762 ], [ -74.900869, 40.157727 ], [ -74.900604, 40.157666 ], [ -74.900369, 40.157613 ], [ -74.900188, 40.157574 ], [ -74.900055, 40.157546 ], [ -74.899926, 40.157515 ], [ -74.899814, 40.157489 ], [ -74.89971, 40.157461 ], [ -74.899625, 40.157433 ], [ -74.899549, 40.15741 ], [ -74.899487, 40.157388 ], [ -74.899429, 40.157361 ], [ -74.899344, 40.157316 ], [ -74.899276, 40.157275 ], [ -74.899189, 40.157213 ], [ -74.899131, 40.157168 ], [ -74.899091, 40.157132 ], [ -74.899053, 40.157095 ], [ -74.899014, 40.157053 ], [ -74.898935, 40.156925 ], [ -74.898837, 40.156752 ], [ -74.898705, 40.156577 ], [ -74.89856, 40.156385 ], [ -74.898235, 40.155966 ], [ -74.898049, 40.15573 ], [ -74.897836, 40.155455 ], [ -74.897261, 40.154665 ], [ -74.896999, 40.154297 ], [ -74.896794, 40.154005 ], [ -74.896689, 40.153836 ], [ -74.896198, 40.152975 ], [ -74.895856, 40.152325 ], [ -74.895687, 40.152021 ], [ -74.895568, 40.151812 ], [ -74.895254, 40.15125 ], [ -74.894915, 40.150639 ], [ -74.8945, 40.149915 ], [ -74.894449, 40.149826 ], [ -74.894409, 40.149749 ], [ -74.894374, 40.149674 ], [ -74.894343, 40.149604 ], [ -74.894312, 40.149538 ], [ -74.894228, 40.149344 ], [ -74.894095, 40.149032 ], [ -74.893825, 40.148339 ], [ -74.893382, 40.147224 ], [ -74.893282, 40.146936 ], [ -74.892966, 40.146029 ], [ -74.892915, 40.145885 ], [ -74.892855, 40.145724 ], [ -74.892749, 40.145474 ], [ -74.892456, 40.144833 ], [ -74.892319, 40.144521 ], [ -74.8919, 40.143626 ], [ -74.891809, 40.143425 ], [ -74.891611, 40.142885 ], [ -74.891543, 40.142693 ], [ -74.891427, 40.142329 ], [ -74.891323, 40.142001 ], [ -74.891036, 40.141102 ], [ -74.890661, 40.139941 ], [ -74.890605, 40.13977 ], [ -74.890548, 40.1396 ], [ -74.890442, 40.139278 ], [ -74.890339, 40.138951 ], [ -74.890261, 40.138698 ], [ -74.890219, 40.138535 ], [ -74.89018, 40.13838 ], [ -74.890149, 40.138221 ], [ -74.890127, 40.138121 ], [ -74.890098, 40.13796 ], [ -74.890047, 40.137634 ], [ -74.890013, 40.137366 ], [ -74.889992, 40.137164 ], [ -74.889966, 40.136843 ], [ -74.889934, 40.136396 ], [ -74.889878, 40.135546 ], [ -74.889861, 40.135211 ], [ -74.889834, 40.134769 ], [ -74.889822, 40.134623 ], [ -74.889798, 40.134443 ], [ -74.88977, 40.13433 ], [ -74.889726, 40.134218 ], [ -74.889648, 40.134057 ], [ -74.889541, 40.133877 ], [ -74.889487, 40.133795 ], [ -74.889399, 40.133654 ], [ -74.889331, 40.13355 ], [ -74.889263, 40.133451 ], [ -74.889198, 40.133357 ], [ -74.889031, 40.133115 ], [ -74.888835, 40.132857 ], [ -74.888502, 40.132444 ], [ -74.888281, 40.132189 ], [ -74.888055, 40.131949 ], [ -74.887682, 40.132202 ], [ -74.887442, 40.13236 ], [ -74.887148, 40.132554 ], [ -74.886958, 40.132676 ], [ -74.886651, 40.132875 ], [ -74.886274, 40.133119 ], [ -74.886186, 40.13318 ], [ -74.886105, 40.133238 ], [ -74.885989, 40.133319 ], [ -74.885538, 40.133635 ], [ -74.885383, 40.133744 ], [ -74.885297, 40.133804 ], [ -74.885041, 40.133984 ], [ -74.884735, 40.13421 ], [ -74.884694, 40.134239 ], [ -74.884213, 40.134575 ], [ -74.883856, 40.134823 ], [ -74.883351, 40.135173 ], [ -74.882367, 40.135856 ], [ -74.882275, 40.135918 ], [ -74.88188, 40.136188 ], [ -74.881718, 40.136299 ], [ -74.881481, 40.136462 ], [ -74.880787, 40.136939 ], [ -74.880322, 40.137259 ], [ -74.880107, 40.137401 ], [ -74.879334, 40.137943 ], [ -74.879067, 40.138129 ], [ -74.878935, 40.138219 ], [ -74.878751, 40.138346 ], [ -74.878278, 40.138677 ], [ -74.877695, 40.139064 ], [ -74.876952, 40.139561 ], [ -74.876576, 40.139815 ], [ -74.876213, 40.140056 ], [ -74.875653, 40.140433 ], [ -74.875391, 40.140609 ], [ -74.875205, 40.140675 ], [ -74.875112, 40.140727 ], [ -74.875045, 40.140771 ], [ -74.874986, 40.140792 ], [ -74.874929, 40.140794 ], [ -74.874882, 40.140785 ], [ -74.874845, 40.140764 ], [ -74.874814, 40.140736 ], [ -74.874794, 40.140702 ], [ -74.874783, 40.14064 ], [ -74.874761, 40.140532 ], [ -74.874773, 40.140305 ], [ -74.874781, 40.14015 ], [ -74.874786, 40.139899 ], [ -74.874783, 40.139723 ], [ -74.874775, 40.139534 ], [ -74.874759, 40.139309 ], [ -74.874737, 40.139098 ], [ -74.874721, 40.138965 ], [ -74.874653, 40.138618 ], [ -74.874524, 40.138127 ], [ -74.874461, 40.137921 ], [ -74.874372, 40.137678 ], [ -74.874219, 40.13731 ], [ -74.874042, 40.136891 ], [ -74.873869, 40.136514 ], [ -74.873764, 40.136275 ], [ -74.873668, 40.136058 ], [ -74.873554, 40.135828 ], [ -74.873443, 40.135633 ], [ -74.87333, 40.135464 ], [ -74.873209, 40.135309 ], [ -74.873016, 40.13509 ], [ -74.872692, 40.134727 ], [ -74.872441, 40.134432 ], [ -74.872244, 40.134178 ], [ -74.871682, 40.133378 ], [ -74.871335, 40.132888 ], [ -74.871186, 40.132677 ], [ -74.871009, 40.132456 ], [ -74.870942, 40.132371 ], [ -74.87077, 40.132155 ], [ -74.870068, 40.13135 ], [ -74.869271, 40.130443 ], [ -74.869022, 40.130158 ], [ -74.868716, 40.129822 ], [ -74.868335, 40.129396 ], [ -74.867448, 40.128394 ], [ -74.867239, 40.128158 ], [ -74.866738, 40.127601 ], [ -74.866424, 40.127815 ], [ -74.865805, 40.128231 ], [ -74.865312, 40.128572 ], [ -74.86477, 40.128952 ], [ -74.863486, 40.129829 ], [ -74.862873, 40.130241 ], [ -74.862653, 40.130393 ], [ -74.861659, 40.131074 ], [ -74.861488, 40.131192 ], [ -74.858668, 40.133105 ], [ -74.858449, 40.133243 ], [ -74.857998, 40.13269 ], [ -74.85719, 40.131702 ], [ -74.856982, 40.131453 ], [ -74.856068, 40.130359 ], [ -74.85582, 40.130061 ], [ -74.855481, 40.129647 ], [ -74.854974, 40.129003 ], [ -74.854194, 40.127979 ], [ -74.854113, 40.127868 ], [ -74.853839, 40.127521 ], [ -74.85371, 40.12735 ], [ -74.85318, 40.126661 ], [ -74.852452, 40.125707 ], [ -74.851945, 40.125032 ], [ -74.851253, 40.12411 ], [ -74.850894, 40.123647 ], [ -74.850732, 40.123442 ], [ -74.850471, 40.123099 ], [ -74.850327, 40.122904 ], [ -74.850159, 40.122693 ], [ -74.850118, 40.122641 ], [ -74.850084, 40.122596 ], [ -74.850038, 40.122534 ], [ -74.849988, 40.122468 ], [ -74.849964, 40.122432 ], [ -74.849842, 40.122271 ], [ -74.849158, 40.121416 ], [ -74.848484, 40.120557 ], [ -74.848404, 40.120478 ], [ -74.84831, 40.120393 ], [ -74.848069, 40.120174 ], [ -74.847726, 40.11992 ], [ -74.847464, 40.119769 ], [ -74.84715, 40.119645 ], [ -74.846614, 40.119475 ], [ -74.846104, 40.119339 ], [ -74.846083, 40.119263 ], [ -74.846083, 40.11922 ], [ -74.846088, 40.119164 ], [ -74.846099, 40.119105 ], [ -74.846127, 40.119045 ], [ -74.846161, 40.118992 ], [ -74.846218, 40.118922 ], [ -74.846274, 40.118873 ], [ -74.846327, 40.118828 ], [ -74.846381, 40.11879 ], [ -74.84648, 40.118738 ], [ -74.846587, 40.118691 ], [ -74.846648, 40.118666 ], [ -74.846696, 40.118646 ], [ -74.846758, 40.118618 ], [ -74.846843, 40.118579 ], [ -74.848233, 40.117947 ], [ -74.848784, 40.118542 ], [ -74.849266, 40.11911 ], [ -74.849674, 40.119594 ], [ -74.849784, 40.11971 ], [ -74.849853, 40.119732 ], [ -74.849924, 40.119726 ], [ -74.850371, 40.119516 ], [ -74.851124, 40.11913 ], [ -74.85246, 40.118446 ], [ -74.852758, 40.118297 ], [ -74.853062, 40.118161 ], [ -74.853178, 40.11806 ], [ -74.853357, 40.117743 ], [ -74.853479, 40.117459 ], [ -74.853804, 40.116752 ], [ -74.85389, 40.116526 ], [ -74.853934, 40.116389 ], [ -74.853968, 40.116161 ], [ -74.854013, 40.115846 ], [ -74.854143, 40.114945 ], [ -74.854263, 40.114039 ], [ -74.854289, 40.113861 ], [ -74.854321, 40.11365 ], [ -74.854374, 40.113287 ], [ -74.854498, 40.112466 ], [ -74.854608, 40.111692 ], [ -74.854683, 40.111202 ], [ -74.854705, 40.110991 ], [ -74.854745, 40.110757 ], [ -74.854762, 40.110644 ], [ -74.854834, 40.110126 ], [ -74.854941, 40.10937 ], [ -74.855043, 40.108692 ], [ -74.855109, 40.10827 ], [ -74.855156, 40.107969 ], [ -74.855271, 40.107199 ], [ -74.85528, 40.107132 ], [ -74.855362, 40.106517 ], [ -74.85544, 40.105928 ], [ -74.855499, 40.105394 ], [ -74.855576, 40.104817 ], [ -74.855612, 40.104543 ], [ -74.855634, 40.10433 ], [ -74.855651, 40.104126 ], [ -74.855696, 40.103719 ], [ -74.855834, 40.10227 ], [ -74.855843, 40.102066 ], [ -74.855854, 40.101966 ], [ -74.855893, 40.10141 ], [ -74.855944, 40.100783 ], [ -74.855972, 40.100286 ], [ -74.856042, 40.09938 ], [ -74.856072, 40.098946 ], [ -74.856087, 40.098676 ], [ -74.856081, 40.098634 ], [ -74.856073, 40.098594 ], [ -74.856046, 40.098538 ], [ -74.856276, 40.098375 ], [ -74.856558, 40.09817 ], [ -74.856612, 40.09813 ], [ -74.856942, 40.09788 ], [ -74.857042, 40.097811 ], [ -74.857134, 40.09775 ], [ -74.857297, 40.097671 ], [ -74.85744, 40.097609 ], [ -74.857593, 40.09755 ], [ -74.858818, 40.097082 ], [ -74.859888, 40.096692 ], [ -74.859963, 40.096733 ], [ -74.860222, 40.096883 ], [ -74.860334, 40.096941 ], [ -74.860401, 40.09697 ], [ -74.86047, 40.096995 ], [ -74.860525, 40.097018 ], [ -74.860581, 40.097047 ], [ -74.860616, 40.097074 ], [ -74.86065, 40.097108 ], [ -74.860678, 40.097153 ], [ -74.860714, 40.097217 ], [ -74.860752, 40.097291 ], [ -74.860906, 40.097583 ], [ -74.861139, 40.098026 ], [ -74.861562, 40.098822 ], [ -74.861774, 40.099219 ], [ -74.861857, 40.099382 ], [ -74.862505, 40.100591 ], [ -74.862673, 40.100895 ], [ -74.862771, 40.101081 ], [ -74.863064, 40.101583 ], [ -74.863085, 40.10162 ], [ -74.863104, 40.101653 ], [ -74.86316, 40.101746 ], [ -74.863218, 40.101853 ], [ -74.863225, 40.101867 ], [ -74.863243, 40.101898 ], [ -74.863261, 40.101938 ], [ -74.863326, 40.10207 ], [ -74.863363, 40.102145 ], [ -74.863529, 40.102047 ], [ -74.86366, 40.10196 ], [ -74.863783, 40.101893 ], [ -74.864013, 40.101768 ], [ -74.864122, 40.101712 ], [ -74.864364, 40.101592 ], [ -74.864483, 40.101538 ], [ -74.864589, 40.101489 ], [ -74.864762, 40.101411 ], [ -74.864834, 40.101379 ], [ -74.865083, 40.101276 ], [ -74.865212, 40.101227 ], [ -74.865411, 40.101151 ], [ -74.865582, 40.101092 ], [ -74.866338, 40.100862 ], [ -74.866847, 40.100708 ], [ -74.867421, 40.100517 ], [ -74.868145, 40.100286 ], [ -74.868243, 40.100255 ], [ -74.868366, 40.100252 ], [ -74.868389, 40.100254 ], [ -74.868449, 40.100272 ], [ -74.868496, 40.100294 ], [ -74.868555, 40.10032 ], [ -74.86862, 40.100358 ], [ -74.868718, 40.10041 ], [ -74.868769, 40.10048 ], [ -74.868807, 40.100537 ], [ -74.868865, 40.100613 ], [ -74.868931, 40.100635 ], [ -74.868948, 40.100652 ], [ -74.868982, 40.100675 ], [ -74.869015, 40.100692 ], [ -74.869059, 40.100707 ], [ -74.869582, 40.100819 ], [ -74.869652, 40.10084 ], [ -74.869714, 40.100874 ], [ -74.869918, 40.101023 ], [ -74.869948, 40.100999 ], [ -74.870175, 40.100899 ], [ -74.870278, 40.100829 ], [ -74.870369, 40.10073 ], [ -74.872657, 40.101662 ], [ -74.872919, 40.101288 ], [ -74.8731, 40.101016 ], [ -74.873222, 40.100893 ], [ -74.873305, 40.100843 ], [ -74.873419, 40.100801 ], [ -74.873719, 40.10078 ], [ -74.874414, 40.100729 ], [ -74.874473, 40.101062 ], [ -74.8746, 40.101582 ], [ -74.87468, 40.101829 ], [ -74.87475, 40.102038 ], [ -74.874775, 40.102097 ], [ -74.874855, 40.102154 ], [ -74.875036, 40.102675 ], [ -74.875102, 40.102846 ], [ -74.875199, 40.103072 ], [ -74.875402, 40.103499 ], [ -74.875669, 40.10407 ], [ -74.876111, 40.105025 ], [ -74.876278, 40.105367 ], [ -74.876344, 40.105487 ], [ -74.876703, 40.106265 ], [ -74.876786, 40.106443 ], [ -74.876832, 40.106546 ], [ -74.877029, 40.106986 ], [ -74.877219, 40.107368 ], [ -74.877356, 40.107643 ], [ -74.877589, 40.108142 ], [ -74.877944, 40.108943 ], [ -74.878042, 40.109148 ], [ -74.878515, 40.110133 ], [ -74.878487, 40.110254 ], [ -74.878575, 40.110465 ], [ -74.878678, 40.11069 ], [ -74.878757, 40.110862 ], [ -74.87894, 40.11127 ], [ -74.87808, 40.111538 ], [ -74.877502, 40.110253 ], [ -74.877336, 40.110307 ], [ -74.877238, 40.110339 ], [ -74.877038, 40.110403 ], [ -74.87763, 40.111645 ], [ -74.87808, 40.111538 ], [ -74.87894, 40.11127 ], [ -74.878985, 40.11137 ], [ -74.879057, 40.11154 ], [ -74.879364, 40.112183 ], [ -74.879955, 40.113429 ], [ -74.880264, 40.114106 ], [ -74.880358, 40.11429 ], [ -74.88044, 40.114466 ], [ -74.880534, 40.114656 ], [ -74.880612, 40.114852 ], [ -74.88067, 40.114987 ], [ -74.880721, 40.115131 ], [ -74.880749, 40.115204 ], [ -74.880844, 40.115506 ], [ -74.880893, 40.115715 ], [ -74.880945, 40.116011 ], [ -74.880975, 40.116146 ], [ -74.88104, 40.116229 ], [ -74.881053, 40.11643 ], [ -74.881067, 40.116662 ], [ -74.881074, 40.116766 ], [ -74.881748, 40.116727 ], [ -74.881844, 40.116731 ], [ -74.881933, 40.116741 ], [ -74.882078, 40.116766 ], [ -74.883277, 40.117065 ], [ -74.883515, 40.117117 ], [ -74.883654, 40.117158 ], [ -74.883736, 40.117217 ], [ -74.883868, 40.117349 ], [ -74.883969, 40.117515 ], [ -74.884356, 40.118358 ], [ -74.885742, 40.121536 ], [ -74.886378, 40.121264 ], [ -74.887666, 40.120722 ], [ -74.887869, 40.120639 ], [ -74.888194, 40.120506 ], [ -74.888318, 40.120453 ], [ -74.891037, 40.119349 ], [ -74.892282, 40.118838 ], [ -74.894234, 40.118029 ], [ -74.896855, 40.116944 ], [ -74.898429, 40.116291 ], [ -74.899759, 40.115722 ], [ -74.900646, 40.115355 ], [ -74.900702, 40.115349 ], [ -74.90095, 40.115242 ], [ -74.901232, 40.11511 ], [ -74.901273, 40.115058 ], [ -74.902157, 40.114683 ], [ -74.902196, 40.114805 ], [ -74.90225, 40.114979 ], [ -74.902279, 40.115077 ], [ -74.902335, 40.115249 ], [ -74.902386, 40.115396 ], [ -74.9026, 40.116057 ], [ -74.902628, 40.11616 ], [ -74.90265, 40.116257 ], [ -74.902676, 40.116351 ], [ -74.902701, 40.116524 ], [ -74.902712, 40.116625 ], [ -74.902723, 40.116758 ], [ -74.902733, 40.116907 ], [ -74.902728, 40.117017 ], [ -74.902721, 40.117114 ], [ -74.902706, 40.117201 ], [ -74.90269, 40.117272 ], [ -74.902672, 40.117339 ], [ -74.90265, 40.117424 ], [ -74.90262, 40.117508 ], [ -74.902504, 40.117767 ], [ -74.902307, 40.118229 ], [ -74.902133, 40.118655 ], [ -74.90208, 40.11877 ], [ -74.902048, 40.118834 ], [ -74.902003, 40.11891 ], [ -74.901878, 40.11911 ], [ -74.901744, 40.119324 ], [ -74.901685, 40.119436 ], [ -74.901642, 40.119518 ], [ -74.901566, 40.11969 ], [ -74.901485, 40.119896 ], [ -74.900818, 40.121625 ], [ -74.900759, 40.12177 ], [ -74.900562, 40.122324 ], [ -74.900364, 40.122845 ], [ -74.900171, 40.123325 ], [ -74.900127, 40.123443 ], [ -74.900064, 40.12365 ], [ -74.900016, 40.123771 ], [ -74.899991, 40.123869 ], [ -74.899977, 40.123925 ], [ -74.90005, 40.123902 ], [ -74.900121, 40.123884 ], [ -74.900212, 40.123897 ], [ -74.900538, 40.123836 ], [ -74.900635, 40.123821 ], [ -74.900747, 40.123805 ], [ -74.900956, 40.123777 ], [ -74.900972, 40.123774 ], [ -74.901282, 40.123733 ], [ -74.901895, 40.123661 ], [ -74.90221, 40.123628 ], [ -74.902417, 40.123605 ], [ -74.902543, 40.123591 ], [ -74.902735, 40.123574 ], [ -74.902839, 40.123571 ], [ -74.902984, 40.123568 ], [ -74.903132, 40.123576 ], [ -74.90328, 40.123587 ], [ -74.903381, 40.123599 ], [ -74.903622, 40.123624 ], [ -74.904057, 40.123669 ], [ -74.90414, 40.12365 ], [ -74.904355, 40.123677 ], [ -74.904549, 40.123269 ], [ -74.904623, 40.123115 ], [ -74.904662, 40.123041 ], [ -74.904969, 40.122394 ], [ -74.905296, 40.121742 ], [ -74.905386, 40.121555 ], [ -74.905565, 40.121192 ], [ -74.90563, 40.121158 ], [ -74.905654, 40.121124 ], [ -74.90584, 40.120734 ], [ -74.905855, 40.120692 ], [ -74.90585, 40.120625 ], [ -74.90603, 40.120259 ], [ -74.906241, 40.119834 ], [ -74.906427, 40.119458 ], [ -74.906643, 40.119015 ], [ -74.906889, 40.118514 ], [ -74.90696, 40.118383 ], [ -74.907135, 40.118022 ], [ -74.907353, 40.117588 ], [ -74.907496, 40.117289 ], [ -74.907652, 40.116979 ], [ -74.907851, 40.116608 ], [ -74.907972, 40.116386 ], [ -74.908247, 40.115932 ], [ -74.908683, 40.115261 ], [ -74.908985, 40.114815 ], [ -74.909398, 40.114194 ], [ -74.909695, 40.113748 ], [ -74.909699, 40.11374 ], [ -74.909967, 40.113337 ], [ -74.910253, 40.112903 ], [ -74.910395, 40.112686 ], [ -74.91041, 40.112665 ], [ -74.910693, 40.112237 ], [ -74.910845, 40.112009 ], [ -74.911049, 40.111707 ], [ -74.91112, 40.111607 ], [ -74.911172, 40.111581 ], [ -74.911221, 40.111506 ], [ -74.911701, 40.110728 ], [ -74.911825, 40.110538 ], [ -74.911897, 40.110414 ], [ -74.911897, 40.110369 ], [ -74.912026, 40.110194 ], [ -74.912099, 40.110108 ], [ -74.912227, 40.109905 ], [ -74.912426, 40.109583 ], [ -74.91275, 40.109078 ], [ -74.913203, 40.108382 ], [ -74.913477, 40.107972 ], [ -74.914125, 40.106981 ], [ -74.914226, 40.106828 ], [ -74.914453, 40.10648 ], [ -74.914892, 40.105823 ], [ -74.91515, 40.105439 ], [ -74.915413, 40.10503 ], [ -74.916061, 40.104059 ], [ -74.916373, 40.103589 ], [ -74.91687, 40.102852 ], [ -74.917159, 40.102418 ], [ -74.917581, 40.101772 ], [ -74.918093, 40.100986 ], [ -74.918709, 40.10008 ], [ -74.918985, 40.099669 ], [ -74.919089, 40.099515 ], [ -74.919142, 40.099436 ], [ -74.919224, 40.099316 ], [ -74.919322, 40.099174 ], [ -74.919431, 40.099028 ], [ -74.919493, 40.099 ], [ -74.919595, 40.09886 ], [ -74.919836, 40.098493 ], [ -74.919997, 40.098255 ], [ -74.92006, 40.098163 ], [ -74.920395, 40.097662 ], [ -74.921934, 40.09823 ], [ -74.922446, 40.09842 ], [ -74.922609, 40.098482 ], [ -74.92275, 40.098535 ], [ -74.922863, 40.098589 ], [ -74.922934, 40.098633 ], [ -74.922992, 40.098686 ], [ -74.92309, 40.0988 ], [ -74.923565, 40.099381 ], [ -74.924156, 40.100111 ], [ -74.924455, 40.100485 ], [ -74.924641, 40.100722 ], [ -74.924915, 40.101071 ], [ -74.925013, 40.101203 ], [ -74.925159, 40.101403 ], [ -74.925474, 40.101873 ], [ -74.925733, 40.102275 ], [ -74.925915, 40.102581 ], [ -74.926799, 40.10407 ], [ -74.927542, 40.105292 ], [ -74.927861, 40.105823 ], [ -74.92851, 40.106866 ], [ -74.928862, 40.107396 ], [ -74.928974, 40.107574 ], [ -74.929715, 40.108714 ], [ -74.929786, 40.108782 ], [ -74.931861, 40.107836 ], [ -74.931913, 40.107769 ], [ -74.932346, 40.107585 ], [ -74.932407, 40.107566 ], [ -74.93248, 40.107546 ], [ -74.932553, 40.107537 ], [ -74.932614, 40.10754 ], [ -74.932748, 40.107566 ], [ -74.932859, 40.107589 ], [ -74.933004, 40.10762 ], [ -74.933211, 40.10767 ], [ -74.933475, 40.10773 ], [ -74.93413, 40.107898 ], [ -74.9347, 40.108046 ], [ -74.934767, 40.108106 ], [ -74.934958, 40.108158 ], [ -74.935329, 40.108259 ], [ -74.93554, 40.108317 ], [ -74.935645, 40.108303 ], [ -74.936096, 40.108425 ], [ -74.936797, 40.108621 ], [ -74.937508, 40.10881 ], [ -74.938098, 40.108961 ], [ -74.941296, 40.109846 ], [ -74.941676, 40.10995 ], [ -74.94174, 40.110008 ], [ -74.942824, 40.110327 ], [ -74.943784, 40.110612 ], [ -74.943896, 40.11064 ], [ -74.943975, 40.110635 ], [ -74.944655, 40.110842 ], [ -74.94487, 40.110924 ], [ -74.94494, 40.110951 ], [ -74.945024, 40.110994 ], [ -74.945227, 40.110603 ], [ -74.945421, 40.110244 ], [ -74.945558, 40.110007 ], [ -74.945619, 40.109902 ], [ -74.94562, 40.10985 ], [ -74.945737, 40.109695 ], [ -74.94575, 40.109679 ], [ -74.945769, 40.109658 ], [ -74.946492, 40.108945 ], [ -74.947246, 40.108229 ], [ -74.948117, 40.107417 ], [ -74.948793, 40.106753 ], [ -74.949307, 40.106266 ], [ -74.949354, 40.106224 ], [ -74.949412, 40.10621 ], [ -74.94944, 40.106187 ], [ -74.949683, 40.105955 ], [ -74.949703, 40.105932 ], [ -74.949716, 40.105877 ], [ -74.949857, 40.105744 ], [ -74.950043, 40.105556 ], [ -74.950171, 40.105427 ], [ -74.950415, 40.10518 ], [ -74.950549, 40.10505 ], [ -74.950694, 40.10491 ], [ -74.950799, 40.1048 ], [ -74.950857, 40.104745 ], [ -74.950977, 40.104636 ], [ -74.951295, 40.10431 ], [ -74.951369, 40.10424 ], [ -74.951484, 40.104197 ], [ -74.951588, 40.104082 ], [ -74.952322, 40.103294 ], [ -74.95264, 40.102953 ], [ -74.953279, 40.102315 ], [ -74.953898, 40.101745 ], [ -74.954229, 40.101454 ], [ -74.954441, 40.101268 ], [ -74.954574, 40.101149 ], [ -74.955169, 40.100626 ], [ -74.955467, 40.100362 ], [ -74.955591, 40.100252 ], [ -74.955618, 40.100138 ], [ -74.956074, 40.099754 ], [ -74.956437, 40.099428 ], [ -74.956485, 40.099385 ], [ -74.956754, 40.099148 ], [ -74.956923, 40.098999 ], [ -74.956971, 40.098954 ], [ -74.957311, 40.09864 ], [ -74.957432, 40.098613 ], [ -74.957455, 40.098595 ], [ -74.957506, 40.098551 ], [ -74.95791, 40.098122 ], [ -74.958097, 40.097884 ], [ -74.958151, 40.09782 ], [ -74.958267, 40.097667 ], [ -74.958356, 40.097541 ], [ -74.958565, 40.097212 ], [ -74.958761, 40.096911 ], [ -74.958984, 40.096566 ], [ -74.959372, 40.095971 ], [ -74.959447, 40.095867 ], [ -74.959498, 40.095795 ], [ -74.959561, 40.095723 ], [ -74.959616, 40.095656 ], [ -74.959656, 40.095611 ], [ -74.959744, 40.095513 ], [ -74.959833, 40.09543 ], [ -74.960302, 40.094999 ], [ -74.96125, 40.094135 ], [ -74.96148, 40.093938 ], [ -74.961562, 40.093864 ], [ -74.961639, 40.093801 ], [ -74.961649, 40.093793 ], [ -74.961838, 40.093658 ], [ -74.962169, 40.093424 ], [ -74.962519, 40.093219 ], [ -74.96282, 40.093064 ], [ -74.963244, 40.092856 ], [ -74.963675, 40.092659 ], [ -74.964212, 40.092411 ], [ -74.964401, 40.09232 ], [ -74.964608, 40.092227 ], [ -74.964777, 40.092146 ], [ -74.964824, 40.092124 ], [ -74.965176, 40.091947 ], [ -74.965518, 40.091758 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965708, 40.091577 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965445, 40.084756 ], [ -74.965477, 40.084664 ], [ -74.96551, 40.084558 ], [ -74.965566, 40.084404 ], [ -74.965621, 40.084272 ], [ -74.965657, 40.084187 ], [ -74.965684, 40.084114 ], [ -74.965771, 40.083861 ], [ -74.96585, 40.083638 ], [ -74.965887, 40.083523 ], [ -74.965954, 40.08327 ], [ -74.965997, 40.083081 ], [ -74.966022, 40.082982 ], [ -74.966042, 40.08291 ], [ -74.966067, 40.082756 ], [ -74.96603, 40.082674 ], [ -74.966056, 40.082563 ], [ -74.966146, 40.082538 ], [ -74.96622, 40.082505 ], [ -74.966308, 40.08246 ], [ -74.966622, 40.082299 ], [ -74.966805, 40.082204 ], [ -74.966932, 40.082144 ], [ -74.967036, 40.082096 ], [ -74.966923, 40.081965 ], [ -74.966845, 40.081858 ], [ -74.966751, 40.081705 ], [ -74.966668, 40.08157 ], [ -74.966579, 40.081427 ], [ -74.966514, 40.081314 ], [ -74.966444, 40.081182 ], [ -74.966382, 40.081056 ], [ -74.966312, 40.080908 ], [ -74.966214, 40.080664 ], [ -74.966099, 40.080374 ], [ -74.965797, 40.079558 ], [ -74.965628, 40.079122 ], [ -74.965457, 40.078675 ], [ -74.96513, 40.077785 ], [ -74.965015, 40.077466 ], [ -74.964957, 40.077284 ], [ -74.964906, 40.077131 ], [ -74.964894, 40.077093 ], [ -74.964872, 40.077024 ], [ -74.964835, 40.07691 ], [ -74.964688, 40.076454 ], [ -74.964623, 40.07626 ], [ -74.964554, 40.076057 ], [ -74.964519, 40.075936 ], [ -74.964508, 40.0759 ], [ -74.964499, 40.075856 ], [ -74.964486, 40.075782 ], [ -74.96448, 40.075737 ], [ -74.964475, 40.075672 ], [ -74.964471, 40.075606 ], [ -74.964469, 40.075548 ], [ -74.964472, 40.075483 ], [ -74.964477, 40.07543 ], [ -74.96448, 40.075379 ], [ -74.964492, 40.075314 ], [ -74.964503, 40.075255 ], [ -74.964516, 40.075193 ], [ -74.964534, 40.075133 ], [ -74.964554, 40.075064 ], [ -74.964576, 40.075005 ], [ -74.964599, 40.074942 ], [ -74.964624, 40.07488 ], [ -74.964662, 40.074771 ], [ -74.964693, 40.074718 ], [ -74.964856, 40.074421 ], [ -74.964959, 40.074214 ], [ -74.964998, 40.074115 ], [ -74.965015, 40.074016 ], [ -74.965019, 40.073915 ], [ -74.965013, 40.073814 ], [ -74.964993, 40.073715 ], [ -74.964957, 40.073619 ], [ -74.964902, 40.073519 ], [ -74.964817, 40.073405 ], [ -74.96473, 40.073305 ], [ -74.964163, 40.07268 ], [ -74.964148, 40.072649 ], [ -74.964139, 40.072626 ], [ -74.964124, 40.072564 ], [ -74.964124, 40.072497 ], [ -74.964139, 40.072433 ], [ -74.964169, 40.072368 ], [ -74.964205, 40.07232 ], [ -74.964274, 40.072283 ], [ -74.964351, 40.072238 ], [ -74.964526, 40.072134 ], [ -74.964697, 40.072044 ], [ -74.964908, 40.071939 ], [ -74.965201, 40.071791 ], [ -74.965279, 40.071751 ], [ -74.965706, 40.07151 ], [ -74.965773, 40.071472 ], [ -74.965887, 40.071397 ], [ -74.965929, 40.071339 ], [ -74.966017, 40.071297 ], [ -74.966166, 40.071214 ], [ -74.966321, 40.071118 ], [ -74.966414, 40.071056 ], [ -74.966528, 40.070978 ], [ -74.966731, 40.070823 ], [ -74.967047, 40.070569 ], [ -74.96748, 40.070219 ], [ -74.967833, 40.069936 ], [ -74.968226, 40.069623 ], [ -74.968823, 40.069144 ], [ -74.969026, 40.068982 ], [ -74.969286, 40.068777 ], [ -74.969484, 40.068619 ], [ -74.96969, 40.068456 ], [ -74.970073, 40.068152 ], [ -74.970957, 40.067546 ], [ -74.97161, 40.067108 ], [ -74.97175, 40.06702 ], [ -74.971794, 40.066994 ], [ -74.971817, 40.06698 ], [ -74.971938, 40.066905 ], [ -74.972044, 40.066849 ], [ -74.972139, 40.066803 ], [ -74.972455, 40.066663 ], [ -74.972599, 40.066607 ], [ -74.972696, 40.066569 ], [ -74.972794, 40.066534 ], [ -74.973265, 40.066389 ], [ -74.973471, 40.066325 ], [ -74.973619, 40.06628 ], [ -74.974306, 40.066068 ], [ -74.974463, 40.066018 ], [ -74.975315, 40.065767 ], [ -74.975613, 40.065677 ], [ -74.976142, 40.065522 ], [ -74.976376, 40.065453 ], [ -74.976671, 40.065369 ], [ -74.976948, 40.065284 ], [ -74.977277, 40.06518 ], [ -74.977397, 40.065146 ], [ -74.977617, 40.065089 ], [ -74.977815, 40.065048 ], [ -74.978, 40.065023 ], [ -74.978175, 40.06501 ], [ -74.978349, 40.065008 ], [ -74.978522, 40.065017 ], [ -74.978721, 40.065045 ], [ -74.978845, 40.065069 ], [ -74.979027, 40.065107 ], [ -74.979297, 40.065154 ], [ -74.979491, 40.065175 ], [ -74.979604, 40.06518 ], [ -74.979719, 40.065179 ], [ -74.979895, 40.065166 ], [ -74.979981, 40.065155 ], [ -74.980048, 40.065146 ], [ -74.980274, 40.065106 ], [ -74.980547, 40.065053 ], [ -74.980694, 40.065022 ], [ -74.980959, 40.064967 ], [ -74.981006, 40.064957 ], [ -74.981054, 40.064946 ], [ -74.981162, 40.064926 ], [ -74.981402, 40.064879 ], [ -74.981676, 40.064825 ], [ -74.981533, 40.064504 ], [ -74.981576, 40.064328 ], [ -74.981714, 40.064233 ], [ -74.981747, 40.064138 ], [ -74.98168, 40.064052 ], [ -74.98159, 40.064062 ], [ -74.981504, 40.064112 ], [ -74.981471, 40.064185 ], [ -74.981428, 40.064283 ], [ -74.981433, 40.064395 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307162", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.910412, 40.159951 ], [ -74.910467, 40.159869 ], [ -74.910522, 40.159787 ], [ -74.910603, 40.15968 ], [ -74.910698, 40.159576 ], [ -74.91077, 40.159507 ], [ -74.910971, 40.159333 ], [ -74.911099, 40.159239 ], [ -74.911, 40.159155 ], [ -74.910767, 40.158963 ], [ -74.910513, 40.158778 ], [ -74.910308, 40.158622 ], [ -74.910198, 40.15855 ], [ -74.910091, 40.158494 ], [ -74.909973, 40.158448 ], [ -74.909853, 40.158414 ], [ -74.909728, 40.158392 ], [ -74.909577, 40.15838 ], [ -74.908928, 40.158387 ], [ -74.908526, 40.158398 ], [ -74.907995, 40.158418 ], [ -74.907512, 40.158434 ], [ -74.906903, 40.158442 ], [ -74.90664, 40.158432 ], [ -74.905828, 40.158373 ], [ -74.905329, 40.158335 ], [ -74.90475, 40.158277 ], [ -74.904271, 40.158232 ], [ -74.903718, 40.158176 ], [ -74.903168, 40.158122 ], [ -74.902684, 40.158061 ], [ -74.902069, 40.157959 ], [ -74.901676, 40.157892 ], [ -74.901017, 40.157762 ], [ -74.900869, 40.157727 ], [ -74.900604, 40.157666 ], [ -74.900369, 40.157613 ], [ -74.900188, 40.157574 ], [ -74.900055, 40.157546 ], [ -74.899926, 40.157515 ], [ -74.899814, 40.157489 ], [ -74.89971, 40.157461 ], [ -74.899625, 40.157433 ], [ -74.899549, 40.15741 ], [ -74.899487, 40.157388 ], [ -74.899429, 40.157361 ], [ -74.899344, 40.157316 ], [ -74.899276, 40.157275 ], [ -74.899189, 40.157213 ], [ -74.899131, 40.157168 ], [ -74.899091, 40.157132 ], [ -74.899053, 40.157095 ], [ -74.899014, 40.157053 ], [ -74.898935, 40.156925 ], [ -74.898837, 40.156752 ], [ -74.898705, 40.156577 ], [ -74.89856, 40.156385 ], [ -74.898235, 40.155966 ], [ -74.898049, 40.15573 ], [ -74.897836, 40.155455 ], [ -74.897261, 40.154665 ], [ -74.896999, 40.154297 ], [ -74.896794, 40.154005 ], [ -74.896689, 40.153836 ], [ -74.896198, 40.152975 ], [ -74.895856, 40.152325 ], [ -74.895687, 40.152021 ], [ -74.895568, 40.151812 ], [ -74.895254, 40.15125 ], [ -74.894915, 40.150639 ], [ -74.8945, 40.149915 ], [ -74.894449, 40.149826 ], [ -74.894409, 40.149749 ], [ -74.894374, 40.149674 ], [ -74.894343, 40.149604 ], [ -74.894312, 40.149538 ], [ -74.894228, 40.149344 ], [ -74.894095, 40.149032 ], [ -74.893825, 40.148339 ], [ -74.893382, 40.147224 ], [ -74.893282, 40.146936 ], [ -74.892966, 40.146029 ], [ -74.892915, 40.145885 ], [ -74.892855, 40.145724 ], [ -74.892749, 40.145474 ], [ -74.892456, 40.144833 ], [ -74.892319, 40.144521 ], [ -74.8919, 40.143626 ], [ -74.891809, 40.143425 ], [ -74.891611, 40.142885 ], [ -74.891543, 40.142693 ], [ -74.891427, 40.142329 ], [ -74.891323, 40.142001 ], [ -74.891036, 40.141102 ], [ -74.890661, 40.139941 ], [ -74.890605, 40.13977 ], [ -74.890548, 40.1396 ], [ -74.890442, 40.139278 ], [ -74.890339, 40.138951 ], [ -74.890261, 40.138698 ], [ -74.890219, 40.138535 ], [ -74.89018, 40.13838 ], [ -74.890149, 40.138221 ], [ -74.890127, 40.138121 ], [ -74.890098, 40.13796 ], [ -74.890047, 40.137634 ], [ -74.890013, 40.137366 ], [ -74.889992, 40.137164 ], [ -74.889966, 40.136843 ], [ -74.889934, 40.136396 ], [ -74.889878, 40.135546 ], [ -74.889861, 40.135211 ], [ -74.889834, 40.134769 ], [ -74.889822, 40.134623 ], [ -74.889798, 40.134443 ], [ -74.88977, 40.13433 ], [ -74.889726, 40.134218 ], [ -74.889648, 40.134057 ], [ -74.889541, 40.133877 ], [ -74.889487, 40.133795 ], [ -74.889399, 40.133654 ], [ -74.889331, 40.13355 ], [ -74.889263, 40.133451 ], [ -74.889198, 40.133357 ], [ -74.889031, 40.133115 ], [ -74.888835, 40.132857 ], [ -74.888502, 40.132444 ], [ -74.888281, 40.132189 ], [ -74.888055, 40.131949 ], [ -74.887682, 40.132202 ], [ -74.887442, 40.13236 ], [ -74.887148, 40.132554 ], [ -74.886958, 40.132676 ], [ -74.886651, 40.132875 ], [ -74.886274, 40.133119 ], [ -74.886186, 40.13318 ], [ -74.886105, 40.133238 ], [ -74.885989, 40.133319 ], [ -74.885538, 40.133635 ], [ -74.885383, 40.133744 ], [ -74.885297, 40.133804 ], [ -74.885041, 40.133984 ], [ -74.884735, 40.13421 ], [ -74.884694, 40.134239 ], [ -74.884213, 40.134575 ], [ -74.883856, 40.134823 ], [ -74.883351, 40.135173 ], [ -74.882367, 40.135856 ], [ -74.882275, 40.135918 ], [ -74.88188, 40.136188 ], [ -74.881718, 40.136299 ], [ -74.881481, 40.136462 ], [ -74.880787, 40.136939 ], [ -74.880322, 40.137259 ], [ -74.880107, 40.137401 ], [ -74.879334, 40.137943 ], [ -74.879067, 40.138129 ], [ -74.878935, 40.138219 ], [ -74.878751, 40.138346 ], [ -74.878278, 40.138677 ], [ -74.877695, 40.139064 ], [ -74.876952, 40.139561 ], [ -74.876576, 40.139815 ], [ -74.876213, 40.140056 ], [ -74.875653, 40.140433 ], [ -74.875391, 40.140609 ], [ -74.875205, 40.140675 ], [ -74.875112, 40.140727 ], [ -74.875045, 40.140771 ], [ -74.874986, 40.140792 ], [ -74.874929, 40.140794 ], [ -74.874882, 40.140785 ], [ -74.874845, 40.140764 ], [ -74.874814, 40.140736 ], [ -74.874794, 40.140702 ], [ -74.874783, 40.14064 ], [ -74.874761, 40.140532 ], [ -74.874773, 40.140305 ], [ -74.874781, 40.14015 ], [ -74.874786, 40.139899 ], [ -74.874783, 40.139723 ], [ -74.874775, 40.139534 ], [ -74.874759, 40.139309 ], [ -74.874737, 40.139098 ], [ -74.874721, 40.138965 ], [ -74.874653, 40.138618 ], [ -74.874524, 40.138127 ], [ -74.874461, 40.137921 ], [ -74.874372, 40.137678 ], [ -74.874219, 40.13731 ], [ -74.874042, 40.136891 ], [ -74.873869, 40.136514 ], [ -74.873764, 40.136275 ], [ -74.873668, 40.136058 ], [ -74.873554, 40.135828 ], [ -74.873443, 40.135633 ], [ -74.87333, 40.135464 ], [ -74.873209, 40.135309 ], [ -74.873016, 40.13509 ], [ -74.872692, 40.134727 ], [ -74.872441, 40.134432 ], [ -74.872244, 40.134178 ], [ -74.871682, 40.133378 ], [ -74.871335, 40.132888 ], [ -74.871186, 40.132677 ], [ -74.871009, 40.132456 ], [ -74.870942, 40.132371 ], [ -74.87077, 40.132155 ], [ -74.870068, 40.13135 ], [ -74.869271, 40.130443 ], [ -74.869022, 40.130158 ], [ -74.868716, 40.129822 ], [ -74.868335, 40.129396 ], [ -74.867448, 40.128394 ], [ -74.867239, 40.128158 ], [ -74.866738, 40.127601 ], [ -74.866424, 40.127815 ], [ -74.865805, 40.128231 ], [ -74.865312, 40.128572 ], [ -74.86477, 40.128952 ], [ -74.863486, 40.129829 ], [ -74.862873, 40.130241 ], [ -74.862653, 40.130393 ], [ -74.861659, 40.131074 ], [ -74.861488, 40.131192 ], [ -74.858668, 40.133105 ], [ -74.858449, 40.133243 ], [ -74.857998, 40.13269 ], [ -74.85719, 40.131702 ], [ -74.856982, 40.131453 ], [ -74.856068, 40.130359 ], [ -74.85582, 40.130061 ], [ -74.855481, 40.129647 ], [ -74.854974, 40.129003 ], [ -74.854194, 40.127979 ], [ -74.854113, 40.127868 ], [ -74.853839, 40.127521 ], [ -74.85371, 40.12735 ], [ -74.85318, 40.126661 ], [ -74.852452, 40.125707 ], [ -74.851945, 40.125032 ], [ -74.851253, 40.12411 ], [ -74.850894, 40.123647 ], [ -74.850732, 40.123442 ], [ -74.850471, 40.123099 ], [ -74.850327, 40.122904 ], [ -74.850159, 40.122693 ], [ -74.850118, 40.122641 ], [ -74.850084, 40.122596 ], [ -74.850038, 40.122534 ], [ -74.849988, 40.122468 ], [ -74.849964, 40.122432 ], [ -74.849842, 40.122271 ], [ -74.849158, 40.121416 ], [ -74.848484, 40.120557 ], [ -74.848404, 40.120478 ], [ -74.84831, 40.120393 ], [ -74.848069, 40.120174 ], [ -74.847726, 40.11992 ], [ -74.847464, 40.119769 ], [ -74.84715, 40.119645 ], [ -74.846614, 40.119475 ], [ -74.846104, 40.119339 ], [ -74.846083, 40.119263 ], [ -74.846083, 40.11922 ], [ -74.846088, 40.119164 ], [ -74.846099, 40.119105 ], [ -74.846127, 40.119045 ], [ -74.846161, 40.118992 ], [ -74.846218, 40.118922 ], [ -74.846274, 40.118873 ], [ -74.846327, 40.118828 ], [ -74.846381, 40.11879 ], [ -74.84648, 40.118738 ], [ -74.846587, 40.118691 ], [ -74.846648, 40.118666 ], [ -74.846696, 40.118646 ], [ -74.846758, 40.118618 ], [ -74.846843, 40.118579 ], [ -74.848233, 40.117947 ], [ -74.848784, 40.118542 ], [ -74.849266, 40.11911 ], [ -74.849674, 40.119594 ], [ -74.849784, 40.11971 ], [ -74.849853, 40.119732 ], [ -74.849924, 40.119726 ], [ -74.850371, 40.119516 ], [ -74.851124, 40.11913 ], [ -74.85246, 40.118446 ], [ -74.852758, 40.118297 ], [ -74.853062, 40.118161 ], [ -74.853178, 40.11806 ], [ -74.853357, 40.117743 ], [ -74.853479, 40.117459 ], [ -74.853804, 40.116752 ], [ -74.85389, 40.116526 ], [ -74.853934, 40.116389 ], [ -74.853968, 40.116161 ], [ -74.854013, 40.115846 ], [ -74.854143, 40.114945 ], [ -74.854263, 40.114039 ], [ -74.854289, 40.113861 ], [ -74.854321, 40.11365 ], [ -74.854374, 40.113287 ], [ -74.854498, 40.112466 ], [ -74.854608, 40.111692 ], [ -74.854683, 40.111202 ], [ -74.854705, 40.110991 ], [ -74.854745, 40.110757 ], [ -74.854762, 40.110644 ], [ -74.854834, 40.110126 ], [ -74.854941, 40.10937 ], [ -74.855043, 40.108692 ], [ -74.855109, 40.10827 ], [ -74.855156, 40.107969 ], [ -74.855271, 40.107199 ], [ -74.85528, 40.107132 ], [ -74.855362, 40.106517 ], [ -74.85544, 40.105928 ], [ -74.855499, 40.105394 ], [ -74.855576, 40.104817 ], [ -74.855612, 40.104543 ], [ -74.855634, 40.10433 ], [ -74.855651, 40.104126 ], [ -74.855696, 40.103719 ], [ -74.855834, 40.10227 ], [ -74.855843, 40.102066 ], [ -74.855854, 40.101966 ], [ -74.855893, 40.10141 ], [ -74.855944, 40.100783 ], [ -74.855972, 40.100286 ], [ -74.856042, 40.09938 ], [ -74.856072, 40.098946 ], [ -74.856087, 40.098676 ], [ -74.856081, 40.098634 ], [ -74.856073, 40.098594 ], [ -74.856046, 40.098538 ], [ -74.856276, 40.098375 ], [ -74.856558, 40.09817 ], [ -74.856612, 40.09813 ], [ -74.856942, 40.09788 ], [ -74.857042, 40.097811 ], [ -74.857134, 40.09775 ], [ -74.857297, 40.097671 ], [ -74.85744, 40.097609 ], [ -74.857593, 40.09755 ], [ -74.858818, 40.097082 ], [ -74.859888, 40.096692 ], [ -74.859963, 40.096733 ], [ -74.860222, 40.096883 ], [ -74.860334, 40.096941 ], [ -74.860401, 40.09697 ], [ -74.86047, 40.096995 ], [ -74.860525, 40.097018 ], [ -74.860581, 40.097047 ], [ -74.860616, 40.097074 ], [ -74.86065, 40.097108 ], [ -74.860678, 40.097153 ], [ -74.860714, 40.097217 ], [ -74.860752, 40.097291 ], [ -74.860906, 40.097583 ], [ -74.861139, 40.098026 ], [ -74.861562, 40.098822 ], [ -74.861774, 40.099219 ], [ -74.861857, 40.099382 ], [ -74.862505, 40.100591 ], [ -74.862673, 40.100895 ], [ -74.862771, 40.101081 ], [ -74.863064, 40.101583 ], [ -74.863085, 40.10162 ], [ -74.863104, 40.101653 ], [ -74.86316, 40.101746 ], [ -74.863218, 40.101853 ], [ -74.863225, 40.101867 ], [ -74.863243, 40.101898 ], [ -74.863261, 40.101938 ], [ -74.863326, 40.10207 ], [ -74.863363, 40.102145 ], [ -74.863529, 40.102047 ], [ -74.86366, 40.10196 ], [ -74.863783, 40.101893 ], [ -74.864013, 40.101768 ], [ -74.864122, 40.101712 ], [ -74.864364, 40.101592 ], [ -74.864483, 40.101538 ], [ -74.864589, 40.101489 ], [ -74.864762, 40.101411 ], [ -74.864834, 40.101379 ], [ -74.865083, 40.101276 ], [ -74.865212, 40.101227 ], [ -74.865411, 40.101151 ], [ -74.865582, 40.101092 ], [ -74.866338, 40.100862 ], [ -74.866847, 40.100708 ], [ -74.867421, 40.100517 ], [ -74.868145, 40.100286 ], [ -74.868243, 40.100255 ], [ -74.868366, 40.100252 ], [ -74.868389, 40.100254 ], [ -74.868449, 40.100272 ], [ -74.868496, 40.100294 ], [ -74.868555, 40.10032 ], [ -74.86862, 40.100358 ], [ -74.868718, 40.10041 ], [ -74.868769, 40.10048 ], [ -74.868807, 40.100537 ], [ -74.868865, 40.100613 ], [ -74.868931, 40.100635 ], [ -74.868948, 40.100652 ], [ -74.868982, 40.100675 ], [ -74.869015, 40.100692 ], [ -74.869059, 40.100707 ], [ -74.869582, 40.100819 ], [ -74.869652, 40.10084 ], [ -74.869714, 40.100874 ], [ -74.869918, 40.101023 ], [ -74.869948, 40.100999 ], [ -74.870175, 40.100899 ], [ -74.870278, 40.100829 ], [ -74.870369, 40.10073 ], [ -74.872657, 40.101662 ], [ -74.872919, 40.101288 ], [ -74.8731, 40.101016 ], [ -74.873222, 40.100893 ], [ -74.873305, 40.100843 ], [ -74.873419, 40.100801 ], [ -74.873719, 40.10078 ], [ -74.874414, 40.100729 ], [ -74.874473, 40.101062 ], [ -74.8746, 40.101582 ], [ -74.87468, 40.101829 ], [ -74.87475, 40.102038 ], [ -74.874775, 40.102097 ], [ -74.874855, 40.102154 ], [ -74.875036, 40.102675 ], [ -74.875102, 40.102846 ], [ -74.875199, 40.103072 ], [ -74.875402, 40.103499 ], [ -74.875669, 40.10407 ], [ -74.876111, 40.105025 ], [ -74.876278, 40.105367 ], [ -74.876344, 40.105487 ], [ -74.876703, 40.106265 ], [ -74.876786, 40.106443 ], [ -74.876832, 40.106546 ], [ -74.877029, 40.106986 ], [ -74.877219, 40.107368 ], [ -74.877356, 40.107643 ], [ -74.877589, 40.108142 ], [ -74.877944, 40.108943 ], [ -74.878042, 40.109148 ], [ -74.878515, 40.110133 ], [ -74.878487, 40.110254 ], [ -74.878575, 40.110465 ], [ -74.878678, 40.11069 ], [ -74.878757, 40.110862 ], [ -74.87894, 40.11127 ], [ -74.87808, 40.111538 ], [ -74.877502, 40.110253 ], [ -74.877336, 40.110307 ], [ -74.877238, 40.110339 ], [ -74.877038, 40.110403 ], [ -74.87763, 40.111645 ], [ -74.87808, 40.111538 ], [ -74.87894, 40.11127 ], [ -74.878985, 40.11137 ], [ -74.879057, 40.11154 ], [ -74.879364, 40.112183 ], [ -74.879955, 40.113429 ], [ -74.880264, 40.114106 ], [ -74.880358, 40.11429 ], [ -74.88044, 40.114466 ], [ -74.880534, 40.114656 ], [ -74.880612, 40.114852 ], [ -74.88067, 40.114987 ], [ -74.880721, 40.115131 ], [ -74.880749, 40.115204 ], [ -74.880844, 40.115506 ], [ -74.880893, 40.115715 ], [ -74.880945, 40.116011 ], [ -74.880975, 40.116146 ], [ -74.88104, 40.116229 ], [ -74.881053, 40.11643 ], [ -74.881067, 40.116662 ], [ -74.881074, 40.116766 ], [ -74.881748, 40.116727 ], [ -74.881844, 40.116731 ], [ -74.881933, 40.116741 ], [ -74.882078, 40.116766 ], [ -74.883277, 40.117065 ], [ -74.883637, 40.116136 ], [ -74.883986, 40.115187 ], [ -74.884106, 40.114956 ], [ -74.88426, 40.114712 ], [ -74.884328, 40.114644 ], [ -74.884422, 40.114571 ], [ -74.884695, 40.114424 ], [ -74.88485, 40.114363 ], [ -74.885012, 40.114325 ], [ -74.885268, 40.114295 ], [ -74.885435, 40.11429 ], [ -74.885596, 40.114298 ], [ -74.88593, 40.114357 ], [ -74.886207, 40.114498 ], [ -74.886335, 40.114582 ], [ -74.886472, 40.114712 ], [ -74.886583, 40.114841 ], [ -74.886704, 40.115083 ], [ -74.886744, 40.115216 ], [ -74.886755, 40.115311 ], [ -74.886744, 40.115459 ], [ -74.886696, 40.115632 ], [ -74.886549, 40.116064 ], [ -74.886011, 40.117419 ], [ -74.885928, 40.11756 ], [ -74.885853, 40.117673 ], [ -74.885723, 40.117806 ], [ -74.885513, 40.117968 ], [ -74.885362, 40.118052 ], [ -74.885229, 40.118108 ], [ -74.884776, 40.118249 ], [ -74.884356, 40.118358 ], [ -74.885742, 40.121536 ], [ -74.886378, 40.121264 ], [ -74.887666, 40.120722 ], [ -74.887869, 40.120639 ], [ -74.888194, 40.120506 ], [ -74.888318, 40.120453 ], [ -74.891037, 40.119349 ], [ -74.892282, 40.118838 ], [ -74.894234, 40.118029 ], [ -74.893935, 40.117633 ], [ -74.893891, 40.117559 ], [ -74.893852, 40.117481 ], [ -74.893839, 40.117411 ], [ -74.893815, 40.117207 ], [ -74.893866, 40.117063 ], [ -74.893936, 40.116934 ], [ -74.894021, 40.116838 ], [ -74.894187, 40.116735 ], [ -74.89482, 40.116465 ], [ -74.896053, 40.115936 ], [ -74.89764, 40.115294 ], [ -74.89732, 40.114793 ], [ -74.899946, 40.113669 ], [ -74.900009, 40.113623 ], [ -74.900075, 40.113566 ], [ -74.90012, 40.113512 ], [ -74.90015, 40.113468 ], [ -74.900172, 40.113423 ], [ -74.900199, 40.11335 ], [ -74.900207, 40.113304 ], [ -74.900212, 40.113245 ], [ -74.900204, 40.113178 ], [ -74.90019, 40.113124 ], [ -74.900167, 40.113068 ], [ -74.900131, 40.113002 ], [ -74.89942, 40.111999 ], [ -74.899371, 40.11193 ], [ -74.899313, 40.111847 ], [ -74.899273, 40.111778 ], [ -74.899226, 40.111689 ], [ -74.899205, 40.111625 ], [ -74.899193, 40.111571 ], [ -74.899183, 40.1115 ], [ -74.899183, 40.111428 ], [ -74.899189, 40.111362 ], [ -74.899202, 40.111295 ], [ -74.899221, 40.111238 ], [ -74.899242, 40.111188 ], [ -74.899283, 40.111112 ], [ -74.899335, 40.111039 ], [ -74.899391, 40.110979 ], [ -74.899455, 40.110924 ], [ -74.899523, 40.110872 ], [ -74.899591, 40.11083 ], [ -74.899729, 40.110768 ], [ -74.899957, 40.11069 ], [ -74.900136, 40.110638 ], [ -74.900346, 40.110575 ], [ -74.900519, 40.110533 ], [ -74.900678, 40.110496 ], [ -74.900866, 40.110459 ], [ -74.902362, 40.110206 ], [ -74.902431, 40.110524 ], [ -74.902466, 40.110697 ], [ -74.902504, 40.110895 ], [ -74.902527, 40.111079 ], [ -74.902549, 40.111287 ], [ -74.90256, 40.11149 ], [ -74.90256, 40.11164 ], [ -74.902548, 40.111801 ], [ -74.902534, 40.111934 ], [ -74.902519, 40.112043 ], [ -74.902497, 40.112172 ], [ -74.902465, 40.11232 ], [ -74.902436, 40.112428 ], [ -74.902249, 40.113355 ], [ -74.902217, 40.11355 ], [ -74.902183, 40.113797 ], [ -74.902153, 40.114139 ], [ -74.902144, 40.114296 ], [ -74.902144, 40.114312 ], [ -74.902144, 40.114466 ], [ -74.902151, 40.114598 ], [ -74.902157, 40.114683 ], [ -74.902196, 40.114805 ], [ -74.90225, 40.114979 ], [ -74.902279, 40.115077 ], [ -74.902335, 40.115249 ], [ -74.902386, 40.115396 ], [ -74.9026, 40.116057 ], [ -74.902628, 40.11616 ], [ -74.90265, 40.116257 ], [ -74.902676, 40.116351 ], [ -74.902701, 40.116524 ], [ -74.902712, 40.116625 ], [ -74.902723, 40.116758 ], [ -74.902733, 40.116907 ], [ -74.902728, 40.117017 ], [ -74.902721, 40.117114 ], [ -74.902706, 40.117201 ], [ -74.90269, 40.117272 ], [ -74.902672, 40.117339 ], [ -74.90265, 40.117424 ], [ -74.90262, 40.117508 ], [ -74.902504, 40.117767 ], [ -74.902307, 40.118229 ], [ -74.902133, 40.118655 ], [ -74.90208, 40.11877 ], [ -74.902048, 40.118834 ], [ -74.902003, 40.11891 ], [ -74.901878, 40.11911 ], [ -74.901744, 40.119324 ], [ -74.901685, 40.119436 ], [ -74.901642, 40.119518 ], [ -74.901566, 40.11969 ], [ -74.901485, 40.119896 ], [ -74.900818, 40.121625 ], [ -74.900759, 40.12177 ], [ -74.900562, 40.122324 ], [ -74.900364, 40.122845 ], [ -74.900171, 40.123325 ], [ -74.900127, 40.123443 ], [ -74.900064, 40.12365 ], [ -74.900016, 40.123771 ], [ -74.899991, 40.123869 ], [ -74.899977, 40.123925 ], [ -74.90005, 40.123902 ], [ -74.900121, 40.123884 ], [ -74.900212, 40.123897 ], [ -74.900538, 40.123836 ], [ -74.900635, 40.123821 ], [ -74.900747, 40.123805 ], [ -74.900956, 40.123777 ], [ -74.900972, 40.123774 ], [ -74.901282, 40.123733 ], [ -74.901895, 40.123661 ], [ -74.90221, 40.123628 ], [ -74.902417, 40.123605 ], [ -74.902543, 40.123591 ], [ -74.902735, 40.123574 ], [ -74.902839, 40.123571 ], [ -74.902984, 40.123568 ], [ -74.903132, 40.123576 ], [ -74.90328, 40.123587 ], [ -74.903381, 40.123599 ], [ -74.903622, 40.123624 ], [ -74.904057, 40.123669 ], [ -74.90414, 40.12365 ], [ -74.904355, 40.123677 ], [ -74.904549, 40.123269 ], [ -74.904623, 40.123115 ], [ -74.904662, 40.123041 ], [ -74.904969, 40.122394 ], [ -74.905296, 40.121742 ], [ -74.905386, 40.121555 ], [ -74.905565, 40.121192 ], [ -74.90563, 40.121158 ], [ -74.905654, 40.121124 ], [ -74.90584, 40.120734 ], [ -74.905855, 40.120692 ], [ -74.90585, 40.120625 ], [ -74.90603, 40.120259 ], [ -74.906241, 40.119834 ], [ -74.906427, 40.119458 ], [ -74.906643, 40.119015 ], [ -74.906889, 40.118514 ], [ -74.90696, 40.118383 ], [ -74.907135, 40.118022 ], [ -74.907353, 40.117588 ], [ -74.907496, 40.117289 ], [ -74.907652, 40.116979 ], [ -74.907851, 40.116608 ], [ -74.907972, 40.116386 ], [ -74.908247, 40.115932 ], [ -74.908683, 40.115261 ], [ -74.908985, 40.114815 ], [ -74.909398, 40.114194 ], [ -74.909695, 40.113748 ], [ -74.909699, 40.11374 ], [ -74.909967, 40.113337 ], [ -74.910253, 40.112903 ], [ -74.910395, 40.112686 ], [ -74.91041, 40.112665 ], [ -74.910693, 40.112237 ], [ -74.910845, 40.112009 ], [ -74.911049, 40.111707 ], [ -74.91112, 40.111607 ], [ -74.911172, 40.111581 ], [ -74.911221, 40.111506 ], [ -74.911701, 40.110728 ], [ -74.911825, 40.110538 ], [ -74.911897, 40.110414 ], [ -74.911897, 40.110369 ], [ -74.912026, 40.110194 ], [ -74.912099, 40.110108 ], [ -74.912227, 40.109905 ], [ -74.912426, 40.109583 ], [ -74.91275, 40.109078 ], [ -74.913203, 40.108382 ], [ -74.913477, 40.107972 ], [ -74.914125, 40.106981 ], [ -74.914226, 40.106828 ], [ -74.914453, 40.10648 ], [ -74.914892, 40.105823 ], [ -74.91515, 40.105439 ], [ -74.915413, 40.10503 ], [ -74.916061, 40.104059 ], [ -74.916373, 40.103589 ], [ -74.91687, 40.102852 ], [ -74.917159, 40.102418 ], [ -74.917581, 40.101772 ], [ -74.918093, 40.100986 ], [ -74.918709, 40.10008 ], [ -74.918985, 40.099669 ], [ -74.919089, 40.099515 ], [ -74.919142, 40.099436 ], [ -74.919224, 40.099316 ], [ -74.919322, 40.099174 ], [ -74.919431, 40.099028 ], [ -74.919493, 40.099 ], [ -74.919595, 40.09886 ], [ -74.919836, 40.098493 ], [ -74.919997, 40.098255 ], [ -74.92006, 40.098163 ], [ -74.920395, 40.097662 ], [ -74.921934, 40.09823 ], [ -74.922446, 40.09842 ], [ -74.922609, 40.098482 ], [ -74.92275, 40.098535 ], [ -74.922863, 40.098589 ], [ -74.922934, 40.098633 ], [ -74.922992, 40.098686 ], [ -74.92309, 40.0988 ], [ -74.923565, 40.099381 ], [ -74.924156, 40.100111 ], [ -74.924455, 40.100485 ], [ -74.924641, 40.100722 ], [ -74.924915, 40.101071 ], [ -74.925013, 40.101203 ], [ -74.925159, 40.101403 ], [ -74.925474, 40.101873 ], [ -74.925733, 40.102275 ], [ -74.925915, 40.102581 ], [ -74.926799, 40.10407 ], [ -74.927542, 40.105292 ], [ -74.927861, 40.105823 ], [ -74.92851, 40.106866 ], [ -74.928862, 40.107396 ], [ -74.928974, 40.107574 ], [ -74.928911, 40.107605 ], [ -74.92888, 40.107614 ], [ -74.928846, 40.10762 ], [ -74.92881, 40.107624 ], [ -74.928778, 40.107623 ], [ -74.928739, 40.107616 ], [ -74.927718, 40.107378 ], [ -74.926019, 40.106973 ], [ -74.925998, 40.106967 ], [ -74.925786, 40.106924 ], [ -74.925501, 40.106871 ], [ -74.924953, 40.106778 ], [ -74.924585, 40.106716 ], [ -74.924241, 40.106666 ], [ -74.923983, 40.106634 ], [ -74.922963, 40.106505 ], [ -74.921782, 40.106347 ], [ -74.920835, 40.106212 ], [ -74.92043, 40.107751 ], [ -74.920412, 40.10783 ], [ -74.920403, 40.107903 ], [ -74.920412, 40.107962 ], [ -74.920425, 40.108008 ], [ -74.920445, 40.108049 ], [ -74.92047, 40.108087 ], [ -74.920493, 40.108126 ], [ -74.920538, 40.108177 ], [ -74.920593, 40.108221 ], [ -74.920649, 40.108259 ], [ -74.920705, 40.10829 ], [ -74.920771, 40.108317 ], [ -74.920865, 40.108346 ], [ -74.920966, 40.108367 ], [ -74.923099, 40.108681 ], [ -74.92362, 40.108758 ], [ -74.924036, 40.108824 ], [ -74.924313, 40.108875 ], [ -74.924957, 40.109006 ], [ -74.925445, 40.109107 ], [ -74.925825, 40.109201 ], [ -74.925906, 40.109227 ], [ -74.925977, 40.109252 ], [ -74.926031, 40.109276 ], [ -74.926097, 40.109311 ], [ -74.926143, 40.109341 ], [ -74.926191, 40.109378 ], [ -74.926238, 40.109427 ], [ -74.926292, 40.10949 ], [ -74.926808, 40.110144 ], [ -74.927393, 40.10987 ], [ -74.928611, 40.109307 ], [ -74.928713, 40.109304 ], [ -74.929216, 40.109065 ], [ -74.929786, 40.108782 ], [ -74.931861, 40.107836 ], [ -74.931913, 40.107769 ], [ -74.932346, 40.107585 ], [ -74.932407, 40.107566 ], [ -74.93248, 40.107546 ], [ -74.932553, 40.107537 ], [ -74.932614, 40.10754 ], [ -74.932748, 40.107566 ], [ -74.932859, 40.107589 ], [ -74.933004, 40.10762 ], [ -74.933211, 40.10767 ], [ -74.933475, 40.10773 ], [ -74.93413, 40.107898 ], [ -74.9347, 40.108046 ], [ -74.934767, 40.108106 ], [ -74.934958, 40.108158 ], [ -74.935329, 40.108259 ], [ -74.93554, 40.108317 ], [ -74.935645, 40.108303 ], [ -74.936096, 40.108425 ], [ -74.936797, 40.108621 ], [ -74.937508, 40.10881 ], [ -74.938098, 40.108961 ], [ -74.941296, 40.109846 ], [ -74.941676, 40.10995 ], [ -74.94174, 40.110008 ], [ -74.942824, 40.110327 ], [ -74.943784, 40.110612 ], [ -74.943896, 40.11064 ], [ -74.943975, 40.110635 ], [ -74.944655, 40.110842 ], [ -74.94487, 40.110924 ], [ -74.94494, 40.110951 ], [ -74.945024, 40.110994 ], [ -74.945227, 40.110603 ], [ -74.945421, 40.110244 ], [ -74.945558, 40.110007 ], [ -74.945619, 40.109902 ], [ -74.94562, 40.10985 ], [ -74.945737, 40.109695 ], [ -74.94575, 40.109679 ], [ -74.945769, 40.109658 ], [ -74.946492, 40.108945 ], [ -74.947246, 40.108229 ], [ -74.948117, 40.107417 ], [ -74.948793, 40.106753 ], [ -74.949307, 40.106266 ], [ -74.949354, 40.106224 ], [ -74.949412, 40.10621 ], [ -74.94944, 40.106187 ], [ -74.949683, 40.105955 ], [ -74.949703, 40.105932 ], [ -74.949716, 40.105877 ], [ -74.949857, 40.105744 ], [ -74.950043, 40.105556 ], [ -74.950171, 40.105427 ], [ -74.950415, 40.10518 ], [ -74.950549, 40.10505 ], [ -74.950694, 40.10491 ], [ -74.950799, 40.1048 ], [ -74.950857, 40.104745 ], [ -74.950977, 40.104636 ], [ -74.951295, 40.10431 ], [ -74.951369, 40.10424 ], [ -74.951484, 40.104197 ], [ -74.951588, 40.104082 ], [ -74.952322, 40.103294 ], [ -74.95264, 40.102953 ], [ -74.953279, 40.102315 ], [ -74.953898, 40.101745 ], [ -74.954229, 40.101454 ], [ -74.954441, 40.101268 ], [ -74.954574, 40.101149 ], [ -74.955169, 40.100626 ], [ -74.955467, 40.100362 ], [ -74.955591, 40.100252 ], [ -74.955618, 40.100138 ], [ -74.956074, 40.099754 ], [ -74.956437, 40.099428 ], [ -74.956485, 40.099385 ], [ -74.956754, 40.099148 ], [ -74.956923, 40.098999 ], [ -74.956971, 40.098954 ], [ -74.957311, 40.09864 ], [ -74.957432, 40.098613 ], [ -74.957455, 40.098595 ], [ -74.957506, 40.098551 ], [ -74.95791, 40.098122 ], [ -74.958097, 40.097884 ], [ -74.958151, 40.09782 ], [ -74.958267, 40.097667 ], [ -74.958356, 40.097541 ], [ -74.958565, 40.097212 ], [ -74.958761, 40.096911 ], [ -74.958984, 40.096566 ], [ -74.959372, 40.095971 ], [ -74.959447, 40.095867 ], [ -74.959498, 40.095795 ], [ -74.959561, 40.095723 ], [ -74.959616, 40.095656 ], [ -74.959656, 40.095611 ], [ -74.959744, 40.095513 ], [ -74.959833, 40.09543 ], [ -74.960302, 40.094999 ], [ -74.96125, 40.094135 ], [ -74.96148, 40.093938 ], [ -74.961562, 40.093864 ], [ -74.961639, 40.093801 ], [ -74.961649, 40.093793 ], [ -74.961838, 40.093658 ], [ -74.962169, 40.093424 ], [ -74.962519, 40.093219 ], [ -74.96282, 40.093064 ], [ -74.963244, 40.092856 ], [ -74.963675, 40.092659 ], [ -74.964212, 40.092411 ], [ -74.964401, 40.09232 ], [ -74.964608, 40.092227 ], [ -74.964777, 40.092146 ], [ -74.964824, 40.092124 ], [ -74.965176, 40.091947 ], [ -74.965518, 40.091758 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965708, 40.091577 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965445, 40.084756 ], [ -74.965477, 40.084664 ], [ -74.96551, 40.084558 ], [ -74.965566, 40.084404 ], [ -74.965621, 40.084272 ], [ -74.965657, 40.084187 ], [ -74.965684, 40.084114 ], [ -74.965771, 40.083861 ], [ -74.96585, 40.083638 ], [ -74.965887, 40.083523 ], [ -74.965954, 40.08327 ], [ -74.965997, 40.083081 ], [ -74.966022, 40.082982 ], [ -74.966042, 40.08291 ], [ -74.966067, 40.082756 ], [ -74.96603, 40.082674 ], [ -74.966056, 40.082563 ], [ -74.966146, 40.082538 ], [ -74.96622, 40.082505 ], [ -74.966308, 40.08246 ], [ -74.966622, 40.082299 ], [ -74.966805, 40.082204 ], [ -74.966932, 40.082144 ], [ -74.967036, 40.082096 ], [ -74.966923, 40.081965 ], [ -74.966845, 40.081858 ], [ -74.966751, 40.081705 ], [ -74.966668, 40.08157 ], [ -74.966579, 40.081427 ], [ -74.966514, 40.081314 ], [ -74.966444, 40.081182 ], [ -74.966382, 40.081056 ], [ -74.966312, 40.080908 ], [ -74.966214, 40.080664 ], [ -74.966099, 40.080374 ], [ -74.965797, 40.079558 ], [ -74.965628, 40.079122 ], [ -74.965457, 40.078675 ], [ -74.96513, 40.077785 ], [ -74.965015, 40.077466 ], [ -74.964957, 40.077284 ], [ -74.964906, 40.077131 ], [ -74.964894, 40.077093 ], [ -74.964872, 40.077024 ], [ -74.964835, 40.07691 ], [ -74.964688, 40.076454 ], [ -74.964623, 40.07626 ], [ -74.964554, 40.076057 ], [ -74.964519, 40.075936 ], [ -74.964508, 40.0759 ], [ -74.964499, 40.075856 ], [ -74.964486, 40.075782 ], [ -74.96448, 40.075737 ], [ -74.964475, 40.075672 ], [ -74.964471, 40.075606 ], [ -74.964469, 40.075548 ], [ -74.964472, 40.075483 ], [ -74.964477, 40.07543 ], [ -74.96448, 40.075379 ], [ -74.964492, 40.075314 ], [ -74.964503, 40.075255 ], [ -74.964516, 40.075193 ], [ -74.964534, 40.075133 ], [ -74.964554, 40.075064 ], [ -74.964576, 40.075005 ], [ -74.964599, 40.074942 ], [ -74.964624, 40.07488 ], [ -74.964662, 40.074771 ], [ -74.964693, 40.074718 ], [ -74.964856, 40.074421 ], [ -74.964959, 40.074214 ], [ -74.964998, 40.074115 ], [ -74.965015, 40.074016 ], [ -74.965019, 40.073915 ], [ -74.965013, 40.073814 ], [ -74.964993, 40.073715 ], [ -74.964957, 40.073619 ], [ -74.964902, 40.073519 ], [ -74.964817, 40.073405 ], [ -74.96473, 40.073305 ], [ -74.964163, 40.07268 ], [ -74.964148, 40.072649 ], [ -74.964139, 40.072626 ], [ -74.964124, 40.072564 ], [ -74.964124, 40.072497 ], [ -74.964139, 40.072433 ], [ -74.964169, 40.072368 ], [ -74.964205, 40.07232 ], [ -74.964274, 40.072283 ], [ -74.964351, 40.072238 ], [ -74.964526, 40.072134 ], [ -74.964697, 40.072044 ], [ -74.964908, 40.071939 ], [ -74.965201, 40.071791 ], [ -74.965279, 40.071751 ], [ -74.965706, 40.07151 ], [ -74.965773, 40.071472 ], [ -74.965887, 40.071397 ], [ -74.965929, 40.071339 ], [ -74.966017, 40.071297 ], [ -74.966166, 40.071214 ], [ -74.966321, 40.071118 ], [ -74.966414, 40.071056 ], [ -74.966528, 40.070978 ], [ -74.966731, 40.070823 ], [ -74.967047, 40.070569 ], [ -74.96748, 40.070219 ], [ -74.967833, 40.069936 ], [ -74.968226, 40.069623 ], [ -74.968823, 40.069144 ], [ -74.969026, 40.068982 ], [ -74.969286, 40.068777 ], [ -74.969484, 40.068619 ], [ -74.96969, 40.068456 ], [ -74.970073, 40.068152 ], [ -74.970957, 40.067546 ], [ -74.97161, 40.067108 ], [ -74.97175, 40.06702 ], [ -74.971794, 40.066994 ], [ -74.971817, 40.06698 ], [ -74.971938, 40.066905 ], [ -74.972044, 40.066849 ], [ -74.972139, 40.066803 ], [ -74.972455, 40.066663 ], [ -74.972599, 40.066607 ], [ -74.972696, 40.066569 ], [ -74.972794, 40.066534 ], [ -74.973265, 40.066389 ], [ -74.973471, 40.066325 ], [ -74.973619, 40.06628 ], [ -74.974306, 40.066068 ], [ -74.974463, 40.066018 ], [ -74.975315, 40.065767 ], [ -74.975613, 40.065677 ], [ -74.976142, 40.065522 ], [ -74.976376, 40.065453 ], [ -74.976671, 40.065369 ], [ -74.976948, 40.065284 ], [ -74.977277, 40.06518 ], [ -74.977397, 40.065146 ], [ -74.977617, 40.065089 ], [ -74.977815, 40.065048 ], [ -74.978, 40.065023 ], [ -74.978175, 40.06501 ], [ -74.978349, 40.065008 ], [ -74.978522, 40.065017 ], [ -74.978721, 40.065045 ], [ -74.978845, 40.065069 ], [ -74.979027, 40.065107 ], [ -74.979297, 40.065154 ], [ -74.979491, 40.065175 ], [ -74.979604, 40.06518 ], [ -74.979719, 40.065179 ], [ -74.979895, 40.065166 ], [ -74.979981, 40.065155 ], [ -74.980048, 40.065146 ], [ -74.980274, 40.065106 ], [ -74.980547, 40.065053 ], [ -74.980694, 40.065022 ], [ -74.980959, 40.064967 ], [ -74.981006, 40.064957 ], [ -74.981054, 40.064946 ], [ -74.981162, 40.064926 ], [ -74.981402, 40.064879 ], [ -74.981676, 40.064825 ], [ -74.981533, 40.064504 ], [ -74.981576, 40.064328 ], [ -74.981714, 40.064233 ], [ -74.981747, 40.064138 ], [ -74.98168, 40.064052 ], [ -74.98159, 40.064062 ], [ -74.981504, 40.064112 ], [ -74.981471, 40.064185 ], [ -74.981428, 40.064283 ], [ -74.981433, 40.064395 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307163", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87889, 40.18067 ], [ -74.87875, 40.18055 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87772, 40.179779 ], [ -74.87771, 40.179619 ], [ -74.87777, 40.17951 ], [ -74.877819, 40.179429 ], [ -74.87794, 40.179359 ], [ -74.878269, 40.17931 ], [ -74.8784, 40.17929 ], [ -74.87848, 40.179279 ], [ -74.878809, 40.17923 ], [ -74.87906, 40.179189 ], [ -74.879439, 40.17913 ], [ -74.879949, 40.17904 ], [ -74.88019, 40.17902 ], [ -74.88032, 40.178979 ], [ -74.88064, 40.178889 ], [ -74.880849, 40.178819 ], [ -74.880929, 40.17879 ], [ -74.881019, 40.17875 ], [ -74.881159, 40.17868 ], [ -74.88135, 40.178559 ], [ -74.88154, 40.17843 ], [ -74.88182, 40.17822 ], [ -74.88203, 40.17807 ], [ -74.88222, 40.17794 ], [ -74.88235, 40.17786 ], [ -74.882459, 40.17779 ], [ -74.88252, 40.177749 ], [ -74.88267, 40.177649 ], [ -74.882829, 40.17758 ], [ -74.88329, 40.177379 ], [ -74.883449, 40.17731 ], [ -74.88384, 40.17713 ], [ -74.884039, 40.17704 ], [ -74.884259, 40.176939 ], [ -74.88479, 40.176729 ], [ -74.88519, 40.176539 ], [ -74.88533, 40.176469 ], [ -74.885429, 40.17641 ], [ -74.885529, 40.17635 ], [ -74.885619, 40.176289 ], [ -74.88595, 40.176039 ], [ -74.88608, 40.175939 ], [ -74.88653, 40.1756 ], [ -74.886649, 40.17551 ], [ -74.886729, 40.17545 ], [ -74.887099, 40.17516 ], [ -74.88739, 40.174929 ], [ -74.88757, 40.17479 ], [ -74.88797, 40.17446 ], [ -74.88834, 40.17418 ], [ -74.88873, 40.173869 ], [ -74.88892, 40.17372 ], [ -74.889619, 40.17317 ], [ -74.89018, 40.17273 ], [ -74.890479, 40.172499 ], [ -74.89067, 40.172339 ], [ -74.89091, 40.172149 ], [ -74.891409, 40.17176 ], [ -74.891769, 40.17148 ], [ -74.89194, 40.171339 ], [ -74.89243, 40.17095 ], [ -74.892819, 40.170639 ], [ -74.89333, 40.17023 ], [ -74.893569, 40.17003 ], [ -74.893989, 40.169709 ], [ -74.894339, 40.16943 ], [ -74.894669, 40.169169 ], [ -74.89508, 40.16885 ], [ -74.8955, 40.16852 ], [ -74.8958, 40.168289 ], [ -74.8963, 40.167899 ], [ -74.89635, 40.16786 ], [ -74.896449, 40.16777 ], [ -74.896499, 40.167729 ], [ -74.896599, 40.167659 ], [ -74.896689, 40.1676 ], [ -74.89676, 40.167549 ], [ -74.896869, 40.167479 ], [ -74.896949, 40.16743 ], [ -74.89737, 40.167209 ], [ -74.897759, 40.167019 ], [ -74.89815, 40.166819 ], [ -74.89829, 40.166749 ], [ -74.898669, 40.166559 ], [ -74.8989, 40.16644 ], [ -74.899, 40.166389 ], [ -74.89908, 40.16635 ], [ -74.899869, 40.16597 ], [ -74.89991, 40.165949 ], [ -74.900139, 40.16582 ], [ -74.900229, 40.165769 ], [ -74.900549, 40.16561 ], [ -74.90116, 40.165309 ], [ -74.90193, 40.164949 ], [ -74.90215, 40.16484 ], [ -74.902359, 40.16474 ], [ -74.902439, 40.164699 ], [ -74.902479, 40.164679 ], [ -74.90278, 40.16454 ], [ -74.902939, 40.16446 ], [ -74.903129, 40.16437 ], [ -74.90336, 40.16426 ], [ -74.903399, 40.164239 ], [ -74.903559, 40.164159 ], [ -74.90364, 40.16412 ], [ -74.90372, 40.16408 ], [ -74.903879, 40.16401 ], [ -74.904019, 40.16394 ], [ -74.90418, 40.163869 ], [ -74.904609, 40.16366 ], [ -74.90468, 40.16363 ], [ -74.904919, 40.163499 ], [ -74.905009, 40.16346 ], [ -74.905139, 40.16339 ], [ -74.905229, 40.163349 ], [ -74.905419, 40.163249 ], [ -74.905639, 40.163139 ], [ -74.90584, 40.163039 ], [ -74.90601, 40.162959 ], [ -74.90619, 40.162869 ], [ -74.906269, 40.16283 ], [ -74.90639, 40.162779 ], [ -74.906589, 40.162679 ], [ -74.906979, 40.16248 ], [ -74.90705, 40.162449 ], [ -74.907249, 40.162359 ], [ -74.907349, 40.16231 ], [ -74.907429, 40.162269 ], [ -74.907519, 40.162229 ], [ -74.90772, 40.16213 ], [ -74.907849, 40.162059 ], [ -74.908069, 40.16195 ], [ -74.908299, 40.16183 ], [ -74.908509, 40.161729 ], [ -74.9088, 40.16159 ], [ -74.9089, 40.161539 ], [ -74.909289, 40.161339 ], [ -74.90953, 40.161179 ], [ -74.909679, 40.16103 ], [ -74.909919, 40.160739 ], [ -74.91003, 40.16057 ], [ -74.910089, 40.16048 ], [ -74.91016, 40.160369 ], [ -74.910319, 40.16012 ], [ -74.910369, 40.16003 ], [ -74.910399, 40.159989 ], [ -74.910449, 40.159909 ], [ -74.910509, 40.159809 ], [ -74.91056, 40.159749 ], [ -74.91066, 40.159629 ], [ -74.9107, 40.15959 ], [ -74.91075, 40.15952 ], [ -74.910849, 40.15944 ], [ -74.91111, 40.15925 ], [ -74.910939, 40.159119 ], [ -74.91079, 40.158999 ], [ -74.910729, 40.15895 ], [ -74.910309, 40.15861 ], [ -74.91012, 40.1585 ], [ -74.909909, 40.15843 ], [ -74.90958, 40.158379 ], [ -74.90853, 40.15841 ], [ -74.90827, 40.15842 ], [ -74.90765, 40.15843 ], [ -74.90747, 40.15844 ], [ -74.90701, 40.158449 ], [ -74.9066, 40.15843 ], [ -74.9058, 40.158379 ], [ -74.905319, 40.15833 ], [ -74.90475, 40.158279 ], [ -74.904239, 40.15823 ], [ -74.903699, 40.158179 ], [ -74.903169, 40.158129 ], [ -74.90269, 40.15806 ], [ -74.90206, 40.15796 ], [ -74.901629, 40.15788 ], [ -74.90106, 40.157749 ], [ -74.900369, 40.15761 ], [ -74.900049, 40.15754 ], [ -74.89981, 40.157489 ], [ -74.8995, 40.157379 ], [ -74.899209, 40.157209 ], [ -74.898879, 40.156869 ], [ -74.898519, 40.15638 ], [ -74.89823, 40.15598 ], [ -74.898069, 40.155759 ], [ -74.897899, 40.15553 ], [ -74.897669, 40.155219 ], [ -74.89743, 40.154889 ], [ -74.897309, 40.15473 ], [ -74.89701, 40.154319 ], [ -74.89679, 40.15402 ], [ -74.89584, 40.15232 ], [ -74.895559, 40.15185 ], [ -74.89523, 40.151259 ], [ -74.895099, 40.151019 ], [ -74.8946, 40.15013 ], [ -74.89454, 40.150019 ], [ -74.894069, 40.14906 ], [ -74.89383, 40.14837 ], [ -74.893489, 40.147399 ], [ -74.89333, 40.14693 ], [ -74.892759, 40.14546 ], [ -74.892579, 40.145039 ], [ -74.8919, 40.143619 ], [ -74.891689, 40.14311 ], [ -74.89157, 40.14275 ], [ -74.891319, 40.14196 ], [ -74.89117, 40.14149 ], [ -74.89095, 40.140849 ], [ -74.89063, 40.139759 ], [ -74.890379, 40.13906 ], [ -74.89022, 40.138589 ], [ -74.89014, 40.13828 ], [ -74.89013, 40.138209 ], [ -74.890019, 40.137579 ], [ -74.889969, 40.137119 ], [ -74.889929, 40.136429 ], [ -74.889849, 40.13475 ], [ -74.88982, 40.134529 ], [ -74.889749, 40.13432 ], [ -74.889659, 40.13412 ], [ -74.88941, 40.133739 ], [ -74.889159, 40.133369 ], [ -74.88901, 40.13313 ], [ -74.888889, 40.13298 ], [ -74.88852, 40.132529 ], [ -74.88843, 40.13243 ], [ -74.8883, 40.132279 ], [ -74.888049, 40.131989 ], [ -74.887629, 40.132269 ], [ -74.88752, 40.132349 ], [ -74.887419, 40.13241 ], [ -74.887179, 40.132569 ], [ -74.88704, 40.13267 ], [ -74.88668, 40.132909 ], [ -74.88614, 40.133269 ], [ -74.88599, 40.133379 ], [ -74.88559, 40.133649 ], [ -74.8855, 40.133709 ], [ -74.885389, 40.13379 ], [ -74.884989, 40.134069 ], [ -74.884679, 40.134269 ], [ -74.884169, 40.134619 ], [ -74.883989, 40.13474 ], [ -74.883909, 40.134789 ], [ -74.883809, 40.13485 ], [ -74.883669, 40.13495 ], [ -74.883579, 40.13502 ], [ -74.883309, 40.1352 ], [ -74.88312, 40.135329 ], [ -74.882859, 40.135509 ], [ -74.88243, 40.135799 ], [ -74.88225, 40.13592 ], [ -74.88182, 40.136219 ], [ -74.88176, 40.136259 ], [ -74.881699, 40.1363 ], [ -74.8815, 40.136439 ], [ -74.88141, 40.136509 ], [ -74.881249, 40.136619 ], [ -74.880839, 40.1369 ], [ -74.880749, 40.136959 ], [ -74.88063, 40.137039 ], [ -74.880429, 40.13718 ], [ -74.880299, 40.13727 ], [ -74.88028, 40.13729 ], [ -74.880119, 40.137399 ], [ -74.87951, 40.13782 ], [ -74.87934, 40.137939 ], [ -74.8791, 40.13811 ], [ -74.87852, 40.138509 ], [ -74.87821, 40.13872 ], [ -74.876939, 40.139579 ], [ -74.8766, 40.139829 ], [ -74.875979, 40.14025 ], [ -74.875529, 40.140559 ], [ -74.875439, 40.14062 ], [ -74.87534, 40.14069 ], [ -74.875139, 40.140819 ], [ -74.874999, 40.140809 ], [ -74.874939, 40.1408 ], [ -74.874899, 40.14079 ], [ -74.874849, 40.14077 ], [ -74.8748, 40.140739 ], [ -74.874759, 40.14071 ], [ -74.874759, 40.140639 ], [ -74.874759, 40.140559 ], [ -74.874769, 40.140399 ], [ -74.874769, 40.14035 ], [ -74.87478, 40.14026 ], [ -74.8748, 40.13989 ], [ -74.8748, 40.139749 ], [ -74.87478, 40.139389 ], [ -74.874729, 40.13901 ], [ -74.874719, 40.138959 ], [ -74.87465, 40.138599 ], [ -74.874539, 40.13818 ], [ -74.87447, 40.137939 ], [ -74.874359, 40.13764 ], [ -74.874229, 40.137319 ], [ -74.874049, 40.1369 ], [ -74.87393, 40.136689 ], [ -74.873859, 40.13655 ], [ -74.87379, 40.136409 ], [ -74.87367, 40.136139 ], [ -74.87361, 40.13601 ], [ -74.87353, 40.13585 ], [ -74.87349, 40.135769 ], [ -74.87344, 40.135679 ], [ -74.873369, 40.13557 ], [ -74.8733, 40.13547 ], [ -74.873189, 40.135329 ], [ -74.873009, 40.13513 ], [ -74.872869, 40.134979 ], [ -74.872659, 40.13468 ], [ -74.872469, 40.134459 ], [ -74.872239, 40.134169 ], [ -74.87204, 40.133889 ], [ -74.871979, 40.133809 ], [ -74.871889, 40.13369 ], [ -74.871709, 40.13341 ], [ -74.87168, 40.133359 ], [ -74.8716, 40.13325 ], [ -74.87124, 40.132739 ], [ -74.87102, 40.132449 ], [ -74.870949, 40.132369 ], [ -74.870629, 40.131999 ], [ -74.87015, 40.131449 ], [ -74.87007, 40.131359 ], [ -74.86926, 40.13044 ], [ -74.869199, 40.13037 ], [ -74.86872, 40.12982 ], [ -74.867439, 40.128389 ], [ -74.86718, 40.12808 ], [ -74.86688, 40.12774 ], [ -74.866749, 40.127619 ], [ -74.86652, 40.127769 ], [ -74.866119, 40.128029 ], [ -74.86534, 40.12857 ], [ -74.86512, 40.12872 ], [ -74.86489, 40.128879 ], [ -74.86453, 40.129139 ], [ -74.863199, 40.130029 ], [ -74.862889, 40.13025 ], [ -74.861529, 40.13117 ], [ -74.861219, 40.131379 ], [ -74.858479, 40.13324 ], [ -74.858109, 40.132819 ], [ -74.856999, 40.131479 ], [ -74.85611, 40.130399 ], [ -74.85553, 40.12971 ], [ -74.85468, 40.12864 ], [ -74.854109, 40.127889 ], [ -74.85386, 40.127529 ], [ -74.853749, 40.12739 ], [ -74.853659, 40.12727 ], [ -74.85309, 40.126529 ], [ -74.85293, 40.12632 ], [ -74.852709, 40.12602 ], [ -74.852449, 40.12568 ], [ -74.852269, 40.125449 ], [ -74.85221, 40.125369 ], [ -74.85212, 40.125249 ], [ -74.85176, 40.12478 ], [ -74.851459, 40.124379 ], [ -74.85125, 40.124099 ], [ -74.850729, 40.12342 ], [ -74.850519, 40.12316 ], [ -74.850339, 40.122929 ], [ -74.850099, 40.122639 ], [ -74.85, 40.122479 ], [ -74.84987, 40.122299 ], [ -74.84955, 40.121929 ], [ -74.849439, 40.12179 ], [ -74.84933, 40.121649 ], [ -74.849169, 40.12145 ], [ -74.849, 40.121229 ], [ -74.848769, 40.120929 ], [ -74.848439, 40.12052 ], [ -74.848399, 40.12047 ], [ -74.84816, 40.12025 ], [ -74.847949, 40.12009 ], [ -74.8477, 40.11992 ], [ -74.84742, 40.119769 ], [ -74.84721, 40.119689 ], [ -74.846909, 40.119569 ], [ -74.846559, 40.11947 ], [ -74.846379, 40.119419 ], [ -74.846059, 40.119339 ], [ -74.84609, 40.119149 ], [ -74.84617, 40.118979 ], [ -74.8463, 40.118849 ], [ -74.846379, 40.118789 ], [ -74.84663, 40.11866 ], [ -74.846769, 40.118599 ], [ -74.84693, 40.118529 ], [ -74.84756, 40.118239 ], [ -74.847849, 40.11812 ], [ -74.84825, 40.11795 ], [ -74.84841, 40.118129 ], [ -74.84878, 40.11856 ], [ -74.84927, 40.119119 ], [ -74.849309, 40.119159 ], [ -74.849849, 40.119759 ], [ -74.850419, 40.119509 ], [ -74.851099, 40.119149 ], [ -74.85216, 40.118619 ], [ -74.85247, 40.11847 ], [ -74.85306, 40.118159 ], [ -74.85315, 40.11812 ], [ -74.853249, 40.11801 ], [ -74.85342, 40.117609 ], [ -74.853489, 40.11747 ], [ -74.85372, 40.11692 ], [ -74.853849, 40.116619 ], [ -74.853929, 40.11638 ], [ -74.853979, 40.116169 ], [ -74.853979, 40.116079 ], [ -74.85401, 40.11594 ], [ -74.85404, 40.115729 ], [ -74.854149, 40.11496 ], [ -74.85428, 40.11405 ], [ -74.854329, 40.1137 ], [ -74.854379, 40.113299 ], [ -74.85441, 40.11306 ], [ -74.85444, 40.11289 ], [ -74.854479, 40.112669 ], [ -74.8545, 40.112489 ], [ -74.854559, 40.111959 ], [ -74.854599, 40.111689 ], [ -74.85463, 40.111479 ], [ -74.854659, 40.11126 ], [ -74.85476, 40.110699 ], [ -74.854839, 40.11017 ], [ -74.854869, 40.10992 ], [ -74.85494, 40.10938 ], [ -74.855009, 40.108869 ], [ -74.85504, 40.108689 ], [ -74.855059, 40.10858 ], [ -74.855109, 40.10828 ], [ -74.855139, 40.1081 ], [ -74.85516, 40.107969 ], [ -74.85521, 40.1076 ], [ -74.85527, 40.10721 ], [ -74.855289, 40.107079 ], [ -74.85536, 40.106519 ], [ -74.85544, 40.105909 ], [ -74.855509, 40.105369 ], [ -74.85557, 40.104829 ], [ -74.85557, 40.1047 ], [ -74.85558, 40.10461 ], [ -74.855589, 40.1045 ], [ -74.855599, 40.10441 ], [ -74.85563, 40.10417 ], [ -74.85563, 40.104129 ], [ -74.855679, 40.103759 ], [ -74.855729, 40.10324 ], [ -74.85584, 40.102119 ], [ -74.85584, 40.102059 ], [ -74.85585, 40.101969 ], [ -74.8559, 40.10135 ], [ -74.85594, 40.100759 ], [ -74.855999, 40.100149 ], [ -74.856039, 40.099869 ], [ -74.85606, 40.09937 ], [ -74.85611, 40.09876 ], [ -74.85611, 40.09868 ], [ -74.856089, 40.09859 ], [ -74.85606, 40.098539 ], [ -74.85617, 40.098439 ], [ -74.85635, 40.09833 ], [ -74.85678, 40.097999 ], [ -74.8571, 40.09776 ], [ -74.857259, 40.09768 ], [ -74.857539, 40.09758 ], [ -74.85787, 40.097449 ], [ -74.858479, 40.097199 ], [ -74.85868, 40.09713 ], [ -74.858829, 40.097069 ], [ -74.85967, 40.096749 ], [ -74.85986, 40.09668 ], [ -74.85995, 40.096729 ], [ -74.860149, 40.09686 ], [ -74.86031, 40.09694 ], [ -74.860469, 40.096979 ], [ -74.860639, 40.096999 ], [ -74.8607, 40.097169 ], [ -74.860769, 40.09732 ], [ -74.86103, 40.097809 ], [ -74.86116, 40.098069 ], [ -74.86147, 40.098639 ], [ -74.861799, 40.09922 ], [ -74.861859, 40.099349 ], [ -74.86192, 40.09949 ], [ -74.86255, 40.100679 ], [ -74.862759, 40.101069 ], [ -74.862789, 40.101129 ], [ -74.86286, 40.10128 ], [ -74.862929, 40.101419 ], [ -74.86301, 40.101569 ], [ -74.86304, 40.10162 ], [ -74.86309, 40.10171 ], [ -74.86314, 40.1018 ], [ -74.86319, 40.101879 ], [ -74.863329, 40.102119 ], [ -74.86358, 40.101969 ], [ -74.86373, 40.101879 ], [ -74.86389, 40.101779 ], [ -74.863959, 40.101749 ], [ -74.864, 40.10173 ], [ -74.86417, 40.10164 ], [ -74.86427, 40.101589 ], [ -74.86445, 40.101499 ], [ -74.86472, 40.10138 ], [ -74.865039, 40.101249 ], [ -74.865359, 40.101129 ], [ -74.86562, 40.101039 ], [ -74.86615, 40.100869 ], [ -74.86687, 40.10065 ], [ -74.867609, 40.100419 ], [ -74.86795, 40.10031 ], [ -74.868199, 40.100229 ], [ -74.868379, 40.100239 ], [ -74.868509, 40.1003 ], [ -74.868639, 40.100409 ], [ -74.868819, 40.10056 ], [ -74.868869, 40.100619 ], [ -74.86895, 40.100689 ], [ -74.869109, 40.10074 ], [ -74.86952, 40.10081 ], [ -74.86965, 40.100859 ], [ -74.869819, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.87012, 40.100959 ], [ -74.87029, 40.100859 ], [ -74.87039, 40.10074 ], [ -74.87061, 40.10083 ], [ -74.87082, 40.10091 ], [ -74.871039, 40.10099 ], [ -74.87124, 40.101069 ], [ -74.87146, 40.101149 ], [ -74.871659, 40.101229 ], [ -74.871799, 40.10128 ], [ -74.87177, 40.101339 ], [ -74.872419, 40.101579 ], [ -74.87249, 40.101609 ], [ -74.872689, 40.101679 ], [ -74.872779, 40.10154 ], [ -74.872919, 40.101299 ], [ -74.873049, 40.101119 ], [ -74.87313, 40.10101 ], [ -74.87327, 40.10092 ], [ -74.87343, 40.100859 ], [ -74.873649, 40.10081 ], [ -74.87393, 40.100779 ], [ -74.874459, 40.10073 ], [ -74.87448, 40.1009 ], [ -74.874499, 40.101 ], [ -74.87456, 40.10128 ], [ -74.87462, 40.10153 ], [ -74.87466, 40.101669 ], [ -74.8747, 40.101789 ], [ -74.87478, 40.102039 ], [ -74.874809, 40.102129 ], [ -74.874849, 40.102219 ], [ -74.87487, 40.10227 ], [ -74.87501, 40.10265 ], [ -74.875389, 40.10352 ], [ -74.875439, 40.10363 ], [ -74.875569, 40.103919 ], [ -74.87565, 40.10409 ], [ -74.875989, 40.1048 ], [ -74.8761, 40.105019 ], [ -74.876169, 40.10516 ], [ -74.87619, 40.105199 ], [ -74.87632, 40.105469 ], [ -74.876379, 40.1056 ], [ -74.876529, 40.105929 ], [ -74.876659, 40.10621 ], [ -74.87669, 40.106279 ], [ -74.876829, 40.106559 ], [ -74.87695, 40.106809 ], [ -74.877029, 40.106989 ], [ -74.87705, 40.10704 ], [ -74.87714, 40.10724 ], [ -74.877159, 40.107279 ], [ -74.87727, 40.10751 ], [ -74.87736, 40.107719 ], [ -74.87744, 40.107879 ], [ -74.877549, 40.10811 ], [ -74.87767, 40.108329 ], [ -74.877819, 40.10867 ], [ -74.87795, 40.10895 ], [ -74.87798, 40.10902 ], [ -74.87843, 40.109979 ], [ -74.878459, 40.110039 ], [ -74.87849, 40.11011 ], [ -74.878549, 40.110229 ], [ -74.87857, 40.11026 ], [ -74.87866, 40.11044 ], [ -74.878729, 40.110589 ], [ -74.87879, 40.11072 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307164", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981433, 40.064395 ], [ -74.981533, 40.064504 ], [ -74.981675, 40.064824 ], [ -74.981402, 40.064879 ], [ -74.981162, 40.064926 ], [ -74.981054, 40.064946 ], [ -74.981006, 40.064957 ], [ -74.980959, 40.064967 ], [ -74.980694, 40.065022 ], [ -74.980547, 40.065053 ], [ -74.980274, 40.065106 ], [ -74.980048, 40.065146 ], [ -74.979981, 40.065155 ], [ -74.979895, 40.065166 ], [ -74.979719, 40.065179 ], [ -74.979604, 40.06518 ], [ -74.979491, 40.065175 ], [ -74.979297, 40.065154 ], [ -74.979027, 40.065107 ], [ -74.978845, 40.065069 ], [ -74.978721, 40.065045 ], [ -74.978522, 40.065017 ], [ -74.978349, 40.065008 ], [ -74.978175, 40.06501 ], [ -74.978, 40.065023 ], [ -74.977815, 40.065048 ], [ -74.977617, 40.065089 ], [ -74.977397, 40.065146 ], [ -74.977277, 40.06518 ], [ -74.976948, 40.065284 ], [ -74.976671, 40.065369 ], [ -74.976376, 40.065453 ], [ -74.976142, 40.065522 ], [ -74.975613, 40.065677 ], [ -74.975315, 40.065767 ], [ -74.974463, 40.066018 ], [ -74.974306, 40.066068 ], [ -74.973619, 40.06628 ], [ -74.973471, 40.066325 ], [ -74.973265, 40.066389 ], [ -74.972794, 40.066534 ], [ -74.972696, 40.066569 ], [ -74.972599, 40.066607 ], [ -74.972455, 40.066663 ], [ -74.972139, 40.066803 ], [ -74.972044, 40.066849 ], [ -74.971938, 40.066905 ], [ -74.971817, 40.06698 ], [ -74.971794, 40.066994 ], [ -74.97175, 40.06702 ], [ -74.97161, 40.067108 ], [ -74.970957, 40.067546 ], [ -74.970073, 40.068152 ], [ -74.96969, 40.068456 ], [ -74.969484, 40.068619 ], [ -74.969286, 40.068777 ], [ -74.969026, 40.068982 ], [ -74.968823, 40.069144 ], [ -74.968226, 40.069623 ], [ -74.967833, 40.069936 ], [ -74.96748, 40.070219 ], [ -74.967047, 40.070569 ], [ -74.966731, 40.070823 ], [ -74.966528, 40.070978 ], [ -74.966414, 40.071056 ], [ -74.966321, 40.071118 ], [ -74.966166, 40.071214 ], [ -74.966017, 40.071297 ], [ -74.965929, 40.071339 ], [ -74.965866, 40.071342 ], [ -74.96578, 40.071383 ], [ -74.964848, 40.071856 ], [ -74.964705, 40.071936 ], [ -74.964559, 40.072009 ], [ -74.964278, 40.072162 ], [ -74.964131, 40.072247 ], [ -74.963887, 40.072362 ], [ -74.963808, 40.072406 ], [ -74.963708, 40.072464 ], [ -74.963546, 40.072554 ], [ -74.963295, 40.072696 ], [ -74.962981, 40.072858 ], [ -74.962938, 40.072882 ], [ -74.962892, 40.072905 ], [ -74.962679, 40.073028 ], [ -74.9626, 40.073071 ], [ -74.962486, 40.073135 ], [ -74.962109, 40.073344 ], [ -74.961863, 40.073479 ], [ -74.961472, 40.073719 ], [ -74.961412, 40.073757 ], [ -74.961472, 40.073828 ], [ -74.961651, 40.074027 ], [ -74.961897, 40.074307 ], [ -74.962026, 40.074447 ], [ -74.962102, 40.074529 ], [ -74.962173, 40.07461 ], [ -74.962251, 40.074681 ], [ -74.962305, 40.074729 ], [ -74.962361, 40.074774 ], [ -74.962407, 40.07481 ], [ -74.962471, 40.07485 ], [ -74.962555, 40.0749 ], [ -74.962621, 40.074936 ], [ -74.962724, 40.074991 ], [ -74.962766, 40.075013 ], [ -74.962959, 40.075117 ], [ -74.963156, 40.075235 ], [ -74.963268, 40.075306 ], [ -74.963383, 40.075389 ], [ -74.963506, 40.075472 ], [ -74.963614, 40.075558 ], [ -74.963687, 40.075627 ], [ -74.963753, 40.07569 ], [ -74.963814, 40.075756 ], [ -74.963856, 40.075804 ], [ -74.963895, 40.075852 ], [ -74.96394, 40.075908 ], [ -74.963967, 40.075947 ], [ -74.96401, 40.076012 ], [ -74.96404, 40.076063 ], [ -74.964075, 40.076131 ], [ -74.964113, 40.076207 ], [ -74.964137, 40.076267 ], [ -74.964165, 40.076343 ], [ -74.964198, 40.07644 ], [ -74.964252, 40.076592 ], [ -74.964288, 40.076705 ], [ -74.9644, 40.077026 ], [ -74.964417, 40.077073 ], [ -74.964483, 40.077297 ], [ -74.964489, 40.077318 ], [ -74.964603, 40.077686 ], [ -74.96466, 40.077881 ], [ -74.964741, 40.078254 ], [ -74.964773, 40.078401 ], [ -74.964857, 40.078817 ], [ -74.964927, 40.079153 ], [ -74.964973, 40.07938 ], [ -74.965021, 40.079583 ], [ -74.965068, 40.079789 ], [ -74.965119, 40.079992 ], [ -74.965173, 40.080178 ], [ -74.965206, 40.080279 ], [ -74.965249, 40.080394 ], [ -74.9653, 40.080529 ], [ -74.965391, 40.080739 ], [ -74.965471, 40.080915 ], [ -74.965541, 40.081053 ], [ -74.965633, 40.081239 ], [ -74.965679, 40.081322 ], [ -74.965795, 40.081596 ], [ -74.965835, 40.081699 ], [ -74.965876, 40.081826 ], [ -74.965903, 40.081939 ], [ -74.965925, 40.082056 ], [ -74.965938, 40.082184 ], [ -74.965946, 40.082333 ], [ -74.965953, 40.0824 ], [ -74.965966, 40.082453 ], [ -74.966003, 40.082508 ], [ -74.966056, 40.082563 ], [ -74.965991, 40.08257 ], [ -74.965936, 40.082574 ], [ -74.96587, 40.082571 ], [ -74.964807, 40.08246 ], [ -74.964717, 40.08277 ], [ -74.964711, 40.082947 ], [ -74.964736, 40.083095 ], [ -74.964741, 40.083255 ], [ -74.964731, 40.083535 ], [ -74.964607, 40.084185 ], [ -74.964517, 40.084592 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.965633, 40.088094 ], [ -74.965598, 40.088193 ], [ -74.96557, 40.088269 ], [ -74.965547, 40.088322 ], [ -74.965515, 40.08838 ], [ -74.965476, 40.088446 ], [ -74.965419, 40.08853 ], [ -74.965352, 40.088626 ], [ -74.965294, 40.088716 ], [ -74.965218, 40.088822 ], [ -74.96491, 40.08925 ], [ -74.964828, 40.089357 ], [ -74.964734, 40.089504 ], [ -74.964663, 40.089645 ], [ -74.964615, 40.089783 ], [ -74.964589, 40.089915 ], [ -74.96458, 40.090052 ], [ -74.964587, 40.090188 ], [ -74.964606, 40.090323 ], [ -74.964635, 40.090441 ], [ -74.96467, 40.090571 ], [ -74.964696, 40.090644 ], [ -74.96472, 40.09071 ], [ -74.964775, 40.090799 ], [ -74.964817, 40.090857 ], [ -74.964901, 40.090966 ], [ -74.964995, 40.091066 ], [ -74.965359, 40.09138 ], [ -74.965493, 40.091504 ], [ -74.965583, 40.091591 ], [ -74.965468, 40.091654 ], [ -74.965085, 40.091859 ], [ -74.964694, 40.092053 ], [ -74.964521, 40.092133 ], [ -74.964333, 40.09222 ], [ -74.964139, 40.09231 ], [ -74.963195, 40.092746 ], [ -74.962825, 40.092921 ], [ -74.962666, 40.093004 ], [ -74.962655, 40.093009 ], [ -74.962527, 40.093084 ], [ -74.962075, 40.093343 ], [ -74.961882, 40.09347 ], [ -74.961666, 40.093619 ], [ -74.96146, 40.093776 ], [ -74.961388, 40.093835 ], [ -74.96137, 40.093851 ], [ -74.961137, 40.094061 ], [ -74.96004, 40.095052 ], [ -74.959823, 40.095254 ], [ -74.95971, 40.09536 ], [ -74.959632, 40.095442 ], [ -74.959553, 40.095532 ], [ -74.959481, 40.095624 ], [ -74.959409, 40.09571 ], [ -74.959342, 40.095793 ], [ -74.959273, 40.095891 ], [ -74.959212, 40.095977 ], [ -74.959057, 40.096211 ], [ -74.958705, 40.096748 ], [ -74.958636, 40.096861 ], [ -74.958567, 40.096968 ], [ -74.95845, 40.097149 ], [ -74.958141, 40.097619 ], [ -74.958089, 40.097685 ], [ -74.958029, 40.097761 ], [ -74.957991, 40.097814 ], [ -74.957861, 40.09797 ], [ -74.957758, 40.098092 ], [ -74.957627, 40.098244 ], [ -74.957527, 40.098346 ], [ -74.957389, 40.098487 ], [ -74.957341, 40.098538 ], [ -74.957311, 40.09864 ], [ -74.956971, 40.098954 ], [ -74.956923, 40.098999 ], [ -74.956754, 40.099148 ], [ -74.956485, 40.099385 ], [ -74.956437, 40.099428 ], [ -74.956074, 40.099754 ], [ -74.955618, 40.100138 ], [ -74.955497, 40.100171 ], [ -74.955066, 40.100553 ], [ -74.954861, 40.100728 ], [ -74.954452, 40.101079 ], [ -74.954403, 40.101124 ], [ -74.95432, 40.101202 ], [ -74.954213, 40.101297 ], [ -74.95379, 40.101673 ], [ -74.953172, 40.102243 ], [ -74.952717, 40.102692 ], [ -74.952523, 40.102899 ], [ -74.952212, 40.103226 ], [ -74.951826, 40.103636 ], [ -74.951514, 40.103972 ], [ -74.951383, 40.104132 ], [ -74.951369, 40.10424 ], [ -74.951295, 40.10431 ], [ -74.950977, 40.104636 ], [ -74.950857, 40.104745 ], [ -74.950799, 40.1048 ], [ -74.950694, 40.10491 ], [ -74.950549, 40.10505 ], [ -74.950415, 40.10518 ], [ -74.950171, 40.105427 ], [ -74.950043, 40.105556 ], [ -74.949857, 40.105744 ], [ -74.949716, 40.105877 ], [ -74.949663, 40.105891 ], [ -74.949633, 40.105915 ], [ -74.949406, 40.106131 ], [ -74.949368, 40.106174 ], [ -74.949354, 40.106224 ], [ -74.949307, 40.106266 ], [ -74.948793, 40.106753 ], [ -74.948117, 40.107417 ], [ -74.947246, 40.108229 ], [ -74.946492, 40.108945 ], [ -74.945769, 40.109658 ], [ -74.94575, 40.109679 ], [ -74.945737, 40.109695 ], [ -74.94562, 40.10985 ], [ -74.945569, 40.109873 ], [ -74.945488, 40.10998 ], [ -74.945372, 40.110171 ], [ -74.945217, 40.110447 ], [ -74.945024, 40.110802 ], [ -74.94494, 40.110951 ], [ -74.94487, 40.110924 ], [ -74.944655, 40.110842 ], [ -74.943975, 40.110635 ], [ -74.943924, 40.110579 ], [ -74.943651, 40.110479 ], [ -74.942875, 40.110248 ], [ -74.941778, 40.109938 ], [ -74.941676, 40.10995 ], [ -74.941296, 40.109846 ], [ -74.938098, 40.108961 ], [ -74.937508, 40.10881 ], [ -74.936797, 40.108621 ], [ -74.936096, 40.108425 ], [ -74.935645, 40.108303 ], [ -74.935576, 40.108241 ], [ -74.935453, 40.108206 ], [ -74.934968, 40.108077 ], [ -74.934787, 40.108034 ], [ -74.9347, 40.108046 ], [ -74.93413, 40.107898 ], [ -74.933475, 40.10773 ], [ -74.933211, 40.10767 ], [ -74.933004, 40.10762 ], [ -74.932859, 40.107589 ], [ -74.932748, 40.107566 ], [ -74.932614, 40.10754 ], [ -74.932553, 40.107537 ], [ -74.93248, 40.107546 ], [ -74.932407, 40.107566 ], [ -74.932346, 40.107585 ], [ -74.931913, 40.107769 ], [ -74.9318, 40.107768 ], [ -74.929715, 40.108714 ], [ -74.928974, 40.107574 ], [ -74.928862, 40.107396 ], [ -74.92851, 40.106866 ], [ -74.927861, 40.105823 ], [ -74.927542, 40.105292 ], [ -74.926799, 40.10407 ], [ -74.925915, 40.102581 ], [ -74.925733, 40.102275 ], [ -74.925474, 40.101873 ], [ -74.925159, 40.101403 ], [ -74.925013, 40.101203 ], [ -74.924915, 40.101071 ], [ -74.924641, 40.100722 ], [ -74.924455, 40.100485 ], [ -74.924156, 40.100111 ], [ -74.923565, 40.099381 ], [ -74.92309, 40.0988 ], [ -74.922992, 40.098686 ], [ -74.922934, 40.098633 ], [ -74.922863, 40.098589 ], [ -74.92275, 40.098535 ], [ -74.922609, 40.098482 ], [ -74.922446, 40.09842 ], [ -74.921934, 40.09823 ], [ -74.920395, 40.097662 ], [ -74.920313, 40.097632 ], [ -74.920042, 40.09804 ], [ -74.919656, 40.098616 ], [ -74.919433, 40.098961 ], [ -74.919431, 40.099028 ], [ -74.919322, 40.099174 ], [ -74.919224, 40.099316 ], [ -74.919142, 40.099436 ], [ -74.919089, 40.099515 ], [ -74.918985, 40.099669 ], [ -74.918709, 40.10008 ], [ -74.918093, 40.100986 ], [ -74.917581, 40.101772 ], [ -74.917159, 40.102418 ], [ -74.91687, 40.102852 ], [ -74.916373, 40.103589 ], [ -74.916061, 40.104059 ], [ -74.915413, 40.10503 ], [ -74.91515, 40.105439 ], [ -74.914892, 40.105823 ], [ -74.914453, 40.10648 ], [ -74.914226, 40.106828 ], [ -74.914125, 40.106981 ], [ -74.913477, 40.107972 ], [ -74.913203, 40.108382 ], [ -74.91275, 40.109078 ], [ -74.912426, 40.109583 ], [ -74.912227, 40.109905 ], [ -74.912099, 40.110108 ], [ -74.912026, 40.110194 ], [ -74.911897, 40.110369 ], [ -74.911852, 40.11039 ], [ -74.911821, 40.110433 ], [ -74.911769, 40.110517 ], [ -74.911628, 40.110727 ], [ -74.911439, 40.111021 ], [ -74.911255, 40.111309 ], [ -74.911169, 40.111455 ], [ -74.911119, 40.111549 ], [ -74.91112, 40.111607 ], [ -74.911049, 40.111707 ], [ -74.910845, 40.112009 ], [ -74.910693, 40.112237 ], [ -74.91041, 40.112665 ], [ -74.910395, 40.112686 ], [ -74.910253, 40.112903 ], [ -74.909967, 40.113337 ], [ -74.909699, 40.11374 ], [ -74.909695, 40.113748 ], [ -74.909398, 40.114194 ], [ -74.908985, 40.114815 ], [ -74.908683, 40.115261 ], [ -74.908247, 40.115932 ], [ -74.907972, 40.116386 ], [ -74.907851, 40.116608 ], [ -74.907652, 40.116979 ], [ -74.907496, 40.117289 ], [ -74.907353, 40.117588 ], [ -74.907135, 40.118022 ], [ -74.90696, 40.118383 ], [ -74.906889, 40.118514 ], [ -74.906643, 40.119015 ], [ -74.906427, 40.119458 ], [ -74.906241, 40.119834 ], [ -74.90603, 40.120259 ], [ -74.90585, 40.120625 ], [ -74.905788, 40.120657 ], [ -74.905759, 40.1207 ], [ -74.905574, 40.121079 ], [ -74.905559, 40.12112 ], [ -74.905565, 40.121192 ], [ -74.905386, 40.121555 ], [ -74.905296, 40.121742 ], [ -74.904969, 40.122394 ], [ -74.904662, 40.123041 ], [ -74.904623, 40.123115 ], [ -74.904549, 40.123269 ], [ -74.904355, 40.123677 ], [ -74.90414, 40.12365 ], [ -74.904083, 40.123615 ], [ -74.903877, 40.123587 ], [ -74.9035, 40.12354 ], [ -74.903385, 40.123526 ], [ -74.903145, 40.123509 ], [ -74.902907, 40.123503 ], [ -74.902667, 40.123508 ], [ -74.902559, 40.123518 ], [ -74.901917, 40.123571 ], [ -74.901314, 40.123638 ], [ -74.901048, 40.123675 ], [ -74.900826, 40.123709 ], [ -74.900665, 40.123717 ], [ -74.900516, 40.123734 ], [ -74.900391, 40.12375 ], [ -74.90032, 40.123757 ], [ -74.900288, 40.123759 ], [ -74.900258, 40.123757 ], [ -74.900228, 40.123749 ], [ -74.900194, 40.12374 ], [ -74.900166, 40.123725 ], [ -74.900151, 40.123712 ], [ -74.900137, 40.123695 ], [ -74.900123, 40.123671 ], [ -74.900127, 40.123443 ], [ -74.900171, 40.123325 ], [ -74.900364, 40.122845 ], [ -74.900562, 40.122324 ], [ -74.900759, 40.12177 ], [ -74.900818, 40.121625 ], [ -74.901485, 40.119896 ], [ -74.901566, 40.11969 ], [ -74.901642, 40.119518 ], [ -74.901685, 40.119436 ], [ -74.901744, 40.119324 ], [ -74.901878, 40.11911 ], [ -74.902003, 40.11891 ], [ -74.902048, 40.118834 ], [ -74.90208, 40.11877 ], [ -74.902133, 40.118655 ], [ -74.902307, 40.118229 ], [ -74.902504, 40.117767 ], [ -74.90262, 40.117508 ], [ -74.90265, 40.117424 ], [ -74.902672, 40.117339 ], [ -74.90269, 40.117272 ], [ -74.902706, 40.117201 ], [ -74.902721, 40.117114 ], [ -74.902728, 40.117017 ], [ -74.902733, 40.116907 ], [ -74.902723, 40.116758 ], [ -74.902712, 40.116625 ], [ -74.902701, 40.116524 ], [ -74.902676, 40.116351 ], [ -74.90265, 40.116257 ], [ -74.902628, 40.11616 ], [ -74.9026, 40.116057 ], [ -74.902386, 40.115396 ], [ -74.902335, 40.115249 ], [ -74.902279, 40.115077 ], [ -74.90225, 40.114979 ], [ -74.902196, 40.114805 ], [ -74.902157, 40.114683 ], [ -74.901273, 40.115058 ], [ -74.901215, 40.11506 ], [ -74.900972, 40.115171 ], [ -74.900679, 40.115318 ], [ -74.900646, 40.115355 ], [ -74.899759, 40.115722 ], [ -74.898429, 40.116291 ], [ -74.896855, 40.116944 ], [ -74.894234, 40.118029 ], [ -74.892282, 40.118838 ], [ -74.891037, 40.119349 ], [ -74.888318, 40.120453 ], [ -74.888194, 40.120506 ], [ -74.887869, 40.120639 ], [ -74.887666, 40.120722 ], [ -74.886378, 40.121264 ], [ -74.885742, 40.121536 ], [ -74.884356, 40.118358 ], [ -74.883969, 40.117515 ], [ -74.883868, 40.117349 ], [ -74.883736, 40.117217 ], [ -74.883654, 40.117158 ], [ -74.883515, 40.117117 ], [ -74.883277, 40.117065 ], [ -74.882078, 40.116766 ], [ -74.881933, 40.116741 ], [ -74.881844, 40.116731 ], [ -74.881748, 40.116727 ], [ -74.881074, 40.116766 ], [ -74.881067, 40.116662 ], [ -74.881053, 40.11643 ], [ -74.88104, 40.116229 ], [ -74.881095, 40.116135 ], [ -74.881087, 40.115997 ], [ -74.881062, 40.115794 ], [ -74.881053, 40.115742 ], [ -74.880995, 40.11546 ], [ -74.880943, 40.115279 ], [ -74.880819, 40.114906 ], [ -74.880718, 40.11463 ], [ -74.880609, 40.114382 ], [ -74.880547, 40.11425 ], [ -74.880522, 40.11421 ], [ -74.880417, 40.113976 ], [ -74.880134, 40.113367 ], [ -74.879829, 40.112742 ], [ -74.879571, 40.112165 ], [ -74.879437, 40.111885 ], [ -74.879245, 40.111484 ], [ -74.879136, 40.111219 ], [ -74.87894, 40.11127 ], [ -74.87808, 40.111538 ], [ -74.877502, 40.110253 ], [ -74.877336, 40.110307 ], [ -74.877238, 40.110339 ], [ -74.877038, 40.110403 ], [ -74.87763, 40.111645 ], [ -74.87808, 40.111538 ], [ -74.87894, 40.11127 ], [ -74.879136, 40.111219 ], [ -74.879044, 40.111028 ], [ -74.878796, 40.11051 ], [ -74.878745, 40.110403 ], [ -74.878642, 40.110212 ], [ -74.878515, 40.110133 ], [ -74.878042, 40.109148 ], [ -74.877944, 40.108943 ], [ -74.877589, 40.108142 ], [ -74.877356, 40.107643 ], [ -74.877219, 40.107368 ], [ -74.877029, 40.106986 ], [ -74.876832, 40.106546 ], [ -74.876786, 40.106443 ], [ -74.876703, 40.106265 ], [ -74.876344, 40.105487 ], [ -74.876278, 40.105367 ], [ -74.876111, 40.105025 ], [ -74.875669, 40.10407 ], [ -74.875402, 40.103499 ], [ -74.875199, 40.103072 ], [ -74.875102, 40.102846 ], [ -74.875036, 40.102675 ], [ -74.874855, 40.102154 ], [ -74.874879, 40.102073 ], [ -74.87475, 40.101556 ], [ -74.874626, 40.10106 ], [ -74.874558, 40.100715 ], [ -74.874414, 40.100729 ], [ -74.873719, 40.10078 ], [ -74.873419, 40.100801 ], [ -74.873305, 40.100843 ], [ -74.873222, 40.100893 ], [ -74.8731, 40.101016 ], [ -74.872919, 40.101288 ], [ -74.872662, 40.101664 ], [ -74.870368, 40.100729 ], [ -74.870278, 40.100829 ], [ -74.870175, 40.100899 ], [ -74.869948, 40.100999 ], [ -74.869918, 40.101023 ], [ -74.869714, 40.100874 ], [ -74.869652, 40.10084 ], [ -74.869582, 40.100819 ], [ -74.869059, 40.100707 ], [ -74.869015, 40.100692 ], [ -74.868982, 40.100675 ], [ -74.868948, 40.100652 ], [ -74.868931, 40.100635 ], [ -74.868922, 40.100575 ], [ -74.868887, 40.100513 ], [ -74.868864, 40.100469 ], [ -74.86881, 40.100361 ], [ -74.868687, 40.100108 ], [ -74.868653, 40.100046 ], [ -74.868546, 40.100076 ], [ -74.868406, 40.100123 ], [ -74.868207, 40.100187 ], [ -74.867975, 40.100259 ], [ -74.866869, 40.100611 ], [ -74.866186, 40.100812 ], [ -74.8654, 40.101065 ], [ -74.865132, 40.101167 ], [ -74.864948, 40.101242 ], [ -74.864903, 40.101259 ], [ -74.864573, 40.1014 ], [ -74.864251, 40.101552 ], [ -74.864004, 40.101679 ], [ -74.863937, 40.101712 ], [ -74.863716, 40.101836 ], [ -74.863618, 40.101892 ], [ -74.863492, 40.101966 ], [ -74.863326, 40.10207 ], [ -74.863261, 40.101938 ], [ -74.863243, 40.101898 ], [ -74.863225, 40.101867 ], [ -74.863218, 40.101853 ], [ -74.86316, 40.101746 ], [ -74.863104, 40.101653 ], [ -74.863085, 40.10162 ], [ -74.863064, 40.101583 ], [ -74.862771, 40.101081 ], [ -74.862673, 40.100895 ], [ -74.862505, 40.100591 ], [ -74.861857, 40.099382 ], [ -74.861774, 40.099219 ], [ -74.861562, 40.098822 ], [ -74.861139, 40.098026 ], [ -74.860906, 40.097583 ], [ -74.860752, 40.097291 ], [ -74.860714, 40.097217 ], [ -74.860678, 40.097153 ], [ -74.86065, 40.097108 ], [ -74.860616, 40.097074 ], [ -74.860581, 40.097047 ], [ -74.860525, 40.097018 ], [ -74.86047, 40.096995 ], [ -74.860401, 40.09697 ], [ -74.860334, 40.096941 ], [ -74.860222, 40.096883 ], [ -74.859963, 40.096733 ], [ -74.859888, 40.096692 ], [ -74.858818, 40.097082 ], [ -74.857593, 40.09755 ], [ -74.85744, 40.097609 ], [ -74.857297, 40.097671 ], [ -74.857134, 40.09775 ], [ -74.857042, 40.097811 ], [ -74.856942, 40.09788 ], [ -74.856612, 40.09813 ], [ -74.856558, 40.09817 ], [ -74.856276, 40.098375 ], [ -74.856046, 40.098538 ], [ -74.856073, 40.098594 ], [ -74.856081, 40.098634 ], [ -74.856087, 40.098676 ], [ -74.856072, 40.098946 ], [ -74.856042, 40.09938 ], [ -74.855972, 40.100286 ], [ -74.855944, 40.100783 ], [ -74.855893, 40.10141 ], [ -74.855854, 40.101966 ], [ -74.855843, 40.102066 ], [ -74.855834, 40.10227 ], [ -74.855696, 40.103719 ], [ -74.855651, 40.104126 ], [ -74.855634, 40.10433 ], [ -74.855612, 40.104543 ], [ -74.855576, 40.104817 ], [ -74.855499, 40.105394 ], [ -74.85544, 40.105928 ], [ -74.855362, 40.106517 ], [ -74.85528, 40.107132 ], [ -74.855271, 40.107199 ], [ -74.855156, 40.107969 ], [ -74.855109, 40.10827 ], [ -74.855043, 40.108692 ], [ -74.854941, 40.10937 ], [ -74.854834, 40.110126 ], [ -74.854762, 40.110644 ], [ -74.854745, 40.110757 ], [ -74.854705, 40.110991 ], [ -74.854683, 40.111202 ], [ -74.854608, 40.111692 ], [ -74.854498, 40.112466 ], [ -74.854374, 40.113287 ], [ -74.854321, 40.11365 ], [ -74.854289, 40.113861 ], [ -74.854263, 40.114039 ], [ -74.854143, 40.114945 ], [ -74.854013, 40.115846 ], [ -74.853968, 40.116161 ], [ -74.853934, 40.116389 ], [ -74.85389, 40.116526 ], [ -74.853804, 40.116752 ], [ -74.853479, 40.117459 ], [ -74.853357, 40.117743 ], [ -74.853178, 40.11806 ], [ -74.853062, 40.118161 ], [ -74.852758, 40.118297 ], [ -74.85246, 40.118446 ], [ -74.851124, 40.11913 ], [ -74.850528, 40.118471 ], [ -74.850028, 40.117892 ], [ -74.849721, 40.117539 ], [ -74.84964, 40.117459 ], [ -74.849578, 40.117424 ], [ -74.849482, 40.117412 ], [ -74.849373, 40.117425 ], [ -74.848233, 40.117947 ], [ -74.846843, 40.118579 ], [ -74.846758, 40.118618 ], [ -74.846696, 40.118646 ], [ -74.846648, 40.118666 ], [ -74.846587, 40.118691 ], [ -74.84648, 40.118738 ], [ -74.846381, 40.11879 ], [ -74.846327, 40.118828 ], [ -74.846274, 40.118873 ], [ -74.846218, 40.118922 ], [ -74.846161, 40.118992 ], [ -74.846127, 40.119045 ], [ -74.846099, 40.119105 ], [ -74.846088, 40.119164 ], [ -74.846083, 40.11922 ], [ -74.846083, 40.119263 ], [ -74.846104, 40.119339 ], [ -74.846614, 40.119475 ], [ -74.84715, 40.119645 ], [ -74.847464, 40.119769 ], [ -74.847726, 40.11992 ], [ -74.848069, 40.120174 ], [ -74.84831, 40.120393 ], [ -74.848404, 40.120478 ], [ -74.848484, 40.120557 ], [ -74.849158, 40.121416 ], [ -74.849842, 40.122271 ], [ -74.849964, 40.122432 ], [ -74.849988, 40.122468 ], [ -74.850038, 40.122534 ], [ -74.850084, 40.122596 ], [ -74.850118, 40.122641 ], [ -74.850159, 40.122693 ], [ -74.850327, 40.122904 ], [ -74.850471, 40.123099 ], [ -74.850732, 40.123442 ], [ -74.850894, 40.123647 ], [ -74.851253, 40.12411 ], [ -74.851945, 40.125032 ], [ -74.852452, 40.125707 ], [ -74.85318, 40.126661 ], [ -74.85371, 40.12735 ], [ -74.853839, 40.127521 ], [ -74.854113, 40.127868 ], [ -74.854194, 40.127979 ], [ -74.854974, 40.129003 ], [ -74.855481, 40.129647 ], [ -74.85582, 40.130061 ], [ -74.856068, 40.130359 ], [ -74.856982, 40.131453 ], [ -74.85719, 40.131702 ], [ -74.857998, 40.13269 ], [ -74.858449, 40.133243 ], [ -74.858668, 40.133105 ], [ -74.861488, 40.131192 ], [ -74.861659, 40.131074 ], [ -74.862653, 40.130393 ], [ -74.862873, 40.130241 ], [ -74.863486, 40.129829 ], [ -74.86477, 40.128952 ], [ -74.865312, 40.128572 ], [ -74.865805, 40.128231 ], [ -74.866424, 40.127815 ], [ -74.866738, 40.127601 ], [ -74.867239, 40.128158 ], [ -74.867448, 40.128394 ], [ -74.868335, 40.129396 ], [ -74.868716, 40.129822 ], [ -74.869022, 40.130158 ], [ -74.869271, 40.130443 ], [ -74.870068, 40.13135 ], [ -74.87077, 40.132155 ], [ -74.870942, 40.132371 ], [ -74.871009, 40.132456 ], [ -74.871186, 40.132677 ], [ -74.871335, 40.132888 ], [ -74.871682, 40.133378 ], [ -74.872244, 40.134178 ], [ -74.872441, 40.134432 ], [ -74.872692, 40.134727 ], [ -74.873016, 40.13509 ], [ -74.873209, 40.135309 ], [ -74.87333, 40.135464 ], [ -74.873443, 40.135633 ], [ -74.873554, 40.135828 ], [ -74.873668, 40.136058 ], [ -74.873764, 40.136275 ], [ -74.873869, 40.136514 ], [ -74.874042, 40.136891 ], [ -74.874219, 40.13731 ], [ -74.874372, 40.137678 ], [ -74.874461, 40.137921 ], [ -74.874524, 40.138127 ], [ -74.874653, 40.138618 ], [ -74.874721, 40.138965 ], [ -74.874737, 40.139098 ], [ -74.874759, 40.139309 ], [ -74.874775, 40.139534 ], [ -74.874783, 40.139723 ], [ -74.874786, 40.139899 ], [ -74.874781, 40.14015 ], [ -74.874773, 40.140305 ], [ -74.874761, 40.140532 ], [ -74.874739, 40.140771 ], [ -74.874727, 40.14089 ], [ -74.874707, 40.141082 ], [ -74.874939, 40.140915 ], [ -74.875391, 40.140609 ], [ -74.875653, 40.140433 ], [ -74.876213, 40.140056 ], [ -74.876576, 40.139815 ], [ -74.876952, 40.139561 ], [ -74.877695, 40.139064 ], [ -74.878278, 40.138677 ], [ -74.878751, 40.138346 ], [ -74.878935, 40.138219 ], [ -74.879067, 40.138129 ], [ -74.879334, 40.137943 ], [ -74.880107, 40.137401 ], [ -74.880322, 40.137259 ], [ -74.880787, 40.136939 ], [ -74.881481, 40.136462 ], [ -74.881718, 40.136299 ], [ -74.88188, 40.136188 ], [ -74.882275, 40.135918 ], [ -74.882367, 40.135856 ], [ -74.883351, 40.135173 ], [ -74.883856, 40.134823 ], [ -74.884213, 40.134575 ], [ -74.884694, 40.134239 ], [ -74.884735, 40.13421 ], [ -74.885041, 40.133984 ], [ -74.885297, 40.133804 ], [ -74.885383, 40.133744 ], [ -74.885538, 40.133635 ], [ -74.885989, 40.133319 ], [ -74.886105, 40.133238 ], [ -74.886186, 40.13318 ], [ -74.886274, 40.133119 ], [ -74.886651, 40.132875 ], [ -74.886958, 40.132676 ], [ -74.887148, 40.132554 ], [ -74.887442, 40.13236 ], [ -74.887682, 40.132202 ], [ -74.888055, 40.131949 ], [ -74.888281, 40.132189 ], [ -74.888502, 40.132444 ], [ -74.888835, 40.132857 ], [ -74.889031, 40.133115 ], [ -74.889198, 40.133357 ], [ -74.889263, 40.133451 ], [ -74.889331, 40.13355 ], [ -74.889399, 40.133654 ], [ -74.889487, 40.133795 ], [ -74.889541, 40.133877 ], [ -74.889648, 40.134057 ], [ -74.889726, 40.134218 ], [ -74.88977, 40.13433 ], [ -74.889798, 40.134443 ], [ -74.889822, 40.134623 ], [ -74.889834, 40.134769 ], [ -74.889861, 40.135211 ], [ -74.889878, 40.135546 ], [ -74.889934, 40.136396 ], [ -74.889966, 40.136843 ], [ -74.889992, 40.137164 ], [ -74.890013, 40.137366 ], [ -74.890047, 40.137634 ], [ -74.890098, 40.13796 ], [ -74.890127, 40.138121 ], [ -74.890149, 40.138221 ], [ -74.89018, 40.13838 ], [ -74.890219, 40.138535 ], [ -74.890261, 40.138698 ], [ -74.890339, 40.138951 ], [ -74.890442, 40.139278 ], [ -74.890548, 40.1396 ], [ -74.890605, 40.13977 ], [ -74.890661, 40.139941 ], [ -74.891036, 40.141102 ], [ -74.891323, 40.142001 ], [ -74.891427, 40.142329 ], [ -74.891543, 40.142693 ], [ -74.891611, 40.142885 ], [ -74.891809, 40.143425 ], [ -74.8919, 40.143626 ], [ -74.892319, 40.144521 ], [ -74.892456, 40.144833 ], [ -74.892749, 40.145474 ], [ -74.892855, 40.145724 ], [ -74.892915, 40.145885 ], [ -74.892966, 40.146029 ], [ -74.893282, 40.146936 ], [ -74.893382, 40.147224 ], [ -74.893825, 40.148339 ], [ -74.894095, 40.149032 ], [ -74.894228, 40.149344 ], [ -74.894312, 40.149538 ], [ -74.894343, 40.149604 ], [ -74.894374, 40.149674 ], [ -74.894409, 40.149749 ], [ -74.894449, 40.149826 ], [ -74.8945, 40.149915 ], [ -74.894915, 40.150639 ], [ -74.895254, 40.15125 ], [ -74.895568, 40.151812 ], [ -74.895687, 40.152021 ], [ -74.895856, 40.152325 ], [ -74.896198, 40.152975 ], [ -74.896689, 40.153836 ], [ -74.896794, 40.154005 ], [ -74.896999, 40.154297 ], [ -74.897261, 40.154665 ], [ -74.897836, 40.155455 ], [ -74.898049, 40.15573 ], [ -74.898235, 40.155966 ], [ -74.89856, 40.156385 ], [ -74.898705, 40.156577 ], [ -74.898837, 40.156752 ], [ -74.898935, 40.156925 ], [ -74.899014, 40.157053 ], [ -74.899053, 40.157095 ], [ -74.899091, 40.157132 ], [ -74.899131, 40.157168 ], [ -74.899189, 40.157213 ], [ -74.899276, 40.157275 ], [ -74.899344, 40.157316 ], [ -74.899429, 40.157361 ], [ -74.899487, 40.157388 ], [ -74.899549, 40.15741 ], [ -74.899625, 40.157433 ], [ -74.89971, 40.157461 ], [ -74.899814, 40.157489 ], [ -74.899926, 40.157515 ], [ -74.900055, 40.157546 ], [ -74.900188, 40.157574 ], [ -74.900369, 40.157613 ], [ -74.900604, 40.157666 ], [ -74.900869, 40.157727 ], [ -74.901017, 40.157762 ], [ -74.901676, 40.157892 ], [ -74.902069, 40.157959 ], [ -74.902684, 40.158061 ], [ -74.903168, 40.158122 ], [ -74.903718, 40.158176 ], [ -74.904271, 40.158232 ], [ -74.90475, 40.158277 ], [ -74.905329, 40.158335 ], [ -74.905828, 40.158373 ], [ -74.90664, 40.158432 ], [ -74.906903, 40.158442 ], [ -74.907512, 40.158434 ], [ -74.907995, 40.158418 ], [ -74.908526, 40.158398 ], [ -74.908928, 40.158387 ], [ -74.909577, 40.15838 ], [ -74.909728, 40.158392 ], [ -74.909853, 40.158414 ], [ -74.909973, 40.158448 ], [ -74.910091, 40.158494 ], [ -74.910198, 40.15855 ], [ -74.910308, 40.158622 ], [ -74.910513, 40.158778 ], [ -74.910767, 40.158963 ], [ -74.911, 40.159155 ], [ -74.911099, 40.159239 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307165", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.9647, 40.087999 ], [ -74.96511, 40.08805 ], [ -74.965619, 40.088109 ], [ -74.965579, 40.08821 ], [ -74.965529, 40.08832 ], [ -74.96546, 40.088449 ], [ -74.965359, 40.088609 ], [ -74.965259, 40.08875 ], [ -74.964949, 40.08921 ], [ -74.96484, 40.089339 ], [ -74.9647, 40.08956 ], [ -74.964639, 40.08969 ], [ -74.964599, 40.089809 ], [ -74.96457, 40.08994 ], [ -74.96456, 40.09005 ], [ -74.96457, 40.0902 ], [ -74.96461, 40.090449 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95791, 40.098009 ], [ -74.95773, 40.09822 ], [ -74.957439, 40.098529 ], [ -74.95696, 40.09896 ], [ -74.956799, 40.09911 ], [ -74.956629, 40.099269 ], [ -74.95647, 40.09941 ], [ -74.956129, 40.099709 ], [ -74.95607, 40.09976 ], [ -74.955639, 40.100149 ], [ -74.95547, 40.1003 ], [ -74.955309, 40.100439 ], [ -74.95511, 40.100609 ], [ -74.95493, 40.100759 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.950909, 40.10471 ], [ -74.95071, 40.104899 ], [ -74.950459, 40.105119 ], [ -74.950359, 40.105209 ], [ -74.95012, 40.105439 ], [ -74.949869, 40.10568 ], [ -74.94962, 40.105919 ], [ -74.94953, 40.106009 ], [ -74.94932, 40.106199 ], [ -74.949099, 40.10642 ], [ -74.948799, 40.106719 ], [ -74.9481, 40.1074 ], [ -74.947939, 40.107549 ], [ -74.947529, 40.10795 ], [ -74.947349, 40.10813 ], [ -74.947229, 40.108249 ], [ -74.947089, 40.10838 ], [ -74.946999, 40.10847 ], [ -74.946509, 40.108959 ], [ -74.94598, 40.10948 ], [ -74.945779, 40.109669 ], [ -74.945549, 40.10999 ], [ -74.945409, 40.110239 ], [ -74.945009, 40.110969 ], [ -74.944869, 40.11091 ], [ -74.94293, 40.110299 ], [ -74.942449, 40.11017 ], [ -74.9422, 40.1101 ], [ -74.94193, 40.11002 ], [ -74.941319, 40.109849 ], [ -74.94102, 40.109759 ], [ -74.939659, 40.109409 ], [ -74.9387, 40.109159 ], [ -74.938089, 40.108989 ], [ -74.93789, 40.10894 ], [ -74.93775, 40.10891 ], [ -74.93752, 40.10885 ], [ -74.93744, 40.10883 ], [ -74.93676, 40.10865 ], [ -74.9364, 40.10855 ], [ -74.936049, 40.108449 ], [ -74.9359, 40.1084 ], [ -74.93582, 40.10838 ], [ -74.93481, 40.1081 ], [ -74.9342, 40.10793 ], [ -74.93378, 40.107819 ], [ -74.933629, 40.10778 ], [ -74.93342, 40.107729 ], [ -74.9328, 40.10759 ], [ -74.93262, 40.10756 ], [ -74.932509, 40.10757 ], [ -74.932409, 40.10759 ], [ -74.932269, 40.107639 ], [ -74.93185, 40.107819 ], [ -74.9315, 40.107979 ], [ -74.93135, 40.10805 ], [ -74.930929, 40.108239 ], [ -74.930789, 40.1083 ], [ -74.93077, 40.10831 ], [ -74.930489, 40.108439 ], [ -74.929769, 40.108789 ], [ -74.92938, 40.108179 ], [ -74.92934, 40.10812 ], [ -74.929269, 40.10802 ], [ -74.92906, 40.107699 ], [ -74.92861, 40.106989 ], [ -74.928449, 40.10675 ], [ -74.928129, 40.106249 ], [ -74.927909, 40.105889 ], [ -74.927859, 40.105819 ], [ -74.92767, 40.10552 ], [ -74.927509, 40.105269 ], [ -74.927419, 40.105119 ], [ -74.92731, 40.104929 ], [ -74.927229, 40.10479 ], [ -74.92708, 40.10454 ], [ -74.926879, 40.10423 ], [ -74.9268, 40.10405 ], [ -74.926749, 40.10396 ], [ -74.92663, 40.103759 ], [ -74.926059, 40.10283 ], [ -74.925889, 40.10255 ], [ -74.92551, 40.10192 ], [ -74.92529, 40.101569 ], [ -74.92518, 40.101409 ], [ -74.92491, 40.10108 ], [ -74.924319, 40.10036 ], [ -74.92295, 40.09867 ], [ -74.922789, 40.098549 ], [ -74.922559, 40.098459 ], [ -74.922429, 40.09841 ], [ -74.92141, 40.09803 ], [ -74.921259, 40.097979 ], [ -74.92114, 40.09794 ], [ -74.920979, 40.09788 ], [ -74.92037, 40.09766 ], [ -74.92011, 40.09803 ], [ -74.92006, 40.09811 ], [ -74.919849, 40.09841 ], [ -74.91935, 40.09912 ], [ -74.91929, 40.09921 ], [ -74.91921, 40.09932 ], [ -74.919149, 40.09941 ], [ -74.91888, 40.099809 ], [ -74.91844, 40.10048 ], [ -74.918099, 40.10099 ], [ -74.91776, 40.101499 ], [ -74.917599, 40.101749 ], [ -74.91727, 40.10225 ], [ -74.916789, 40.102959 ], [ -74.91637, 40.103579 ], [ -74.91618, 40.103859 ], [ -74.91605, 40.10406 ], [ -74.915499, 40.10489 ], [ -74.91542, 40.105009 ], [ -74.91525, 40.105269 ], [ -74.91521, 40.10533 ], [ -74.91488, 40.105819 ], [ -74.9142, 40.106829 ], [ -74.91413, 40.10695 ], [ -74.914049, 40.107069 ], [ -74.91349, 40.10794 ], [ -74.91322, 40.108359 ], [ -74.912969, 40.10874 ], [ -74.912749, 40.109079 ], [ -74.912289, 40.109799 ], [ -74.911799, 40.110569 ], [ -74.91165, 40.11081 ], [ -74.9112, 40.111509 ], [ -74.910869, 40.112029 ], [ -74.91029, 40.112919 ], [ -74.90998, 40.113379 ], [ -74.9097, 40.11379 ], [ -74.90898, 40.11485 ], [ -74.90863, 40.115359 ], [ -74.908149, 40.116099 ], [ -74.907849, 40.116629 ], [ -74.90763, 40.11701 ], [ -74.907309, 40.117619 ], [ -74.90706, 40.118149 ], [ -74.90687, 40.11854 ], [ -74.906409, 40.119489 ], [ -74.906259, 40.1198 ], [ -74.906049, 40.120229 ], [ -74.905819, 40.120689 ], [ -74.90565, 40.121029 ], [ -74.905459, 40.12142 ], [ -74.90529, 40.121739 ], [ -74.904959, 40.12241 ], [ -74.904639, 40.12306 ], [ -74.90453, 40.123289 ], [ -74.904339, 40.12368 ], [ -74.90387, 40.123619 ], [ -74.90382, 40.12361 ], [ -74.903519, 40.12358 ], [ -74.903389, 40.123569 ], [ -74.90319, 40.123559 ], [ -74.903029, 40.123559 ], [ -74.90278, 40.123569 ], [ -74.902569, 40.12358 ], [ -74.90233, 40.1236 ], [ -74.901819, 40.123649 ], [ -74.901589, 40.12367 ], [ -74.90125, 40.123719 ], [ -74.90102, 40.123749 ], [ -74.90075, 40.12379 ], [ -74.900379, 40.12386 ], [ -74.899969, 40.12396 ], [ -74.90004, 40.123649 ], [ -74.90009, 40.12351 ], [ -74.90016, 40.12331 ], [ -74.900279, 40.122999 ], [ -74.90034, 40.12286 ], [ -74.90129, 40.120399 ], [ -74.90157, 40.119689 ], [ -74.901729, 40.119309 ], [ -74.90198, 40.11891 ], [ -74.902079, 40.11873 ], [ -74.90261, 40.11748 ], [ -74.9027, 40.117439 ], [ -74.902719, 40.11714 ], [ -74.90274, 40.116789 ], [ -74.90273, 40.116629 ], [ -74.902669, 40.116269 ], [ -74.90261, 40.116069 ], [ -74.90247, 40.115619 ], [ -74.902399, 40.1154 ], [ -74.902359, 40.115259 ], [ -74.90216, 40.11467 ], [ -74.901769, 40.11486 ], [ -74.901359, 40.115019 ], [ -74.90067, 40.115359 ], [ -74.899929, 40.11567 ], [ -74.898439, 40.11629 ], [ -74.89689, 40.116909 ], [ -74.896329, 40.117159 ], [ -74.896139, 40.117239 ], [ -74.895659, 40.117439 ], [ -74.89419, 40.118059 ], [ -74.893479, 40.118349 ], [ -74.893179, 40.11847 ], [ -74.892949, 40.11857 ], [ -74.892309, 40.11883 ], [ -74.89206, 40.11893 ], [ -74.891049, 40.11935 ], [ -74.890959, 40.119389 ], [ -74.889839, 40.119849 ], [ -74.88837, 40.12047 ], [ -74.888169, 40.12056 ], [ -74.88789, 40.120669 ], [ -74.88776, 40.12073 ], [ -74.88618, 40.12134 ], [ -74.885919, 40.12145 ], [ -74.885749, 40.12152 ], [ -74.88551, 40.12101 ], [ -74.885339, 40.12063 ], [ -74.884979, 40.11981 ], [ -74.884889, 40.119599 ], [ -74.884349, 40.11837 ], [ -74.884029, 40.11766 ], [ -74.88392, 40.11741 ], [ -74.88389, 40.11737 ], [ -74.8838, 40.117259 ], [ -74.883639, 40.117149 ], [ -74.883549, 40.11711 ], [ -74.8833, 40.11703 ], [ -74.882729, 40.116899 ], [ -74.881969, 40.11676 ], [ -74.88162, 40.11674 ], [ -74.881509, 40.11674 ], [ -74.881339, 40.11666 ], [ -74.88128, 40.116619 ], [ -74.881119, 40.116459 ], [ -74.881029, 40.116359 ], [ -74.88099, 40.11603 ], [ -74.880979, 40.11597 ], [ -74.880889, 40.1155 ], [ -74.880709, 40.114999 ], [ -74.88064, 40.114819 ], [ -74.880579, 40.114659 ], [ -74.880439, 40.114289 ], [ -74.879989, 40.113209 ], [ -74.879809, 40.11281 ], [ -74.87957, 40.11234 ], [ -74.87937, 40.111959 ], [ -74.879309, 40.11183 ], [ -74.879219, 40.11165 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.87879, 40.11072 ], [ -74.878729, 40.110589 ], [ -74.87866, 40.11044 ], [ -74.87857, 40.11026 ], [ -74.878549, 40.110229 ], [ -74.87849, 40.11011 ], [ -74.878459, 40.110039 ], [ -74.87843, 40.109979 ], [ -74.87798, 40.10902 ], [ -74.87795, 40.10895 ], [ -74.877819, 40.10867 ], [ -74.87767, 40.108329 ], [ -74.877549, 40.10811 ], [ -74.87744, 40.107879 ], [ -74.87736, 40.107719 ], [ -74.87727, 40.10751 ], [ -74.877159, 40.107279 ], [ -74.87714, 40.10724 ], [ -74.87705, 40.10704 ], [ -74.877029, 40.106989 ], [ -74.87695, 40.106809 ], [ -74.876829, 40.106559 ], [ -74.87669, 40.106279 ], [ -74.876659, 40.10621 ], [ -74.876529, 40.105929 ], [ -74.876379, 40.1056 ], [ -74.87632, 40.105469 ], [ -74.87619, 40.105199 ], [ -74.876169, 40.10516 ], [ -74.8761, 40.105019 ], [ -74.875989, 40.1048 ], [ -74.87565, 40.10409 ], [ -74.875569, 40.103919 ], [ -74.875439, 40.10363 ], [ -74.875389, 40.10352 ], [ -74.87501, 40.10265 ], [ -74.87487, 40.10227 ], [ -74.874849, 40.102219 ], [ -74.874809, 40.102129 ], [ -74.87478, 40.102039 ], [ -74.8747, 40.101789 ], [ -74.87466, 40.101669 ], [ -74.87462, 40.10153 ], [ -74.87456, 40.10128 ], [ -74.874499, 40.101 ], [ -74.87448, 40.1009 ], [ -74.874459, 40.10073 ], [ -74.87393, 40.100779 ], [ -74.873649, 40.10081 ], [ -74.87343, 40.100859 ], [ -74.87327, 40.10092 ], [ -74.87313, 40.10101 ], [ -74.873049, 40.101119 ], [ -74.872919, 40.101299 ], [ -74.872779, 40.10154 ], [ -74.872689, 40.101679 ], [ -74.87249, 40.101609 ], [ -74.872419, 40.101579 ], [ -74.87177, 40.101339 ], [ -74.871799, 40.10128 ], [ -74.871659, 40.101229 ], [ -74.87146, 40.101149 ], [ -74.87124, 40.101069 ], [ -74.871039, 40.10099 ], [ -74.87082, 40.10091 ], [ -74.87061, 40.10083 ], [ -74.87039, 40.10074 ], [ -74.87029, 40.100859 ], [ -74.87012, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.869819, 40.100959 ], [ -74.86965, 40.100859 ], [ -74.86952, 40.10081 ], [ -74.869109, 40.10074 ], [ -74.86895, 40.100689 ], [ -74.868869, 40.100619 ], [ -74.868819, 40.10056 ], [ -74.86858, 40.10012 ], [ -74.868199, 40.100229 ], [ -74.86795, 40.10031 ], [ -74.867609, 40.100419 ], [ -74.86687, 40.10065 ], [ -74.86615, 40.100869 ], [ -74.86562, 40.101039 ], [ -74.865359, 40.101129 ], [ -74.865039, 40.101249 ], [ -74.86472, 40.10138 ], [ -74.86445, 40.101499 ], [ -74.86427, 40.101589 ], [ -74.86417, 40.10164 ], [ -74.864, 40.10173 ], [ -74.863959, 40.101749 ], [ -74.86389, 40.101779 ], [ -74.86373, 40.101879 ], [ -74.86358, 40.101969 ], [ -74.863329, 40.102119 ], [ -74.86319, 40.101879 ], [ -74.86314, 40.1018 ], [ -74.86309, 40.10171 ], [ -74.86304, 40.10162 ], [ -74.86301, 40.101569 ], [ -74.862929, 40.101419 ], [ -74.86286, 40.10128 ], [ -74.862789, 40.101129 ], [ -74.862759, 40.101069 ], [ -74.86255, 40.100679 ], [ -74.86192, 40.09949 ], [ -74.861859, 40.099349 ], [ -74.861799, 40.09922 ], [ -74.86147, 40.098639 ], [ -74.86116, 40.098069 ], [ -74.86103, 40.097809 ], [ -74.860769, 40.09732 ], [ -74.8607, 40.097169 ], [ -74.860639, 40.096999 ], [ -74.860469, 40.096979 ], [ -74.86031, 40.09694 ], [ -74.860149, 40.09686 ], [ -74.85995, 40.096729 ], [ -74.85986, 40.09668 ], [ -74.85967, 40.096749 ], [ -74.858829, 40.097069 ], [ -74.85868, 40.09713 ], [ -74.858479, 40.097199 ], [ -74.85787, 40.097449 ], [ -74.857539, 40.09758 ], [ -74.857259, 40.09768 ], [ -74.8571, 40.09776 ], [ -74.85678, 40.097999 ], [ -74.85635, 40.09833 ], [ -74.85617, 40.098439 ], [ -74.85606, 40.098539 ], [ -74.856089, 40.09859 ], [ -74.85611, 40.09868 ], [ -74.85611, 40.09876 ], [ -74.85606, 40.09937 ], [ -74.856039, 40.099869 ], [ -74.855999, 40.100149 ], [ -74.85594, 40.100759 ], [ -74.8559, 40.10135 ], [ -74.85585, 40.101969 ], [ -74.85584, 40.102059 ], [ -74.85584, 40.102119 ], [ -74.855729, 40.10324 ], [ -74.855679, 40.103759 ], [ -74.85563, 40.104129 ], [ -74.85563, 40.10417 ], [ -74.855599, 40.10441 ], [ -74.855589, 40.1045 ], [ -74.85558, 40.10461 ], [ -74.85557, 40.1047 ], [ -74.85557, 40.104829 ], [ -74.855509, 40.105369 ], [ -74.85544, 40.105909 ], [ -74.85536, 40.106519 ], [ -74.855289, 40.107079 ], [ -74.85527, 40.10721 ], [ -74.85521, 40.1076 ], [ -74.85516, 40.107969 ], [ -74.855139, 40.1081 ], [ -74.855109, 40.10828 ], [ -74.855059, 40.10858 ], [ -74.85504, 40.108689 ], [ -74.855009, 40.108869 ], [ -74.85494, 40.10938 ], [ -74.854869, 40.10992 ], [ -74.854839, 40.11017 ], [ -74.85476, 40.110699 ], [ -74.854659, 40.11126 ], [ -74.85463, 40.111479 ], [ -74.854599, 40.111689 ], [ -74.854559, 40.111959 ], [ -74.8545, 40.112489 ], [ -74.854479, 40.112669 ], [ -74.85444, 40.11289 ], [ -74.85441, 40.11306 ], [ -74.854379, 40.113299 ], [ -74.854329, 40.1137 ], [ -74.85428, 40.11405 ], [ -74.854149, 40.11496 ], [ -74.85404, 40.115729 ], [ -74.85401, 40.11594 ], [ -74.853979, 40.116079 ], [ -74.853979, 40.116169 ], [ -74.853929, 40.11638 ], [ -74.853849, 40.116619 ], [ -74.85372, 40.11692 ], [ -74.853489, 40.11747 ], [ -74.85342, 40.117609 ], [ -74.853249, 40.11801 ], [ -74.85315, 40.11812 ], [ -74.85306, 40.118159 ], [ -74.85247, 40.11847 ], [ -74.85216, 40.118619 ], [ -74.851099, 40.119149 ], [ -74.850559, 40.118489 ], [ -74.850299, 40.118169 ], [ -74.850099, 40.11792 ], [ -74.849649, 40.11746 ], [ -74.84954, 40.117419 ], [ -74.849389, 40.117439 ], [ -74.848769, 40.117699 ], [ -74.84825, 40.11795 ], [ -74.847849, 40.11812 ], [ -74.84756, 40.118239 ], [ -74.84693, 40.118529 ], [ -74.846769, 40.118599 ], [ -74.84663, 40.11866 ], [ -74.846379, 40.118789 ], [ -74.8463, 40.118849 ], [ -74.84617, 40.118979 ], [ -74.84609, 40.119149 ], [ -74.846059, 40.119339 ], [ -74.846379, 40.119419 ], [ -74.846559, 40.11947 ], [ -74.846909, 40.119569 ], [ -74.84721, 40.119689 ], [ -74.84742, 40.119769 ], [ -74.8477, 40.11992 ], [ -74.847949, 40.12009 ], [ -74.84816, 40.12025 ], [ -74.848399, 40.12047 ], [ -74.848439, 40.12052 ], [ -74.848769, 40.120929 ], [ -74.849, 40.121229 ], [ -74.849169, 40.12145 ], [ -74.84933, 40.121649 ], [ -74.849439, 40.12179 ], [ -74.84955, 40.121929 ], [ -74.84987, 40.122299 ], [ -74.85, 40.122479 ], [ -74.850099, 40.122639 ], [ -74.850339, 40.122929 ], [ -74.850519, 40.12316 ], [ -74.850729, 40.12342 ], [ -74.85125, 40.124099 ], [ -74.851459, 40.124379 ], [ -74.85176, 40.12478 ], [ -74.85212, 40.125249 ], [ -74.85221, 40.125369 ], [ -74.852269, 40.125449 ], [ -74.852449, 40.12568 ], [ -74.852709, 40.12602 ], [ -74.85293, 40.12632 ], [ -74.85309, 40.126529 ], [ -74.853659, 40.12727 ], [ -74.853749, 40.12739 ], [ -74.85386, 40.127529 ], [ -74.854109, 40.127889 ], [ -74.85468, 40.12864 ], [ -74.85553, 40.12971 ], [ -74.85611, 40.130399 ], [ -74.856999, 40.131479 ], [ -74.858109, 40.132819 ], [ -74.858479, 40.13324 ], [ -74.861219, 40.131379 ], [ -74.861529, 40.13117 ], [ -74.862889, 40.13025 ], [ -74.863199, 40.130029 ], [ -74.86453, 40.129139 ], [ -74.86489, 40.128879 ], [ -74.86512, 40.12872 ], [ -74.86534, 40.12857 ], [ -74.866119, 40.128029 ], [ -74.86652, 40.127769 ], [ -74.866749, 40.127619 ], [ -74.86688, 40.12774 ], [ -74.86718, 40.12808 ], [ -74.867439, 40.128389 ], [ -74.86872, 40.12982 ], [ -74.869199, 40.13037 ], [ -74.86926, 40.13044 ], [ -74.87007, 40.131359 ], [ -74.87015, 40.131449 ], [ -74.870629, 40.131999 ], [ -74.870949, 40.132369 ], [ -74.87102, 40.132449 ], [ -74.87124, 40.132739 ], [ -74.8716, 40.13325 ], [ -74.87168, 40.133359 ], [ -74.871709, 40.13341 ], [ -74.871889, 40.13369 ], [ -74.871979, 40.133809 ], [ -74.87204, 40.133889 ], [ -74.872239, 40.134169 ], [ -74.872469, 40.134459 ], [ -74.872659, 40.13468 ], [ -74.872869, 40.134979 ], [ -74.873009, 40.13513 ], [ -74.873189, 40.135329 ], [ -74.8733, 40.13547 ], [ -74.873369, 40.13557 ], [ -74.87344, 40.135679 ], [ -74.87349, 40.135769 ], [ -74.87353, 40.13585 ], [ -74.87361, 40.13601 ], [ -74.87367, 40.136139 ], [ -74.87379, 40.136409 ], [ -74.873859, 40.13655 ], [ -74.87393, 40.136689 ], [ -74.874049, 40.1369 ], [ -74.874229, 40.137319 ], [ -74.874359, 40.13764 ], [ -74.87447, 40.137939 ], [ -74.874539, 40.13818 ], [ -74.87465, 40.138599 ], [ -74.874719, 40.138959 ], [ -74.874729, 40.13901 ], [ -74.87478, 40.139389 ], [ -74.8748, 40.139749 ], [ -74.8748, 40.13989 ], [ -74.87478, 40.14026 ], [ -74.874769, 40.14035 ], [ -74.874769, 40.140399 ], [ -74.874759, 40.140559 ], [ -74.874759, 40.140639 ], [ -74.874759, 40.14071 ], [ -74.87474, 40.140909 ], [ -74.874729, 40.141099 ], [ -74.874939, 40.14095 ], [ -74.875139, 40.140819 ], [ -74.87534, 40.14069 ], [ -74.875439, 40.14062 ], [ -74.875529, 40.140559 ], [ -74.875979, 40.14025 ], [ -74.8766, 40.139829 ], [ -74.876939, 40.139579 ], [ -74.87821, 40.13872 ], [ -74.87852, 40.138509 ], [ -74.8791, 40.13811 ], [ -74.87934, 40.137939 ], [ -74.87951, 40.13782 ], [ -74.880119, 40.137399 ], [ -74.88028, 40.13729 ], [ -74.880299, 40.13727 ], [ -74.880429, 40.13718 ], [ -74.88063, 40.137039 ], [ -74.880749, 40.136959 ], [ -74.880839, 40.1369 ], [ -74.881249, 40.136619 ], [ -74.88141, 40.136509 ], [ -74.8815, 40.136439 ], [ -74.881699, 40.1363 ], [ -74.88176, 40.136259 ], [ -74.88182, 40.136219 ], [ -74.88225, 40.13592 ], [ -74.88243, 40.135799 ], [ -74.882859, 40.135509 ], [ -74.88312, 40.135329 ], [ -74.883309, 40.1352 ], [ -74.883579, 40.13502 ], [ -74.883669, 40.13495 ], [ -74.883809, 40.13485 ], [ -74.883909, 40.134789 ], [ -74.883989, 40.13474 ], [ -74.884169, 40.134619 ], [ -74.884679, 40.134269 ], [ -74.884989, 40.134069 ], [ -74.885389, 40.13379 ], [ -74.8855, 40.133709 ], [ -74.88559, 40.133649 ], [ -74.88599, 40.133379 ], [ -74.88614, 40.133269 ], [ -74.88668, 40.132909 ], [ -74.88704, 40.13267 ], [ -74.887179, 40.132569 ], [ -74.887419, 40.13241 ], [ -74.88752, 40.132349 ], [ -74.887629, 40.132269 ], [ -74.888049, 40.131989 ], [ -74.8883, 40.132279 ], [ -74.88843, 40.13243 ], [ -74.88852, 40.132529 ], [ -74.888889, 40.13298 ], [ -74.88901, 40.13313 ], [ -74.889159, 40.133369 ], [ -74.88941, 40.133739 ], [ -74.889659, 40.13412 ], [ -74.889749, 40.13432 ], [ -74.88982, 40.134529 ], [ -74.889849, 40.13475 ], [ -74.889929, 40.136429 ], [ -74.889969, 40.137119 ], [ -74.890019, 40.137579 ], [ -74.89013, 40.138209 ], [ -74.89014, 40.13828 ], [ -74.89022, 40.138589 ], [ -74.890379, 40.13906 ], [ -74.89063, 40.139759 ], [ -74.89095, 40.140849 ], [ -74.89117, 40.14149 ], [ -74.891319, 40.14196 ], [ -74.89157, 40.14275 ], [ -74.891689, 40.14311 ], [ -74.8919, 40.143619 ], [ -74.892579, 40.145039 ], [ -74.892759, 40.14546 ], [ -74.89333, 40.14693 ], [ -74.893489, 40.147399 ], [ -74.89383, 40.14837 ], [ -74.894069, 40.14906 ], [ -74.89454, 40.150019 ], [ -74.8946, 40.15013 ], [ -74.895099, 40.151019 ], [ -74.89523, 40.151259 ], [ -74.895559, 40.15185 ], [ -74.89584, 40.15232 ], [ -74.89679, 40.15402 ], [ -74.89701, 40.154319 ], [ -74.897309, 40.15473 ], [ -74.89743, 40.154889 ], [ -74.897669, 40.155219 ], [ -74.897899, 40.15553 ], [ -74.898069, 40.155759 ], [ -74.89823, 40.15598 ], [ -74.898519, 40.15638 ], [ -74.898879, 40.156869 ], [ -74.899209, 40.157209 ], [ -74.8995, 40.157379 ], [ -74.89981, 40.157489 ], [ -74.900049, 40.15754 ], [ -74.900369, 40.15761 ], [ -74.90106, 40.157749 ], [ -74.901629, 40.15788 ], [ -74.90206, 40.15796 ], [ -74.90269, 40.15806 ], [ -74.903169, 40.158129 ], [ -74.903699, 40.158179 ], [ -74.904239, 40.15823 ], [ -74.90475, 40.158279 ], [ -74.905319, 40.15833 ], [ -74.9058, 40.158379 ], [ -74.9066, 40.15843 ], [ -74.90701, 40.158449 ], [ -74.90747, 40.15844 ], [ -74.90765, 40.15843 ], [ -74.90827, 40.15842 ], [ -74.90853, 40.15841 ], [ -74.90958, 40.158379 ], [ -74.909909, 40.15843 ], [ -74.91012, 40.1585 ], [ -74.910309, 40.15861 ], [ -74.910729, 40.15895 ], [ -74.91079, 40.158999 ], [ -74.910939, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.910849, 40.15944 ], [ -74.91075, 40.15952 ], [ -74.9107, 40.15959 ], [ -74.91066, 40.159629 ], [ -74.91056, 40.159749 ], [ -74.910509, 40.159809 ], [ -74.910449, 40.159909 ], [ -74.910399, 40.159989 ], [ -74.910369, 40.16003 ], [ -74.910319, 40.16012 ], [ -74.91016, 40.160369 ], [ -74.910089, 40.16048 ], [ -74.91003, 40.16057 ], [ -74.909919, 40.160739 ], [ -74.909679, 40.16103 ], [ -74.90953, 40.161179 ], [ -74.909289, 40.161339 ], [ -74.9089, 40.161539 ], [ -74.9088, 40.16159 ], [ -74.908509, 40.161729 ], [ -74.908299, 40.16183 ], [ -74.908069, 40.16195 ], [ -74.907849, 40.162059 ], [ -74.90772, 40.16213 ], [ -74.907519, 40.162229 ], [ -74.907429, 40.162269 ], [ -74.907349, 40.16231 ], [ -74.907249, 40.162359 ], [ -74.90705, 40.162449 ], [ -74.906979, 40.16248 ], [ -74.906589, 40.162679 ], [ -74.90639, 40.162779 ], [ -74.906269, 40.16283 ], [ -74.90619, 40.162869 ], [ -74.90601, 40.162959 ], [ -74.90584, 40.163039 ], [ -74.905639, 40.163139 ], [ -74.905419, 40.163249 ], [ -74.905229, 40.163349 ], [ -74.905139, 40.16339 ], [ -74.905009, 40.16346 ], [ -74.904919, 40.163499 ], [ -74.90468, 40.16363 ], [ -74.904609, 40.16366 ], [ -74.90418, 40.163869 ], [ -74.904019, 40.16394 ], [ -74.903879, 40.16401 ], [ -74.90372, 40.16408 ], [ -74.90364, 40.16412 ], [ -74.903559, 40.164159 ], [ -74.903399, 40.164239 ], [ -74.90336, 40.16426 ], [ -74.903129, 40.16437 ], [ -74.902939, 40.16446 ], [ -74.90278, 40.16454 ], [ -74.902479, 40.164679 ], [ -74.902439, 40.164699 ], [ -74.902359, 40.16474 ], [ -74.90215, 40.16484 ], [ -74.90193, 40.164949 ], [ -74.90116, 40.165309 ], [ -74.900549, 40.16561 ], [ -74.900229, 40.165769 ], [ -74.900139, 40.16582 ], [ -74.89991, 40.165949 ], [ -74.899869, 40.16597 ], [ -74.89908, 40.16635 ], [ -74.899, 40.166389 ], [ -74.8989, 40.16644 ], [ -74.898669, 40.166559 ], [ -74.89829, 40.166749 ], [ -74.89815, 40.166819 ], [ -74.897759, 40.167019 ], [ -74.89737, 40.167209 ], [ -74.896949, 40.16743 ], [ -74.896869, 40.167479 ], [ -74.89676, 40.167549 ], [ -74.896689, 40.1676 ], [ -74.896599, 40.167659 ], [ -74.896499, 40.167729 ], [ -74.896449, 40.16777 ], [ -74.89635, 40.16786 ], [ -74.8963, 40.167899 ], [ -74.8958, 40.168289 ], [ -74.8955, 40.16852 ], [ -74.89508, 40.16885 ], [ -74.894669, 40.169169 ], [ -74.894339, 40.16943 ], [ -74.893989, 40.169709 ], [ -74.893569, 40.17003 ], [ -74.89333, 40.17023 ], [ -74.892819, 40.170639 ], [ -74.89243, 40.17095 ], [ -74.89194, 40.171339 ], [ -74.891769, 40.17148 ], [ -74.891409, 40.17176 ], [ -74.89091, 40.172149 ], [ -74.89067, 40.172339 ], [ -74.890479, 40.172499 ], [ -74.89018, 40.17273 ], [ -74.889619, 40.17317 ], [ -74.88892, 40.17372 ], [ -74.88873, 40.173869 ], [ -74.88834, 40.17418 ], [ -74.88797, 40.17446 ], [ -74.88757, 40.17479 ], [ -74.88739, 40.174929 ], [ -74.887099, 40.17516 ], [ -74.886729, 40.17545 ], [ -74.886649, 40.17551 ], [ -74.88653, 40.1756 ], [ -74.88608, 40.175939 ], [ -74.88595, 40.176039 ], [ -74.885619, 40.176289 ], [ -74.885529, 40.17635 ], [ -74.885429, 40.17641 ], [ -74.88533, 40.176469 ], [ -74.88519, 40.176539 ], [ -74.88479, 40.176729 ], [ -74.884259, 40.176939 ], [ -74.884039, 40.17704 ], [ -74.88384, 40.17713 ], [ -74.883449, 40.17731 ], [ -74.88329, 40.177379 ], [ -74.882829, 40.17758 ], [ -74.88267, 40.177649 ], [ -74.882559, 40.17767 ], [ -74.882509, 40.17768 ], [ -74.882469, 40.17769 ], [ -74.8824, 40.17771 ], [ -74.88234, 40.177729 ], [ -74.882289, 40.177749 ], [ -74.88217, 40.1778 ], [ -74.88176, 40.177989 ], [ -74.88145, 40.17814 ], [ -74.88091, 40.178379 ], [ -74.880799, 40.178439 ], [ -74.88056, 40.17858 ], [ -74.88014, 40.17875 ], [ -74.879899, 40.17884 ], [ -74.879809, 40.17888 ], [ -74.879589, 40.17895 ], [ -74.87934, 40.17902 ], [ -74.87911, 40.179069 ], [ -74.87857, 40.179159 ], [ -74.87834, 40.179069 ], [ -74.878229, 40.179009 ], [ -74.87816, 40.178979 ], [ -74.87799, 40.178899 ], [ -74.877829, 40.17888 ], [ -74.877689, 40.17888 ], [ -74.877599, 40.178919 ], [ -74.877519, 40.178989 ], [ -74.877469, 40.17906 ], [ -74.877459, 40.17913 ], [ -74.877459, 40.17922 ], [ -74.877459, 40.17931 ], [ -74.877469, 40.179439 ], [ -74.877609, 40.179969 ], [ -74.87763, 40.180049 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307166", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981433, 40.064395 ], [ -74.981533, 40.064504 ], [ -74.981675, 40.064824 ], [ -74.981402, 40.064879 ], [ -74.981162, 40.064926 ], [ -74.981054, 40.064946 ], [ -74.981006, 40.064957 ], [ -74.980959, 40.064967 ], [ -74.980694, 40.065022 ], [ -74.980547, 40.065053 ], [ -74.980274, 40.065106 ], [ -74.980048, 40.065146 ], [ -74.979981, 40.065155 ], [ -74.979895, 40.065166 ], [ -74.979719, 40.065179 ], [ -74.979604, 40.06518 ], [ -74.979491, 40.065175 ], [ -74.979297, 40.065154 ], [ -74.979027, 40.065107 ], [ -74.978845, 40.065069 ], [ -74.978721, 40.065045 ], [ -74.978522, 40.065017 ], [ -74.978349, 40.065008 ], [ -74.978175, 40.06501 ], [ -74.978, 40.065023 ], [ -74.977815, 40.065048 ], [ -74.977617, 40.065089 ], [ -74.977397, 40.065146 ], [ -74.977277, 40.06518 ], [ -74.976948, 40.065284 ], [ -74.976671, 40.065369 ], [ -74.976376, 40.065453 ], [ -74.976142, 40.065522 ], [ -74.975613, 40.065677 ], [ -74.975315, 40.065767 ], [ -74.974463, 40.066018 ], [ -74.974306, 40.066068 ], [ -74.973619, 40.06628 ], [ -74.973471, 40.066325 ], [ -74.973265, 40.066389 ], [ -74.972794, 40.066534 ], [ -74.972696, 40.066569 ], [ -74.972599, 40.066607 ], [ -74.972455, 40.066663 ], [ -74.972139, 40.066803 ], [ -74.972044, 40.066849 ], [ -74.971938, 40.066905 ], [ -74.971817, 40.06698 ], [ -74.971794, 40.066994 ], [ -74.97175, 40.06702 ], [ -74.97161, 40.067108 ], [ -74.970957, 40.067546 ], [ -74.970073, 40.068152 ], [ -74.96969, 40.068456 ], [ -74.969484, 40.068619 ], [ -74.969286, 40.068777 ], [ -74.969026, 40.068982 ], [ -74.968823, 40.069144 ], [ -74.968226, 40.069623 ], [ -74.967833, 40.069936 ], [ -74.96748, 40.070219 ], [ -74.967047, 40.070569 ], [ -74.966731, 40.070823 ], [ -74.966528, 40.070978 ], [ -74.966414, 40.071056 ], [ -74.966321, 40.071118 ], [ -74.966166, 40.071214 ], [ -74.966017, 40.071297 ], [ -74.965929, 40.071339 ], [ -74.965866, 40.071342 ], [ -74.96578, 40.071383 ], [ -74.964848, 40.071856 ], [ -74.964705, 40.071936 ], [ -74.964559, 40.072009 ], [ -74.964278, 40.072162 ], [ -74.964131, 40.072247 ], [ -74.963887, 40.072362 ], [ -74.963808, 40.072406 ], [ -74.963708, 40.072464 ], [ -74.963546, 40.072554 ], [ -74.963295, 40.072696 ], [ -74.962981, 40.072858 ], [ -74.962938, 40.072882 ], [ -74.962892, 40.072905 ], [ -74.962679, 40.073028 ], [ -74.9626, 40.073071 ], [ -74.962486, 40.073135 ], [ -74.962109, 40.073344 ], [ -74.961863, 40.073479 ], [ -74.961472, 40.073719 ], [ -74.961412, 40.073757 ], [ -74.961472, 40.073828 ], [ -74.961651, 40.074027 ], [ -74.961897, 40.074307 ], [ -74.962026, 40.074447 ], [ -74.962102, 40.074529 ], [ -74.962173, 40.07461 ], [ -74.962251, 40.074681 ], [ -74.962305, 40.074729 ], [ -74.962361, 40.074774 ], [ -74.962407, 40.07481 ], [ -74.962471, 40.07485 ], [ -74.962555, 40.0749 ], [ -74.962621, 40.074936 ], [ -74.962724, 40.074991 ], [ -74.962766, 40.075013 ], [ -74.962959, 40.075117 ], [ -74.963156, 40.075235 ], [ -74.963268, 40.075306 ], [ -74.963383, 40.075389 ], [ -74.963506, 40.075472 ], [ -74.963614, 40.075558 ], [ -74.963687, 40.075627 ], [ -74.963753, 40.07569 ], [ -74.963814, 40.075756 ], [ -74.963856, 40.075804 ], [ -74.963895, 40.075852 ], [ -74.96394, 40.075908 ], [ -74.963967, 40.075947 ], [ -74.96401, 40.076012 ], [ -74.96404, 40.076063 ], [ -74.964075, 40.076131 ], [ -74.964113, 40.076207 ], [ -74.964137, 40.076267 ], [ -74.964165, 40.076343 ], [ -74.964198, 40.07644 ], [ -74.964252, 40.076592 ], [ -74.964288, 40.076705 ], [ -74.9644, 40.077026 ], [ -74.964417, 40.077073 ], [ -74.964483, 40.077297 ], [ -74.964489, 40.077318 ], [ -74.964603, 40.077686 ], [ -74.96466, 40.077881 ], [ -74.964741, 40.078254 ], [ -74.964773, 40.078401 ], [ -74.964857, 40.078817 ], [ -74.964927, 40.079153 ], [ -74.964973, 40.07938 ], [ -74.965021, 40.079583 ], [ -74.965068, 40.079789 ], [ -74.965119, 40.079992 ], [ -74.965173, 40.080178 ], [ -74.965206, 40.080279 ], [ -74.965249, 40.080394 ], [ -74.9653, 40.080529 ], [ -74.965391, 40.080739 ], [ -74.965471, 40.080915 ], [ -74.965541, 40.081053 ], [ -74.965633, 40.081239 ], [ -74.965679, 40.081322 ], [ -74.965795, 40.081596 ], [ -74.965835, 40.081699 ], [ -74.965876, 40.081826 ], [ -74.965903, 40.081939 ], [ -74.965925, 40.082056 ], [ -74.965938, 40.082184 ], [ -74.965946, 40.082333 ], [ -74.965953, 40.0824 ], [ -74.965966, 40.082453 ], [ -74.966003, 40.082508 ], [ -74.966056, 40.082563 ], [ -74.965991, 40.08257 ], [ -74.965936, 40.082574 ], [ -74.96587, 40.082571 ], [ -74.964807, 40.08246 ], [ -74.964717, 40.08277 ], [ -74.964711, 40.082947 ], [ -74.964736, 40.083095 ], [ -74.964741, 40.083255 ], [ -74.964731, 40.083535 ], [ -74.964607, 40.084185 ], [ -74.964517, 40.084592 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.965633, 40.088094 ], [ -74.965598, 40.088193 ], [ -74.96557, 40.088269 ], [ -74.965547, 40.088322 ], [ -74.965515, 40.08838 ], [ -74.965476, 40.088446 ], [ -74.965419, 40.08853 ], [ -74.965352, 40.088626 ], [ -74.965294, 40.088716 ], [ -74.965218, 40.088822 ], [ -74.96491, 40.08925 ], [ -74.964828, 40.089357 ], [ -74.964734, 40.089504 ], [ -74.964663, 40.089645 ], [ -74.964615, 40.089783 ], [ -74.964589, 40.089915 ], [ -74.96458, 40.090052 ], [ -74.964587, 40.090188 ], [ -74.964606, 40.090323 ], [ -74.964635, 40.090441 ], [ -74.96467, 40.090571 ], [ -74.964696, 40.090644 ], [ -74.96472, 40.09071 ], [ -74.964775, 40.090799 ], [ -74.964817, 40.090857 ], [ -74.964901, 40.090966 ], [ -74.964995, 40.091066 ], [ -74.965359, 40.09138 ], [ -74.965493, 40.091504 ], [ -74.965583, 40.091591 ], [ -74.965468, 40.091654 ], [ -74.965085, 40.091859 ], [ -74.964694, 40.092053 ], [ -74.964521, 40.092133 ], [ -74.964333, 40.09222 ], [ -74.964139, 40.09231 ], [ -74.963195, 40.092746 ], [ -74.962825, 40.092921 ], [ -74.962666, 40.093004 ], [ -74.962655, 40.093009 ], [ -74.962527, 40.093084 ], [ -74.962075, 40.093343 ], [ -74.961882, 40.09347 ], [ -74.961666, 40.093619 ], [ -74.96146, 40.093776 ], [ -74.961388, 40.093835 ], [ -74.96137, 40.093851 ], [ -74.961137, 40.094061 ], [ -74.96004, 40.095052 ], [ -74.959823, 40.095254 ], [ -74.95971, 40.09536 ], [ -74.959632, 40.095442 ], [ -74.959553, 40.095532 ], [ -74.959481, 40.095624 ], [ -74.959409, 40.09571 ], [ -74.959342, 40.095793 ], [ -74.959273, 40.095891 ], [ -74.959212, 40.095977 ], [ -74.959057, 40.096211 ], [ -74.958705, 40.096748 ], [ -74.958636, 40.096861 ], [ -74.958567, 40.096968 ], [ -74.95845, 40.097149 ], [ -74.958141, 40.097619 ], [ -74.958089, 40.097685 ], [ -74.958029, 40.097761 ], [ -74.957991, 40.097814 ], [ -74.957861, 40.09797 ], [ -74.957758, 40.098092 ], [ -74.957627, 40.098244 ], [ -74.957527, 40.098346 ], [ -74.957389, 40.098487 ], [ -74.957341, 40.098538 ], [ -74.957311, 40.09864 ], [ -74.956971, 40.098954 ], [ -74.956923, 40.098999 ], [ -74.956754, 40.099148 ], [ -74.956485, 40.099385 ], [ -74.956437, 40.099428 ], [ -74.956074, 40.099754 ], [ -74.955618, 40.100138 ], [ -74.955497, 40.100171 ], [ -74.955066, 40.100553 ], [ -74.954861, 40.100728 ], [ -74.954452, 40.101079 ], [ -74.954403, 40.101124 ], [ -74.95432, 40.101202 ], [ -74.954213, 40.101297 ], [ -74.95379, 40.101673 ], [ -74.953172, 40.102243 ], [ -74.952717, 40.102692 ], [ -74.952523, 40.102899 ], [ -74.952212, 40.103226 ], [ -74.951826, 40.103636 ], [ -74.951514, 40.103972 ], [ -74.951383, 40.104132 ], [ -74.951369, 40.10424 ], [ -74.951295, 40.10431 ], [ -74.950977, 40.104636 ], [ -74.950857, 40.104745 ], [ -74.950799, 40.1048 ], [ -74.950694, 40.10491 ], [ -74.950549, 40.10505 ], [ -74.950415, 40.10518 ], [ -74.950171, 40.105427 ], [ -74.950043, 40.105556 ], [ -74.949857, 40.105744 ], [ -74.949716, 40.105877 ], [ -74.949663, 40.105891 ], [ -74.949633, 40.105915 ], [ -74.949406, 40.106131 ], [ -74.949368, 40.106174 ], [ -74.949354, 40.106224 ], [ -74.949307, 40.106266 ], [ -74.948793, 40.106753 ], [ -74.948117, 40.107417 ], [ -74.947246, 40.108229 ], [ -74.946492, 40.108945 ], [ -74.945769, 40.109658 ], [ -74.94575, 40.109679 ], [ -74.945737, 40.109695 ], [ -74.94562, 40.10985 ], [ -74.945569, 40.109873 ], [ -74.945488, 40.10998 ], [ -74.945372, 40.110171 ], [ -74.945217, 40.110447 ], [ -74.945024, 40.110802 ], [ -74.94494, 40.110951 ], [ -74.94487, 40.110924 ], [ -74.944655, 40.110842 ], [ -74.943975, 40.110635 ], [ -74.943924, 40.110579 ], [ -74.943651, 40.110479 ], [ -74.942875, 40.110248 ], [ -74.941778, 40.109938 ], [ -74.941676, 40.10995 ], [ -74.941296, 40.109846 ], [ -74.938098, 40.108961 ], [ -74.937508, 40.10881 ], [ -74.936797, 40.108621 ], [ -74.936096, 40.108425 ], [ -74.935645, 40.108303 ], [ -74.935576, 40.108241 ], [ -74.935453, 40.108206 ], [ -74.934968, 40.108077 ], [ -74.934787, 40.108034 ], [ -74.9347, 40.108046 ], [ -74.93413, 40.107898 ], [ -74.933475, 40.10773 ], [ -74.933211, 40.10767 ], [ -74.933004, 40.10762 ], [ -74.932859, 40.107589 ], [ -74.932748, 40.107566 ], [ -74.932614, 40.10754 ], [ -74.932553, 40.107537 ], [ -74.93248, 40.107546 ], [ -74.932407, 40.107566 ], [ -74.932346, 40.107585 ], [ -74.931913, 40.107769 ], [ -74.9318, 40.107768 ], [ -74.929715, 40.108714 ], [ -74.928649, 40.109251 ], [ -74.928611, 40.109307 ], [ -74.927393, 40.10987 ], [ -74.926808, 40.110144 ], [ -74.926292, 40.10949 ], [ -74.926238, 40.109427 ], [ -74.926191, 40.109378 ], [ -74.926143, 40.109341 ], [ -74.926097, 40.109311 ], [ -74.926031, 40.109276 ], [ -74.925977, 40.109252 ], [ -74.925906, 40.109227 ], [ -74.925825, 40.109201 ], [ -74.925445, 40.109107 ], [ -74.924957, 40.109006 ], [ -74.924313, 40.108875 ], [ -74.924036, 40.108824 ], [ -74.92362, 40.108758 ], [ -74.923099, 40.108681 ], [ -74.920966, 40.108367 ], [ -74.920865, 40.108346 ], [ -74.920771, 40.108317 ], [ -74.920705, 40.10829 ], [ -74.920649, 40.108259 ], [ -74.920593, 40.108221 ], [ -74.920538, 40.108177 ], [ -74.920493, 40.108126 ], [ -74.92047, 40.108087 ], [ -74.920445, 40.108049 ], [ -74.920425, 40.108008 ], [ -74.920412, 40.107962 ], [ -74.920403, 40.107903 ], [ -74.920412, 40.10783 ], [ -74.92043, 40.107751 ], [ -74.920835, 40.106212 ], [ -74.921782, 40.106347 ], [ -74.922963, 40.106505 ], [ -74.923983, 40.106634 ], [ -74.924241, 40.106666 ], [ -74.924585, 40.106716 ], [ -74.924953, 40.106778 ], [ -74.925501, 40.106871 ], [ -74.925786, 40.106924 ], [ -74.925998, 40.106967 ], [ -74.926019, 40.106973 ], [ -74.927718, 40.107378 ], [ -74.928739, 40.107616 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307168", "route_id": "129" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.9647, 40.087999 ], [ -74.96511, 40.08805 ], [ -74.965619, 40.088109 ], [ -74.965579, 40.08821 ], [ -74.965529, 40.08832 ], [ -74.96546, 40.088449 ], [ -74.965359, 40.088609 ], [ -74.965259, 40.08875 ], [ -74.964949, 40.08921 ], [ -74.96484, 40.089339 ], [ -74.9647, 40.08956 ], [ -74.964639, 40.08969 ], [ -74.964599, 40.089809 ], [ -74.96457, 40.08994 ], [ -74.96456, 40.09005 ], [ -74.96457, 40.0902 ], [ -74.96461, 40.090449 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95791, 40.098009 ], [ -74.95773, 40.09822 ], [ -74.957439, 40.098529 ], [ -74.95696, 40.09896 ], [ -74.956799, 40.09911 ], [ -74.956629, 40.099269 ], [ -74.95647, 40.09941 ], [ -74.956129, 40.099709 ], [ -74.95607, 40.09976 ], [ -74.955639, 40.100149 ], [ -74.95547, 40.1003 ], [ -74.955309, 40.100439 ], [ -74.95511, 40.100609 ], [ -74.95493, 40.100759 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.950909, 40.10471 ], [ -74.95071, 40.104899 ], [ -74.950459, 40.105119 ], [ -74.950359, 40.105209 ], [ -74.95012, 40.105439 ], [ -74.949869, 40.10568 ], [ -74.94962, 40.105919 ], [ -74.94953, 40.106009 ], [ -74.94932, 40.106199 ], [ -74.949099, 40.10642 ], [ -74.948799, 40.106719 ], [ -74.9481, 40.1074 ], [ -74.947939, 40.107549 ], [ -74.947529, 40.10795 ], [ -74.947349, 40.10813 ], [ -74.947229, 40.108249 ], [ -74.947089, 40.10838 ], [ -74.946999, 40.10847 ], [ -74.946509, 40.108959 ], [ -74.94598, 40.10948 ], [ -74.945779, 40.109669 ], [ -74.945549, 40.10999 ], [ -74.945409, 40.110239 ], [ -74.945009, 40.110969 ], [ -74.944869, 40.11091 ], [ -74.94293, 40.110299 ], [ -74.942449, 40.11017 ], [ -74.9422, 40.1101 ], [ -74.94193, 40.11002 ], [ -74.941319, 40.109849 ], [ -74.94102, 40.109759 ], [ -74.939659, 40.109409 ], [ -74.9387, 40.109159 ], [ -74.938089, 40.108989 ], [ -74.93789, 40.10894 ], [ -74.93775, 40.10891 ], [ -74.93752, 40.10885 ], [ -74.93744, 40.10883 ], [ -74.93676, 40.10865 ], [ -74.9364, 40.10855 ], [ -74.936049, 40.108449 ], [ -74.9359, 40.1084 ], [ -74.93582, 40.10838 ], [ -74.93481, 40.1081 ], [ -74.9342, 40.10793 ], [ -74.93378, 40.107819 ], [ -74.933629, 40.10778 ], [ -74.93342, 40.107729 ], [ -74.9328, 40.10759 ], [ -74.93262, 40.10756 ], [ -74.932509, 40.10757 ], [ -74.932409, 40.10759 ], [ -74.932269, 40.107639 ], [ -74.93185, 40.107819 ], [ -74.9315, 40.107979 ], [ -74.93135, 40.10805 ], [ -74.930929, 40.108239 ], [ -74.930789, 40.1083 ], [ -74.93077, 40.10831 ], [ -74.930489, 40.108439 ], [ -74.929769, 40.108789 ], [ -74.92929, 40.10902 ], [ -74.92879, 40.109259 ], [ -74.928759, 40.10927 ], [ -74.928449, 40.109409 ], [ -74.9283, 40.10948 ], [ -74.928139, 40.10956 ], [ -74.92784, 40.109699 ], [ -74.927739, 40.10974 ], [ -74.927549, 40.10983 ], [ -74.926789, 40.11018 ], [ -74.926609, 40.109939 ], [ -74.92637, 40.10963 ], [ -74.92626, 40.109499 ], [ -74.92617, 40.109409 ], [ -74.926069, 40.109309 ], [ -74.92592, 40.109259 ], [ -74.925749, 40.1092 ], [ -74.92556, 40.109159 ], [ -74.925339, 40.10911 ], [ -74.92518, 40.109069 ], [ -74.925079, 40.109049 ], [ -74.92469, 40.108959 ], [ -74.924579, 40.10893 ], [ -74.924449, 40.10891 ], [ -74.92419, 40.10886 ], [ -74.92407, 40.10884 ], [ -74.92393, 40.10882 ], [ -74.92366, 40.10877 ], [ -74.923509, 40.10875 ], [ -74.92308, 40.108689 ], [ -74.922909, 40.10866 ], [ -74.922649, 40.108619 ], [ -74.922339, 40.10856 ], [ -74.92221, 40.10855 ], [ -74.92191, 40.108509 ], [ -74.92173, 40.10848 ], [ -74.92159, 40.10846 ], [ -74.921399, 40.108429 ], [ -74.921289, 40.10841 ], [ -74.92123, 40.1084 ], [ -74.92106, 40.10839 ], [ -74.920989, 40.10838 ], [ -74.92083, 40.108349 ], [ -74.920569, 40.108239 ], [ -74.920449, 40.108079 ], [ -74.920439, 40.10802 ], [ -74.920409, 40.107909 ], [ -74.920409, 40.107789 ], [ -74.920539, 40.107259 ], [ -74.92056, 40.107169 ], [ -74.92065, 40.106809 ], [ -74.920679, 40.10667 ], [ -74.92073, 40.10648 ], [ -74.92079, 40.10621 ], [ -74.921669, 40.10633 ], [ -74.922059, 40.10639 ], [ -74.92223, 40.10641 ], [ -74.92245, 40.106439 ], [ -74.922599, 40.106459 ], [ -74.922779, 40.10648 ], [ -74.922969, 40.10651 ], [ -74.92304, 40.106519 ], [ -74.92313, 40.106529 ], [ -74.9233, 40.106559 ], [ -74.923539, 40.10659 ], [ -74.923779, 40.106619 ], [ -74.92383, 40.106629 ], [ -74.92421, 40.10668 ], [ -74.92451, 40.106739 ], [ -74.924619, 40.10676 ], [ -74.92488, 40.106799 ], [ -74.92506, 40.106829 ], [ -74.92564, 40.10694 ], [ -74.92573, 40.10696 ], [ -74.92595, 40.107009 ], [ -74.926059, 40.10703 ], [ -74.92631, 40.107089 ], [ -74.9264, 40.10711 ], [ -74.926479, 40.10713 ], [ -74.92659, 40.10715 ], [ -74.927559, 40.107369 ], [ -74.927919, 40.107449 ], [ -74.928599, 40.1076 ], [ -74.92906, 40.107699 ], [ -74.92861, 40.106989 ], [ -74.928449, 40.10675 ], [ -74.928129, 40.106249 ], [ -74.927909, 40.105889 ], [ -74.927859, 40.105819 ], [ -74.92767, 40.10552 ], [ -74.927509, 40.105269 ], [ -74.927419, 40.105119 ], [ -74.92731, 40.104929 ], [ -74.927229, 40.10479 ], [ -74.92708, 40.10454 ], [ -74.926879, 40.10423 ], [ -74.9268, 40.10405 ], [ -74.926749, 40.10396 ], [ -74.92663, 40.103759 ], [ -74.926059, 40.10283 ], [ -74.925889, 40.10255 ], [ -74.92551, 40.10192 ], [ -74.92529, 40.101569 ], [ -74.92518, 40.101409 ], [ -74.92491, 40.10108 ], [ -74.924319, 40.10036 ], [ -74.92295, 40.09867 ], [ -74.922789, 40.098549 ], [ -74.922559, 40.098459 ], [ -74.922429, 40.09841 ], [ -74.92141, 40.09803 ], [ -74.921259, 40.097979 ], [ -74.92114, 40.09794 ], [ -74.920979, 40.09788 ], [ -74.92037, 40.09766 ], [ -74.92011, 40.09803 ], [ -74.92006, 40.09811 ], [ -74.919849, 40.09841 ], [ -74.91935, 40.09912 ], [ -74.91929, 40.09921 ], [ -74.91921, 40.09932 ], [ -74.919149, 40.09941 ], [ -74.91888, 40.099809 ], [ -74.91844, 40.10048 ], [ -74.918099, 40.10099 ], [ -74.91776, 40.101499 ], [ -74.917599, 40.101749 ], [ -74.91727, 40.10225 ], [ -74.916789, 40.102959 ], [ -74.91637, 40.103579 ], [ -74.91618, 40.103859 ], [ -74.91605, 40.10406 ], [ -74.915499, 40.10489 ], [ -74.91542, 40.105009 ], [ -74.91525, 40.105269 ], [ -74.91521, 40.10533 ], [ -74.91488, 40.105819 ], [ -74.9142, 40.106829 ], [ -74.91413, 40.10695 ], [ -74.914049, 40.107069 ], [ -74.91349, 40.10794 ], [ -74.91322, 40.108359 ], [ -74.912969, 40.10874 ], [ -74.912749, 40.109079 ], [ -74.912289, 40.109799 ], [ -74.911799, 40.110569 ], [ -74.91165, 40.11081 ], [ -74.9112, 40.111509 ], [ -74.910869, 40.112029 ], [ -74.91029, 40.112919 ], [ -74.90998, 40.113379 ], [ -74.9097, 40.11379 ], [ -74.90898, 40.11485 ], [ -74.90863, 40.115359 ], [ -74.908149, 40.116099 ], [ -74.907849, 40.116629 ], [ -74.90763, 40.11701 ], [ -74.907309, 40.117619 ], [ -74.90706, 40.118149 ], [ -74.90687, 40.11854 ], [ -74.906409, 40.119489 ], [ -74.906259, 40.1198 ], [ -74.906049, 40.120229 ], [ -74.905819, 40.120689 ], [ -74.90565, 40.121029 ], [ -74.905459, 40.12142 ], [ -74.90529, 40.121739 ], [ -74.904959, 40.12241 ], [ -74.904639, 40.12306 ], [ -74.90453, 40.123289 ], [ -74.904339, 40.12368 ], [ -74.90387, 40.123619 ], [ -74.90382, 40.12361 ], [ -74.903519, 40.12358 ], [ -74.903389, 40.123569 ], [ -74.90319, 40.123559 ], [ -74.903029, 40.123559 ], [ -74.90278, 40.123569 ], [ -74.902569, 40.12358 ], [ -74.90233, 40.1236 ], [ -74.901819, 40.123649 ], [ -74.901589, 40.12367 ], [ -74.90125, 40.123719 ], [ -74.90102, 40.123749 ], [ -74.90075, 40.12379 ], [ -74.900379, 40.12386 ], [ -74.899969, 40.12396 ], [ -74.90004, 40.123649 ], [ -74.90009, 40.12351 ], [ -74.90016, 40.12331 ], [ -74.900279, 40.122999 ], [ -74.90034, 40.12286 ], [ -74.90129, 40.120399 ], [ -74.90157, 40.119689 ], [ -74.901729, 40.119309 ], [ -74.90198, 40.11891 ], [ -74.902079, 40.11873 ], [ -74.90261, 40.11748 ], [ -74.9027, 40.117439 ], [ -74.902719, 40.11714 ], [ -74.90274, 40.116789 ], [ -74.90273, 40.116629 ], [ -74.902669, 40.116269 ], [ -74.90261, 40.116069 ], [ -74.90247, 40.115619 ], [ -74.902399, 40.1154 ], [ -74.902359, 40.115259 ], [ -74.90216, 40.11467 ], [ -74.902139, 40.1145 ], [ -74.9022, 40.11377 ], [ -74.90252, 40.11199 ], [ -74.90255, 40.111689 ], [ -74.90255, 40.11138 ], [ -74.902529, 40.11102 ], [ -74.902489, 40.110749 ], [ -74.90238, 40.110239 ], [ -74.90107, 40.11044 ], [ -74.900739, 40.110499 ], [ -74.900589, 40.11053 ], [ -74.900149, 40.110659 ], [ -74.89973, 40.1108 ], [ -74.899509, 40.11092 ], [ -74.89935, 40.11108 ], [ -74.899249, 40.11126 ], [ -74.89923, 40.11134 ], [ -74.89922, 40.11138 ], [ -74.89922, 40.11152 ], [ -74.89922, 40.11155 ], [ -74.899249, 40.111679 ], [ -74.89931, 40.1118 ], [ -74.89941, 40.111959 ], [ -74.90012, 40.112949 ], [ -74.90018, 40.11305 ], [ -74.900239, 40.11318 ], [ -74.90025, 40.113289 ], [ -74.900229, 40.113399 ], [ -74.900189, 40.113489 ], [ -74.90012, 40.113579 ], [ -74.90008, 40.11362 ], [ -74.900009, 40.113669 ], [ -74.899739, 40.1138 ], [ -74.897309, 40.114799 ], [ -74.89742, 40.11494 ], [ -74.89769, 40.115279 ], [ -74.89739, 40.1154 ], [ -74.89712, 40.11551 ], [ -74.89652, 40.11576 ], [ -74.895609, 40.11614 ], [ -74.89536, 40.11624 ], [ -74.89481, 40.11647 ], [ -74.894519, 40.1166 ], [ -74.894129, 40.11677 ], [ -74.89405, 40.11684 ], [ -74.89401, 40.116879 ], [ -74.89396, 40.11692 ], [ -74.893859, 40.11711 ], [ -74.89383, 40.117329 ], [ -74.89388, 40.117539 ], [ -74.89419, 40.118059 ], [ -74.893479, 40.118349 ], [ -74.893179, 40.11847 ], [ -74.892949, 40.11857 ], [ -74.892309, 40.11883 ], [ -74.89206, 40.11893 ], [ -74.891049, 40.11935 ], [ -74.890959, 40.119389 ], [ -74.889839, 40.119849 ], [ -74.88837, 40.12047 ], [ -74.888169, 40.12056 ], [ -74.88789, 40.120669 ], [ -74.88776, 40.12073 ], [ -74.88618, 40.12134 ], [ -74.885919, 40.12145 ], [ -74.885749, 40.12152 ], [ -74.88551, 40.12101 ], [ -74.885339, 40.12063 ], [ -74.884979, 40.11981 ], [ -74.884889, 40.119599 ], [ -74.884349, 40.11837 ], [ -74.884769, 40.118249 ], [ -74.885199, 40.11812 ], [ -74.885339, 40.118049 ], [ -74.885489, 40.117979 ], [ -74.88555, 40.11794 ], [ -74.88569, 40.11785 ], [ -74.885839, 40.11768 ], [ -74.88591, 40.11759 ], [ -74.885969, 40.1175 ], [ -74.885979, 40.11747 ], [ -74.88608, 40.117259 ], [ -74.886249, 40.116819 ], [ -74.886299, 40.11669 ], [ -74.886429, 40.116349 ], [ -74.88662, 40.11588 ], [ -74.886739, 40.115559 ], [ -74.886749, 40.115469 ], [ -74.886779, 40.115259 ], [ -74.886749, 40.115109 ], [ -74.886689, 40.11495 ], [ -74.88667, 40.114899 ], [ -74.886609, 40.114809 ], [ -74.886469, 40.11467 ], [ -74.886369, 40.114569 ], [ -74.88618, 40.114449 ], [ -74.885939, 40.114349 ], [ -74.885849, 40.11433 ], [ -74.885649, 40.114279 ], [ -74.88532, 40.114269 ], [ -74.8851, 40.114289 ], [ -74.884889, 40.114349 ], [ -74.88461, 40.114449 ], [ -74.88437, 40.114649 ], [ -74.884309, 40.114709 ], [ -74.884169, 40.11486 ], [ -74.88415, 40.114899 ], [ -74.88411, 40.11497 ], [ -74.884049, 40.115079 ], [ -74.883959, 40.115279 ], [ -74.883729, 40.115909 ], [ -74.88366, 40.116099 ], [ -74.883499, 40.116539 ], [ -74.883459, 40.116629 ], [ -74.8833, 40.11703 ], [ -74.882729, 40.116899 ], [ -74.881969, 40.11676 ], [ -74.88162, 40.11674 ], [ -74.881509, 40.11674 ], [ -74.881339, 40.11666 ], [ -74.88128, 40.116619 ], [ -74.881119, 40.116459 ], [ -74.881029, 40.116359 ], [ -74.88099, 40.11603 ], [ -74.880979, 40.11597 ], [ -74.880889, 40.1155 ], [ -74.880709, 40.114999 ], [ -74.88064, 40.114819 ], [ -74.880579, 40.114659 ], [ -74.880439, 40.114289 ], [ -74.879989, 40.113209 ], [ -74.879809, 40.11281 ], [ -74.87957, 40.11234 ], [ -74.87937, 40.111959 ], [ -74.879309, 40.11183 ], [ -74.879219, 40.11165 ], [ -74.879039, 40.11127 ], [ -74.87852, 40.111409 ], [ -74.878049, 40.11153 ], [ -74.87771, 40.11081 ], [ -74.877459, 40.11026 ], [ -74.87723, 40.110329 ], [ -74.877029, 40.110389 ], [ -74.87727, 40.11091 ], [ -74.87767, 40.111679 ], [ -74.877869, 40.111599 ], [ -74.87799, 40.11155 ], [ -74.878049, 40.11153 ], [ -74.87852, 40.111409 ], [ -74.879039, 40.11127 ], [ -74.87879, 40.11072 ], [ -74.878729, 40.110589 ], [ -74.87866, 40.11044 ], [ -74.87857, 40.11026 ], [ -74.878549, 40.110229 ], [ -74.87849, 40.11011 ], [ -74.878459, 40.110039 ], [ -74.87843, 40.109979 ], [ -74.87798, 40.10902 ], [ -74.87795, 40.10895 ], [ -74.877819, 40.10867 ], [ -74.87767, 40.108329 ], [ -74.877549, 40.10811 ], [ -74.87744, 40.107879 ], [ -74.87736, 40.107719 ], [ -74.87727, 40.10751 ], [ -74.877159, 40.107279 ], [ -74.87714, 40.10724 ], [ -74.87705, 40.10704 ], [ -74.877029, 40.106989 ], [ -74.87695, 40.106809 ], [ -74.876829, 40.106559 ], [ -74.87669, 40.106279 ], [ -74.876659, 40.10621 ], [ -74.876529, 40.105929 ], [ -74.876379, 40.1056 ], [ -74.87632, 40.105469 ], [ -74.87619, 40.105199 ], [ -74.876169, 40.10516 ], [ -74.8761, 40.105019 ], [ -74.875989, 40.1048 ], [ -74.87565, 40.10409 ], [ -74.875569, 40.103919 ], [ -74.875439, 40.10363 ], [ -74.875389, 40.10352 ], [ -74.87501, 40.10265 ], [ -74.87487, 40.10227 ], [ -74.874849, 40.102219 ], [ -74.874809, 40.102129 ], [ -74.87478, 40.102039 ], [ -74.8747, 40.101789 ], [ -74.87466, 40.101669 ], [ -74.87462, 40.10153 ], [ -74.87456, 40.10128 ], [ -74.874499, 40.101 ], [ -74.87448, 40.1009 ], [ -74.874459, 40.10073 ], [ -74.87393, 40.100779 ], [ -74.873649, 40.10081 ], [ -74.87343, 40.100859 ], [ -74.87327, 40.10092 ], [ -74.87313, 40.10101 ], [ -74.873049, 40.101119 ], [ -74.872919, 40.101299 ], [ -74.872779, 40.10154 ], [ -74.872689, 40.101679 ], [ -74.87249, 40.101609 ], [ -74.872419, 40.101579 ], [ -74.87177, 40.101339 ], [ -74.871799, 40.10128 ], [ -74.871659, 40.101229 ], [ -74.87146, 40.101149 ], [ -74.87124, 40.101069 ], [ -74.871039, 40.10099 ], [ -74.87082, 40.10091 ], [ -74.87061, 40.10083 ], [ -74.87039, 40.10074 ], [ -74.87029, 40.100859 ], [ -74.87012, 40.100959 ], [ -74.869899, 40.101069 ], [ -74.869819, 40.100959 ], [ -74.86965, 40.100859 ], [ -74.86952, 40.10081 ], [ -74.869109, 40.10074 ], [ -74.86895, 40.100689 ], [ -74.868869, 40.100619 ], [ -74.868819, 40.10056 ], [ -74.86858, 40.10012 ], [ -74.868199, 40.100229 ], [ -74.86795, 40.10031 ], [ -74.867609, 40.100419 ], [ -74.86687, 40.10065 ], [ -74.86615, 40.100869 ], [ -74.86562, 40.101039 ], [ -74.865359, 40.101129 ], [ -74.865039, 40.101249 ], [ -74.86472, 40.10138 ], [ -74.86445, 40.101499 ], [ -74.86427, 40.101589 ], [ -74.86417, 40.10164 ], [ -74.864, 40.10173 ], [ -74.863959, 40.101749 ], [ -74.86389, 40.101779 ], [ -74.86373, 40.101879 ], [ -74.86358, 40.101969 ], [ -74.863329, 40.102119 ], [ -74.86319, 40.101879 ], [ -74.86314, 40.1018 ], [ -74.86309, 40.10171 ], [ -74.86304, 40.10162 ], [ -74.86301, 40.101569 ], [ -74.862929, 40.101419 ], [ -74.86286, 40.10128 ], [ -74.862789, 40.101129 ], [ -74.862759, 40.101069 ], [ -74.86255, 40.100679 ], [ -74.86192, 40.09949 ], [ -74.861859, 40.099349 ], [ -74.861799, 40.09922 ], [ -74.86147, 40.098639 ], [ -74.86116, 40.098069 ], [ -74.86103, 40.097809 ], [ -74.860769, 40.09732 ], [ -74.8607, 40.097169 ], [ -74.860639, 40.096999 ], [ -74.860469, 40.096979 ], [ -74.86031, 40.09694 ], [ -74.860149, 40.09686 ], [ -74.85995, 40.096729 ], [ -74.85986, 40.09668 ], [ -74.85967, 40.096749 ], [ -74.858829, 40.097069 ], [ -74.85868, 40.09713 ], [ -74.858479, 40.097199 ], [ -74.85787, 40.097449 ], [ -74.857539, 40.09758 ], [ -74.857259, 40.09768 ], [ -74.8571, 40.09776 ], [ -74.85678, 40.097999 ], [ -74.85635, 40.09833 ], [ -74.85617, 40.098439 ], [ -74.85606, 40.098539 ], [ -74.856089, 40.09859 ], [ -74.85611, 40.09868 ], [ -74.85611, 40.09876 ], [ -74.85606, 40.09937 ], [ -74.856039, 40.099869 ], [ -74.855999, 40.100149 ], [ -74.85594, 40.100759 ], [ -74.8559, 40.10135 ], [ -74.85585, 40.101969 ], [ -74.85584, 40.102059 ], [ -74.85584, 40.102119 ], [ -74.855729, 40.10324 ], [ -74.855679, 40.103759 ], [ -74.85563, 40.104129 ], [ -74.85563, 40.10417 ], [ -74.855599, 40.10441 ], [ -74.855589, 40.1045 ], [ -74.85558, 40.10461 ], [ -74.85557, 40.1047 ], [ -74.85557, 40.104829 ], [ -74.855509, 40.105369 ], [ -74.85544, 40.105909 ], [ -74.85536, 40.106519 ], [ -74.855289, 40.107079 ], [ -74.85527, 40.10721 ], [ -74.85521, 40.1076 ], [ -74.85516, 40.107969 ], [ -74.855139, 40.1081 ], [ -74.855109, 40.10828 ], [ -74.855059, 40.10858 ], [ -74.85504, 40.108689 ], [ -74.855009, 40.108869 ], [ -74.85494, 40.10938 ], [ -74.854869, 40.10992 ], [ -74.854839, 40.11017 ], [ -74.85476, 40.110699 ], [ -74.854659, 40.11126 ], [ -74.85463, 40.111479 ], [ -74.854599, 40.111689 ], [ -74.854559, 40.111959 ], [ -74.8545, 40.112489 ], [ -74.854479, 40.112669 ], [ -74.85444, 40.11289 ], [ -74.85441, 40.11306 ], [ -74.854379, 40.113299 ], [ -74.854329, 40.1137 ], [ -74.85428, 40.11405 ], [ -74.854149, 40.11496 ], [ -74.85404, 40.115729 ], [ -74.85401, 40.11594 ], [ -74.853979, 40.116079 ], [ -74.853979, 40.116169 ], [ -74.853929, 40.11638 ], [ -74.853849, 40.116619 ], [ -74.85372, 40.11692 ], [ -74.853489, 40.11747 ], [ -74.85342, 40.117609 ], [ -74.853249, 40.11801 ], [ -74.85315, 40.11812 ], [ -74.85306, 40.118159 ], [ -74.85247, 40.11847 ], [ -74.85216, 40.118619 ], [ -74.851099, 40.119149 ], [ -74.850559, 40.118489 ], [ -74.850299, 40.118169 ], [ -74.850099, 40.11792 ], [ -74.849649, 40.11746 ], [ -74.84954, 40.117419 ], [ -74.849389, 40.117439 ], [ -74.848769, 40.117699 ], [ -74.84825, 40.11795 ], [ -74.847849, 40.11812 ], [ -74.84756, 40.118239 ], [ -74.84693, 40.118529 ], [ -74.846769, 40.118599 ], [ -74.84663, 40.11866 ], [ -74.846379, 40.118789 ], [ -74.8463, 40.118849 ], [ -74.84617, 40.118979 ], [ -74.84609, 40.119149 ], [ -74.846059, 40.119339 ], [ -74.846379, 40.119419 ], [ -74.846559, 40.11947 ], [ -74.846909, 40.119569 ], [ -74.84721, 40.119689 ], [ -74.84742, 40.119769 ], [ -74.8477, 40.11992 ], [ -74.847949, 40.12009 ], [ -74.84816, 40.12025 ], [ -74.848399, 40.12047 ], [ -74.848439, 40.12052 ], [ -74.848769, 40.120929 ], [ -74.849, 40.121229 ], [ -74.849169, 40.12145 ], [ -74.84933, 40.121649 ], [ -74.849439, 40.12179 ], [ -74.84955, 40.121929 ], [ -74.84987, 40.122299 ], [ -74.85, 40.122479 ], [ -74.850099, 40.122639 ], [ -74.850339, 40.122929 ], [ -74.850519, 40.12316 ], [ -74.850729, 40.12342 ], [ -74.85125, 40.124099 ], [ -74.851459, 40.124379 ], [ -74.85176, 40.12478 ], [ -74.85212, 40.125249 ], [ -74.85221, 40.125369 ], [ -74.852269, 40.125449 ], [ -74.852449, 40.12568 ], [ -74.852709, 40.12602 ], [ -74.85293, 40.12632 ], [ -74.85309, 40.126529 ], [ -74.853659, 40.12727 ], [ -74.853749, 40.12739 ], [ -74.85386, 40.127529 ], [ -74.854109, 40.127889 ], [ -74.85468, 40.12864 ], [ -74.85553, 40.12971 ], [ -74.85611, 40.130399 ], [ -74.856999, 40.131479 ], [ -74.858109, 40.132819 ], [ -74.858479, 40.13324 ], [ -74.861219, 40.131379 ], [ -74.861529, 40.13117 ], [ -74.862889, 40.13025 ], [ -74.863199, 40.130029 ], [ -74.86453, 40.129139 ], [ -74.86489, 40.128879 ], [ -74.86512, 40.12872 ], [ -74.86534, 40.12857 ], [ -74.866119, 40.128029 ], [ -74.86652, 40.127769 ], [ -74.866749, 40.127619 ], [ -74.86688, 40.12774 ], [ -74.86718, 40.12808 ], [ -74.867439, 40.128389 ], [ -74.86872, 40.12982 ], [ -74.869199, 40.13037 ], [ -74.86926, 40.13044 ], [ -74.87007, 40.131359 ], [ -74.87015, 40.131449 ], [ -74.870629, 40.131999 ], [ -74.870949, 40.132369 ], [ -74.87102, 40.132449 ], [ -74.87124, 40.132739 ], [ -74.8716, 40.13325 ], [ -74.87168, 40.133359 ], [ -74.871709, 40.13341 ], [ -74.871889, 40.13369 ], [ -74.871979, 40.133809 ], [ -74.87204, 40.133889 ], [ -74.872239, 40.134169 ], [ -74.872469, 40.134459 ], [ -74.872659, 40.13468 ], [ -74.872869, 40.134979 ], [ -74.873009, 40.13513 ], [ -74.873189, 40.135329 ], [ -74.8733, 40.13547 ], [ -74.873369, 40.13557 ], [ -74.87344, 40.135679 ], [ -74.87349, 40.135769 ], [ -74.87353, 40.13585 ], [ -74.87361, 40.13601 ], [ -74.87367, 40.136139 ], [ -74.87379, 40.136409 ], [ -74.873859, 40.13655 ], [ -74.87393, 40.136689 ], [ -74.874049, 40.1369 ], [ -74.874229, 40.137319 ], [ -74.874359, 40.13764 ], [ -74.87447, 40.137939 ], [ -74.874539, 40.13818 ], [ -74.87465, 40.138599 ], [ -74.874719, 40.138959 ], [ -74.874729, 40.13901 ], [ -74.87478, 40.139389 ], [ -74.8748, 40.139749 ], [ -74.8748, 40.13989 ], [ -74.87478, 40.14026 ], [ -74.874769, 40.14035 ], [ -74.874769, 40.140399 ], [ -74.874759, 40.140559 ], [ -74.874759, 40.140639 ], [ -74.874759, 40.14071 ], [ -74.87474, 40.140909 ], [ -74.874729, 40.141099 ], [ -74.874939, 40.14095 ], [ -74.875139, 40.140819 ], [ -74.87534, 40.14069 ], [ -74.875439, 40.14062 ], [ -74.875529, 40.140559 ], [ -74.875979, 40.14025 ], [ -74.8766, 40.139829 ], [ -74.876939, 40.139579 ], [ -74.87821, 40.13872 ], [ -74.87852, 40.138509 ], [ -74.8791, 40.13811 ], [ -74.87934, 40.137939 ], [ -74.87951, 40.13782 ], [ -74.880119, 40.137399 ], [ -74.88028, 40.13729 ], [ -74.880299, 40.13727 ], [ -74.880429, 40.13718 ], [ -74.88063, 40.137039 ], [ -74.880749, 40.136959 ], [ -74.880839, 40.1369 ], [ -74.881249, 40.136619 ], [ -74.88141, 40.136509 ], [ -74.8815, 40.136439 ], [ -74.881699, 40.1363 ], [ -74.88176, 40.136259 ], [ -74.88182, 40.136219 ], [ -74.88225, 40.13592 ], [ -74.88243, 40.135799 ], [ -74.882859, 40.135509 ], [ -74.88312, 40.135329 ], [ -74.883309, 40.1352 ], [ -74.883579, 40.13502 ], [ -74.883669, 40.13495 ], [ -74.883809, 40.13485 ], [ -74.883909, 40.134789 ], [ -74.883989, 40.13474 ], [ -74.884169, 40.134619 ], [ -74.884679, 40.134269 ], [ -74.884989, 40.134069 ], [ -74.885389, 40.13379 ], [ -74.8855, 40.133709 ], [ -74.88559, 40.133649 ], [ -74.88599, 40.133379 ], [ -74.88614, 40.133269 ], [ -74.88668, 40.132909 ], [ -74.88704, 40.13267 ], [ -74.887179, 40.132569 ], [ -74.887419, 40.13241 ], [ -74.88752, 40.132349 ], [ -74.887629, 40.132269 ], [ -74.888049, 40.131989 ], [ -74.8883, 40.132279 ], [ -74.88843, 40.13243 ], [ -74.88852, 40.132529 ], [ -74.888889, 40.13298 ], [ -74.88901, 40.13313 ], [ -74.889159, 40.133369 ], [ -74.88941, 40.133739 ], [ -74.889659, 40.13412 ], [ -74.889749, 40.13432 ], [ -74.88982, 40.134529 ], [ -74.889849, 40.13475 ], [ -74.889929, 40.136429 ], [ -74.889969, 40.137119 ], [ -74.890019, 40.137579 ], [ -74.89013, 40.138209 ], [ -74.89014, 40.13828 ], [ -74.89022, 40.138589 ], [ -74.890379, 40.13906 ], [ -74.89063, 40.139759 ], [ -74.89095, 40.140849 ], [ -74.89117, 40.14149 ], [ -74.891319, 40.14196 ], [ -74.89157, 40.14275 ], [ -74.891689, 40.14311 ], [ -74.8919, 40.143619 ], [ -74.892579, 40.145039 ], [ -74.892759, 40.14546 ], [ -74.89333, 40.14693 ], [ -74.893489, 40.147399 ], [ -74.89383, 40.14837 ], [ -74.894069, 40.14906 ], [ -74.89454, 40.150019 ], [ -74.8946, 40.15013 ], [ -74.895099, 40.151019 ], [ -74.89523, 40.151259 ], [ -74.895559, 40.15185 ], [ -74.89584, 40.15232 ], [ -74.89679, 40.15402 ], [ -74.89701, 40.154319 ], [ -74.897309, 40.15473 ], [ -74.89743, 40.154889 ], [ -74.897669, 40.155219 ], [ -74.897899, 40.15553 ], [ -74.898069, 40.155759 ], [ -74.89823, 40.15598 ], [ -74.898519, 40.15638 ], [ -74.898879, 40.156869 ], [ -74.899209, 40.157209 ], [ -74.8995, 40.157379 ], [ -74.89981, 40.157489 ], [ -74.900049, 40.15754 ], [ -74.900369, 40.15761 ], [ -74.90106, 40.157749 ], [ -74.901629, 40.15788 ], [ -74.90206, 40.15796 ], [ -74.90269, 40.15806 ], [ -74.903169, 40.158129 ], [ -74.903699, 40.158179 ], [ -74.904239, 40.15823 ], [ -74.90475, 40.158279 ], [ -74.905319, 40.15833 ], [ -74.9058, 40.158379 ], [ -74.9066, 40.15843 ], [ -74.90701, 40.158449 ], [ -74.90747, 40.15844 ], [ -74.90765, 40.15843 ], [ -74.90827, 40.15842 ], [ -74.90853, 40.15841 ], [ -74.90958, 40.158379 ], [ -74.909909, 40.15843 ], [ -74.91012, 40.1585 ], [ -74.910309, 40.15861 ], [ -74.910729, 40.15895 ], [ -74.91079, 40.158999 ], [ -74.910939, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.910849, 40.15944 ], [ -74.91075, 40.15952 ], [ -74.9107, 40.15959 ], [ -74.91066, 40.159629 ], [ -74.91056, 40.159749 ], [ -74.910509, 40.159809 ], [ -74.910449, 40.159909 ], [ -74.910399, 40.159989 ], [ -74.910369, 40.16003 ], [ -74.910319, 40.16012 ], [ -74.91016, 40.160369 ], [ -74.910089, 40.16048 ], [ -74.91003, 40.16057 ], [ -74.909919, 40.160739 ], [ -74.909679, 40.16103 ], [ -74.90953, 40.161179 ], [ -74.909289, 40.161339 ], [ -74.9089, 40.161539 ], [ -74.9088, 40.16159 ], [ -74.908509, 40.161729 ], [ -74.908299, 40.16183 ], [ -74.908069, 40.16195 ], [ -74.907849, 40.162059 ], [ -74.90772, 40.16213 ], [ -74.907519, 40.162229 ], [ -74.907429, 40.162269 ], [ -74.907349, 40.16231 ], [ -74.907249, 40.162359 ], [ -74.90705, 40.162449 ], [ -74.906979, 40.16248 ], [ -74.906589, 40.162679 ], [ -74.90639, 40.162779 ], [ -74.906269, 40.16283 ], [ -74.90619, 40.162869 ], [ -74.90601, 40.162959 ], [ -74.90584, 40.163039 ], [ -74.905639, 40.163139 ], [ -74.905419, 40.163249 ], [ -74.905229, 40.163349 ], [ -74.905139, 40.16339 ], [ -74.905009, 40.16346 ], [ -74.904919, 40.163499 ], [ -74.90468, 40.16363 ], [ -74.904609, 40.16366 ], [ -74.90418, 40.163869 ], [ -74.904019, 40.16394 ], [ -74.903879, 40.16401 ], [ -74.90372, 40.16408 ], [ -74.90364, 40.16412 ], [ -74.903559, 40.164159 ], [ -74.903399, 40.164239 ], [ -74.90336, 40.16426 ], [ -74.903129, 40.16437 ], [ -74.902939, 40.16446 ], [ -74.90278, 40.16454 ], [ -74.902479, 40.164679 ], [ -74.902439, 40.164699 ], [ -74.902359, 40.16474 ], [ -74.90215, 40.16484 ], [ -74.90193, 40.164949 ], [ -74.90116, 40.165309 ], [ -74.900549, 40.16561 ], [ -74.900229, 40.165769 ], [ -74.900139, 40.16582 ], [ -74.89991, 40.165949 ], [ -74.899869, 40.16597 ], [ -74.89908, 40.16635 ], [ -74.899, 40.166389 ], [ -74.8989, 40.16644 ], [ -74.898669, 40.166559 ], [ -74.89829, 40.166749 ], [ -74.89815, 40.166819 ], [ -74.897759, 40.167019 ], [ -74.89737, 40.167209 ], [ -74.896949, 40.16743 ], [ -74.896869, 40.167479 ], [ -74.89676, 40.167549 ], [ -74.896689, 40.1676 ], [ -74.896599, 40.167659 ], [ -74.896499, 40.167729 ], [ -74.896449, 40.16777 ], [ -74.89635, 40.16786 ], [ -74.8963, 40.167899 ], [ -74.8958, 40.168289 ], [ -74.8955, 40.16852 ], [ -74.89508, 40.16885 ], [ -74.894669, 40.169169 ], [ -74.894339, 40.16943 ], [ -74.893989, 40.169709 ], [ -74.893569, 40.17003 ], [ -74.89333, 40.17023 ], [ -74.892819, 40.170639 ], [ -74.89243, 40.17095 ], [ -74.89194, 40.171339 ], [ -74.891769, 40.17148 ], [ -74.891409, 40.17176 ], [ -74.89091, 40.172149 ], [ -74.89067, 40.172339 ], [ -74.890479, 40.172499 ], [ -74.89018, 40.17273 ], [ -74.889619, 40.17317 ], [ -74.88892, 40.17372 ], [ -74.88873, 40.173869 ], [ -74.88834, 40.17418 ], [ -74.88797, 40.17446 ], [ -74.88757, 40.17479 ], [ -74.88739, 40.174929 ], [ -74.887099, 40.17516 ], [ -74.886729, 40.17545 ], [ -74.886649, 40.17551 ], [ -74.88653, 40.1756 ], [ -74.88608, 40.175939 ], [ -74.88595, 40.176039 ], [ -74.885619, 40.176289 ], [ -74.885529, 40.17635 ], [ -74.885429, 40.17641 ], [ -74.88533, 40.176469 ], [ -74.88519, 40.176539 ], [ -74.88479, 40.176729 ], [ -74.884259, 40.176939 ], [ -74.884039, 40.17704 ], [ -74.88384, 40.17713 ], [ -74.883449, 40.17731 ], [ -74.88329, 40.177379 ], [ -74.882829, 40.17758 ], [ -74.88267, 40.177649 ], [ -74.882559, 40.17767 ], [ -74.882509, 40.17768 ], [ -74.882469, 40.17769 ], [ -74.8824, 40.17771 ], [ -74.88234, 40.177729 ], [ -74.882289, 40.177749 ], [ -74.88217, 40.1778 ], [ -74.88176, 40.177989 ], [ -74.88145, 40.17814 ], [ -74.88091, 40.178379 ], [ -74.880799, 40.178439 ], [ -74.88056, 40.17858 ], [ -74.88014, 40.17875 ], [ -74.879899, 40.17884 ], [ -74.879809, 40.17888 ], [ -74.879589, 40.17895 ], [ -74.87934, 40.17902 ], [ -74.87911, 40.179069 ], [ -74.87857, 40.179159 ], [ -74.87834, 40.179069 ], [ -74.878229, 40.179009 ], [ -74.87816, 40.178979 ], [ -74.87799, 40.178899 ], [ -74.877829, 40.17888 ], [ -74.877689, 40.17888 ], [ -74.877599, 40.178919 ], [ -74.877519, 40.178989 ], [ -74.877469, 40.17906 ], [ -74.877459, 40.17913 ], [ -74.877459, 40.17922 ], [ -74.877459, 40.17931 ], [ -74.877469, 40.179439 ], [ -74.877609, 40.179969 ], [ -74.87763, 40.180049 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307170", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981679, 40.064059 ], [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.96443, 40.0883 ], [ -74.96438, 40.088449 ], [ -74.964309, 40.0886 ], [ -74.964219, 40.08876 ], [ -74.964149, 40.088909 ], [ -74.96408, 40.089089 ], [ -74.96398, 40.089259 ], [ -74.9638, 40.08966 ], [ -74.963699, 40.089999 ], [ -74.963649, 40.090339 ], [ -74.963639, 40.0905 ], [ -74.96362, 40.09083 ], [ -74.96376, 40.09082 ], [ -74.963999, 40.09083 ], [ -74.964139, 40.09083 ], [ -74.964309, 40.09082 ], [ -74.964489, 40.090789 ], [ -74.96462, 40.09075 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95832, 40.09803 ], [ -74.958829, 40.09833 ], [ -74.959359, 40.09865 ], [ -74.959599, 40.098799 ], [ -74.96011, 40.09912 ], [ -74.96021, 40.099179 ], [ -74.96038, 40.09929 ], [ -74.960049, 40.099599 ], [ -74.95992, 40.09973 ], [ -74.959639, 40.1 ], [ -74.95953, 40.10011 ], [ -74.95943, 40.10021 ], [ -74.959329, 40.1003 ], [ -74.95836, 40.10119 ], [ -74.958149, 40.101389 ], [ -74.957979, 40.10154 ], [ -74.957829, 40.101689 ], [ -74.95733, 40.10219 ], [ -74.95719, 40.102329 ], [ -74.95683, 40.10217 ], [ -74.956179, 40.101869 ], [ -74.955499, 40.101579 ], [ -74.955359, 40.101509 ], [ -74.955219, 40.10144 ], [ -74.95508, 40.10136 ], [ -74.954829, 40.101239 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.951089, 40.104579 ], [ -74.95101, 40.10471 ], [ -74.95093, 40.104839 ], [ -74.950909, 40.104899 ], [ -74.950899, 40.104989 ], [ -74.950899, 40.105099 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957349, 40.11459 ], [ -74.9574, 40.114639 ], [ -74.95763, 40.114929 ], [ -74.957699, 40.11503 ], [ -74.95778, 40.11514 ], [ -74.957889, 40.1153 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307171", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.96443, 40.0883 ], [ -74.96438, 40.088449 ], [ -74.964309, 40.0886 ], [ -74.964219, 40.08876 ], [ -74.964149, 40.088909 ], [ -74.96408, 40.089089 ], [ -74.96398, 40.089259 ], [ -74.9638, 40.08966 ], [ -74.963699, 40.089999 ], [ -74.963649, 40.090339 ], [ -74.963639, 40.0905 ], [ -74.96362, 40.09083 ], [ -74.96376, 40.09082 ], [ -74.963999, 40.09083 ], [ -74.964139, 40.09083 ], [ -74.964309, 40.09082 ], [ -74.964489, 40.090789 ], [ -74.96462, 40.09075 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95832, 40.09803 ], [ -74.958829, 40.09833 ], [ -74.959359, 40.09865 ], [ -74.959599, 40.098799 ], [ -74.96011, 40.09912 ], [ -74.96021, 40.099179 ], [ -74.96038, 40.09929 ], [ -74.960049, 40.099599 ], [ -74.95992, 40.09973 ], [ -74.959639, 40.1 ], [ -74.95953, 40.10011 ], [ -74.95943, 40.10021 ], [ -74.959329, 40.1003 ], [ -74.95836, 40.10119 ], [ -74.958149, 40.101389 ], [ -74.957979, 40.10154 ], [ -74.957829, 40.101689 ], [ -74.95733, 40.10219 ], [ -74.95719, 40.102329 ], [ -74.95683, 40.10217 ], [ -74.956179, 40.101869 ], [ -74.955499, 40.101579 ], [ -74.955359, 40.101509 ], [ -74.955219, 40.10144 ], [ -74.95508, 40.10136 ], [ -74.954829, 40.101239 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.951089, 40.104579 ], [ -74.95101, 40.10471 ], [ -74.95093, 40.104839 ], [ -74.950909, 40.104899 ], [ -74.950899, 40.104989 ], [ -74.950899, 40.105099 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957349, 40.11459 ], [ -74.9574, 40.114639 ], [ -74.95763, 40.114929 ], [ -74.957699, 40.11503 ], [ -74.95778, 40.11514 ], [ -74.957889, 40.1153 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.96984, 40.13771 ], [ -74.96912, 40.138399 ], [ -74.96849, 40.13899 ], [ -74.96727, 40.140119 ], [ -74.96672, 40.140639 ], [ -74.96654, 40.140809 ], [ -74.96633, 40.140989 ], [ -74.96587, 40.14141 ], [ -74.96552, 40.141709 ], [ -74.965299, 40.14176 ], [ -74.965119, 40.14176 ], [ -74.964989, 40.141709 ], [ -74.964809, 40.141639 ], [ -74.964359, 40.1414 ], [ -74.963789, 40.141099 ], [ -74.96331, 40.140849 ], [ -74.96258, 40.14043 ], [ -74.96237, 40.140289 ], [ -74.96223, 40.140199 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13888 ], [ -74.94743, 40.138939 ], [ -74.9472, 40.139049 ], [ -74.945869, 40.13971 ], [ -74.94473, 40.140279 ], [ -74.94426, 40.14051 ], [ -74.942809, 40.14124 ], [ -74.9426, 40.14134 ], [ -74.94201, 40.141639 ], [ -74.94049, 40.14243 ], [ -74.93963, 40.14285 ], [ -74.93847, 40.14342 ], [ -74.935929, 40.14467 ], [ -74.93581, 40.14474 ], [ -74.93553, 40.144859 ], [ -74.93483, 40.145169 ], [ -74.934709, 40.145219 ], [ -74.93442, 40.1453 ], [ -74.934219, 40.145319 ], [ -74.9341, 40.145319 ], [ -74.93392, 40.14528 ], [ -74.93382, 40.145239 ], [ -74.933719, 40.14518 ], [ -74.933579, 40.145069 ], [ -74.933539, 40.145039 ], [ -74.93334, 40.144789 ], [ -74.93306, 40.144429 ], [ -74.932599, 40.14385 ], [ -74.93252, 40.14375 ], [ -74.93244, 40.143639 ], [ -74.931919, 40.142899 ], [ -74.931729, 40.14261 ], [ -74.93132, 40.142089 ], [ -74.931069, 40.14177 ], [ -74.930379, 40.140849 ], [ -74.92947, 40.139569 ], [ -74.929399, 40.139479 ], [ -74.928589, 40.138399 ], [ -74.927549, 40.136949 ], [ -74.927409, 40.136779 ], [ -74.92682, 40.135899 ], [ -74.926559, 40.13556 ], [ -74.92596, 40.134709 ], [ -74.925169, 40.13359 ], [ -74.925029, 40.13339 ], [ -74.92493, 40.13324 ], [ -74.9246, 40.13276 ], [ -74.92443, 40.1325 ], [ -74.924259, 40.13225 ], [ -74.92411, 40.132029 ], [ -74.923819, 40.131629 ], [ -74.92371, 40.131469 ], [ -74.923449, 40.131119 ], [ -74.923409, 40.13106 ], [ -74.92317, 40.13072 ], [ -74.92308, 40.130589 ], [ -74.92302, 40.13051 ], [ -74.922869, 40.130289 ], [ -74.92276, 40.130129 ], [ -74.922649, 40.129959 ], [ -74.92244, 40.13027 ], [ -74.922279, 40.13052 ], [ -74.92223, 40.1306 ], [ -74.922, 40.130949 ], [ -74.921919, 40.13107 ], [ -74.921699, 40.13141 ], [ -74.9216, 40.131539 ], [ -74.92151, 40.131649 ], [ -74.920979, 40.13222 ], [ -74.920709, 40.1325 ], [ -74.920529, 40.13269 ], [ -74.92047, 40.13276 ], [ -74.920049, 40.13321 ], [ -74.9197, 40.13358 ], [ -74.91953, 40.13376 ], [ -74.919409, 40.13388 ], [ -74.91907, 40.134249 ], [ -74.918769, 40.13458 ], [ -74.91816, 40.13523 ], [ -74.917479, 40.135949 ], [ -74.91583, 40.13772 ], [ -74.915049, 40.13855 ], [ -74.91479, 40.13883 ], [ -74.914539, 40.13909 ], [ -74.91439, 40.13924 ], [ -74.91394, 40.13973 ], [ -74.913739, 40.139949 ], [ -74.91359, 40.140119 ], [ -74.913469, 40.140269 ], [ -74.913329, 40.14044 ], [ -74.91299, 40.14086 ], [ -74.912759, 40.14116 ], [ -74.912569, 40.14141 ], [ -74.912299, 40.1418 ], [ -74.91209, 40.142079 ], [ -74.912019, 40.142179 ], [ -74.91191, 40.14233 ], [ -74.911719, 40.142539 ], [ -74.912029, 40.14275 ], [ -74.91214, 40.14286 ], [ -74.91223, 40.14297 ], [ -74.912349, 40.14315 ], [ -74.91241, 40.14324 ], [ -74.91246, 40.14333 ], [ -74.912489, 40.1434 ], [ -74.91268, 40.14377 ], [ -74.912829, 40.14404 ], [ -74.91282, 40.144269 ], [ -74.91273, 40.14511 ], [ -74.91268, 40.145529 ], [ -74.91245, 40.14754 ], [ -74.91241, 40.14788 ], [ -74.912389, 40.14808 ], [ -74.912349, 40.14846 ], [ -74.912289, 40.14898 ], [ -74.91214, 40.15033 ], [ -74.912069, 40.150929 ], [ -74.912019, 40.1513 ], [ -74.911989, 40.151549 ], [ -74.91188, 40.15249 ], [ -74.91179, 40.153249 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.15365 ], [ -74.91182, 40.15411 ], [ -74.91183, 40.154309 ], [ -74.91187, 40.155069 ], [ -74.91187, 40.15511 ], [ -74.91192, 40.15584 ], [ -74.911939, 40.15609 ], [ -74.91196, 40.156419 ], [ -74.911989, 40.157109 ], [ -74.91201, 40.157489 ], [ -74.912019, 40.15772 ], [ -74.912029, 40.157909 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.158179 ], [ -74.91205, 40.158359 ], [ -74.912069, 40.15868 ], [ -74.912079, 40.158729 ], [ -74.912079, 40.15887 ], [ -74.912109, 40.15931 ], [ -74.912119, 40.15988 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.917559, 40.176839 ], [ -74.91763, 40.177029 ], [ -74.917659, 40.17714 ], [ -74.91767, 40.17717 ], [ -74.917689, 40.17726 ], [ -74.917739, 40.17742 ], [ -74.917749, 40.177449 ], [ -74.91776, 40.17749 ], [ -74.91786, 40.17788 ], [ -74.91795, 40.17821 ], [ -74.917959, 40.178259 ], [ -74.918, 40.17839 ], [ -74.918009, 40.17843 ], [ -74.91803, 40.17852 ], [ -74.918109, 40.17886 ], [ -74.918189, 40.17915 ], [ -74.91821, 40.17924 ], [ -74.91825, 40.17938 ], [ -74.91831, 40.179599 ], [ -74.918409, 40.17995 ], [ -74.91857, 40.18055 ], [ -74.91867, 40.180879 ], [ -74.91879, 40.1813 ], [ -74.9189, 40.18166 ], [ -74.919059, 40.182319 ], [ -74.91911, 40.18257 ], [ -74.91916, 40.182759 ], [ -74.919189, 40.182879 ], [ -74.919279, 40.18319 ], [ -74.91935, 40.183319 ], [ -74.91938, 40.18337 ], [ -74.919419, 40.183419 ], [ -74.91948, 40.183479 ], [ -74.91965, 40.18364 ], [ -74.919939, 40.183869 ], [ -74.92033, 40.18418 ], [ -74.92047, 40.184289 ], [ -74.920679, 40.184459 ], [ -74.921069, 40.184769 ], [ -74.92124, 40.184929 ], [ -74.92137, 40.18507 ], [ -74.92146, 40.185189 ], [ -74.921519, 40.185289 ], [ -74.92155, 40.185359 ], [ -74.921579, 40.185449 ], [ -74.92163, 40.185639 ], [ -74.92169, 40.18595 ], [ -74.921739, 40.186189 ], [ -74.92178, 40.18634 ], [ -74.921839, 40.18653 ], [ -74.9219, 40.18667 ], [ -74.92196, 40.18679 ], [ -74.922019, 40.186909 ], [ -74.922109, 40.18706 ], [ -74.922189, 40.187179 ], [ -74.92231, 40.18733 ], [ -74.922369, 40.1874 ], [ -74.922549, 40.18761 ], [ -74.92268, 40.18775 ], [ -74.922879, 40.18794 ], [ -74.92302, 40.18806 ], [ -74.923239, 40.188249 ], [ -74.9234, 40.1884 ], [ -74.92357, 40.18856 ], [ -74.92376, 40.188719 ], [ -74.923959, 40.188869 ], [ -74.92419, 40.18901 ], [ -74.92461, 40.189249 ], [ -74.924979, 40.189439 ], [ -74.92533, 40.189629 ], [ -74.925699, 40.18985 ], [ -74.9261, 40.19011 ], [ -74.926329, 40.19027 ], [ -74.92649, 40.19039 ], [ -74.926599, 40.19048 ], [ -74.926749, 40.19063 ], [ -74.92686, 40.19076 ], [ -74.926969, 40.1909 ], [ -74.92709, 40.19108 ], [ -74.92721, 40.19127 ], [ -74.927499, 40.19174 ], [ -74.92775, 40.1921 ], [ -74.928129, 40.192679 ], [ -74.92848, 40.193229 ], [ -74.92856, 40.19336 ], [ -74.928629, 40.193479 ], [ -74.928679, 40.193579 ], [ -74.928769, 40.193769 ], [ -74.92888, 40.194019 ], [ -74.92897, 40.19425 ], [ -74.929309, 40.195119 ], [ -74.92947, 40.195569 ], [ -74.92952, 40.19577 ], [ -74.92956, 40.19595 ], [ -74.9296, 40.196179 ], [ -74.929629, 40.196359 ], [ -74.92965, 40.196529 ], [ -74.929669, 40.196979 ], [ -74.92964, 40.19759 ], [ -74.92956, 40.19866 ], [ -74.92951, 40.19912 ], [ -74.929499, 40.19921 ], [ -74.92947, 40.199619 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.1999 ], [ -74.929489, 40.200149 ], [ -74.92951, 40.200339 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92964, 40.20242 ], [ -74.929659, 40.2026 ], [ -74.929669, 40.20278 ], [ -74.92969, 40.20298 ], [ -74.929709, 40.20323 ], [ -74.92973, 40.2035 ], [ -74.92974, 40.20361 ], [ -74.929759, 40.203829 ], [ -74.929859, 40.205199 ], [ -74.929929, 40.206009 ], [ -74.92996, 40.206599 ], [ -74.929979, 40.207049 ], [ -74.930019, 40.207709 ], [ -74.930029, 40.20782 ], [ -74.93006, 40.20856 ], [ -74.930069, 40.20866 ], [ -74.930119, 40.208969 ], [ -74.930169, 40.209239 ], [ -74.93019, 40.20938 ], [ -74.93023, 40.209589 ], [ -74.930299, 40.209949 ], [ -74.9305, 40.21098 ], [ -74.930569, 40.21133 ], [ -74.930619, 40.211549 ], [ -74.930879, 40.21277 ], [ -74.930929, 40.213019 ], [ -74.93109, 40.21379 ], [ -74.93114, 40.214019 ], [ -74.931189, 40.21424 ], [ -74.93127, 40.21461 ], [ -74.931339, 40.21493 ], [ -74.93139, 40.215179 ], [ -74.931429, 40.21538 ], [ -74.931469, 40.21559 ], [ -74.93153, 40.21595 ], [ -74.931549, 40.216089 ], [ -74.931559, 40.216179 ], [ -74.93168, 40.21666 ], [ -74.93145, 40.21674 ], [ -74.93121, 40.21683 ], [ -74.931009, 40.21691 ], [ -74.930789, 40.217 ], [ -74.930159, 40.21729 ], [ -74.92969, 40.217509 ], [ -74.929229, 40.217709 ], [ -74.92893, 40.21783 ], [ -74.92865, 40.21793 ], [ -74.92835, 40.21803 ], [ -74.928049, 40.21812 ], [ -74.927769, 40.2182 ], [ -74.92731, 40.218309 ], [ -74.92695, 40.218399 ], [ -74.92635, 40.21856 ], [ -74.924619, 40.219 ], [ -74.92375, 40.219219 ], [ -74.921829, 40.21971 ], [ -74.92029, 40.220099 ], [ -74.918509, 40.220549 ], [ -74.917779, 40.220729 ], [ -74.91727, 40.220849 ], [ -74.91678, 40.22096 ], [ -74.916169, 40.22108 ], [ -74.915319, 40.22123 ], [ -74.91366, 40.221489 ], [ -74.912659, 40.221639 ], [ -74.91187, 40.221759 ], [ -74.91147, 40.221829 ], [ -74.911179, 40.2219 ], [ -74.91102, 40.221939 ], [ -74.9108, 40.221999 ], [ -74.910549, 40.22208 ], [ -74.910309, 40.22216 ], [ -74.9098, 40.222359 ], [ -74.909819, 40.22249 ], [ -74.909999, 40.22287 ], [ -74.91008, 40.22331 ], [ -74.910129, 40.22366 ], [ -74.91012, 40.223879 ], [ -74.91012, 40.22411 ], [ -74.910099, 40.224329 ], [ -74.90975, 40.225359 ], [ -74.90985, 40.22537 ], [ -74.9108, 40.22546 ], [ -74.91107, 40.22547 ], [ -74.91179, 40.225519 ], [ -74.91197, 40.225519 ], [ -74.912039, 40.225519 ], [ -74.912709, 40.225539 ], [ -74.91291, 40.225539 ], [ -74.91384, 40.225539 ], [ -74.914629, 40.225539 ], [ -74.915349, 40.225519 ], [ -74.915579, 40.225509 ], [ -74.91592, 40.22549 ], [ -74.916219, 40.225449 ], [ -74.91674, 40.22539 ], [ -74.91677, 40.225599 ], [ -74.916969, 40.22619 ], [ -74.91704, 40.2264 ], [ -74.91709, 40.226529 ], [ -74.917209, 40.22682 ], [ -74.917379, 40.22717 ], [ -74.917599, 40.22756 ], [ -74.917689, 40.22772 ], [ -74.91773, 40.227779 ], [ -74.91782, 40.227929 ], [ -74.91813, 40.228469 ], [ -74.91834, 40.228839 ], [ -74.91839, 40.228919 ], [ -74.918459, 40.229039 ], [ -74.918589, 40.22925 ], [ -74.91871, 40.229469 ], [ -74.91898, 40.229929 ], [ -74.919219, 40.229849 ], [ -74.919359, 40.2298 ], [ -74.919769, 40.229659 ], [ -74.91989, 40.22961 ], [ -74.92001, 40.229569 ], [ -74.920439, 40.22943 ], [ -74.92073, 40.22935 ], [ -74.92082, 40.229319 ], [ -74.920989, 40.229279 ], [ -74.921289, 40.229209 ], [ -74.921659, 40.229119 ], [ -74.922099, 40.229029 ], [ -74.92241, 40.22897 ], [ -74.92307, 40.22888 ], [ -74.923369, 40.228849 ], [ -74.92397, 40.22879 ], [ -74.924089, 40.228779 ], [ -74.9243, 40.228769 ], [ -74.92447, 40.228759 ], [ -74.925029, 40.228769 ], [ -74.925389, 40.228769 ], [ -74.92582, 40.22879 ], [ -74.92595, 40.22879 ], [ -74.926299, 40.22881 ], [ -74.926609, 40.22882 ], [ -74.92676, 40.228829 ], [ -74.927949, 40.22889 ], [ -74.928779, 40.228929 ], [ -74.929939, 40.22899 ], [ -74.93064, 40.229019 ], [ -74.93144, 40.22906 ], [ -74.931649, 40.22755 ], [ -74.93172, 40.22699 ], [ -74.931779, 40.226519 ], [ -74.9318, 40.22638 ], [ -74.93189, 40.225619 ], [ -74.931909, 40.22541 ], [ -74.93203, 40.22448 ], [ -74.932059, 40.224279 ], [ -74.93211, 40.22396 ], [ -74.93212, 40.22385 ], [ -74.932139, 40.223539 ], [ -74.932229, 40.222819 ], [ -74.9324, 40.221759 ], [ -74.93247, 40.22135 ], [ -74.93249, 40.221279 ], [ -74.93258, 40.221219 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.936969, 40.22117 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.93258, 40.221219 ], [ -74.93249, 40.221279 ], [ -74.93247, 40.22135 ], [ -74.9324, 40.221759 ], [ -74.932229, 40.222819 ], [ -74.932139, 40.223539 ], [ -74.93212, 40.22385 ], [ -74.93211, 40.22396 ], [ -74.932059, 40.224279 ], [ -74.93203, 40.22448 ], [ -74.931909, 40.22541 ], [ -74.93189, 40.225619 ], [ -74.9318, 40.22638 ], [ -74.931779, 40.226519 ], [ -74.93172, 40.22699 ], [ -74.931649, 40.22755 ], [ -74.93144, 40.22906 ], [ -74.931689, 40.22907 ], [ -74.93294, 40.229139 ], [ -74.934169, 40.229189 ], [ -74.935389, 40.22926 ], [ -74.93558, 40.22927 ], [ -74.93567, 40.22927 ], [ -74.936019, 40.229279 ], [ -74.93613, 40.229279 ], [ -74.93672, 40.229309 ], [ -74.937139, 40.22934 ], [ -74.937309, 40.22935 ], [ -74.93752, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93765, 40.22936 ], [ -74.937989, 40.229379 ], [ -74.93842, 40.229399 ], [ -74.9387, 40.22942 ], [ -74.938899, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.939209, 40.22943 ], [ -74.939749, 40.22944 ], [ -74.94004, 40.229459 ], [ -74.94045, 40.229459 ], [ -74.94044, 40.22964 ], [ -74.940419, 40.229839 ], [ -74.940379, 40.23023 ], [ -74.940339, 40.230659 ], [ -74.940329, 40.230939 ], [ -74.940289, 40.23126 ], [ -74.940199, 40.2315 ], [ -74.940009, 40.231839 ], [ -74.93978, 40.23212 ], [ -74.93964, 40.23232 ], [ -74.939569, 40.232529 ], [ -74.93955, 40.232739 ], [ -74.939559, 40.23285 ], [ -74.939609, 40.233089 ], [ -74.939699, 40.233269 ], [ -74.939739, 40.233329 ], [ -74.940739, 40.23421 ], [ -74.941239, 40.234609 ], [ -74.94147, 40.23484 ], [ -74.94166, 40.23509 ], [ -74.94174, 40.235349 ], [ -74.94201, 40.23529 ], [ -74.94243, 40.23529 ], [ -74.94283, 40.2353 ], [ -74.94368, 40.235339 ], [ -74.94381, 40.23537 ], [ -74.943889, 40.23538 ], [ -74.94409, 40.2354 ], [ -74.944199, 40.23545 ], [ -74.944519, 40.235609 ], [ -74.944749, 40.23573 ], [ -74.94504, 40.235789 ], [ -74.945819, 40.23585 ], [ -74.945879, 40.23637 ], [ -74.94589, 40.23648 ], [ -74.945999, 40.23647 ], [ -74.946279, 40.236429 ], [ -74.946819, 40.236319 ], [ -74.947029, 40.23627 ], [ -74.94724, 40.23621 ], [ -74.947499, 40.23612 ], [ -74.947749, 40.23603 ], [ -74.94801, 40.23592 ], [ -74.94824, 40.23581 ], [ -74.948479, 40.235679 ], [ -74.948739, 40.235529 ], [ -74.94903, 40.235339 ], [ -74.949249, 40.235169 ], [ -74.949419, 40.23503 ], [ -74.949639, 40.23484 ], [ -74.949879, 40.234619 ], [ -74.9502, 40.23431 ], [ -74.95043, 40.234079 ], [ -74.950629, 40.233879 ], [ -74.95079, 40.233699 ], [ -74.95101, 40.233449 ], [ -74.951899, 40.233989 ], [ -74.952349, 40.234269 ], [ -74.95277, 40.234529 ], [ -74.95335, 40.234879 ], [ -74.953599, 40.23503 ], [ -74.95376, 40.23512 ], [ -74.95391, 40.235149 ], [ -74.954559, 40.23554 ], [ -74.95544, 40.236059 ], [ -74.955849, 40.236309 ], [ -74.956499, 40.236689 ], [ -74.95683, 40.23689 ], [ -74.957119, 40.237059 ], [ -74.957649, 40.23737 ], [ -74.958, 40.237579 ], [ -74.95866, 40.23798 ], [ -74.958739, 40.238029 ], [ -74.95908, 40.23824 ], [ -74.95917, 40.238289 ], [ -74.9598, 40.238679 ], [ -74.96039, 40.23905 ], [ -74.96055, 40.23915 ], [ -74.96124, 40.239569 ], [ -74.961309, 40.23961 ], [ -74.962469, 40.24032 ], [ -74.963239, 40.24078 ], [ -74.96484, 40.241799 ], [ -74.965079, 40.24195 ], [ -74.96538, 40.24213 ], [ -74.96601, 40.242509 ], [ -74.96636, 40.242259 ], [ -74.966529, 40.24213 ], [ -74.967069, 40.241709 ], [ -74.967249, 40.241539 ], [ -74.96753, 40.241269 ], [ -74.967779, 40.24098 ], [ -74.96795, 40.24079 ], [ -74.96775, 40.24069 ], [ -74.96726, 40.24044 ], [ -74.967, 40.24031 ], [ -74.96615, 40.23987 ], [ -74.965479, 40.239469 ], [ -74.96519, 40.23932 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307172", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.96443, 40.0883 ], [ -74.96438, 40.088449 ], [ -74.964309, 40.0886 ], [ -74.964219, 40.08876 ], [ -74.964149, 40.088909 ], [ -74.96408, 40.089089 ], [ -74.96398, 40.089259 ], [ -74.9638, 40.08966 ], [ -74.963699, 40.089999 ], [ -74.963649, 40.090339 ], [ -74.963639, 40.0905 ], [ -74.96362, 40.09083 ], [ -74.96376, 40.09082 ], [ -74.963999, 40.09083 ], [ -74.964139, 40.09083 ], [ -74.964309, 40.09082 ], [ -74.964489, 40.090789 ], [ -74.96462, 40.09075 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95832, 40.09803 ], [ -74.958829, 40.09833 ], [ -74.959359, 40.09865 ], [ -74.959599, 40.098799 ], [ -74.96011, 40.09912 ], [ -74.96021, 40.099179 ], [ -74.96038, 40.09929 ], [ -74.960049, 40.099599 ], [ -74.95992, 40.09973 ], [ -74.959639, 40.1 ], [ -74.95953, 40.10011 ], [ -74.95943, 40.10021 ], [ -74.959329, 40.1003 ], [ -74.95836, 40.10119 ], [ -74.958149, 40.101389 ], [ -74.957979, 40.10154 ], [ -74.957829, 40.101689 ], [ -74.95733, 40.10219 ], [ -74.95719, 40.102329 ], [ -74.95683, 40.10217 ], [ -74.956179, 40.101869 ], [ -74.955499, 40.101579 ], [ -74.955359, 40.101509 ], [ -74.955219, 40.10144 ], [ -74.95508, 40.10136 ], [ -74.954829, 40.101239 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.951089, 40.104579 ], [ -74.95101, 40.10471 ], [ -74.95093, 40.104839 ], [ -74.950909, 40.104899 ], [ -74.950899, 40.104989 ], [ -74.950899, 40.105099 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957349, 40.11459 ], [ -74.9574, 40.114639 ], [ -74.95763, 40.114929 ], [ -74.957699, 40.11503 ], [ -74.95778, 40.11514 ], [ -74.957889, 40.1153 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.96984, 40.13771 ], [ -74.96912, 40.138399 ], [ -74.96849, 40.13899 ], [ -74.96727, 40.140119 ], [ -74.96672, 40.140639 ], [ -74.96654, 40.140809 ], [ -74.96633, 40.140989 ], [ -74.96587, 40.14141 ], [ -74.96552, 40.141709 ], [ -74.965299, 40.14176 ], [ -74.965119, 40.14176 ], [ -74.964989, 40.141709 ], [ -74.964809, 40.141639 ], [ -74.964359, 40.1414 ], [ -74.963789, 40.141099 ], [ -74.96331, 40.140849 ], [ -74.96258, 40.14043 ], [ -74.96237, 40.140289 ], [ -74.96223, 40.140199 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.956359, 40.13564 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13888 ], [ -74.94743, 40.138939 ], [ -74.9472, 40.139049 ], [ -74.945869, 40.13971 ], [ -74.94473, 40.140279 ], [ -74.94426, 40.14051 ], [ -74.942809, 40.14124 ], [ -74.9426, 40.14134 ], [ -74.94201, 40.141639 ], [ -74.94049, 40.14243 ], [ -74.93963, 40.14285 ], [ -74.93847, 40.14342 ], [ -74.935929, 40.14467 ], [ -74.93581, 40.14474 ], [ -74.93553, 40.144859 ], [ -74.93483, 40.145169 ], [ -74.934709, 40.145219 ], [ -74.93442, 40.1453 ], [ -74.934219, 40.145319 ], [ -74.9341, 40.145319 ], [ -74.93392, 40.14528 ], [ -74.93382, 40.145239 ], [ -74.933719, 40.14518 ], [ -74.933579, 40.145069 ], [ -74.933539, 40.145039 ], [ -74.93334, 40.144789 ], [ -74.93306, 40.144429 ], [ -74.932599, 40.14385 ], [ -74.93252, 40.14375 ], [ -74.93244, 40.143639 ], [ -74.931919, 40.142899 ], [ -74.931729, 40.14261 ], [ -74.93132, 40.142089 ], [ -74.931069, 40.14177 ], [ -74.930379, 40.140849 ], [ -74.92947, 40.139569 ], [ -74.929399, 40.139479 ], [ -74.928589, 40.138399 ], [ -74.927549, 40.136949 ], [ -74.927409, 40.136779 ], [ -74.92682, 40.135899 ], [ -74.926559, 40.13556 ], [ -74.92596, 40.134709 ], [ -74.925169, 40.13359 ], [ -74.925029, 40.13339 ], [ -74.92493, 40.13324 ], [ -74.9246, 40.13276 ], [ -74.92443, 40.1325 ], [ -74.924259, 40.13225 ], [ -74.92411, 40.132029 ], [ -74.923819, 40.131629 ], [ -74.92371, 40.131469 ], [ -74.923449, 40.131119 ], [ -74.923409, 40.13106 ], [ -74.92317, 40.13072 ], [ -74.92308, 40.130589 ], [ -74.92302, 40.13051 ], [ -74.922869, 40.130289 ], [ -74.92276, 40.130129 ], [ -74.922649, 40.129959 ], [ -74.92244, 40.13027 ], [ -74.922279, 40.13052 ], [ -74.92223, 40.1306 ], [ -74.922, 40.130949 ], [ -74.921919, 40.13107 ], [ -74.921699, 40.13141 ], [ -74.9216, 40.131539 ], [ -74.92151, 40.131649 ], [ -74.920979, 40.13222 ], [ -74.920709, 40.1325 ], [ -74.920529, 40.13269 ], [ -74.92047, 40.13276 ], [ -74.920049, 40.13321 ], [ -74.9197, 40.13358 ], [ -74.91953, 40.13376 ], [ -74.919409, 40.13388 ], [ -74.91907, 40.134249 ], [ -74.918769, 40.13458 ], [ -74.91816, 40.13523 ], [ -74.917479, 40.135949 ], [ -74.91583, 40.13772 ], [ -74.915049, 40.13855 ], [ -74.91479, 40.13883 ], [ -74.914539, 40.13909 ], [ -74.91439, 40.13924 ], [ -74.91394, 40.13973 ], [ -74.913739, 40.139949 ], [ -74.91359, 40.140119 ], [ -74.913469, 40.140269 ], [ -74.913329, 40.14044 ], [ -74.91299, 40.14086 ], [ -74.912759, 40.14116 ], [ -74.912569, 40.14141 ], [ -74.912299, 40.1418 ], [ -74.91209, 40.142079 ], [ -74.912019, 40.142179 ], [ -74.91191, 40.14233 ], [ -74.911719, 40.142539 ], [ -74.912029, 40.14275 ], [ -74.91214, 40.14286 ], [ -74.91223, 40.14297 ], [ -74.912349, 40.14315 ], [ -74.91241, 40.14324 ], [ -74.91246, 40.14333 ], [ -74.912489, 40.1434 ], [ -74.91268, 40.14377 ], [ -74.912829, 40.14404 ], [ -74.91282, 40.144269 ], [ -74.91273, 40.14511 ], [ -74.91268, 40.145529 ], [ -74.91245, 40.14754 ], [ -74.91241, 40.14788 ], [ -74.912389, 40.14808 ], [ -74.912349, 40.14846 ], [ -74.912289, 40.14898 ], [ -74.91214, 40.15033 ], [ -74.912069, 40.150929 ], [ -74.912019, 40.1513 ], [ -74.911989, 40.151549 ], [ -74.91188, 40.15249 ], [ -74.91179, 40.153249 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.15365 ], [ -74.91182, 40.15411 ], [ -74.91183, 40.154309 ], [ -74.91187, 40.155069 ], [ -74.91187, 40.15511 ], [ -74.91192, 40.15584 ], [ -74.911939, 40.15609 ], [ -74.91196, 40.156419 ], [ -74.911989, 40.157109 ], [ -74.91201, 40.157489 ], [ -74.912019, 40.15772 ], [ -74.912029, 40.157909 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.158179 ], [ -74.91205, 40.158359 ], [ -74.912069, 40.15868 ], [ -74.912079, 40.158729 ], [ -74.912079, 40.15887 ], [ -74.912109, 40.15931 ], [ -74.912119, 40.15988 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.917559, 40.176839 ], [ -74.91763, 40.177029 ], [ -74.917659, 40.17714 ], [ -74.91767, 40.17717 ], [ -74.917689, 40.17726 ], [ -74.917739, 40.17742 ], [ -74.917749, 40.177449 ], [ -74.91776, 40.17749 ], [ -74.91786, 40.17788 ], [ -74.91795, 40.17821 ], [ -74.917959, 40.178259 ], [ -74.918, 40.17839 ], [ -74.918009, 40.17843 ], [ -74.91803, 40.17852 ], [ -74.918109, 40.17886 ], [ -74.918189, 40.17915 ], [ -74.91821, 40.17924 ], [ -74.91825, 40.17938 ], [ -74.91831, 40.179599 ], [ -74.918409, 40.17995 ], [ -74.91857, 40.18055 ], [ -74.91867, 40.180879 ], [ -74.91879, 40.1813 ], [ -74.9189, 40.18166 ], [ -74.919059, 40.182319 ], [ -74.91911, 40.18257 ], [ -74.91916, 40.182759 ], [ -74.919189, 40.182879 ], [ -74.919279, 40.18319 ], [ -74.91935, 40.183319 ], [ -74.91938, 40.18337 ], [ -74.919419, 40.183419 ], [ -74.91948, 40.183479 ], [ -74.91965, 40.18364 ], [ -74.919939, 40.183869 ], [ -74.92033, 40.18418 ], [ -74.92047, 40.184289 ], [ -74.920679, 40.184459 ], [ -74.921069, 40.184769 ], [ -74.92124, 40.184929 ], [ -74.92137, 40.18507 ], [ -74.92146, 40.185189 ], [ -74.921519, 40.185289 ], [ -74.92155, 40.185359 ], [ -74.921579, 40.185449 ], [ -74.92163, 40.185639 ], [ -74.92169, 40.18595 ], [ -74.921739, 40.186189 ], [ -74.92178, 40.18634 ], [ -74.921839, 40.18653 ], [ -74.9219, 40.18667 ], [ -74.92196, 40.18679 ], [ -74.922019, 40.186909 ], [ -74.922109, 40.18706 ], [ -74.922189, 40.187179 ], [ -74.92231, 40.18733 ], [ -74.922369, 40.1874 ], [ -74.922549, 40.18761 ], [ -74.92268, 40.18775 ], [ -74.922879, 40.18794 ], [ -74.92302, 40.18806 ], [ -74.923239, 40.188249 ], [ -74.9234, 40.1884 ], [ -74.92357, 40.18856 ], [ -74.92376, 40.188719 ], [ -74.923959, 40.188869 ], [ -74.92419, 40.18901 ], [ -74.92461, 40.189249 ], [ -74.924979, 40.189439 ], [ -74.92533, 40.189629 ], [ -74.925699, 40.18985 ], [ -74.9261, 40.19011 ], [ -74.926329, 40.19027 ], [ -74.92649, 40.19039 ], [ -74.926599, 40.19048 ], [ -74.926749, 40.19063 ], [ -74.92686, 40.19076 ], [ -74.926969, 40.1909 ], [ -74.92709, 40.19108 ], [ -74.92721, 40.19127 ], [ -74.927499, 40.19174 ], [ -74.92775, 40.1921 ], [ -74.928129, 40.192679 ], [ -74.92848, 40.193229 ], [ -74.92856, 40.19336 ], [ -74.928629, 40.193479 ], [ -74.928679, 40.193579 ], [ -74.928769, 40.193769 ], [ -74.92888, 40.194019 ], [ -74.92897, 40.19425 ], [ -74.929309, 40.195119 ], [ -74.92947, 40.195569 ], [ -74.92952, 40.19577 ], [ -74.92956, 40.19595 ], [ -74.9296, 40.196179 ], [ -74.929629, 40.196359 ], [ -74.92965, 40.196529 ], [ -74.929669, 40.196979 ], [ -74.92964, 40.19759 ], [ -74.92956, 40.19866 ], [ -74.92951, 40.19912 ], [ -74.929499, 40.19921 ], [ -74.92947, 40.199619 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.1999 ], [ -74.929489, 40.200149 ], [ -74.92951, 40.200339 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92964, 40.20242 ], [ -74.929659, 40.2026 ], [ -74.929669, 40.20278 ], [ -74.92969, 40.20298 ], [ -74.929709, 40.20323 ], [ -74.92973, 40.2035 ], [ -74.92974, 40.20361 ], [ -74.929759, 40.203829 ], [ -74.929859, 40.205199 ], [ -74.929929, 40.206009 ], [ -74.92996, 40.206599 ], [ -74.929979, 40.207049 ], [ -74.930019, 40.207709 ], [ -74.930029, 40.20782 ], [ -74.93006, 40.20856 ], [ -74.930069, 40.20866 ], [ -74.930119, 40.208969 ], [ -74.930169, 40.209239 ], [ -74.93019, 40.20938 ], [ -74.93023, 40.209589 ], [ -74.930299, 40.209949 ], [ -74.9305, 40.21098 ], [ -74.930569, 40.21133 ], [ -74.930619, 40.211549 ], [ -74.930879, 40.21277 ], [ -74.930929, 40.213019 ], [ -74.93109, 40.21379 ], [ -74.93114, 40.214019 ], [ -74.931189, 40.21424 ], [ -74.93127, 40.21461 ], [ -74.931339, 40.21493 ], [ -74.93139, 40.215179 ], [ -74.931429, 40.21538 ], [ -74.931469, 40.21559 ], [ -74.93153, 40.21595 ], [ -74.931549, 40.216089 ], [ -74.931559, 40.216179 ], [ -74.93168, 40.21666 ], [ -74.931729, 40.21677 ], [ -74.931779, 40.21704 ], [ -74.93189, 40.217159 ], [ -74.932009, 40.217319 ], [ -74.93211, 40.21749 ], [ -74.93217, 40.21765 ], [ -74.9323, 40.217969 ], [ -74.932719, 40.21891 ], [ -74.93289, 40.21925 ], [ -74.932999, 40.219469 ], [ -74.933049, 40.219569 ], [ -74.933139, 40.219739 ], [ -74.933309, 40.220049 ], [ -74.933489, 40.22034 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.93258, 40.221219 ], [ -74.93249, 40.221279 ], [ -74.93247, 40.22135 ], [ -74.9324, 40.221759 ], [ -74.932229, 40.222819 ], [ -74.932139, 40.223539 ], [ -74.93212, 40.22385 ], [ -74.93211, 40.22396 ], [ -74.932059, 40.224279 ], [ -74.93203, 40.22448 ], [ -74.931909, 40.22541 ], [ -74.93189, 40.225619 ], [ -74.9318, 40.22638 ], [ -74.931779, 40.226519 ], [ -74.93172, 40.22699 ], [ -74.931649, 40.22755 ], [ -74.93144, 40.22906 ], [ -74.931689, 40.22907 ], [ -74.93294, 40.229139 ], [ -74.934169, 40.229189 ], [ -74.935389, 40.22926 ], [ -74.93558, 40.22927 ], [ -74.93567, 40.22927 ], [ -74.936019, 40.229279 ], [ -74.93613, 40.229279 ], [ -74.93672, 40.229309 ], [ -74.937139, 40.22934 ], [ -74.937309, 40.22935 ], [ -74.93752, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93765, 40.22936 ], [ -74.937989, 40.229379 ], [ -74.93842, 40.229399 ], [ -74.9387, 40.22942 ], [ -74.938899, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.939209, 40.22943 ], [ -74.939749, 40.22944 ], [ -74.94004, 40.229459 ], [ -74.94045, 40.229459 ], [ -74.94044, 40.22964 ], [ -74.940419, 40.229839 ], [ -74.940379, 40.23023 ], [ -74.940339, 40.230659 ], [ -74.940329, 40.230939 ], [ -74.940289, 40.23126 ], [ -74.940199, 40.2315 ], [ -74.940009, 40.231839 ], [ -74.93978, 40.23212 ], [ -74.93964, 40.23232 ], [ -74.939569, 40.232529 ], [ -74.93955, 40.232739 ], [ -74.939559, 40.23285 ], [ -74.939609, 40.233089 ], [ -74.939699, 40.233269 ], [ -74.939739, 40.233329 ], [ -74.940739, 40.23421 ], [ -74.941239, 40.234609 ], [ -74.94147, 40.23484 ], [ -74.94166, 40.23509 ], [ -74.94174, 40.235349 ], [ -74.94201, 40.23529 ], [ -74.94243, 40.23529 ], [ -74.94283, 40.2353 ], [ -74.94368, 40.235339 ], [ -74.94381, 40.23537 ], [ -74.943889, 40.23538 ], [ -74.94409, 40.2354 ], [ -74.944199, 40.23545 ], [ -74.944519, 40.235609 ], [ -74.944749, 40.23573 ], [ -74.94504, 40.235789 ], [ -74.945819, 40.23585 ], [ -74.945879, 40.23637 ], [ -74.94589, 40.23648 ], [ -74.945999, 40.23647 ], [ -74.946279, 40.236429 ], [ -74.946819, 40.236319 ], [ -74.947029, 40.23627 ], [ -74.94724, 40.23621 ], [ -74.947499, 40.23612 ], [ -74.947749, 40.23603 ], [ -74.94801, 40.23592 ], [ -74.94824, 40.23581 ], [ -74.948479, 40.235679 ], [ -74.948739, 40.235529 ], [ -74.94903, 40.235339 ], [ -74.949249, 40.235169 ], [ -74.949419, 40.23503 ], [ -74.949639, 40.23484 ], [ -74.949879, 40.234619 ], [ -74.9502, 40.23431 ], [ -74.95043, 40.234079 ], [ -74.950629, 40.233879 ], [ -74.95079, 40.233699 ], [ -74.95101, 40.233449 ], [ -74.951899, 40.233989 ], [ -74.952349, 40.234269 ], [ -74.95277, 40.234529 ], [ -74.95335, 40.234879 ], [ -74.953599, 40.23503 ], [ -74.95376, 40.23512 ], [ -74.95391, 40.235149 ], [ -74.954559, 40.23554 ], [ -74.95544, 40.236059 ], [ -74.955849, 40.236309 ], [ -74.956499, 40.236689 ], [ -74.95683, 40.23689 ], [ -74.957119, 40.237059 ], [ -74.957649, 40.23737 ], [ -74.958, 40.237579 ], [ -74.95866, 40.23798 ], [ -74.958739, 40.238029 ], [ -74.95908, 40.23824 ], [ -74.95917, 40.238289 ], [ -74.9598, 40.238679 ], [ -74.96039, 40.23905 ], [ -74.96055, 40.23915 ], [ -74.96124, 40.239569 ], [ -74.961309, 40.23961 ], [ -74.962469, 40.24032 ], [ -74.963239, 40.24078 ], [ -74.96484, 40.241799 ], [ -74.965079, 40.24195 ], [ -74.96538, 40.24213 ], [ -74.96601, 40.242509 ], [ -74.96636, 40.242259 ], [ -74.966529, 40.24213 ], [ -74.967069, 40.241709 ], [ -74.967249, 40.241539 ], [ -74.96753, 40.241269 ], [ -74.967779, 40.24098 ], [ -74.96795, 40.24079 ], [ -74.96775, 40.24069 ], [ -74.96726, 40.24044 ], [ -74.967, 40.24031 ], [ -74.96615, 40.23987 ], [ -74.965479, 40.239469 ], [ -74.96519, 40.23932 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307173", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981679, 40.064059 ], [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.96443, 40.0883 ], [ -74.96438, 40.088449 ], [ -74.964309, 40.0886 ], [ -74.964219, 40.08876 ], [ -74.964149, 40.088909 ], [ -74.96408, 40.089089 ], [ -74.96398, 40.089259 ], [ -74.9638, 40.08966 ], [ -74.963699, 40.089999 ], [ -74.963649, 40.090339 ], [ -74.963639, 40.0905 ], [ -74.96362, 40.09083 ], [ -74.96376, 40.09082 ], [ -74.963999, 40.09083 ], [ -74.964139, 40.09083 ], [ -74.964309, 40.09082 ], [ -74.964489, 40.090789 ], [ -74.96462, 40.09075 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95832, 40.09803 ], [ -74.958829, 40.09833 ], [ -74.959359, 40.09865 ], [ -74.959599, 40.098799 ], [ -74.96011, 40.09912 ], [ -74.96021, 40.099179 ], [ -74.96038, 40.09929 ], [ -74.960049, 40.099599 ], [ -74.95992, 40.09973 ], [ -74.959639, 40.1 ], [ -74.95953, 40.10011 ], [ -74.95943, 40.10021 ], [ -74.959329, 40.1003 ], [ -74.95836, 40.10119 ], [ -74.958149, 40.101389 ], [ -74.957979, 40.10154 ], [ -74.957829, 40.101689 ], [ -74.95733, 40.10219 ], [ -74.95719, 40.102329 ], [ -74.95683, 40.10217 ], [ -74.956179, 40.101869 ], [ -74.955499, 40.101579 ], [ -74.955359, 40.101509 ], [ -74.955219, 40.10144 ], [ -74.95508, 40.10136 ], [ -74.954829, 40.101239 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.951089, 40.104579 ], [ -74.95101, 40.10471 ], [ -74.95093, 40.104839 ], [ -74.950909, 40.104899 ], [ -74.950899, 40.104989 ], [ -74.950899, 40.105099 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957349, 40.11459 ], [ -74.9574, 40.114639 ], [ -74.95763, 40.114929 ], [ -74.957699, 40.11503 ], [ -74.95778, 40.11514 ], [ -74.957889, 40.1153 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13888 ], [ -74.94743, 40.138939 ], [ -74.9472, 40.139049 ], [ -74.945869, 40.13971 ], [ -74.94473, 40.140279 ], [ -74.94426, 40.14051 ], [ -74.942809, 40.14124 ], [ -74.9426, 40.14134 ], [ -74.94201, 40.141639 ], [ -74.94049, 40.14243 ], [ -74.93963, 40.14285 ], [ -74.93847, 40.14342 ], [ -74.935929, 40.14467 ], [ -74.93581, 40.14474 ], [ -74.93553, 40.144859 ], [ -74.93483, 40.145169 ], [ -74.934709, 40.145219 ], [ -74.93442, 40.1453 ], [ -74.934219, 40.145319 ], [ -74.9341, 40.145319 ], [ -74.93392, 40.14528 ], [ -74.93382, 40.145239 ], [ -74.933719, 40.14518 ], [ -74.933579, 40.145069 ], [ -74.933539, 40.145039 ], [ -74.93334, 40.144789 ], [ -74.93306, 40.144429 ], [ -74.932599, 40.14385 ], [ -74.93252, 40.14375 ], [ -74.93244, 40.143639 ], [ -74.931919, 40.142899 ], [ -74.931729, 40.14261 ], [ -74.93132, 40.142089 ], [ -74.931069, 40.14177 ], [ -74.930379, 40.140849 ], [ -74.92947, 40.139569 ], [ -74.929399, 40.139479 ], [ -74.928589, 40.138399 ], [ -74.927549, 40.136949 ], [ -74.927409, 40.136779 ], [ -74.92682, 40.135899 ], [ -74.926559, 40.13556 ], [ -74.92596, 40.134709 ], [ -74.925169, 40.13359 ], [ -74.925029, 40.13339 ], [ -74.92493, 40.13324 ], [ -74.9246, 40.13276 ], [ -74.92443, 40.1325 ], [ -74.924259, 40.13225 ], [ -74.92411, 40.132029 ], [ -74.923819, 40.131629 ], [ -74.92371, 40.131469 ], [ -74.923449, 40.131119 ], [ -74.923409, 40.13106 ], [ -74.92317, 40.13072 ], [ -74.92308, 40.130589 ], [ -74.92302, 40.13051 ], [ -74.922869, 40.130289 ], [ -74.92276, 40.130129 ], [ -74.922649, 40.129959 ], [ -74.92244, 40.13027 ], [ -74.922279, 40.13052 ], [ -74.92223, 40.1306 ], [ -74.922, 40.130949 ], [ -74.921919, 40.13107 ], [ -74.921699, 40.13141 ], [ -74.9216, 40.131539 ], [ -74.92151, 40.131649 ], [ -74.920979, 40.13222 ], [ -74.920709, 40.1325 ], [ -74.920529, 40.13269 ], [ -74.92047, 40.13276 ], [ -74.920049, 40.13321 ], [ -74.9197, 40.13358 ], [ -74.91953, 40.13376 ], [ -74.919409, 40.13388 ], [ -74.91907, 40.134249 ], [ -74.918769, 40.13458 ], [ -74.91816, 40.13523 ], [ -74.917479, 40.135949 ], [ -74.91583, 40.13772 ], [ -74.915049, 40.13855 ], [ -74.91479, 40.13883 ], [ -74.914539, 40.13909 ], [ -74.91439, 40.13924 ], [ -74.91394, 40.13973 ], [ -74.913739, 40.139949 ], [ -74.91359, 40.140119 ], [ -74.913469, 40.140269 ], [ -74.913329, 40.14044 ], [ -74.91299, 40.14086 ], [ -74.912759, 40.14116 ], [ -74.912569, 40.14141 ], [ -74.912299, 40.1418 ], [ -74.91209, 40.142079 ], [ -74.912019, 40.142179 ], [ -74.91191, 40.14233 ], [ -74.911719, 40.142539 ], [ -74.912029, 40.14275 ], [ -74.91214, 40.14286 ], [ -74.91223, 40.14297 ], [ -74.912349, 40.14315 ], [ -74.91241, 40.14324 ], [ -74.91246, 40.14333 ], [ -74.912489, 40.1434 ], [ -74.91268, 40.14377 ], [ -74.912829, 40.14404 ], [ -74.91282, 40.144269 ], [ -74.91273, 40.14511 ], [ -74.91268, 40.145529 ], [ -74.91245, 40.14754 ], [ -74.91241, 40.14788 ], [ -74.912389, 40.14808 ], [ -74.912349, 40.14846 ], [ -74.912289, 40.14898 ], [ -74.91214, 40.15033 ], [ -74.912069, 40.150929 ], [ -74.912019, 40.1513 ], [ -74.911989, 40.151549 ], [ -74.91188, 40.15249 ], [ -74.91179, 40.153249 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.15365 ], [ -74.91182, 40.15411 ], [ -74.91183, 40.154309 ], [ -74.91187, 40.155069 ], [ -74.91187, 40.15511 ], [ -74.91192, 40.15584 ], [ -74.911939, 40.15609 ], [ -74.91196, 40.156419 ], [ -74.911989, 40.157109 ], [ -74.91201, 40.157489 ], [ -74.912019, 40.15772 ], [ -74.912029, 40.157909 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.158179 ], [ -74.91205, 40.158359 ], [ -74.912069, 40.15868 ], [ -74.912079, 40.158729 ], [ -74.912079, 40.15887 ], [ -74.912109, 40.15931 ], [ -74.912119, 40.15988 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.917559, 40.176839 ], [ -74.91763, 40.177029 ], [ -74.917659, 40.17714 ], [ -74.91767, 40.17717 ], [ -74.917689, 40.17726 ], [ -74.917739, 40.17742 ], [ -74.917749, 40.177449 ], [ -74.91776, 40.17749 ], [ -74.91786, 40.17788 ], [ -74.91795, 40.17821 ], [ -74.917959, 40.178259 ], [ -74.918, 40.17839 ], [ -74.918009, 40.17843 ], [ -74.91803, 40.17852 ], [ -74.918109, 40.17886 ], [ -74.918189, 40.17915 ], [ -74.91821, 40.17924 ], [ -74.91825, 40.17938 ], [ -74.91831, 40.179599 ], [ -74.918409, 40.17995 ], [ -74.91857, 40.18055 ], [ -74.91867, 40.180879 ], [ -74.91879, 40.1813 ], [ -74.9189, 40.18166 ], [ -74.919059, 40.182319 ], [ -74.91911, 40.18257 ], [ -74.91916, 40.182759 ], [ -74.919189, 40.182879 ], [ -74.919279, 40.18319 ], [ -74.91935, 40.183319 ], [ -74.91938, 40.18337 ], [ -74.919419, 40.183419 ], [ -74.91948, 40.183479 ], [ -74.91965, 40.18364 ], [ -74.919939, 40.183869 ], [ -74.92033, 40.18418 ], [ -74.92047, 40.184289 ], [ -74.920679, 40.184459 ], [ -74.921069, 40.184769 ], [ -74.92124, 40.184929 ], [ -74.92137, 40.18507 ], [ -74.92146, 40.185189 ], [ -74.921519, 40.185289 ], [ -74.92155, 40.185359 ], [ -74.921579, 40.185449 ], [ -74.92163, 40.185639 ], [ -74.92169, 40.18595 ], [ -74.921739, 40.186189 ], [ -74.92178, 40.18634 ], [ -74.921839, 40.18653 ], [ -74.9219, 40.18667 ], [ -74.92196, 40.18679 ], [ -74.922019, 40.186909 ], [ -74.922109, 40.18706 ], [ -74.922189, 40.187179 ], [ -74.92231, 40.18733 ], [ -74.922369, 40.1874 ], [ -74.922549, 40.18761 ], [ -74.92268, 40.18775 ], [ -74.922879, 40.18794 ], [ -74.92302, 40.18806 ], [ -74.923239, 40.188249 ], [ -74.9234, 40.1884 ], [ -74.92357, 40.18856 ], [ -74.92376, 40.188719 ], [ -74.923959, 40.188869 ], [ -74.92419, 40.18901 ], [ -74.92461, 40.189249 ], [ -74.924979, 40.189439 ], [ -74.92533, 40.189629 ], [ -74.925699, 40.18985 ], [ -74.9261, 40.19011 ], [ -74.926329, 40.19027 ], [ -74.92649, 40.19039 ], [ -74.926599, 40.19048 ], [ -74.926749, 40.19063 ], [ -74.92686, 40.19076 ], [ -74.926969, 40.1909 ], [ -74.92709, 40.19108 ], [ -74.92721, 40.19127 ], [ -74.927499, 40.19174 ], [ -74.92775, 40.1921 ], [ -74.928129, 40.192679 ], [ -74.92848, 40.193229 ], [ -74.92856, 40.19336 ], [ -74.928629, 40.193479 ], [ -74.928679, 40.193579 ], [ -74.928769, 40.193769 ], [ -74.92888, 40.194019 ], [ -74.92897, 40.19425 ], [ -74.929309, 40.195119 ], [ -74.92947, 40.195569 ], [ -74.92952, 40.19577 ], [ -74.92956, 40.19595 ], [ -74.9296, 40.196179 ], [ -74.929629, 40.196359 ], [ -74.92965, 40.196529 ], [ -74.929669, 40.196979 ], [ -74.92964, 40.19759 ], [ -74.92956, 40.19866 ], [ -74.92951, 40.19912 ], [ -74.929499, 40.19921 ], [ -74.92947, 40.199619 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.1999 ], [ -74.929489, 40.200149 ], [ -74.92951, 40.200339 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307174", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981679, 40.064059 ], [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.96443, 40.0883 ], [ -74.96438, 40.088449 ], [ -74.964309, 40.0886 ], [ -74.964219, 40.08876 ], [ -74.964149, 40.088909 ], [ -74.96408, 40.089089 ], [ -74.96398, 40.089259 ], [ -74.9638, 40.08966 ], [ -74.963699, 40.089999 ], [ -74.963649, 40.090339 ], [ -74.963639, 40.0905 ], [ -74.96362, 40.09083 ], [ -74.96376, 40.09082 ], [ -74.963999, 40.09083 ], [ -74.964139, 40.09083 ], [ -74.964309, 40.09082 ], [ -74.964489, 40.090789 ], [ -74.96462, 40.09075 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95832, 40.09803 ], [ -74.958829, 40.09833 ], [ -74.959359, 40.09865 ], [ -74.959599, 40.098799 ], [ -74.96011, 40.09912 ], [ -74.96021, 40.099179 ], [ -74.96038, 40.09929 ], [ -74.960049, 40.099599 ], [ -74.95992, 40.09973 ], [ -74.959639, 40.1 ], [ -74.95953, 40.10011 ], [ -74.95943, 40.10021 ], [ -74.959329, 40.1003 ], [ -74.95836, 40.10119 ], [ -74.958149, 40.101389 ], [ -74.957979, 40.10154 ], [ -74.957829, 40.101689 ], [ -74.95733, 40.10219 ], [ -74.95719, 40.102329 ], [ -74.95683, 40.10217 ], [ -74.956179, 40.101869 ], [ -74.955499, 40.101579 ], [ -74.955359, 40.101509 ], [ -74.955219, 40.10144 ], [ -74.95508, 40.10136 ], [ -74.954829, 40.101239 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.951089, 40.104579 ], [ -74.95101, 40.10471 ], [ -74.95093, 40.104839 ], [ -74.950909, 40.104899 ], [ -74.950899, 40.104989 ], [ -74.950899, 40.105099 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957349, 40.11459 ], [ -74.9574, 40.114639 ], [ -74.95763, 40.114929 ], [ -74.957699, 40.11503 ], [ -74.95778, 40.11514 ], [ -74.957889, 40.1153 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13888 ], [ -74.94743, 40.138939 ], [ -74.9472, 40.139049 ], [ -74.945869, 40.13971 ], [ -74.94473, 40.140279 ], [ -74.94426, 40.14051 ], [ -74.942809, 40.14124 ], [ -74.9426, 40.14134 ], [ -74.94201, 40.141639 ], [ -74.94049, 40.14243 ], [ -74.93963, 40.14285 ], [ -74.93847, 40.14342 ], [ -74.935929, 40.14467 ], [ -74.93581, 40.14474 ], [ -74.93553, 40.144859 ], [ -74.93483, 40.145169 ], [ -74.934709, 40.145219 ], [ -74.93442, 40.1453 ], [ -74.934219, 40.145319 ], [ -74.9341, 40.145319 ], [ -74.93392, 40.14528 ], [ -74.93382, 40.145239 ], [ -74.933719, 40.14518 ], [ -74.933579, 40.145069 ], [ -74.933539, 40.145039 ], [ -74.93334, 40.144789 ], [ -74.93306, 40.144429 ], [ -74.932599, 40.14385 ], [ -74.93252, 40.14375 ], [ -74.93244, 40.143639 ], [ -74.931919, 40.142899 ], [ -74.931729, 40.14261 ], [ -74.93132, 40.142089 ], [ -74.931069, 40.14177 ], [ -74.930379, 40.140849 ], [ -74.92947, 40.139569 ], [ -74.929399, 40.139479 ], [ -74.928589, 40.138399 ], [ -74.927549, 40.136949 ], [ -74.927409, 40.136779 ], [ -74.92682, 40.135899 ], [ -74.926559, 40.13556 ], [ -74.92596, 40.134709 ], [ -74.925169, 40.13359 ], [ -74.925029, 40.13339 ], [ -74.92493, 40.13324 ], [ -74.9246, 40.13276 ], [ -74.92443, 40.1325 ], [ -74.924259, 40.13225 ], [ -74.92411, 40.132029 ], [ -74.923819, 40.131629 ], [ -74.92371, 40.131469 ], [ -74.923449, 40.131119 ], [ -74.923409, 40.13106 ], [ -74.92317, 40.13072 ], [ -74.92308, 40.130589 ], [ -74.92302, 40.13051 ], [ -74.922869, 40.130289 ], [ -74.92276, 40.130129 ], [ -74.922649, 40.129959 ], [ -74.92244, 40.13027 ], [ -74.922279, 40.13052 ], [ -74.92223, 40.1306 ], [ -74.922, 40.130949 ], [ -74.921919, 40.13107 ], [ -74.921699, 40.13141 ], [ -74.9216, 40.131539 ], [ -74.92151, 40.131649 ], [ -74.920979, 40.13222 ], [ -74.920709, 40.1325 ], [ -74.920529, 40.13269 ], [ -74.92047, 40.13276 ], [ -74.920049, 40.13321 ], [ -74.9197, 40.13358 ], [ -74.91953, 40.13376 ], [ -74.919409, 40.13388 ], [ -74.91907, 40.134249 ], [ -74.918769, 40.13458 ], [ -74.91816, 40.13523 ], [ -74.917479, 40.135949 ], [ -74.91583, 40.13772 ], [ -74.915049, 40.13855 ], [ -74.91479, 40.13883 ], [ -74.914539, 40.13909 ], [ -74.91439, 40.13924 ], [ -74.91394, 40.13973 ], [ -74.913739, 40.139949 ], [ -74.91359, 40.140119 ], [ -74.913469, 40.140269 ], [ -74.913329, 40.14044 ], [ -74.91299, 40.14086 ], [ -74.912759, 40.14116 ], [ -74.912569, 40.14141 ], [ -74.912299, 40.1418 ], [ -74.91209, 40.142079 ], [ -74.912019, 40.142179 ], [ -74.91191, 40.14233 ], [ -74.911719, 40.142539 ], [ -74.912029, 40.14275 ], [ -74.91214, 40.14286 ], [ -74.91223, 40.14297 ], [ -74.912349, 40.14315 ], [ -74.91241, 40.14324 ], [ -74.91246, 40.14333 ], [ -74.912489, 40.1434 ], [ -74.91268, 40.14377 ], [ -74.912829, 40.14404 ], [ -74.91282, 40.144269 ], [ -74.91273, 40.14511 ], [ -74.91268, 40.145529 ], [ -74.91245, 40.14754 ], [ -74.91241, 40.14788 ], [ -74.912389, 40.14808 ], [ -74.912349, 40.14846 ], [ -74.912289, 40.14898 ], [ -74.91214, 40.15033 ], [ -74.912069, 40.150929 ], [ -74.912019, 40.1513 ], [ -74.911989, 40.151549 ], [ -74.91188, 40.15249 ], [ -74.91179, 40.153249 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.15365 ], [ -74.91182, 40.15411 ], [ -74.91183, 40.154309 ], [ -74.91187, 40.155069 ], [ -74.91187, 40.15511 ], [ -74.91192, 40.15584 ], [ -74.911939, 40.15609 ], [ -74.91196, 40.156419 ], [ -74.911989, 40.157109 ], [ -74.91201, 40.157489 ], [ -74.912019, 40.15772 ], [ -74.912029, 40.157909 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.158179 ], [ -74.91205, 40.158359 ], [ -74.912069, 40.15868 ], [ -74.912079, 40.158729 ], [ -74.912079, 40.15887 ], [ -74.912109, 40.15931 ], [ -74.912119, 40.15988 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.917559, 40.176839 ], [ -74.91763, 40.177029 ], [ -74.917659, 40.17714 ], [ -74.91767, 40.17717 ], [ -74.917689, 40.17726 ], [ -74.917739, 40.17742 ], [ -74.917749, 40.177449 ], [ -74.91776, 40.17749 ], [ -74.91786, 40.17788 ], [ -74.91795, 40.17821 ], [ -74.917959, 40.178259 ], [ -74.918, 40.17839 ], [ -74.918009, 40.17843 ], [ -74.91803, 40.17852 ], [ -74.918109, 40.17886 ], [ -74.918189, 40.17915 ], [ -74.91821, 40.17924 ], [ -74.91825, 40.17938 ], [ -74.91831, 40.179599 ], [ -74.918409, 40.17995 ], [ -74.91857, 40.18055 ], [ -74.91867, 40.180879 ], [ -74.91879, 40.1813 ], [ -74.9189, 40.18166 ], [ -74.919059, 40.182319 ], [ -74.91911, 40.18257 ], [ -74.91916, 40.182759 ], [ -74.919189, 40.182879 ], [ -74.919279, 40.18319 ], [ -74.91935, 40.183319 ], [ -74.91938, 40.18337 ], [ -74.919419, 40.183419 ], [ -74.91948, 40.183479 ], [ -74.91965, 40.18364 ], [ -74.919939, 40.183869 ], [ -74.92033, 40.18418 ], [ -74.92047, 40.184289 ], [ -74.920679, 40.184459 ], [ -74.921069, 40.184769 ], [ -74.92124, 40.184929 ], [ -74.92137, 40.18507 ], [ -74.92146, 40.185189 ], [ -74.921519, 40.185289 ], [ -74.92155, 40.185359 ], [ -74.921579, 40.185449 ], [ -74.92163, 40.185639 ], [ -74.92169, 40.18595 ], [ -74.921739, 40.186189 ], [ -74.92178, 40.18634 ], [ -74.921839, 40.18653 ], [ -74.9219, 40.18667 ], [ -74.92196, 40.18679 ], [ -74.922019, 40.186909 ], [ -74.922109, 40.18706 ], [ -74.922189, 40.187179 ], [ -74.92231, 40.18733 ], [ -74.922369, 40.1874 ], [ -74.922549, 40.18761 ], [ -74.92268, 40.18775 ], [ -74.922879, 40.18794 ], [ -74.92302, 40.18806 ], [ -74.923239, 40.188249 ], [ -74.9234, 40.1884 ], [ -74.92357, 40.18856 ], [ -74.92376, 40.188719 ], [ -74.923959, 40.188869 ], [ -74.92419, 40.18901 ], [ -74.92461, 40.189249 ], [ -74.924979, 40.189439 ], [ -74.92533, 40.189629 ], [ -74.925699, 40.18985 ], [ -74.9261, 40.19011 ], [ -74.926329, 40.19027 ], [ -74.92649, 40.19039 ], [ -74.926599, 40.19048 ], [ -74.926749, 40.19063 ], [ -74.92686, 40.19076 ], [ -74.926969, 40.1909 ], [ -74.92709, 40.19108 ], [ -74.92721, 40.19127 ], [ -74.927499, 40.19174 ], [ -74.92775, 40.1921 ], [ -74.928129, 40.192679 ], [ -74.92848, 40.193229 ], [ -74.92856, 40.19336 ], [ -74.928629, 40.193479 ], [ -74.928679, 40.193579 ], [ -74.928769, 40.193769 ], [ -74.92888, 40.194019 ], [ -74.92897, 40.19425 ], [ -74.929309, 40.195119 ], [ -74.92947, 40.195569 ], [ -74.92952, 40.19577 ], [ -74.92956, 40.19595 ], [ -74.9296, 40.196179 ], [ -74.929629, 40.196359 ], [ -74.92965, 40.196529 ], [ -74.929669, 40.196979 ], [ -74.92964, 40.19759 ], [ -74.92956, 40.19866 ], [ -74.92951, 40.19912 ], [ -74.929499, 40.19921 ], [ -74.92947, 40.199619 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.1999 ], [ -74.929489, 40.200149 ], [ -74.92951, 40.200339 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92964, 40.20242 ], [ -74.929659, 40.2026 ], [ -74.929669, 40.20278 ], [ -74.92969, 40.20298 ], [ -74.929709, 40.20323 ], [ -74.92973, 40.2035 ], [ -74.92974, 40.20361 ], [ -74.929759, 40.203829 ], [ -74.929859, 40.205199 ], [ -74.929929, 40.206009 ], [ -74.92996, 40.206599 ], [ -74.929979, 40.207049 ], [ -74.930019, 40.207709 ], [ -74.930029, 40.20782 ], [ -74.93006, 40.20856 ], [ -74.930069, 40.20866 ], [ -74.930119, 40.208969 ], [ -74.930169, 40.209239 ], [ -74.93019, 40.20938 ], [ -74.93023, 40.209589 ], [ -74.930299, 40.209949 ], [ -74.9305, 40.21098 ], [ -74.930569, 40.21133 ], [ -74.930619, 40.211549 ], [ -74.930879, 40.21277 ], [ -74.930929, 40.213019 ], [ -74.93109, 40.21379 ], [ -74.93114, 40.214019 ], [ -74.931189, 40.21424 ], [ -74.93127, 40.21461 ], [ -74.931339, 40.21493 ], [ -74.93139, 40.215179 ], [ -74.931429, 40.21538 ], [ -74.931469, 40.21559 ], [ -74.93153, 40.21595 ], [ -74.931549, 40.216089 ], [ -74.931559, 40.216179 ], [ -74.93168, 40.21666 ], [ -74.931729, 40.21677 ], [ -74.931779, 40.21704 ], [ -74.93189, 40.217159 ], [ -74.932009, 40.217319 ], [ -74.93211, 40.21749 ], [ -74.93217, 40.21765 ], [ -74.9323, 40.217969 ], [ -74.932719, 40.21891 ], [ -74.93289, 40.21925 ], [ -74.932999, 40.219469 ], [ -74.933049, 40.219569 ], [ -74.933139, 40.219739 ], [ -74.933309, 40.220049 ], [ -74.933489, 40.22034 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.936969, 40.22117 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.93258, 40.221219 ], [ -74.93249, 40.221279 ], [ -74.93247, 40.22135 ], [ -74.9324, 40.221759 ], [ -74.932229, 40.222819 ], [ -74.932139, 40.223539 ], [ -74.93212, 40.22385 ], [ -74.93211, 40.22396 ], [ -74.932059, 40.224279 ], [ -74.93203, 40.22448 ], [ -74.931909, 40.22541 ], [ -74.93189, 40.225619 ], [ -74.9318, 40.22638 ], [ -74.931779, 40.226519 ], [ -74.93172, 40.22699 ], [ -74.931649, 40.22755 ], [ -74.93144, 40.22906 ], [ -74.931689, 40.22907 ], [ -74.93294, 40.229139 ], [ -74.934169, 40.229189 ], [ -74.935389, 40.22926 ], [ -74.93558, 40.22927 ], [ -74.93567, 40.22927 ], [ -74.936019, 40.229279 ], [ -74.93613, 40.229279 ], [ -74.93672, 40.229309 ], [ -74.937139, 40.22934 ], [ -74.937309, 40.22935 ], [ -74.93752, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93765, 40.22936 ], [ -74.937989, 40.229379 ], [ -74.93842, 40.229399 ], [ -74.9387, 40.22942 ], [ -74.938899, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.939209, 40.22943 ], [ -74.939749, 40.22944 ], [ -74.94004, 40.229459 ], [ -74.94045, 40.229459 ], [ -74.94044, 40.22964 ], [ -74.940419, 40.229839 ], [ -74.940379, 40.23023 ], [ -74.940339, 40.230659 ], [ -74.940329, 40.230939 ], [ -74.940289, 40.23126 ], [ -74.940199, 40.2315 ], [ -74.940009, 40.231839 ], [ -74.93978, 40.23212 ], [ -74.93964, 40.23232 ], [ -74.939569, 40.232529 ], [ -74.93955, 40.232739 ], [ -74.939559, 40.23285 ], [ -74.939609, 40.233089 ], [ -74.939699, 40.233269 ], [ -74.939739, 40.233329 ], [ -74.940739, 40.23421 ], [ -74.941239, 40.234609 ], [ -74.94147, 40.23484 ], [ -74.94166, 40.23509 ], [ -74.94174, 40.235349 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307175", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981679, 40.064059 ], [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.96443, 40.0883 ], [ -74.96438, 40.088449 ], [ -74.964309, 40.0886 ], [ -74.964219, 40.08876 ], [ -74.964149, 40.088909 ], [ -74.96408, 40.089089 ], [ -74.96398, 40.089259 ], [ -74.9638, 40.08966 ], [ -74.963699, 40.089999 ], [ -74.963649, 40.090339 ], [ -74.963639, 40.0905 ], [ -74.96362, 40.09083 ], [ -74.96376, 40.09082 ], [ -74.963999, 40.09083 ], [ -74.964139, 40.09083 ], [ -74.964309, 40.09082 ], [ -74.964489, 40.090789 ], [ -74.96462, 40.09075 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95832, 40.09803 ], [ -74.958829, 40.09833 ], [ -74.959359, 40.09865 ], [ -74.959599, 40.098799 ], [ -74.96011, 40.09912 ], [ -74.96021, 40.099179 ], [ -74.96038, 40.09929 ], [ -74.960049, 40.099599 ], [ -74.95992, 40.09973 ], [ -74.959639, 40.1 ], [ -74.95953, 40.10011 ], [ -74.95943, 40.10021 ], [ -74.959329, 40.1003 ], [ -74.95836, 40.10119 ], [ -74.958149, 40.101389 ], [ -74.957979, 40.10154 ], [ -74.957829, 40.101689 ], [ -74.95733, 40.10219 ], [ -74.95719, 40.102329 ], [ -74.95683, 40.10217 ], [ -74.956179, 40.101869 ], [ -74.955499, 40.101579 ], [ -74.955359, 40.101509 ], [ -74.955219, 40.10144 ], [ -74.95508, 40.10136 ], [ -74.954829, 40.101239 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.951089, 40.104579 ], [ -74.95101, 40.10471 ], [ -74.95093, 40.104839 ], [ -74.950909, 40.104899 ], [ -74.950899, 40.104989 ], [ -74.950899, 40.105099 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957349, 40.11459 ], [ -74.9574, 40.114639 ], [ -74.95763, 40.114929 ], [ -74.957699, 40.11503 ], [ -74.95778, 40.11514 ], [ -74.957889, 40.1153 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13888 ], [ -74.94743, 40.138939 ], [ -74.9472, 40.139049 ], [ -74.945869, 40.13971 ], [ -74.94473, 40.140279 ], [ -74.94426, 40.14051 ], [ -74.942809, 40.14124 ], [ -74.9426, 40.14134 ], [ -74.94201, 40.141639 ], [ -74.94049, 40.14243 ], [ -74.93963, 40.14285 ], [ -74.93847, 40.14342 ], [ -74.935929, 40.14467 ], [ -74.93581, 40.14474 ], [ -74.93553, 40.144859 ], [ -74.93483, 40.145169 ], [ -74.934709, 40.145219 ], [ -74.93442, 40.1453 ], [ -74.934219, 40.145319 ], [ -74.9341, 40.145319 ], [ -74.93392, 40.14528 ], [ -74.93382, 40.145239 ], [ -74.933719, 40.14518 ], [ -74.933579, 40.145069 ], [ -74.933539, 40.145039 ], [ -74.93334, 40.144789 ], [ -74.93306, 40.144429 ], [ -74.932599, 40.14385 ], [ -74.93252, 40.14375 ], [ -74.93244, 40.143639 ], [ -74.931919, 40.142899 ], [ -74.931729, 40.14261 ], [ -74.93132, 40.142089 ], [ -74.931069, 40.14177 ], [ -74.930379, 40.140849 ], [ -74.92947, 40.139569 ], [ -74.929399, 40.139479 ], [ -74.928589, 40.138399 ], [ -74.927549, 40.136949 ], [ -74.927409, 40.136779 ], [ -74.92682, 40.135899 ], [ -74.926559, 40.13556 ], [ -74.92596, 40.134709 ], [ -74.925169, 40.13359 ], [ -74.925029, 40.13339 ], [ -74.92493, 40.13324 ], [ -74.9246, 40.13276 ], [ -74.92443, 40.1325 ], [ -74.924259, 40.13225 ], [ -74.92411, 40.132029 ], [ -74.923819, 40.131629 ], [ -74.92371, 40.131469 ], [ -74.923449, 40.131119 ], [ -74.923409, 40.13106 ], [ -74.92317, 40.13072 ], [ -74.92308, 40.130589 ], [ -74.92302, 40.13051 ], [ -74.922869, 40.130289 ], [ -74.92276, 40.130129 ], [ -74.922649, 40.129959 ], [ -74.92244, 40.13027 ], [ -74.922279, 40.13052 ], [ -74.92223, 40.1306 ], [ -74.922, 40.130949 ], [ -74.921919, 40.13107 ], [ -74.921699, 40.13141 ], [ -74.9216, 40.131539 ], [ -74.92151, 40.131649 ], [ -74.920979, 40.13222 ], [ -74.920709, 40.1325 ], [ -74.920529, 40.13269 ], [ -74.92047, 40.13276 ], [ -74.920049, 40.13321 ], [ -74.9197, 40.13358 ], [ -74.91953, 40.13376 ], [ -74.919409, 40.13388 ], [ -74.91907, 40.134249 ], [ -74.918769, 40.13458 ], [ -74.91816, 40.13523 ], [ -74.917479, 40.135949 ], [ -74.91583, 40.13772 ], [ -74.915049, 40.13855 ], [ -74.91479, 40.13883 ], [ -74.914539, 40.13909 ], [ -74.91439, 40.13924 ], [ -74.91394, 40.13973 ], [ -74.913739, 40.139949 ], [ -74.91359, 40.140119 ], [ -74.913469, 40.140269 ], [ -74.913329, 40.14044 ], [ -74.91299, 40.14086 ], [ -74.912759, 40.14116 ], [ -74.912569, 40.14141 ], [ -74.912299, 40.1418 ], [ -74.91209, 40.142079 ], [ -74.912019, 40.142179 ], [ -74.91191, 40.14233 ], [ -74.911719, 40.142539 ], [ -74.912029, 40.14275 ], [ -74.91214, 40.14286 ], [ -74.91223, 40.14297 ], [ -74.912349, 40.14315 ], [ -74.91241, 40.14324 ], [ -74.91246, 40.14333 ], [ -74.912489, 40.1434 ], [ -74.91268, 40.14377 ], [ -74.912829, 40.14404 ], [ -74.91282, 40.144269 ], [ -74.91273, 40.14511 ], [ -74.91268, 40.145529 ], [ -74.91245, 40.14754 ], [ -74.91241, 40.14788 ], [ -74.912389, 40.14808 ], [ -74.912349, 40.14846 ], [ -74.912289, 40.14898 ], [ -74.91214, 40.15033 ], [ -74.912069, 40.150929 ], [ -74.912019, 40.1513 ], [ -74.911989, 40.151549 ], [ -74.91188, 40.15249 ], [ -74.91179, 40.153249 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.15365 ], [ -74.91182, 40.15411 ], [ -74.91183, 40.154309 ], [ -74.91187, 40.155069 ], [ -74.91187, 40.15511 ], [ -74.91192, 40.15584 ], [ -74.911939, 40.15609 ], [ -74.91196, 40.156419 ], [ -74.911989, 40.157109 ], [ -74.91201, 40.157489 ], [ -74.912019, 40.15772 ], [ -74.912029, 40.157909 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.158179 ], [ -74.91205, 40.158359 ], [ -74.912069, 40.15868 ], [ -74.912079, 40.158729 ], [ -74.912079, 40.15887 ], [ -74.912109, 40.15931 ], [ -74.912119, 40.15988 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.917559, 40.176839 ], [ -74.91763, 40.177029 ], [ -74.917659, 40.17714 ], [ -74.91767, 40.17717 ], [ -74.917689, 40.17726 ], [ -74.917739, 40.17742 ], [ -74.917749, 40.177449 ], [ -74.91776, 40.17749 ], [ -74.91786, 40.17788 ], [ -74.91795, 40.17821 ], [ -74.917959, 40.178259 ], [ -74.918, 40.17839 ], [ -74.918009, 40.17843 ], [ -74.91803, 40.17852 ], [ -74.918109, 40.17886 ], [ -74.918189, 40.17915 ], [ -74.91821, 40.17924 ], [ -74.91825, 40.17938 ], [ -74.91831, 40.179599 ], [ -74.918409, 40.17995 ], [ -74.91857, 40.18055 ], [ -74.91867, 40.180879 ], [ -74.91879, 40.1813 ], [ -74.9189, 40.18166 ], [ -74.919059, 40.182319 ], [ -74.91911, 40.18257 ], [ -74.91916, 40.182759 ], [ -74.919189, 40.182879 ], [ -74.919279, 40.18319 ], [ -74.91935, 40.183319 ], [ -74.91938, 40.18337 ], [ -74.919419, 40.183419 ], [ -74.91948, 40.183479 ], [ -74.91965, 40.18364 ], [ -74.919939, 40.183869 ], [ -74.92033, 40.18418 ], [ -74.92047, 40.184289 ], [ -74.920679, 40.184459 ], [ -74.921069, 40.184769 ], [ -74.92124, 40.184929 ], [ -74.92137, 40.18507 ], [ -74.92146, 40.185189 ], [ -74.921519, 40.185289 ], [ -74.92155, 40.185359 ], [ -74.921579, 40.185449 ], [ -74.92163, 40.185639 ], [ -74.92169, 40.18595 ], [ -74.921739, 40.186189 ], [ -74.92178, 40.18634 ], [ -74.921839, 40.18653 ], [ -74.9219, 40.18667 ], [ -74.92196, 40.18679 ], [ -74.922019, 40.186909 ], [ -74.922109, 40.18706 ], [ -74.922189, 40.187179 ], [ -74.92231, 40.18733 ], [ -74.922369, 40.1874 ], [ -74.922549, 40.18761 ], [ -74.92268, 40.18775 ], [ -74.922879, 40.18794 ], [ -74.92302, 40.18806 ], [ -74.923239, 40.188249 ], [ -74.9234, 40.1884 ], [ -74.92357, 40.18856 ], [ -74.92376, 40.188719 ], [ -74.923959, 40.188869 ], [ -74.92419, 40.18901 ], [ -74.92461, 40.189249 ], [ -74.924979, 40.189439 ], [ -74.92533, 40.189629 ], [ -74.925699, 40.18985 ], [ -74.9261, 40.19011 ], [ -74.926329, 40.19027 ], [ -74.92649, 40.19039 ], [ -74.926599, 40.19048 ], [ -74.926749, 40.19063 ], [ -74.92686, 40.19076 ], [ -74.926969, 40.1909 ], [ -74.92709, 40.19108 ], [ -74.92721, 40.19127 ], [ -74.927499, 40.19174 ], [ -74.92775, 40.1921 ], [ -74.928129, 40.192679 ], [ -74.92848, 40.193229 ], [ -74.92856, 40.19336 ], [ -74.928629, 40.193479 ], [ -74.928679, 40.193579 ], [ -74.928769, 40.193769 ], [ -74.92888, 40.194019 ], [ -74.92897, 40.19425 ], [ -74.929309, 40.195119 ], [ -74.92947, 40.195569 ], [ -74.92952, 40.19577 ], [ -74.92956, 40.19595 ], [ -74.9296, 40.196179 ], [ -74.929629, 40.196359 ], [ -74.92965, 40.196529 ], [ -74.929669, 40.196979 ], [ -74.92964, 40.19759 ], [ -74.92956, 40.19866 ], [ -74.92951, 40.19912 ], [ -74.929499, 40.19921 ], [ -74.92947, 40.199619 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.1999 ], [ -74.929489, 40.200149 ], [ -74.92951, 40.200339 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92964, 40.20242 ], [ -74.929659, 40.2026 ], [ -74.929669, 40.20278 ], [ -74.92969, 40.20298 ], [ -74.929709, 40.20323 ], [ -74.92973, 40.2035 ], [ -74.92974, 40.20361 ], [ -74.929759, 40.203829 ], [ -74.929859, 40.205199 ], [ -74.929929, 40.206009 ], [ -74.92996, 40.206599 ], [ -74.929979, 40.207049 ], [ -74.930019, 40.207709 ], [ -74.930029, 40.20782 ], [ -74.93006, 40.20856 ], [ -74.930069, 40.20866 ], [ -74.930119, 40.208969 ], [ -74.930169, 40.209239 ], [ -74.93019, 40.20938 ], [ -74.93023, 40.209589 ], [ -74.930299, 40.209949 ], [ -74.9305, 40.21098 ], [ -74.930569, 40.21133 ], [ -74.930619, 40.211549 ], [ -74.930879, 40.21277 ], [ -74.930929, 40.213019 ], [ -74.93109, 40.21379 ], [ -74.93114, 40.214019 ], [ -74.931189, 40.21424 ], [ -74.93127, 40.21461 ], [ -74.931339, 40.21493 ], [ -74.93139, 40.215179 ], [ -74.931429, 40.21538 ], [ -74.931469, 40.21559 ], [ -74.93153, 40.21595 ], [ -74.931549, 40.216089 ], [ -74.931559, 40.216179 ], [ -74.93168, 40.21666 ], [ -74.931729, 40.21677 ], [ -74.931779, 40.21704 ], [ -74.93189, 40.217159 ], [ -74.932009, 40.217319 ], [ -74.93211, 40.21749 ], [ -74.93217, 40.21765 ], [ -74.9323, 40.217969 ], [ -74.932719, 40.21891 ], [ -74.93289, 40.21925 ], [ -74.932999, 40.219469 ], [ -74.933049, 40.219569 ], [ -74.933139, 40.219739 ], [ -74.933309, 40.220049 ], [ -74.933489, 40.22034 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.936969, 40.22117 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.93258, 40.221219 ], [ -74.93249, 40.221279 ], [ -74.93247, 40.22135 ], [ -74.9324, 40.221759 ], [ -74.932229, 40.222819 ], [ -74.932139, 40.223539 ], [ -74.93212, 40.22385 ], [ -74.93211, 40.22396 ], [ -74.932059, 40.224279 ], [ -74.93203, 40.22448 ], [ -74.931909, 40.22541 ], [ -74.93189, 40.225619 ], [ -74.9318, 40.22638 ], [ -74.931779, 40.226519 ], [ -74.93172, 40.22699 ], [ -74.931649, 40.22755 ], [ -74.93144, 40.22906 ], [ -74.931689, 40.22907 ], [ -74.93294, 40.229139 ], [ -74.934169, 40.229189 ], [ -74.935389, 40.22926 ], [ -74.93558, 40.22927 ], [ -74.93567, 40.22927 ], [ -74.936019, 40.229279 ], [ -74.93613, 40.229279 ], [ -74.93672, 40.229309 ], [ -74.937139, 40.22934 ], [ -74.937309, 40.22935 ], [ -74.93752, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93765, 40.22936 ], [ -74.937989, 40.229379 ], [ -74.93842, 40.229399 ], [ -74.9387, 40.22942 ], [ -74.938899, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.939209, 40.22943 ], [ -74.939749, 40.22944 ], [ -74.94004, 40.229459 ], [ -74.94045, 40.229459 ], [ -74.94044, 40.22964 ], [ -74.940419, 40.229839 ], [ -74.940379, 40.23023 ], [ -74.940339, 40.230659 ], [ -74.940329, 40.230939 ], [ -74.940289, 40.23126 ], [ -74.940199, 40.2315 ], [ -74.940009, 40.231839 ], [ -74.93978, 40.23212 ], [ -74.93964, 40.23232 ], [ -74.939569, 40.232529 ], [ -74.93955, 40.232739 ], [ -74.939559, 40.23285 ], [ -74.939609, 40.233089 ], [ -74.939699, 40.233269 ], [ -74.939739, 40.233329 ], [ -74.940739, 40.23421 ], [ -74.941239, 40.234609 ], [ -74.94147, 40.23484 ], [ -74.94166, 40.23509 ], [ -74.94174, 40.235349 ], [ -74.94201, 40.23529 ], [ -74.94243, 40.23529 ], [ -74.94283, 40.2353 ], [ -74.94368, 40.235339 ], [ -74.94381, 40.23537 ], [ -74.943889, 40.23538 ], [ -74.94409, 40.2354 ], [ -74.944199, 40.23545 ], [ -74.944519, 40.235609 ], [ -74.944749, 40.23573 ], [ -74.94504, 40.235789 ], [ -74.945819, 40.23585 ], [ -74.945879, 40.23637 ], [ -74.94589, 40.23648 ], [ -74.945999, 40.23647 ], [ -74.946279, 40.236429 ], [ -74.946819, 40.236319 ], [ -74.947029, 40.23627 ], [ -74.94724, 40.23621 ], [ -74.947499, 40.23612 ], [ -74.947749, 40.23603 ], [ -74.94801, 40.23592 ], [ -74.94824, 40.23581 ], [ -74.948479, 40.235679 ], [ -74.948739, 40.235529 ], [ -74.94903, 40.235339 ], [ -74.949249, 40.235169 ], [ -74.949419, 40.23503 ], [ -74.949639, 40.23484 ], [ -74.949879, 40.234619 ], [ -74.9502, 40.23431 ], [ -74.95043, 40.234079 ], [ -74.950629, 40.233879 ], [ -74.95079, 40.233699 ], [ -74.95101, 40.233449 ], [ -74.951899, 40.233989 ], [ -74.952349, 40.234269 ], [ -74.95277, 40.234529 ], [ -74.95335, 40.234879 ], [ -74.953599, 40.23503 ], [ -74.95376, 40.23512 ], [ -74.95391, 40.235149 ], [ -74.954559, 40.23554 ], [ -74.95544, 40.236059 ], [ -74.955849, 40.236309 ], [ -74.956499, 40.236689 ], [ -74.95683, 40.23689 ], [ -74.957119, 40.237059 ], [ -74.957649, 40.23737 ], [ -74.958, 40.237579 ], [ -74.95866, 40.23798 ], [ -74.958739, 40.238029 ], [ -74.95908, 40.23824 ], [ -74.95917, 40.238289 ], [ -74.9598, 40.238679 ], [ -74.96039, 40.23905 ], [ -74.96055, 40.23915 ], [ -74.96124, 40.239569 ], [ -74.961309, 40.23961 ], [ -74.962469, 40.24032 ], [ -74.963239, 40.24078 ], [ -74.96484, 40.241799 ], [ -74.965079, 40.24195 ], [ -74.96538, 40.24213 ], [ -74.96601, 40.242509 ], [ -74.96636, 40.242259 ], [ -74.966529, 40.24213 ], [ -74.967069, 40.241709 ], [ -74.967249, 40.241539 ], [ -74.96753, 40.241269 ], [ -74.967779, 40.24098 ], [ -74.96795, 40.24079 ], [ -74.96775, 40.24069 ], [ -74.96726, 40.24044 ], [ -74.967, 40.24031 ], [ -74.96615, 40.23987 ], [ -74.965479, 40.239469 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307177", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981679, 40.064059 ], [ -74.981509, 40.064339 ], [ -74.98167, 40.06483 ], [ -74.981429, 40.064879 ], [ -74.98109, 40.064949 ], [ -74.980829, 40.065 ], [ -74.980699, 40.06502 ], [ -74.98063, 40.06503 ], [ -74.980569, 40.065039 ], [ -74.98031, 40.06509 ], [ -74.98009, 40.065129 ], [ -74.97999, 40.065139 ], [ -74.97992, 40.065149 ], [ -74.97981, 40.065159 ], [ -74.97969, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97946, 40.06517 ], [ -74.97918, 40.065139 ], [ -74.97897, 40.06511 ], [ -74.97893, 40.0651 ], [ -74.97878, 40.06508 ], [ -74.978579, 40.065039 ], [ -74.978359, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978139, 40.06502 ], [ -74.977999, 40.06503 ], [ -74.97792, 40.065039 ], [ -74.977859, 40.065049 ], [ -74.977719, 40.065069 ], [ -74.977499, 40.06512 ], [ -74.977269, 40.06519 ], [ -74.977149, 40.065229 ], [ -74.97693, 40.06529 ], [ -74.97677, 40.065339 ], [ -74.976519, 40.065409 ], [ -74.97626, 40.065489 ], [ -74.97613, 40.06553 ], [ -74.976019, 40.065569 ], [ -74.975749, 40.06565 ], [ -74.975619, 40.065689 ], [ -74.975299, 40.065779 ], [ -74.975199, 40.06581 ], [ -74.975069, 40.065849 ], [ -74.97488, 40.06591 ], [ -74.97469, 40.065969 ], [ -74.974489, 40.066029 ], [ -74.974269, 40.0661 ], [ -74.9741, 40.066149 ], [ -74.97392, 40.066209 ], [ -74.973849, 40.066229 ], [ -74.973809, 40.066239 ], [ -74.97334, 40.06637 ], [ -74.97294, 40.066489 ], [ -74.972789, 40.06654 ], [ -74.972679, 40.066579 ], [ -74.972589, 40.06662 ], [ -74.9723, 40.066739 ], [ -74.972149, 40.06681 ], [ -74.972109, 40.066829 ], [ -74.97204, 40.066869 ], [ -74.971979, 40.0669 ], [ -74.97177, 40.067029 ], [ -74.97163, 40.067109 ], [ -74.97128, 40.06734 ], [ -74.971249, 40.06736 ], [ -74.970979, 40.06755 ], [ -74.97086, 40.06763 ], [ -74.970669, 40.067759 ], [ -74.97056, 40.067829 ], [ -74.97045, 40.0679 ], [ -74.970299, 40.068 ], [ -74.97009, 40.06815 ], [ -74.96991, 40.068299 ], [ -74.96966, 40.068489 ], [ -74.96928, 40.06879 ], [ -74.968809, 40.06916 ], [ -74.968539, 40.069389 ], [ -74.968229, 40.069629 ], [ -74.967959, 40.069839 ], [ -74.96789, 40.069899 ], [ -74.967729, 40.07003 ], [ -74.96753, 40.070189 ], [ -74.96736, 40.07033 ], [ -74.96703, 40.07058 ], [ -74.966889, 40.070699 ], [ -74.96682, 40.07075 ], [ -74.966749, 40.070809 ], [ -74.96669, 40.07086 ], [ -74.966469, 40.07102 ], [ -74.966289, 40.07114 ], [ -74.966, 40.07132 ], [ -74.965949, 40.071349 ], [ -74.965799, 40.071429 ], [ -74.96524, 40.071719 ], [ -74.965079, 40.071809 ], [ -74.96489, 40.071909 ], [ -74.96453, 40.07212 ], [ -74.964369, 40.07221 ], [ -74.96393, 40.07247 ], [ -74.963819, 40.072529 ], [ -74.963379, 40.072779 ], [ -74.963059, 40.072959 ], [ -74.96295, 40.07303 ], [ -74.96253, 40.073249 ], [ -74.96231, 40.07337 ], [ -74.96183, 40.07363 ], [ -74.96165, 40.07372 ], [ -74.96154, 40.073779 ], [ -74.961439, 40.07383 ], [ -74.96169, 40.07411 ], [ -74.96177, 40.07419 ], [ -74.96218, 40.074609 ], [ -74.96241, 40.0748 ], [ -74.96259, 40.07491 ], [ -74.963239, 40.075299 ], [ -74.96367, 40.07563 ], [ -74.963869, 40.07582 ], [ -74.96402, 40.076039 ], [ -74.96412, 40.076229 ], [ -74.964229, 40.076499 ], [ -74.964309, 40.0768 ], [ -74.96443, 40.07717 ], [ -74.964759, 40.078289 ], [ -74.965049, 40.079739 ], [ -74.965139, 40.080059 ], [ -74.965209, 40.080269 ], [ -74.965499, 40.080999 ], [ -74.965589, 40.08113 ], [ -74.965749, 40.081449 ], [ -74.96578, 40.08156 ], [ -74.965849, 40.08177 ], [ -74.965889, 40.081889 ], [ -74.96592, 40.08204 ], [ -74.96597, 40.082259 ], [ -74.96609, 40.082609 ], [ -74.96525, 40.082529 ], [ -74.965039, 40.082499 ], [ -74.964779, 40.08245 ], [ -74.96471, 40.082779 ], [ -74.9647, 40.082949 ], [ -74.96471, 40.08318 ], [ -74.96471, 40.083339 ], [ -74.96471, 40.083509 ], [ -74.964669, 40.083749 ], [ -74.964629, 40.083879 ], [ -74.964599, 40.084059 ], [ -74.96457, 40.084219 ], [ -74.964549, 40.084319 ], [ -74.96453, 40.084399 ], [ -74.96448, 40.08473 ], [ -74.96448, 40.084779 ], [ -74.964449, 40.085049 ], [ -74.964449, 40.085209 ], [ -74.964449, 40.08528 ], [ -74.964459, 40.08533 ], [ -74.964629, 40.08627 ], [ -74.9647, 40.086639 ], [ -74.964719, 40.086829 ], [ -74.964729, 40.08698 ], [ -74.964719, 40.08708 ], [ -74.964719, 40.08714 ], [ -74.964719, 40.08732 ], [ -74.9647, 40.087389 ], [ -74.964689, 40.087469 ], [ -74.964549, 40.087929 ], [ -74.96443, 40.0883 ], [ -74.96438, 40.088449 ], [ -74.964309, 40.0886 ], [ -74.964219, 40.08876 ], [ -74.964149, 40.088909 ], [ -74.96408, 40.089089 ], [ -74.96398, 40.089259 ], [ -74.9638, 40.08966 ], [ -74.963699, 40.089999 ], [ -74.963649, 40.090339 ], [ -74.963639, 40.0905 ], [ -74.96362, 40.09083 ], [ -74.96376, 40.09082 ], [ -74.963999, 40.09083 ], [ -74.964139, 40.09083 ], [ -74.964309, 40.09082 ], [ -74.964489, 40.090789 ], [ -74.96462, 40.09075 ], [ -74.96471, 40.09075 ], [ -74.96489, 40.090989 ], [ -74.96501, 40.09112 ], [ -74.96511, 40.09119 ], [ -74.96519, 40.09127 ], [ -74.96538, 40.091429 ], [ -74.96556, 40.091599 ], [ -74.965139, 40.09184 ], [ -74.96453, 40.092129 ], [ -74.96439, 40.0922 ], [ -74.96425, 40.09227 ], [ -74.964179, 40.092299 ], [ -74.96384, 40.09246 ], [ -74.962979, 40.092849 ], [ -74.962689, 40.093 ], [ -74.96255, 40.09307 ], [ -74.962069, 40.09334 ], [ -74.96168, 40.09361 ], [ -74.96141, 40.09382 ], [ -74.96136, 40.093859 ], [ -74.96115, 40.09406 ], [ -74.960139, 40.09497 ], [ -74.959679, 40.09542 ], [ -74.95953, 40.095579 ], [ -74.95931, 40.09586 ], [ -74.95902, 40.096289 ], [ -74.95867, 40.096809 ], [ -74.958429, 40.097179 ], [ -74.95832, 40.097349 ], [ -74.95818, 40.097559 ], [ -74.958109, 40.09769 ], [ -74.95805, 40.09784 ], [ -74.95832, 40.09803 ], [ -74.958829, 40.09833 ], [ -74.959359, 40.09865 ], [ -74.959599, 40.098799 ], [ -74.96011, 40.09912 ], [ -74.96021, 40.099179 ], [ -74.96038, 40.09929 ], [ -74.960049, 40.099599 ], [ -74.95992, 40.09973 ], [ -74.959639, 40.1 ], [ -74.95953, 40.10011 ], [ -74.95943, 40.10021 ], [ -74.959329, 40.1003 ], [ -74.95836, 40.10119 ], [ -74.958149, 40.101389 ], [ -74.957979, 40.10154 ], [ -74.957829, 40.101689 ], [ -74.95733, 40.10219 ], [ -74.95719, 40.102329 ], [ -74.95683, 40.10217 ], [ -74.956179, 40.101869 ], [ -74.955499, 40.101579 ], [ -74.955359, 40.101509 ], [ -74.955219, 40.10144 ], [ -74.95508, 40.10136 ], [ -74.954829, 40.101239 ], [ -74.95454, 40.10111 ], [ -74.954379, 40.101249 ], [ -74.954159, 40.101429 ], [ -74.95399, 40.101579 ], [ -74.95386, 40.101689 ], [ -74.95377, 40.101779 ], [ -74.953659, 40.101879 ], [ -74.95355, 40.101969 ], [ -74.95346, 40.102049 ], [ -74.953379, 40.102119 ], [ -74.953299, 40.1022 ], [ -74.953209, 40.10229 ], [ -74.95299, 40.102509 ], [ -74.95281, 40.102689 ], [ -74.952569, 40.10292 ], [ -74.95246, 40.103049 ], [ -74.95233, 40.10319 ], [ -74.952219, 40.103299 ], [ -74.95211, 40.103409 ], [ -74.951769, 40.10378 ], [ -74.9516, 40.10396 ], [ -74.95143, 40.10416 ], [ -74.9513, 40.104299 ], [ -74.95121, 40.104389 ], [ -74.95112, 40.104489 ], [ -74.951089, 40.104579 ], [ -74.95101, 40.10471 ], [ -74.95093, 40.104839 ], [ -74.950909, 40.104899 ], [ -74.950899, 40.104989 ], [ -74.950899, 40.105099 ], [ -74.95089, 40.10525 ], [ -74.95094, 40.105359 ], [ -74.950989, 40.105469 ], [ -74.95107, 40.105659 ], [ -74.951259, 40.106109 ], [ -74.9513, 40.10621 ], [ -74.95138, 40.106379 ], [ -74.95147, 40.1066 ], [ -74.951539, 40.10675 ], [ -74.95164, 40.10695 ], [ -74.95169, 40.10705 ], [ -74.951759, 40.107189 ], [ -74.951809, 40.1073 ], [ -74.95193, 40.107549 ], [ -74.952119, 40.107969 ], [ -74.952299, 40.10838 ], [ -74.95247, 40.10875 ], [ -74.952519, 40.108879 ], [ -74.95265, 40.109169 ], [ -74.95278, 40.109439 ], [ -74.952889, 40.109699 ], [ -74.95304, 40.110039 ], [ -74.95309, 40.110159 ], [ -74.95313, 40.110239 ], [ -74.953249, 40.11047 ], [ -74.95345, 40.1108 ], [ -74.95358, 40.11099 ], [ -74.954019, 40.111579 ], [ -74.954159, 40.111759 ], [ -74.954189, 40.11179 ], [ -74.954419, 40.11206 ], [ -74.954519, 40.11216 ], [ -74.954549, 40.112199 ], [ -74.954699, 40.11234 ], [ -74.95484, 40.112479 ], [ -74.95508, 40.112679 ], [ -74.95548, 40.113009 ], [ -74.95557, 40.11308 ], [ -74.956039, 40.11343 ], [ -74.956409, 40.11369 ], [ -74.95664, 40.11389 ], [ -74.95697, 40.114189 ], [ -74.957349, 40.11459 ], [ -74.9574, 40.114639 ], [ -74.95763, 40.114929 ], [ -74.957699, 40.11503 ], [ -74.95778, 40.11514 ], [ -74.957889, 40.1153 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95944, 40.11757 ], [ -74.95965, 40.117879 ], [ -74.95984, 40.118149 ], [ -74.96015, 40.118609 ], [ -74.960359, 40.11893 ], [ -74.96047, 40.1191 ], [ -74.96056, 40.119249 ], [ -74.960579, 40.11928 ], [ -74.96061, 40.119329 ], [ -74.960719, 40.119499 ], [ -74.960799, 40.11963 ], [ -74.96096, 40.119879 ], [ -74.961119, 40.120129 ], [ -74.96133, 40.12044 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12108 ], [ -74.96118, 40.121219 ], [ -74.961, 40.121379 ], [ -74.960589, 40.12179 ], [ -74.95998, 40.12242 ], [ -74.959909, 40.122479 ], [ -74.958609, 40.12377 ], [ -74.95799, 40.12439 ], [ -74.95724, 40.125079 ], [ -74.95692, 40.125369 ], [ -74.956659, 40.125619 ], [ -74.956579, 40.12569 ], [ -74.955769, 40.126429 ], [ -74.955309, 40.126889 ], [ -74.954739, 40.127349 ], [ -74.95449, 40.12757 ], [ -74.95417, 40.12783 ], [ -74.95377, 40.12808 ], [ -74.953609, 40.12818 ], [ -74.95354, 40.128229 ], [ -74.953329, 40.12835 ], [ -74.952969, 40.12854 ], [ -74.952569, 40.12871 ], [ -74.95201, 40.128879 ], [ -74.950599, 40.12928 ], [ -74.949689, 40.129509 ], [ -74.948739, 40.12974 ], [ -74.948439, 40.1298 ], [ -74.947539, 40.12999 ], [ -74.946059, 40.130379 ], [ -74.945559, 40.13051 ], [ -74.945199, 40.1306 ], [ -74.94437, 40.131019 ], [ -74.94422, 40.131099 ], [ -74.942889, 40.131749 ], [ -74.94327, 40.13442 ], [ -74.94342, 40.135249 ], [ -74.94341, 40.13558 ], [ -74.943349, 40.135769 ], [ -74.943259, 40.136049 ], [ -74.94323, 40.13612 ], [ -74.943159, 40.13628 ], [ -74.944649, 40.136849 ], [ -74.944969, 40.13699 ], [ -74.945339, 40.13719 ], [ -74.945919, 40.13755 ], [ -74.946149, 40.137699 ], [ -74.946489, 40.13791 ], [ -74.9468, 40.1381 ], [ -74.94724, 40.13836 ], [ -74.94755, 40.13855 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307178", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.96519, 40.23932 ], [ -74.964989, 40.23923 ], [ -74.96489, 40.239189 ], [ -74.964489, 40.23906 ], [ -74.96408, 40.23896 ], [ -74.963429, 40.238669 ], [ -74.96313, 40.23852 ], [ -74.96249, 40.238139 ], [ -74.96218, 40.238009 ], [ -74.96191, 40.237929 ], [ -74.96147, 40.237829 ], [ -74.96093, 40.2378 ], [ -74.96028, 40.237829 ], [ -74.95979, 40.23788 ], [ -74.95974, 40.23788 ], [ -74.95958, 40.2379 ], [ -74.95917, 40.238289 ], [ -74.95908, 40.23824 ], [ -74.958739, 40.238029 ], [ -74.95866, 40.23798 ], [ -74.958, 40.237579 ], [ -74.957649, 40.23737 ], [ -74.957119, 40.237059 ], [ -74.95683, 40.23689 ], [ -74.956499, 40.236689 ], [ -74.955849, 40.236309 ], [ -74.95544, 40.236059 ], [ -74.954559, 40.23554 ], [ -74.95391, 40.235149 ], [ -74.95385, 40.235049 ], [ -74.953659, 40.23493 ], [ -74.953289, 40.234689 ], [ -74.95277, 40.23437 ], [ -74.952159, 40.233989 ], [ -74.951889, 40.23383 ], [ -74.95142, 40.233539 ], [ -74.95112, 40.233349 ], [ -74.95101, 40.233449 ], [ -74.950899, 40.23349 ], [ -74.95083, 40.233529 ], [ -74.95076, 40.23358 ], [ -74.950689, 40.233639 ], [ -74.950509, 40.233799 ], [ -74.950229, 40.234089 ], [ -74.949649, 40.23465 ], [ -74.9494, 40.234879 ], [ -74.949149, 40.23509 ], [ -74.948839, 40.235319 ], [ -74.94845, 40.23556 ], [ -74.94832, 40.23563 ], [ -74.948159, 40.235709 ], [ -74.947949, 40.23582 ], [ -74.947769, 40.2359 ], [ -74.94756, 40.23599 ], [ -74.947409, 40.236039 ], [ -74.94734, 40.236069 ], [ -74.947119, 40.236129 ], [ -74.94697, 40.23617 ], [ -74.946899, 40.23619 ], [ -74.946679, 40.236239 ], [ -74.94634, 40.2363 ], [ -74.94603, 40.23635 ], [ -74.945879, 40.23637 ], [ -74.945819, 40.23585 ], [ -74.94504, 40.235789 ], [ -74.944749, 40.23573 ], [ -74.944519, 40.235609 ], [ -74.944199, 40.23545 ], [ -74.94409, 40.2354 ], [ -74.943889, 40.23538 ], [ -74.94381, 40.23537 ], [ -74.94368, 40.235339 ], [ -74.94283, 40.2353 ], [ -74.94243, 40.23529 ], [ -74.94201, 40.23529 ], [ -74.94174, 40.235349 ], [ -74.94166, 40.23509 ], [ -74.94147, 40.23484 ], [ -74.941239, 40.234609 ], [ -74.940739, 40.23421 ], [ -74.939739, 40.233329 ], [ -74.939699, 40.233269 ], [ -74.939609, 40.233089 ], [ -74.939559, 40.23285 ], [ -74.93955, 40.232739 ], [ -74.939569, 40.232529 ], [ -74.93964, 40.23232 ], [ -74.93978, 40.23212 ], [ -74.940009, 40.231839 ], [ -74.940199, 40.2315 ], [ -74.940289, 40.23126 ], [ -74.940329, 40.230939 ], [ -74.940339, 40.230659 ], [ -74.940379, 40.23023 ], [ -74.940419, 40.229839 ], [ -74.94044, 40.22964 ], [ -74.94045, 40.229459 ], [ -74.94004, 40.229459 ], [ -74.939749, 40.22944 ], [ -74.939209, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.938899, 40.22943 ], [ -74.9387, 40.22942 ], [ -74.93842, 40.229399 ], [ -74.937989, 40.229379 ], [ -74.93765, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93752, 40.22936 ], [ -74.937309, 40.22935 ], [ -74.937139, 40.22934 ], [ -74.93672, 40.229309 ], [ -74.93613, 40.229279 ], [ -74.936019, 40.229279 ], [ -74.93567, 40.22927 ], [ -74.93558, 40.22927 ], [ -74.935389, 40.22926 ], [ -74.934169, 40.229189 ], [ -74.93294, 40.229139 ], [ -74.931689, 40.22907 ], [ -74.93144, 40.22906 ], [ -74.931649, 40.22755 ], [ -74.93172, 40.22699 ], [ -74.931779, 40.226519 ], [ -74.9318, 40.22638 ], [ -74.93189, 40.225619 ], [ -74.931909, 40.22541 ], [ -74.93203, 40.22448 ], [ -74.932059, 40.224279 ], [ -74.93211, 40.22396 ], [ -74.93212, 40.22385 ], [ -74.932139, 40.223539 ], [ -74.932229, 40.222819 ], [ -74.9324, 40.221759 ], [ -74.93247, 40.22135 ], [ -74.93249, 40.221279 ], [ -74.93258, 40.221219 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.936969, 40.22117 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.933489, 40.22034 ], [ -74.933309, 40.220049 ], [ -74.933139, 40.219739 ], [ -74.933049, 40.219569 ], [ -74.932999, 40.219469 ], [ -74.93289, 40.21925 ], [ -74.932719, 40.21891 ], [ -74.9323, 40.217969 ], [ -74.93217, 40.21765 ], [ -74.93211, 40.21749 ], [ -74.932009, 40.217319 ], [ -74.93189, 40.217159 ], [ -74.931779, 40.21704 ], [ -74.931729, 40.21677 ], [ -74.93168, 40.21666 ], [ -74.931559, 40.216179 ], [ -74.931549, 40.216089 ], [ -74.93153, 40.21595 ], [ -74.931469, 40.21559 ], [ -74.931429, 40.21538 ], [ -74.93139, 40.215179 ], [ -74.931339, 40.21493 ], [ -74.93127, 40.21461 ], [ -74.931189, 40.21424 ], [ -74.93114, 40.214019 ], [ -74.93109, 40.21379 ], [ -74.930929, 40.213019 ], [ -74.930879, 40.21277 ], [ -74.930619, 40.211549 ], [ -74.930569, 40.21133 ], [ -74.9305, 40.21098 ], [ -74.930299, 40.209949 ], [ -74.93023, 40.209589 ], [ -74.93019, 40.20938 ], [ -74.930169, 40.209239 ], [ -74.930119, 40.208969 ], [ -74.930069, 40.20866 ], [ -74.93006, 40.20856 ], [ -74.930029, 40.20782 ], [ -74.930019, 40.207709 ], [ -74.929979, 40.207049 ], [ -74.92996, 40.206599 ], [ -74.929929, 40.206009 ], [ -74.929859, 40.205199 ], [ -74.929759, 40.203829 ], [ -74.92974, 40.20361 ], [ -74.92973, 40.2035 ], [ -74.929709, 40.20323 ], [ -74.92969, 40.20298 ], [ -74.929669, 40.20278 ], [ -74.929659, 40.2026 ], [ -74.92964, 40.20242 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92951, 40.200339 ], [ -74.929489, 40.200149 ], [ -74.92947, 40.1999 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.199619 ], [ -74.929499, 40.19921 ], [ -74.92951, 40.19912 ], [ -74.92956, 40.19866 ], [ -74.92964, 40.19759 ], [ -74.929669, 40.196979 ], [ -74.92965, 40.196529 ], [ -74.929629, 40.196359 ], [ -74.9296, 40.196179 ], [ -74.92956, 40.19595 ], [ -74.92952, 40.19577 ], [ -74.92947, 40.195569 ], [ -74.929309, 40.195119 ], [ -74.92897, 40.19425 ], [ -74.92888, 40.194019 ], [ -74.928769, 40.193769 ], [ -74.928679, 40.193579 ], [ -74.928629, 40.193479 ], [ -74.92856, 40.19336 ], [ -74.92848, 40.193229 ], [ -74.928129, 40.192679 ], [ -74.92775, 40.1921 ], [ -74.927499, 40.19174 ], [ -74.92721, 40.19127 ], [ -74.92709, 40.19108 ], [ -74.926969, 40.1909 ], [ -74.92686, 40.19076 ], [ -74.926749, 40.19063 ], [ -74.926599, 40.19048 ], [ -74.92649, 40.19039 ], [ -74.926329, 40.19027 ], [ -74.9261, 40.19011 ], [ -74.925699, 40.18985 ], [ -74.92533, 40.189629 ], [ -74.924979, 40.189439 ], [ -74.92461, 40.189249 ], [ -74.92419, 40.18901 ], [ -74.923959, 40.188869 ], [ -74.92376, 40.188719 ], [ -74.92357, 40.18856 ], [ -74.9234, 40.1884 ], [ -74.923239, 40.188249 ], [ -74.92302, 40.18806 ], [ -74.922879, 40.18794 ], [ -74.92268, 40.18775 ], [ -74.922549, 40.18761 ], [ -74.922369, 40.1874 ], [ -74.92231, 40.18733 ], [ -74.922189, 40.187179 ], [ -74.922109, 40.18706 ], [ -74.922019, 40.186909 ], [ -74.92196, 40.18679 ], [ -74.9219, 40.18667 ], [ -74.921839, 40.18653 ], [ -74.92178, 40.18634 ], [ -74.921739, 40.186189 ], [ -74.92169, 40.18595 ], [ -74.92163, 40.185639 ], [ -74.921579, 40.185449 ], [ -74.92155, 40.185359 ], [ -74.921519, 40.185289 ], [ -74.92146, 40.185189 ], [ -74.92137, 40.18507 ], [ -74.92124, 40.184929 ], [ -74.921069, 40.184769 ], [ -74.920679, 40.184459 ], [ -74.92047, 40.184289 ], [ -74.92033, 40.18418 ], [ -74.919939, 40.183869 ], [ -74.91965, 40.18364 ], [ -74.91948, 40.183479 ], [ -74.919419, 40.183419 ], [ -74.91938, 40.18337 ], [ -74.91935, 40.183319 ], [ -74.919279, 40.18319 ], [ -74.919189, 40.182879 ], [ -74.91916, 40.182759 ], [ -74.91911, 40.18257 ], [ -74.919059, 40.182319 ], [ -74.9189, 40.18166 ], [ -74.91879, 40.1813 ], [ -74.91867, 40.180879 ], [ -74.91857, 40.18055 ], [ -74.918409, 40.17995 ], [ -74.91831, 40.179599 ], [ -74.91825, 40.17938 ], [ -74.91821, 40.17924 ], [ -74.918189, 40.17915 ], [ -74.918109, 40.17886 ], [ -74.91803, 40.17852 ], [ -74.918009, 40.17843 ], [ -74.918, 40.17839 ], [ -74.917959, 40.178259 ], [ -74.91795, 40.17821 ], [ -74.91786, 40.17788 ], [ -74.91776, 40.17749 ], [ -74.917749, 40.177449 ], [ -74.917739, 40.17742 ], [ -74.917689, 40.17726 ], [ -74.91767, 40.17717 ], [ -74.917659, 40.17714 ], [ -74.91763, 40.177029 ], [ -74.917559, 40.176839 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912079, 40.158729 ], [ -74.912069, 40.15868 ], [ -74.91205, 40.158359 ], [ -74.912029, 40.158179 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.157909 ], [ -74.912019, 40.15772 ], [ -74.91201, 40.157489 ], [ -74.911989, 40.157109 ], [ -74.91196, 40.156419 ], [ -74.911939, 40.15609 ], [ -74.91192, 40.15584 ], [ -74.91187, 40.15511 ], [ -74.91187, 40.155069 ], [ -74.91183, 40.154309 ], [ -74.91182, 40.15411 ], [ -74.91179, 40.15365 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.153249 ], [ -74.91188, 40.15249 ], [ -74.911989, 40.151549 ], [ -74.912019, 40.1513 ], [ -74.912069, 40.150929 ], [ -74.91214, 40.15033 ], [ -74.912289, 40.14898 ], [ -74.912349, 40.14846 ], [ -74.912389, 40.14808 ], [ -74.91241, 40.14788 ], [ -74.91245, 40.14754 ], [ -74.91268, 40.145529 ], [ -74.91273, 40.14511 ], [ -74.91282, 40.144269 ], [ -74.912829, 40.14404 ], [ -74.91268, 40.14377 ], [ -74.912489, 40.1434 ], [ -74.91246, 40.14333 ], [ -74.91241, 40.14324 ], [ -74.912349, 40.14315 ], [ -74.91223, 40.14297 ], [ -74.91214, 40.14286 ], [ -74.912029, 40.14275 ], [ -74.911989, 40.14268 ], [ -74.91196, 40.142619 ], [ -74.911939, 40.14257 ], [ -74.91192, 40.1425 ], [ -74.91191, 40.14243 ], [ -74.91191, 40.142369 ], [ -74.91191, 40.14233 ], [ -74.912019, 40.142179 ], [ -74.91209, 40.142079 ], [ -74.912299, 40.1418 ], [ -74.912569, 40.14141 ], [ -74.912759, 40.14116 ], [ -74.91299, 40.14086 ], [ -74.913329, 40.14044 ], [ -74.913469, 40.140269 ], [ -74.91359, 40.140119 ], [ -74.913739, 40.139949 ], [ -74.91394, 40.13973 ], [ -74.91439, 40.13924 ], [ -74.914539, 40.13909 ], [ -74.91479, 40.13883 ], [ -74.915049, 40.13855 ], [ -74.91583, 40.13772 ], [ -74.917479, 40.135949 ], [ -74.91816, 40.13523 ], [ -74.918769, 40.13458 ], [ -74.91907, 40.134249 ], [ -74.919409, 40.13388 ], [ -74.91953, 40.13376 ], [ -74.9197, 40.13358 ], [ -74.920049, 40.13321 ], [ -74.92047, 40.13276 ], [ -74.920529, 40.13269 ], [ -74.920709, 40.1325 ], [ -74.920979, 40.13222 ], [ -74.92151, 40.131649 ], [ -74.9216, 40.131539 ], [ -74.921699, 40.13141 ], [ -74.921919, 40.13107 ], [ -74.922, 40.130949 ], [ -74.92223, 40.1306 ], [ -74.922279, 40.13052 ], [ -74.92244, 40.13027 ], [ -74.922649, 40.129959 ], [ -74.92276, 40.130129 ], [ -74.922869, 40.130289 ], [ -74.92302, 40.13051 ], [ -74.92308, 40.130589 ], [ -74.92317, 40.13072 ], [ -74.923409, 40.13106 ], [ -74.923449, 40.131119 ], [ -74.92371, 40.131469 ], [ -74.923819, 40.131629 ], [ -74.92411, 40.132029 ], [ -74.924259, 40.13225 ], [ -74.92443, 40.1325 ], [ -74.9246, 40.13276 ], [ -74.92493, 40.13324 ], [ -74.925029, 40.13339 ], [ -74.925169, 40.13359 ], [ -74.92596, 40.134709 ], [ -74.926559, 40.13556 ], [ -74.92682, 40.135899 ], [ -74.927409, 40.136779 ], [ -74.927549, 40.136949 ], [ -74.928589, 40.138399 ], [ -74.929399, 40.139479 ], [ -74.92947, 40.139569 ], [ -74.930379, 40.140849 ], [ -74.931069, 40.14177 ], [ -74.93132, 40.142089 ], [ -74.931729, 40.14261 ], [ -74.931919, 40.142899 ], [ -74.93244, 40.143639 ], [ -74.93252, 40.14375 ], [ -74.932599, 40.14385 ], [ -74.93306, 40.144429 ], [ -74.93334, 40.144789 ], [ -74.933539, 40.145039 ], [ -74.933579, 40.145069 ], [ -74.933719, 40.14518 ], [ -74.93382, 40.145239 ], [ -74.93392, 40.14528 ], [ -74.9341, 40.145319 ], [ -74.934219, 40.145319 ], [ -74.93442, 40.1453 ], [ -74.934709, 40.145219 ], [ -74.93483, 40.145169 ], [ -74.93553, 40.144859 ], [ -74.93581, 40.14474 ], [ -74.935929, 40.14467 ], [ -74.93847, 40.14342 ], [ -74.93963, 40.14285 ], [ -74.94049, 40.14243 ], [ -74.94201, 40.141639 ], [ -74.9426, 40.14134 ], [ -74.942809, 40.14124 ], [ -74.94426, 40.14051 ], [ -74.94473, 40.140279 ], [ -74.945869, 40.13971 ], [ -74.9472, 40.139049 ], [ -74.94743, 40.138939 ], [ -74.94755, 40.13888 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.950899, 40.105099 ], [ -74.950899, 40.104989 ], [ -74.950909, 40.104899 ], [ -74.95093, 40.104839 ], [ -74.95101, 40.10471 ], [ -74.951089, 40.104579 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.954829, 40.101239 ], [ -74.95508, 40.10136 ], [ -74.955219, 40.10144 ], [ -74.955359, 40.101509 ], [ -74.955499, 40.101579 ], [ -74.956179, 40.101869 ], [ -74.95683, 40.10217 ], [ -74.95719, 40.102329 ], [ -74.95733, 40.10219 ], [ -74.957829, 40.101689 ], [ -74.957979, 40.10154 ], [ -74.958149, 40.101389 ], [ -74.95836, 40.10119 ], [ -74.959329, 40.1003 ], [ -74.95943, 40.10021 ], [ -74.95953, 40.10011 ], [ -74.959639, 40.1 ], [ -74.95992, 40.09973 ], [ -74.960049, 40.099599 ], [ -74.96038, 40.09929 ], [ -74.96021, 40.099179 ], [ -74.96011, 40.09912 ], [ -74.959599, 40.098799 ], [ -74.959359, 40.09865 ], [ -74.958829, 40.09833 ], [ -74.95832, 40.09803 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307180", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.96519, 40.23932 ], [ -74.964989, 40.23923 ], [ -74.96489, 40.239189 ], [ -74.964489, 40.23906 ], [ -74.96408, 40.23896 ], [ -74.963429, 40.238669 ], [ -74.96313, 40.23852 ], [ -74.96249, 40.238139 ], [ -74.96218, 40.238009 ], [ -74.96191, 40.237929 ], [ -74.96147, 40.237829 ], [ -74.96093, 40.2378 ], [ -74.96028, 40.237829 ], [ -74.95979, 40.23788 ], [ -74.95974, 40.23788 ], [ -74.95958, 40.2379 ], [ -74.95917, 40.238289 ], [ -74.95908, 40.23824 ], [ -74.958739, 40.238029 ], [ -74.95866, 40.23798 ], [ -74.958, 40.237579 ], [ -74.957649, 40.23737 ], [ -74.957119, 40.237059 ], [ -74.95683, 40.23689 ], [ -74.956499, 40.236689 ], [ -74.955849, 40.236309 ], [ -74.95544, 40.236059 ], [ -74.954559, 40.23554 ], [ -74.95391, 40.235149 ], [ -74.95385, 40.235049 ], [ -74.953659, 40.23493 ], [ -74.953289, 40.234689 ], [ -74.95277, 40.23437 ], [ -74.952159, 40.233989 ], [ -74.951889, 40.23383 ], [ -74.95142, 40.233539 ], [ -74.95112, 40.233349 ], [ -74.95101, 40.233449 ], [ -74.950899, 40.23349 ], [ -74.95083, 40.233529 ], [ -74.95076, 40.23358 ], [ -74.950689, 40.233639 ], [ -74.950509, 40.233799 ], [ -74.950229, 40.234089 ], [ -74.949649, 40.23465 ], [ -74.9494, 40.234879 ], [ -74.949149, 40.23509 ], [ -74.948839, 40.235319 ], [ -74.94845, 40.23556 ], [ -74.94832, 40.23563 ], [ -74.948159, 40.235709 ], [ -74.947949, 40.23582 ], [ -74.947769, 40.2359 ], [ -74.94756, 40.23599 ], [ -74.947409, 40.236039 ], [ -74.94734, 40.236069 ], [ -74.947119, 40.236129 ], [ -74.94697, 40.23617 ], [ -74.946899, 40.23619 ], [ -74.946679, 40.236239 ], [ -74.94634, 40.2363 ], [ -74.94603, 40.23635 ], [ -74.945879, 40.23637 ], [ -74.945819, 40.23585 ], [ -74.94504, 40.235789 ], [ -74.944749, 40.23573 ], [ -74.944519, 40.235609 ], [ -74.944199, 40.23545 ], [ -74.94409, 40.2354 ], [ -74.943889, 40.23538 ], [ -74.94381, 40.23537 ], [ -74.94368, 40.235339 ], [ -74.94283, 40.2353 ], [ -74.94243, 40.23529 ], [ -74.94201, 40.23529 ], [ -74.94174, 40.235349 ], [ -74.94166, 40.23509 ], [ -74.94147, 40.23484 ], [ -74.941239, 40.234609 ], [ -74.940739, 40.23421 ], [ -74.939739, 40.233329 ], [ -74.939699, 40.233269 ], [ -74.939609, 40.233089 ], [ -74.939559, 40.23285 ], [ -74.93955, 40.232739 ], [ -74.939569, 40.232529 ], [ -74.93964, 40.23232 ], [ -74.93978, 40.23212 ], [ -74.940009, 40.231839 ], [ -74.940199, 40.2315 ], [ -74.940289, 40.23126 ], [ -74.940329, 40.230939 ], [ -74.940339, 40.230659 ], [ -74.940379, 40.23023 ], [ -74.940419, 40.229839 ], [ -74.94044, 40.22964 ], [ -74.94045, 40.229459 ], [ -74.94004, 40.229459 ], [ -74.939749, 40.22944 ], [ -74.939209, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.938899, 40.22943 ], [ -74.9387, 40.22942 ], [ -74.93842, 40.229399 ], [ -74.937989, 40.229379 ], [ -74.93765, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93752, 40.22936 ], [ -74.937309, 40.22935 ], [ -74.937139, 40.22934 ], [ -74.93672, 40.229309 ], [ -74.93613, 40.229279 ], [ -74.936019, 40.229279 ], [ -74.93567, 40.22927 ], [ -74.93558, 40.22927 ], [ -74.935389, 40.22926 ], [ -74.934169, 40.229189 ], [ -74.93294, 40.229139 ], [ -74.931689, 40.22907 ], [ -74.93144, 40.22906 ], [ -74.931649, 40.22755 ], [ -74.93172, 40.22699 ], [ -74.931779, 40.226519 ], [ -74.9318, 40.22638 ], [ -74.93189, 40.225619 ], [ -74.931909, 40.22541 ], [ -74.93203, 40.22448 ], [ -74.932059, 40.224279 ], [ -74.93211, 40.22396 ], [ -74.93212, 40.22385 ], [ -74.932139, 40.223539 ], [ -74.932229, 40.222819 ], [ -74.9324, 40.221759 ], [ -74.93247, 40.22135 ], [ -74.93249, 40.221279 ], [ -74.93258, 40.221219 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.936969, 40.22117 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.933489, 40.22034 ], [ -74.933309, 40.220049 ], [ -74.933139, 40.219739 ], [ -74.933049, 40.219569 ], [ -74.932999, 40.219469 ], [ -74.93289, 40.21925 ], [ -74.932719, 40.21891 ], [ -74.9323, 40.217969 ], [ -74.93217, 40.21765 ], [ -74.93211, 40.21749 ], [ -74.932009, 40.217319 ], [ -74.93189, 40.217159 ], [ -74.931779, 40.21704 ], [ -74.931729, 40.21677 ], [ -74.93168, 40.21666 ], [ -74.931559, 40.216179 ], [ -74.931549, 40.216089 ], [ -74.93153, 40.21595 ], [ -74.931469, 40.21559 ], [ -74.931429, 40.21538 ], [ -74.93139, 40.215179 ], [ -74.931339, 40.21493 ], [ -74.93127, 40.21461 ], [ -74.931189, 40.21424 ], [ -74.93114, 40.214019 ], [ -74.93109, 40.21379 ], [ -74.930929, 40.213019 ], [ -74.930879, 40.21277 ], [ -74.930619, 40.211549 ], [ -74.930569, 40.21133 ], [ -74.9305, 40.21098 ], [ -74.930299, 40.209949 ], [ -74.93023, 40.209589 ], [ -74.93019, 40.20938 ], [ -74.930169, 40.209239 ], [ -74.930119, 40.208969 ], [ -74.930069, 40.20866 ], [ -74.93006, 40.20856 ], [ -74.930029, 40.20782 ], [ -74.930019, 40.207709 ], [ -74.929979, 40.207049 ], [ -74.92996, 40.206599 ], [ -74.929929, 40.206009 ], [ -74.929859, 40.205199 ], [ -74.929759, 40.203829 ], [ -74.92974, 40.20361 ], [ -74.92973, 40.2035 ], [ -74.929709, 40.20323 ], [ -74.92969, 40.20298 ], [ -74.929669, 40.20278 ], [ -74.929659, 40.2026 ], [ -74.92964, 40.20242 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92951, 40.200339 ], [ -74.929489, 40.200149 ], [ -74.92947, 40.1999 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.199619 ], [ -74.929499, 40.19921 ], [ -74.92951, 40.19912 ], [ -74.92956, 40.19866 ], [ -74.92964, 40.19759 ], [ -74.929669, 40.196979 ], [ -74.92965, 40.196529 ], [ -74.929629, 40.196359 ], [ -74.9296, 40.196179 ], [ -74.92956, 40.19595 ], [ -74.92952, 40.19577 ], [ -74.92947, 40.195569 ], [ -74.929309, 40.195119 ], [ -74.92897, 40.19425 ], [ -74.92888, 40.194019 ], [ -74.928769, 40.193769 ], [ -74.928679, 40.193579 ], [ -74.928629, 40.193479 ], [ -74.92856, 40.19336 ], [ -74.92848, 40.193229 ], [ -74.928129, 40.192679 ], [ -74.92775, 40.1921 ], [ -74.927499, 40.19174 ], [ -74.92721, 40.19127 ], [ -74.92709, 40.19108 ], [ -74.926969, 40.1909 ], [ -74.92686, 40.19076 ], [ -74.926749, 40.19063 ], [ -74.926599, 40.19048 ], [ -74.92649, 40.19039 ], [ -74.926329, 40.19027 ], [ -74.9261, 40.19011 ], [ -74.925699, 40.18985 ], [ -74.92533, 40.189629 ], [ -74.924979, 40.189439 ], [ -74.92461, 40.189249 ], [ -74.92419, 40.18901 ], [ -74.923959, 40.188869 ], [ -74.92376, 40.188719 ], [ -74.92357, 40.18856 ], [ -74.9234, 40.1884 ], [ -74.923239, 40.188249 ], [ -74.92302, 40.18806 ], [ -74.922879, 40.18794 ], [ -74.92268, 40.18775 ], [ -74.922549, 40.18761 ], [ -74.922369, 40.1874 ], [ -74.92231, 40.18733 ], [ -74.922189, 40.187179 ], [ -74.922109, 40.18706 ], [ -74.922019, 40.186909 ], [ -74.92196, 40.18679 ], [ -74.9219, 40.18667 ], [ -74.921839, 40.18653 ], [ -74.92178, 40.18634 ], [ -74.921739, 40.186189 ], [ -74.92169, 40.18595 ], [ -74.92163, 40.185639 ], [ -74.921579, 40.185449 ], [ -74.92155, 40.185359 ], [ -74.921519, 40.185289 ], [ -74.92146, 40.185189 ], [ -74.92137, 40.18507 ], [ -74.92124, 40.184929 ], [ -74.921069, 40.184769 ], [ -74.920679, 40.184459 ], [ -74.92047, 40.184289 ], [ -74.92033, 40.18418 ], [ -74.919939, 40.183869 ], [ -74.91965, 40.18364 ], [ -74.91948, 40.183479 ], [ -74.919419, 40.183419 ], [ -74.91938, 40.18337 ], [ -74.91935, 40.183319 ], [ -74.919279, 40.18319 ], [ -74.919189, 40.182879 ], [ -74.91916, 40.182759 ], [ -74.91911, 40.18257 ], [ -74.919059, 40.182319 ], [ -74.9189, 40.18166 ], [ -74.91879, 40.1813 ], [ -74.91867, 40.180879 ], [ -74.91857, 40.18055 ], [ -74.918409, 40.17995 ], [ -74.91831, 40.179599 ], [ -74.91825, 40.17938 ], [ -74.91821, 40.17924 ], [ -74.918189, 40.17915 ], [ -74.918109, 40.17886 ], [ -74.91803, 40.17852 ], [ -74.918009, 40.17843 ], [ -74.918, 40.17839 ], [ -74.917959, 40.178259 ], [ -74.91795, 40.17821 ], [ -74.91786, 40.17788 ], [ -74.91776, 40.17749 ], [ -74.917749, 40.177449 ], [ -74.917739, 40.17742 ], [ -74.917689, 40.17726 ], [ -74.91767, 40.17717 ], [ -74.917659, 40.17714 ], [ -74.91763, 40.177029 ], [ -74.917559, 40.176839 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912079, 40.158729 ], [ -74.912069, 40.15868 ], [ -74.91205, 40.158359 ], [ -74.912029, 40.158179 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.157909 ], [ -74.912019, 40.15772 ], [ -74.91201, 40.157489 ], [ -74.911989, 40.157109 ], [ -74.91196, 40.156419 ], [ -74.911939, 40.15609 ], [ -74.91192, 40.15584 ], [ -74.91187, 40.15511 ], [ -74.91187, 40.155069 ], [ -74.91183, 40.154309 ], [ -74.91182, 40.15411 ], [ -74.91179, 40.15365 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.153249 ], [ -74.91188, 40.15249 ], [ -74.911989, 40.151549 ], [ -74.912019, 40.1513 ], [ -74.912069, 40.150929 ], [ -74.91214, 40.15033 ], [ -74.912289, 40.14898 ], [ -74.912349, 40.14846 ], [ -74.912389, 40.14808 ], [ -74.91241, 40.14788 ], [ -74.91245, 40.14754 ], [ -74.91268, 40.145529 ], [ -74.91273, 40.14511 ], [ -74.91282, 40.144269 ], [ -74.912829, 40.14404 ], [ -74.91268, 40.14377 ], [ -74.912489, 40.1434 ], [ -74.91246, 40.14333 ], [ -74.91241, 40.14324 ], [ -74.912349, 40.14315 ], [ -74.91223, 40.14297 ], [ -74.91214, 40.14286 ], [ -74.912029, 40.14275 ], [ -74.911989, 40.14268 ], [ -74.91196, 40.142619 ], [ -74.911939, 40.14257 ], [ -74.91192, 40.1425 ], [ -74.91191, 40.14243 ], [ -74.91191, 40.142369 ], [ -74.91191, 40.14233 ], [ -74.912019, 40.142179 ], [ -74.91209, 40.142079 ], [ -74.912299, 40.1418 ], [ -74.912569, 40.14141 ], [ -74.912759, 40.14116 ], [ -74.91299, 40.14086 ], [ -74.913329, 40.14044 ], [ -74.913469, 40.140269 ], [ -74.91359, 40.140119 ], [ -74.913739, 40.139949 ], [ -74.91394, 40.13973 ], [ -74.91439, 40.13924 ], [ -74.914539, 40.13909 ], [ -74.91479, 40.13883 ], [ -74.915049, 40.13855 ], [ -74.91583, 40.13772 ], [ -74.917479, 40.135949 ], [ -74.91816, 40.13523 ], [ -74.918769, 40.13458 ], [ -74.91907, 40.134249 ], [ -74.919409, 40.13388 ], [ -74.91953, 40.13376 ], [ -74.9197, 40.13358 ], [ -74.920049, 40.13321 ], [ -74.92047, 40.13276 ], [ -74.920529, 40.13269 ], [ -74.920709, 40.1325 ], [ -74.920979, 40.13222 ], [ -74.92151, 40.131649 ], [ -74.9216, 40.131539 ], [ -74.921699, 40.13141 ], [ -74.921919, 40.13107 ], [ -74.922, 40.130949 ], [ -74.92223, 40.1306 ], [ -74.922279, 40.13052 ], [ -74.92244, 40.13027 ], [ -74.922649, 40.129959 ], [ -74.92276, 40.130129 ], [ -74.922869, 40.130289 ], [ -74.92302, 40.13051 ], [ -74.92308, 40.130589 ], [ -74.92317, 40.13072 ], [ -74.923409, 40.13106 ], [ -74.923449, 40.131119 ], [ -74.92371, 40.131469 ], [ -74.923819, 40.131629 ], [ -74.92411, 40.132029 ], [ -74.924259, 40.13225 ], [ -74.92443, 40.1325 ], [ -74.9246, 40.13276 ], [ -74.92493, 40.13324 ], [ -74.925029, 40.13339 ], [ -74.925169, 40.13359 ], [ -74.92596, 40.134709 ], [ -74.926559, 40.13556 ], [ -74.92682, 40.135899 ], [ -74.927409, 40.136779 ], [ -74.927549, 40.136949 ], [ -74.928589, 40.138399 ], [ -74.929399, 40.139479 ], [ -74.92947, 40.139569 ], [ -74.930379, 40.140849 ], [ -74.931069, 40.14177 ], [ -74.93132, 40.142089 ], [ -74.931729, 40.14261 ], [ -74.931919, 40.142899 ], [ -74.93244, 40.143639 ], [ -74.93252, 40.14375 ], [ -74.932599, 40.14385 ], [ -74.93306, 40.144429 ], [ -74.93334, 40.144789 ], [ -74.933539, 40.145039 ], [ -74.933579, 40.145069 ], [ -74.933719, 40.14518 ], [ -74.93382, 40.145239 ], [ -74.93392, 40.14528 ], [ -74.9341, 40.145319 ], [ -74.934219, 40.145319 ], [ -74.93442, 40.1453 ], [ -74.934709, 40.145219 ], [ -74.93483, 40.145169 ], [ -74.93553, 40.144859 ], [ -74.93581, 40.14474 ], [ -74.935929, 40.14467 ], [ -74.93847, 40.14342 ], [ -74.93963, 40.14285 ], [ -74.94049, 40.14243 ], [ -74.94201, 40.141639 ], [ -74.9426, 40.14134 ], [ -74.942809, 40.14124 ], [ -74.94426, 40.14051 ], [ -74.94473, 40.140279 ], [ -74.945869, 40.13971 ], [ -74.9472, 40.139049 ], [ -74.94743, 40.138939 ], [ -74.94755, 40.13888 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.96984, 40.13771 ], [ -74.96912, 40.138399 ], [ -74.96849, 40.13899 ], [ -74.96727, 40.140119 ], [ -74.96672, 40.140639 ], [ -74.96654, 40.140809 ], [ -74.96633, 40.140989 ], [ -74.96587, 40.14141 ], [ -74.96552, 40.141709 ], [ -74.965299, 40.14176 ], [ -74.965119, 40.14176 ], [ -74.964989, 40.141709 ], [ -74.964809, 40.141639 ], [ -74.964359, 40.1414 ], [ -74.963789, 40.141099 ], [ -74.96331, 40.140849 ], [ -74.96258, 40.14043 ], [ -74.96237, 40.140289 ], [ -74.96223, 40.140199 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.950899, 40.105099 ], [ -74.950899, 40.104989 ], [ -74.950909, 40.104899 ], [ -74.95093, 40.104839 ], [ -74.95101, 40.10471 ], [ -74.951089, 40.104579 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.954829, 40.101239 ], [ -74.95508, 40.10136 ], [ -74.955219, 40.10144 ], [ -74.955359, 40.101509 ], [ -74.955499, 40.101579 ], [ -74.956179, 40.101869 ], [ -74.95683, 40.10217 ], [ -74.95719, 40.102329 ], [ -74.95733, 40.10219 ], [ -74.957829, 40.101689 ], [ -74.957979, 40.10154 ], [ -74.958149, 40.101389 ], [ -74.95836, 40.10119 ], [ -74.959329, 40.1003 ], [ -74.95943, 40.10021 ], [ -74.95953, 40.10011 ], [ -74.959639, 40.1 ], [ -74.95992, 40.09973 ], [ -74.960049, 40.099599 ], [ -74.96038, 40.09929 ], [ -74.96021, 40.099179 ], [ -74.96011, 40.09912 ], [ -74.959599, 40.098799 ], [ -74.959359, 40.09865 ], [ -74.958829, 40.09833 ], [ -74.95832, 40.09803 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307182", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.950899, 40.105099 ], [ -74.950899, 40.104989 ], [ -74.950909, 40.104899 ], [ -74.95093, 40.104839 ], [ -74.95101, 40.10471 ], [ -74.951089, 40.104579 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.954829, 40.101239 ], [ -74.95508, 40.10136 ], [ -74.955219, 40.10144 ], [ -74.955359, 40.101509 ], [ -74.955499, 40.101579 ], [ -74.956179, 40.101869 ], [ -74.95683, 40.10217 ], [ -74.95719, 40.102329 ], [ -74.95733, 40.10219 ], [ -74.957829, 40.101689 ], [ -74.957979, 40.10154 ], [ -74.958149, 40.101389 ], [ -74.95836, 40.10119 ], [ -74.959329, 40.1003 ], [ -74.95943, 40.10021 ], [ -74.95953, 40.10011 ], [ -74.959639, 40.1 ], [ -74.95992, 40.09973 ], [ -74.960049, 40.099599 ], [ -74.96038, 40.09929 ], [ -74.96021, 40.099179 ], [ -74.96011, 40.09912 ], [ -74.959599, 40.098799 ], [ -74.959359, 40.09865 ], [ -74.958829, 40.09833 ], [ -74.95832, 40.09803 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307183", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.964489, 40.23906 ], [ -74.96408, 40.23896 ], [ -74.963429, 40.238669 ], [ -74.96313, 40.23852 ], [ -74.96249, 40.238139 ], [ -74.96218, 40.238009 ], [ -74.96191, 40.237929 ], [ -74.96147, 40.237829 ], [ -74.96093, 40.2378 ], [ -74.96028, 40.237829 ], [ -74.95979, 40.23788 ], [ -74.95974, 40.23788 ], [ -74.95958, 40.2379 ], [ -74.95917, 40.238289 ], [ -74.95908, 40.23824 ], [ -74.958739, 40.238029 ], [ -74.95866, 40.23798 ], [ -74.958, 40.237579 ], [ -74.957649, 40.23737 ], [ -74.957119, 40.237059 ], [ -74.95683, 40.23689 ], [ -74.956499, 40.236689 ], [ -74.955849, 40.236309 ], [ -74.95544, 40.236059 ], [ -74.954559, 40.23554 ], [ -74.95391, 40.235149 ], [ -74.95385, 40.235049 ], [ -74.953659, 40.23493 ], [ -74.953289, 40.234689 ], [ -74.95277, 40.23437 ], [ -74.952159, 40.233989 ], [ -74.951889, 40.23383 ], [ -74.95142, 40.233539 ], [ -74.95112, 40.233349 ], [ -74.95101, 40.233449 ], [ -74.950899, 40.23349 ], [ -74.95083, 40.233529 ], [ -74.95076, 40.23358 ], [ -74.950689, 40.233639 ], [ -74.950509, 40.233799 ], [ -74.950229, 40.234089 ], [ -74.949649, 40.23465 ], [ -74.9494, 40.234879 ], [ -74.949149, 40.23509 ], [ -74.948839, 40.235319 ], [ -74.94845, 40.23556 ], [ -74.94832, 40.23563 ], [ -74.948159, 40.235709 ], [ -74.947949, 40.23582 ], [ -74.947769, 40.2359 ], [ -74.94756, 40.23599 ], [ -74.947409, 40.236039 ], [ -74.94734, 40.236069 ], [ -74.947119, 40.236129 ], [ -74.94697, 40.23617 ], [ -74.946899, 40.23619 ], [ -74.946679, 40.236239 ], [ -74.94634, 40.2363 ], [ -74.94603, 40.23635 ], [ -74.945879, 40.23637 ], [ -74.945819, 40.23585 ], [ -74.94504, 40.235789 ], [ -74.944749, 40.23573 ], [ -74.944519, 40.235609 ], [ -74.944199, 40.23545 ], [ -74.94409, 40.2354 ], [ -74.943889, 40.23538 ], [ -74.94381, 40.23537 ], [ -74.94368, 40.235339 ], [ -74.94283, 40.2353 ], [ -74.94243, 40.23529 ], [ -74.94201, 40.23529 ], [ -74.94174, 40.235349 ], [ -74.94166, 40.23509 ], [ -74.94147, 40.23484 ], [ -74.941239, 40.234609 ], [ -74.940739, 40.23421 ], [ -74.939739, 40.233329 ], [ -74.939699, 40.233269 ], [ -74.939609, 40.233089 ], [ -74.939559, 40.23285 ], [ -74.93955, 40.232739 ], [ -74.939569, 40.232529 ], [ -74.93964, 40.23232 ], [ -74.93978, 40.23212 ], [ -74.940009, 40.231839 ], [ -74.940199, 40.2315 ], [ -74.940289, 40.23126 ], [ -74.940329, 40.230939 ], [ -74.940339, 40.230659 ], [ -74.940379, 40.23023 ], [ -74.940419, 40.229839 ], [ -74.94044, 40.22964 ], [ -74.94045, 40.229459 ], [ -74.94004, 40.229459 ], [ -74.939749, 40.22944 ], [ -74.939209, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.938899, 40.22943 ], [ -74.9387, 40.22942 ], [ -74.93842, 40.229399 ], [ -74.937989, 40.229379 ], [ -74.93765, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93752, 40.22936 ], [ -74.937309, 40.22935 ], [ -74.937139, 40.22934 ], [ -74.93672, 40.229309 ], [ -74.93613, 40.229279 ], [ -74.936019, 40.229279 ], [ -74.93567, 40.22927 ], [ -74.93558, 40.22927 ], [ -74.935389, 40.22926 ], [ -74.934169, 40.229189 ], [ -74.93294, 40.229139 ], [ -74.931689, 40.22907 ], [ -74.93144, 40.22906 ], [ -74.931649, 40.22755 ], [ -74.93172, 40.22699 ], [ -74.931779, 40.226519 ], [ -74.9318, 40.22638 ], [ -74.93189, 40.225619 ], [ -74.931909, 40.22541 ], [ -74.93203, 40.22448 ], [ -74.932059, 40.224279 ], [ -74.93211, 40.22396 ], [ -74.93212, 40.22385 ], [ -74.932139, 40.223539 ], [ -74.932229, 40.222819 ], [ -74.9324, 40.221759 ], [ -74.93247, 40.22135 ], [ -74.93249, 40.221279 ], [ -74.93258, 40.221219 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.936969, 40.22117 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.93258, 40.221219 ], [ -74.93249, 40.221279 ], [ -74.93247, 40.22135 ], [ -74.9324, 40.221759 ], [ -74.932229, 40.222819 ], [ -74.932139, 40.223539 ], [ -74.93212, 40.22385 ], [ -74.93211, 40.22396 ], [ -74.932059, 40.224279 ], [ -74.93203, 40.22448 ], [ -74.931909, 40.22541 ], [ -74.93189, 40.225619 ], [ -74.9318, 40.22638 ], [ -74.931779, 40.226519 ], [ -74.93172, 40.22699 ], [ -74.931649, 40.22755 ], [ -74.93144, 40.22906 ], [ -74.93064, 40.229019 ], [ -74.929939, 40.22899 ], [ -74.928779, 40.228929 ], [ -74.927949, 40.22889 ], [ -74.92676, 40.228829 ], [ -74.926609, 40.22882 ], [ -74.926299, 40.22881 ], [ -74.92595, 40.22879 ], [ -74.92582, 40.22879 ], [ -74.925389, 40.228769 ], [ -74.925029, 40.228769 ], [ -74.92447, 40.228759 ], [ -74.9243, 40.228769 ], [ -74.924089, 40.228779 ], [ -74.92397, 40.22879 ], [ -74.923369, 40.228849 ], [ -74.92307, 40.22888 ], [ -74.92241, 40.22897 ], [ -74.922099, 40.229029 ], [ -74.921659, 40.229119 ], [ -74.921289, 40.229209 ], [ -74.920989, 40.229279 ], [ -74.92082, 40.229319 ], [ -74.92073, 40.22935 ], [ -74.920439, 40.22943 ], [ -74.92001, 40.229569 ], [ -74.91989, 40.22961 ], [ -74.919769, 40.229659 ], [ -74.919359, 40.2298 ], [ -74.919219, 40.229849 ], [ -74.91898, 40.229929 ], [ -74.91871, 40.229469 ], [ -74.918589, 40.22925 ], [ -74.918459, 40.229039 ], [ -74.91839, 40.228919 ], [ -74.91834, 40.228839 ], [ -74.91813, 40.228469 ], [ -74.91782, 40.227929 ], [ -74.91773, 40.227779 ], [ -74.917689, 40.22772 ], [ -74.917599, 40.22756 ], [ -74.917379, 40.22717 ], [ -74.917209, 40.22682 ], [ -74.91709, 40.226529 ], [ -74.91704, 40.2264 ], [ -74.916969, 40.22619 ], [ -74.91677, 40.225599 ], [ -74.91674, 40.22539 ], [ -74.916219, 40.225449 ], [ -74.91592, 40.22549 ], [ -74.915579, 40.225509 ], [ -74.915349, 40.225519 ], [ -74.914629, 40.225539 ], [ -74.91384, 40.225539 ], [ -74.91291, 40.225539 ], [ -74.912709, 40.225539 ], [ -74.912039, 40.225519 ], [ -74.91197, 40.225519 ], [ -74.91179, 40.225519 ], [ -74.91107, 40.22547 ], [ -74.9108, 40.22546 ], [ -74.90985, 40.22537 ], [ -74.90975, 40.225359 ], [ -74.910099, 40.224329 ], [ -74.91012, 40.22411 ], [ -74.91012, 40.223879 ], [ -74.910129, 40.22366 ], [ -74.91008, 40.22331 ], [ -74.909999, 40.22287 ], [ -74.909819, 40.22249 ], [ -74.910089, 40.222369 ], [ -74.91034, 40.222269 ], [ -74.91056, 40.222189 ], [ -74.91075, 40.22213 ], [ -74.910989, 40.22206 ], [ -74.911299, 40.22198 ], [ -74.911579, 40.221919 ], [ -74.91268, 40.221739 ], [ -74.9147, 40.22143 ], [ -74.915499, 40.221299 ], [ -74.916079, 40.221199 ], [ -74.91665, 40.22109 ], [ -74.917239, 40.22096 ], [ -74.91795, 40.22079 ], [ -74.920889, 40.220049 ], [ -74.92275, 40.219579 ], [ -74.92375, 40.219329 ], [ -74.924669, 40.21909 ], [ -74.92532, 40.21893 ], [ -74.926389, 40.21865 ], [ -74.9279, 40.21827 ], [ -74.92825, 40.21817 ], [ -74.92861, 40.218059 ], [ -74.92897, 40.21793 ], [ -74.929299, 40.217799 ], [ -74.92965, 40.21765 ], [ -74.930299, 40.21736 ], [ -74.9306, 40.21722 ], [ -74.930969, 40.217059 ], [ -74.931239, 40.21695 ], [ -74.931729, 40.21677 ], [ -74.93168, 40.21666 ], [ -74.931559, 40.216179 ], [ -74.931549, 40.216089 ], [ -74.93153, 40.21595 ], [ -74.931469, 40.21559 ], [ -74.931429, 40.21538 ], [ -74.93139, 40.215179 ], [ -74.931339, 40.21493 ], [ -74.93127, 40.21461 ], [ -74.931189, 40.21424 ], [ -74.93114, 40.214019 ], [ -74.93109, 40.21379 ], [ -74.930929, 40.213019 ], [ -74.930879, 40.21277 ], [ -74.930619, 40.211549 ], [ -74.930569, 40.21133 ], [ -74.9305, 40.21098 ], [ -74.930299, 40.209949 ], [ -74.93023, 40.209589 ], [ -74.93019, 40.20938 ], [ -74.930169, 40.209239 ], [ -74.930119, 40.208969 ], [ -74.930069, 40.20866 ], [ -74.93006, 40.20856 ], [ -74.930029, 40.20782 ], [ -74.930019, 40.207709 ], [ -74.929979, 40.207049 ], [ -74.92996, 40.206599 ], [ -74.929929, 40.206009 ], [ -74.929859, 40.205199 ], [ -74.929759, 40.203829 ], [ -74.92974, 40.20361 ], [ -74.92973, 40.2035 ], [ -74.929709, 40.20323 ], [ -74.92969, 40.20298 ], [ -74.929669, 40.20278 ], [ -74.929659, 40.2026 ], [ -74.92964, 40.20242 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92951, 40.200339 ], [ -74.929489, 40.200149 ], [ -74.92947, 40.1999 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.199619 ], [ -74.929499, 40.19921 ], [ -74.92951, 40.19912 ], [ -74.92956, 40.19866 ], [ -74.92964, 40.19759 ], [ -74.929669, 40.196979 ], [ -74.92965, 40.196529 ], [ -74.929629, 40.196359 ], [ -74.9296, 40.196179 ], [ -74.92956, 40.19595 ], [ -74.92952, 40.19577 ], [ -74.92947, 40.195569 ], [ -74.929309, 40.195119 ], [ -74.92897, 40.19425 ], [ -74.92888, 40.194019 ], [ -74.928769, 40.193769 ], [ -74.928679, 40.193579 ], [ -74.928629, 40.193479 ], [ -74.92856, 40.19336 ], [ -74.92848, 40.193229 ], [ -74.928129, 40.192679 ], [ -74.92775, 40.1921 ], [ -74.927499, 40.19174 ], [ -74.92721, 40.19127 ], [ -74.92709, 40.19108 ], [ -74.926969, 40.1909 ], [ -74.92686, 40.19076 ], [ -74.926749, 40.19063 ], [ -74.926599, 40.19048 ], [ -74.92649, 40.19039 ], [ -74.926329, 40.19027 ], [ -74.9261, 40.19011 ], [ -74.925699, 40.18985 ], [ -74.92533, 40.189629 ], [ -74.924979, 40.189439 ], [ -74.92461, 40.189249 ], [ -74.92419, 40.18901 ], [ -74.923959, 40.188869 ], [ -74.92376, 40.188719 ], [ -74.92357, 40.18856 ], [ -74.9234, 40.1884 ], [ -74.923239, 40.188249 ], [ -74.92302, 40.18806 ], [ -74.922879, 40.18794 ], [ -74.92268, 40.18775 ], [ -74.922549, 40.18761 ], [ -74.922369, 40.1874 ], [ -74.92231, 40.18733 ], [ -74.922189, 40.187179 ], [ -74.922109, 40.18706 ], [ -74.922019, 40.186909 ], [ -74.92196, 40.18679 ], [ -74.9219, 40.18667 ], [ -74.921839, 40.18653 ], [ -74.92178, 40.18634 ], [ -74.921739, 40.186189 ], [ -74.92169, 40.18595 ], [ -74.92163, 40.185639 ], [ -74.921579, 40.185449 ], [ -74.92155, 40.185359 ], [ -74.921519, 40.185289 ], [ -74.92146, 40.185189 ], [ -74.92137, 40.18507 ], [ -74.92124, 40.184929 ], [ -74.921069, 40.184769 ], [ -74.920679, 40.184459 ], [ -74.92047, 40.184289 ], [ -74.92033, 40.18418 ], [ -74.919939, 40.183869 ], [ -74.91965, 40.18364 ], [ -74.91948, 40.183479 ], [ -74.919419, 40.183419 ], [ -74.91938, 40.18337 ], [ -74.91935, 40.183319 ], [ -74.919279, 40.18319 ], [ -74.919189, 40.182879 ], [ -74.91916, 40.182759 ], [ -74.91911, 40.18257 ], [ -74.919059, 40.182319 ], [ -74.9189, 40.18166 ], [ -74.91879, 40.1813 ], [ -74.91867, 40.180879 ], [ -74.91857, 40.18055 ], [ -74.918409, 40.17995 ], [ -74.91831, 40.179599 ], [ -74.91825, 40.17938 ], [ -74.91821, 40.17924 ], [ -74.918189, 40.17915 ], [ -74.918109, 40.17886 ], [ -74.91803, 40.17852 ], [ -74.918009, 40.17843 ], [ -74.918, 40.17839 ], [ -74.917959, 40.178259 ], [ -74.91795, 40.17821 ], [ -74.91786, 40.17788 ], [ -74.91776, 40.17749 ], [ -74.917749, 40.177449 ], [ -74.917739, 40.17742 ], [ -74.917689, 40.17726 ], [ -74.91767, 40.17717 ], [ -74.917659, 40.17714 ], [ -74.91763, 40.177029 ], [ -74.917559, 40.176839 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912079, 40.158729 ], [ -74.912069, 40.15868 ], [ -74.91205, 40.158359 ], [ -74.912029, 40.158179 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.157909 ], [ -74.912019, 40.15772 ], [ -74.91201, 40.157489 ], [ -74.911989, 40.157109 ], [ -74.91196, 40.156419 ], [ -74.911939, 40.15609 ], [ -74.91192, 40.15584 ], [ -74.91187, 40.15511 ], [ -74.91187, 40.155069 ], [ -74.91183, 40.154309 ], [ -74.91182, 40.15411 ], [ -74.91179, 40.15365 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.153249 ], [ -74.91188, 40.15249 ], [ -74.911989, 40.151549 ], [ -74.912019, 40.1513 ], [ -74.912069, 40.150929 ], [ -74.91214, 40.15033 ], [ -74.912289, 40.14898 ], [ -74.912349, 40.14846 ], [ -74.912389, 40.14808 ], [ -74.91241, 40.14788 ], [ -74.91245, 40.14754 ], [ -74.91268, 40.145529 ], [ -74.91273, 40.14511 ], [ -74.91282, 40.144269 ], [ -74.912829, 40.14404 ], [ -74.91268, 40.14377 ], [ -74.912489, 40.1434 ], [ -74.91246, 40.14333 ], [ -74.91241, 40.14324 ], [ -74.912349, 40.14315 ], [ -74.91223, 40.14297 ], [ -74.91214, 40.14286 ], [ -74.912029, 40.14275 ], [ -74.911989, 40.14268 ], [ -74.91196, 40.142619 ], [ -74.911939, 40.14257 ], [ -74.91192, 40.1425 ], [ -74.91191, 40.14243 ], [ -74.91191, 40.142369 ], [ -74.91191, 40.14233 ], [ -74.912019, 40.142179 ], [ -74.91209, 40.142079 ], [ -74.912299, 40.1418 ], [ -74.912569, 40.14141 ], [ -74.912759, 40.14116 ], [ -74.91299, 40.14086 ], [ -74.913329, 40.14044 ], [ -74.913469, 40.140269 ], [ -74.91359, 40.140119 ], [ -74.913739, 40.139949 ], [ -74.91394, 40.13973 ], [ -74.91439, 40.13924 ], [ -74.914539, 40.13909 ], [ -74.91479, 40.13883 ], [ -74.915049, 40.13855 ], [ -74.91583, 40.13772 ], [ -74.917479, 40.135949 ], [ -74.91816, 40.13523 ], [ -74.918769, 40.13458 ], [ -74.91907, 40.134249 ], [ -74.919409, 40.13388 ], [ -74.91953, 40.13376 ], [ -74.9197, 40.13358 ], [ -74.920049, 40.13321 ], [ -74.92047, 40.13276 ], [ -74.920529, 40.13269 ], [ -74.920709, 40.1325 ], [ -74.920979, 40.13222 ], [ -74.92151, 40.131649 ], [ -74.9216, 40.131539 ], [ -74.921699, 40.13141 ], [ -74.921919, 40.13107 ], [ -74.922, 40.130949 ], [ -74.92223, 40.1306 ], [ -74.922279, 40.13052 ], [ -74.92244, 40.13027 ], [ -74.922649, 40.129959 ], [ -74.92276, 40.130129 ], [ -74.922869, 40.130289 ], [ -74.92302, 40.13051 ], [ -74.92308, 40.130589 ], [ -74.92317, 40.13072 ], [ -74.923409, 40.13106 ], [ -74.923449, 40.131119 ], [ -74.92371, 40.131469 ], [ -74.923819, 40.131629 ], [ -74.92411, 40.132029 ], [ -74.924259, 40.13225 ], [ -74.92443, 40.1325 ], [ -74.9246, 40.13276 ], [ -74.92493, 40.13324 ], [ -74.925029, 40.13339 ], [ -74.925169, 40.13359 ], [ -74.92596, 40.134709 ], [ -74.926559, 40.13556 ], [ -74.92682, 40.135899 ], [ -74.927409, 40.136779 ], [ -74.927549, 40.136949 ], [ -74.928589, 40.138399 ], [ -74.929399, 40.139479 ], [ -74.92947, 40.139569 ], [ -74.930379, 40.140849 ], [ -74.931069, 40.14177 ], [ -74.93132, 40.142089 ], [ -74.931729, 40.14261 ], [ -74.931919, 40.142899 ], [ -74.93244, 40.143639 ], [ -74.93252, 40.14375 ], [ -74.932599, 40.14385 ], [ -74.93306, 40.144429 ], [ -74.93334, 40.144789 ], [ -74.933539, 40.145039 ], [ -74.933579, 40.145069 ], [ -74.933719, 40.14518 ], [ -74.93382, 40.145239 ], [ -74.93392, 40.14528 ], [ -74.9341, 40.145319 ], [ -74.934219, 40.145319 ], [ -74.93442, 40.1453 ], [ -74.934709, 40.145219 ], [ -74.93483, 40.145169 ], [ -74.93553, 40.144859 ], [ -74.93581, 40.14474 ], [ -74.935929, 40.14467 ], [ -74.93847, 40.14342 ], [ -74.93963, 40.14285 ], [ -74.94049, 40.14243 ], [ -74.94201, 40.141639 ], [ -74.9426, 40.14134 ], [ -74.942809, 40.14124 ], [ -74.94426, 40.14051 ], [ -74.94473, 40.140279 ], [ -74.945869, 40.13971 ], [ -74.9472, 40.139049 ], [ -74.94743, 40.138939 ], [ -74.94755, 40.13888 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.950899, 40.105099 ], [ -74.950899, 40.104989 ], [ -74.950909, 40.104899 ], [ -74.95093, 40.104839 ], [ -74.95101, 40.10471 ], [ -74.951089, 40.104579 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.954829, 40.101239 ], [ -74.95508, 40.10136 ], [ -74.955219, 40.10144 ], [ -74.955359, 40.101509 ], [ -74.955499, 40.101579 ], [ -74.956179, 40.101869 ], [ -74.95683, 40.10217 ], [ -74.95719, 40.102329 ], [ -74.95733, 40.10219 ], [ -74.957829, 40.101689 ], [ -74.957979, 40.10154 ], [ -74.958149, 40.101389 ], [ -74.95836, 40.10119 ], [ -74.959329, 40.1003 ], [ -74.95943, 40.10021 ], [ -74.95953, 40.10011 ], [ -74.959639, 40.1 ], [ -74.95992, 40.09973 ], [ -74.960049, 40.099599 ], [ -74.96038, 40.09929 ], [ -74.96021, 40.099179 ], [ -74.96011, 40.09912 ], [ -74.959599, 40.098799 ], [ -74.959359, 40.09865 ], [ -74.958829, 40.09833 ], [ -74.95832, 40.09803 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307184", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.945819, 40.23585 ], [ -74.94504, 40.235789 ], [ -74.944749, 40.23573 ], [ -74.944519, 40.235609 ], [ -74.944199, 40.23545 ], [ -74.94409, 40.2354 ], [ -74.943889, 40.23538 ], [ -74.94381, 40.23537 ], [ -74.94368, 40.235339 ], [ -74.94283, 40.2353 ], [ -74.94243, 40.23529 ], [ -74.94201, 40.23529 ], [ -74.94174, 40.235349 ], [ -74.94166, 40.23509 ], [ -74.94147, 40.23484 ], [ -74.941239, 40.234609 ], [ -74.940739, 40.23421 ], [ -74.939739, 40.233329 ], [ -74.939699, 40.233269 ], [ -74.939609, 40.233089 ], [ -74.939559, 40.23285 ], [ -74.93955, 40.232739 ], [ -74.939569, 40.232529 ], [ -74.93964, 40.23232 ], [ -74.93978, 40.23212 ], [ -74.940009, 40.231839 ], [ -74.940199, 40.2315 ], [ -74.940289, 40.23126 ], [ -74.940329, 40.230939 ], [ -74.940339, 40.230659 ], [ -74.940379, 40.23023 ], [ -74.940419, 40.229839 ], [ -74.94044, 40.22964 ], [ -74.94045, 40.229459 ], [ -74.94004, 40.229459 ], [ -74.939749, 40.22944 ], [ -74.939209, 40.22943 ], [ -74.939039, 40.22943 ], [ -74.938899, 40.22943 ], [ -74.9387, 40.22942 ], [ -74.93842, 40.229399 ], [ -74.937989, 40.229379 ], [ -74.93765, 40.22936 ], [ -74.937589, 40.22936 ], [ -74.93752, 40.22936 ], [ -74.937309, 40.22935 ], [ -74.937139, 40.22934 ], [ -74.93672, 40.229309 ], [ -74.93613, 40.229279 ], [ -74.936019, 40.229279 ], [ -74.93567, 40.22927 ], [ -74.93558, 40.22927 ], [ -74.935389, 40.22926 ], [ -74.934169, 40.229189 ], [ -74.93294, 40.229139 ], [ -74.931689, 40.22907 ], [ -74.93144, 40.22906 ], [ -74.931649, 40.22755 ], [ -74.93172, 40.22699 ], [ -74.931779, 40.226519 ], [ -74.9318, 40.22638 ], [ -74.93189, 40.225619 ], [ -74.931909, 40.22541 ], [ -74.93203, 40.22448 ], [ -74.932059, 40.224279 ], [ -74.93211, 40.22396 ], [ -74.93212, 40.22385 ], [ -74.932139, 40.223539 ], [ -74.932229, 40.222819 ], [ -74.9324, 40.221759 ], [ -74.93247, 40.22135 ], [ -74.93249, 40.221279 ], [ -74.93258, 40.221219 ], [ -74.93383, 40.22088 ], [ -74.93397, 40.22108 ], [ -74.934119, 40.221289 ], [ -74.934169, 40.22136 ], [ -74.934259, 40.221489 ], [ -74.93442, 40.22172 ], [ -74.93454, 40.22188 ], [ -74.93464, 40.222019 ], [ -74.934799, 40.22223 ], [ -74.935199, 40.22205 ], [ -74.935329, 40.22196 ], [ -74.935559, 40.221749 ], [ -74.935779, 40.221659 ], [ -74.93591, 40.22161 ], [ -74.93649, 40.22136 ], [ -74.93676, 40.22123 ], [ -74.936969, 40.22117 ], [ -74.93676, 40.22123 ], [ -74.93649, 40.22136 ], [ -74.93591, 40.22161 ], [ -74.935779, 40.221659 ], [ -74.935559, 40.221749 ], [ -74.935329, 40.22196 ], [ -74.935199, 40.22205 ], [ -74.934799, 40.22223 ], [ -74.93464, 40.222019 ], [ -74.93454, 40.22188 ], [ -74.93442, 40.22172 ], [ -74.934259, 40.221489 ], [ -74.934169, 40.22136 ], [ -74.934119, 40.221289 ], [ -74.93397, 40.22108 ], [ -74.93383, 40.22088 ], [ -74.933489, 40.22034 ], [ -74.933309, 40.220049 ], [ -74.933139, 40.219739 ], [ -74.933049, 40.219569 ], [ -74.932999, 40.219469 ], [ -74.93289, 40.21925 ], [ -74.932719, 40.21891 ], [ -74.9323, 40.217969 ], [ -74.93217, 40.21765 ], [ -74.93211, 40.21749 ], [ -74.932009, 40.217319 ], [ -74.93189, 40.217159 ], [ -74.931779, 40.21704 ], [ -74.931729, 40.21677 ], [ -74.93168, 40.21666 ], [ -74.931559, 40.216179 ], [ -74.931549, 40.216089 ], [ -74.93153, 40.21595 ], [ -74.931469, 40.21559 ], [ -74.931429, 40.21538 ], [ -74.93139, 40.215179 ], [ -74.931339, 40.21493 ], [ -74.93127, 40.21461 ], [ -74.931189, 40.21424 ], [ -74.93114, 40.214019 ], [ -74.93109, 40.21379 ], [ -74.930929, 40.213019 ], [ -74.930879, 40.21277 ], [ -74.930619, 40.211549 ], [ -74.930569, 40.21133 ], [ -74.9305, 40.21098 ], [ -74.930299, 40.209949 ], [ -74.93023, 40.209589 ], [ -74.93019, 40.20938 ], [ -74.930169, 40.209239 ], [ -74.930119, 40.208969 ], [ -74.930069, 40.20866 ], [ -74.93006, 40.20856 ], [ -74.930029, 40.20782 ], [ -74.930019, 40.207709 ], [ -74.929979, 40.207049 ], [ -74.92996, 40.206599 ], [ -74.929929, 40.206009 ], [ -74.929859, 40.205199 ], [ -74.929759, 40.203829 ], [ -74.92974, 40.20361 ], [ -74.92973, 40.2035 ], [ -74.929709, 40.20323 ], [ -74.92969, 40.20298 ], [ -74.929669, 40.20278 ], [ -74.929659, 40.2026 ], [ -74.92964, 40.20242 ], [ -74.929589, 40.201569 ], [ -74.929039, 40.201579 ], [ -74.92898, 40.201579 ], [ -74.928779, 40.201569 ], [ -74.92857, 40.20153 ], [ -74.928449, 40.201479 ], [ -74.928129, 40.20134 ], [ -74.92766, 40.201139 ], [ -74.92726, 40.201049 ], [ -74.927019, 40.201039 ], [ -74.926919, 40.201039 ], [ -74.92659, 40.20108 ], [ -74.92627, 40.20119 ], [ -74.925979, 40.20134 ], [ -74.92538, 40.201779 ], [ -74.92491, 40.20207 ], [ -74.92491, 40.202219 ], [ -74.92505, 40.20226 ], [ -74.925609, 40.202289 ], [ -74.92569, 40.20224 ], [ -74.925699, 40.20208 ], [ -74.92551, 40.201869 ], [ -74.92538, 40.201779 ], [ -74.925979, 40.20134 ], [ -74.92627, 40.20119 ], [ -74.92659, 40.20108 ], [ -74.926919, 40.201039 ], [ -74.927019, 40.201039 ], [ -74.92726, 40.201049 ], [ -74.92766, 40.201139 ], [ -74.928129, 40.20134 ], [ -74.928449, 40.201479 ], [ -74.92857, 40.20153 ], [ -74.928779, 40.201569 ], [ -74.92898, 40.201579 ], [ -74.929039, 40.201579 ], [ -74.929589, 40.201569 ], [ -74.92951, 40.200339 ], [ -74.929489, 40.200149 ], [ -74.92947, 40.1999 ], [ -74.92947, 40.19973 ], [ -74.92947, 40.199619 ], [ -74.929499, 40.19921 ], [ -74.92951, 40.19912 ], [ -74.92956, 40.19866 ], [ -74.92964, 40.19759 ], [ -74.929669, 40.196979 ], [ -74.92965, 40.196529 ], [ -74.929629, 40.196359 ], [ -74.9296, 40.196179 ], [ -74.92956, 40.19595 ], [ -74.92952, 40.19577 ], [ -74.92947, 40.195569 ], [ -74.929309, 40.195119 ], [ -74.92897, 40.19425 ], [ -74.92888, 40.194019 ], [ -74.928769, 40.193769 ], [ -74.928679, 40.193579 ], [ -74.928629, 40.193479 ], [ -74.92856, 40.19336 ], [ -74.92848, 40.193229 ], [ -74.928129, 40.192679 ], [ -74.92775, 40.1921 ], [ -74.927499, 40.19174 ], [ -74.92721, 40.19127 ], [ -74.92709, 40.19108 ], [ -74.926969, 40.1909 ], [ -74.92686, 40.19076 ], [ -74.926749, 40.19063 ], [ -74.926599, 40.19048 ], [ -74.92649, 40.19039 ], [ -74.926329, 40.19027 ], [ -74.9261, 40.19011 ], [ -74.925699, 40.18985 ], [ -74.92533, 40.189629 ], [ -74.924979, 40.189439 ], [ -74.92461, 40.189249 ], [ -74.92419, 40.18901 ], [ -74.923959, 40.188869 ], [ -74.92376, 40.188719 ], [ -74.92357, 40.18856 ], [ -74.9234, 40.1884 ], [ -74.923239, 40.188249 ], [ -74.92302, 40.18806 ], [ -74.922879, 40.18794 ], [ -74.92268, 40.18775 ], [ -74.922549, 40.18761 ], [ -74.922369, 40.1874 ], [ -74.92231, 40.18733 ], [ -74.922189, 40.187179 ], [ -74.922109, 40.18706 ], [ -74.922019, 40.186909 ], [ -74.92196, 40.18679 ], [ -74.9219, 40.18667 ], [ -74.921839, 40.18653 ], [ -74.92178, 40.18634 ], [ -74.921739, 40.186189 ], [ -74.92169, 40.18595 ], [ -74.92163, 40.185639 ], [ -74.921579, 40.185449 ], [ -74.92155, 40.185359 ], [ -74.921519, 40.185289 ], [ -74.92146, 40.185189 ], [ -74.92137, 40.18507 ], [ -74.92124, 40.184929 ], [ -74.921069, 40.184769 ], [ -74.920679, 40.184459 ], [ -74.92047, 40.184289 ], [ -74.92033, 40.18418 ], [ -74.919939, 40.183869 ], [ -74.91965, 40.18364 ], [ -74.91948, 40.183479 ], [ -74.919419, 40.183419 ], [ -74.91938, 40.18337 ], [ -74.91935, 40.183319 ], [ -74.919279, 40.18319 ], [ -74.919189, 40.182879 ], [ -74.91916, 40.182759 ], [ -74.91911, 40.18257 ], [ -74.919059, 40.182319 ], [ -74.9189, 40.18166 ], [ -74.91879, 40.1813 ], [ -74.91867, 40.180879 ], [ -74.91857, 40.18055 ], [ -74.918409, 40.17995 ], [ -74.91831, 40.179599 ], [ -74.91825, 40.17938 ], [ -74.91821, 40.17924 ], [ -74.918189, 40.17915 ], [ -74.918109, 40.17886 ], [ -74.91803, 40.17852 ], [ -74.918009, 40.17843 ], [ -74.918, 40.17839 ], [ -74.917959, 40.178259 ], [ -74.91795, 40.17821 ], [ -74.91786, 40.17788 ], [ -74.91776, 40.17749 ], [ -74.917749, 40.177449 ], [ -74.917739, 40.17742 ], [ -74.917689, 40.17726 ], [ -74.91767, 40.17717 ], [ -74.917659, 40.17714 ], [ -74.91763, 40.177029 ], [ -74.917559, 40.176839 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912079, 40.158729 ], [ -74.912069, 40.15868 ], [ -74.91205, 40.158359 ], [ -74.912029, 40.158179 ], [ -74.912029, 40.158009 ], [ -74.912029, 40.157909 ], [ -74.912019, 40.15772 ], [ -74.91201, 40.157489 ], [ -74.911989, 40.157109 ], [ -74.91196, 40.156419 ], [ -74.911939, 40.15609 ], [ -74.91192, 40.15584 ], [ -74.91187, 40.15511 ], [ -74.91187, 40.155069 ], [ -74.91183, 40.154309 ], [ -74.91182, 40.15411 ], [ -74.91179, 40.15365 ], [ -74.91179, 40.153349 ], [ -74.91179, 40.153249 ], [ -74.91188, 40.15249 ], [ -74.911989, 40.151549 ], [ -74.912019, 40.1513 ], [ -74.912069, 40.150929 ], [ -74.91214, 40.15033 ], [ -74.912289, 40.14898 ], [ -74.912349, 40.14846 ], [ -74.912389, 40.14808 ], [ -74.91241, 40.14788 ], [ -74.91245, 40.14754 ], [ -74.91268, 40.145529 ], [ -74.91273, 40.14511 ], [ -74.91282, 40.144269 ], [ -74.912829, 40.14404 ], [ -74.91268, 40.14377 ], [ -74.912489, 40.1434 ], [ -74.91246, 40.14333 ], [ -74.91241, 40.14324 ], [ -74.912349, 40.14315 ], [ -74.91223, 40.14297 ], [ -74.91214, 40.14286 ], [ -74.912029, 40.14275 ], [ -74.911989, 40.14268 ], [ -74.91196, 40.142619 ], [ -74.911939, 40.14257 ], [ -74.91192, 40.1425 ], [ -74.91191, 40.14243 ], [ -74.91191, 40.142369 ], [ -74.91191, 40.14233 ], [ -74.912019, 40.142179 ], [ -74.91209, 40.142079 ], [ -74.912299, 40.1418 ], [ -74.912569, 40.14141 ], [ -74.912759, 40.14116 ], [ -74.91299, 40.14086 ], [ -74.913329, 40.14044 ], [ -74.913469, 40.140269 ], [ -74.91359, 40.140119 ], [ -74.913739, 40.139949 ], [ -74.91394, 40.13973 ], [ -74.91439, 40.13924 ], [ -74.914539, 40.13909 ], [ -74.91479, 40.13883 ], [ -74.915049, 40.13855 ], [ -74.91583, 40.13772 ], [ -74.917479, 40.135949 ], [ -74.91816, 40.13523 ], [ -74.918769, 40.13458 ], [ -74.91907, 40.134249 ], [ -74.919409, 40.13388 ], [ -74.91953, 40.13376 ], [ -74.9197, 40.13358 ], [ -74.920049, 40.13321 ], [ -74.92047, 40.13276 ], [ -74.920529, 40.13269 ], [ -74.920709, 40.1325 ], [ -74.920979, 40.13222 ], [ -74.92151, 40.131649 ], [ -74.9216, 40.131539 ], [ -74.921699, 40.13141 ], [ -74.921919, 40.13107 ], [ -74.922, 40.130949 ], [ -74.92223, 40.1306 ], [ -74.922279, 40.13052 ], [ -74.92244, 40.13027 ], [ -74.922649, 40.129959 ], [ -74.92276, 40.130129 ], [ -74.922869, 40.130289 ], [ -74.92302, 40.13051 ], [ -74.92308, 40.130589 ], [ -74.92317, 40.13072 ], [ -74.923409, 40.13106 ], [ -74.923449, 40.131119 ], [ -74.92371, 40.131469 ], [ -74.923819, 40.131629 ], [ -74.92411, 40.132029 ], [ -74.924259, 40.13225 ], [ -74.92443, 40.1325 ], [ -74.9246, 40.13276 ], [ -74.92493, 40.13324 ], [ -74.925029, 40.13339 ], [ -74.925169, 40.13359 ], [ -74.92596, 40.134709 ], [ -74.926559, 40.13556 ], [ -74.92682, 40.135899 ], [ -74.927409, 40.136779 ], [ -74.927549, 40.136949 ], [ -74.928589, 40.138399 ], [ -74.929399, 40.139479 ], [ -74.92947, 40.139569 ], [ -74.930379, 40.140849 ], [ -74.931069, 40.14177 ], [ -74.93132, 40.142089 ], [ -74.931729, 40.14261 ], [ -74.931919, 40.142899 ], [ -74.93244, 40.143639 ], [ -74.93252, 40.14375 ], [ -74.932599, 40.14385 ], [ -74.93306, 40.144429 ], [ -74.93334, 40.144789 ], [ -74.933539, 40.145039 ], [ -74.933579, 40.145069 ], [ -74.933719, 40.14518 ], [ -74.93382, 40.145239 ], [ -74.93392, 40.14528 ], [ -74.9341, 40.145319 ], [ -74.934219, 40.145319 ], [ -74.93442, 40.1453 ], [ -74.934709, 40.145219 ], [ -74.93483, 40.145169 ], [ -74.93553, 40.144859 ], [ -74.93581, 40.14474 ], [ -74.935929, 40.14467 ], [ -74.93847, 40.14342 ], [ -74.93963, 40.14285 ], [ -74.94049, 40.14243 ], [ -74.94201, 40.141639 ], [ -74.9426, 40.14134 ], [ -74.942809, 40.14124 ], [ -74.94426, 40.14051 ], [ -74.94473, 40.140279 ], [ -74.945869, 40.13971 ], [ -74.9472, 40.139049 ], [ -74.94743, 40.138939 ], [ -74.94755, 40.13888 ], [ -74.947859, 40.13873 ], [ -74.948119, 40.138599 ], [ -74.94833, 40.138499 ], [ -74.948529, 40.138399 ], [ -74.94859, 40.13837 ], [ -74.949019, 40.138149 ], [ -74.950319, 40.137499 ], [ -74.95089, 40.137209 ], [ -74.951219, 40.137039 ], [ -74.951489, 40.13691 ], [ -74.951799, 40.136789 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.950899, 40.105099 ], [ -74.950899, 40.104989 ], [ -74.950909, 40.104899 ], [ -74.95093, 40.104839 ], [ -74.95101, 40.10471 ], [ -74.951089, 40.104579 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.954829, 40.101239 ], [ -74.95508, 40.10136 ], [ -74.955219, 40.10144 ], [ -74.955359, 40.101509 ], [ -74.955499, 40.101579 ], [ -74.956179, 40.101869 ], [ -74.95683, 40.10217 ], [ -74.95719, 40.102329 ], [ -74.95733, 40.10219 ], [ -74.957829, 40.101689 ], [ -74.957979, 40.10154 ], [ -74.958149, 40.101389 ], [ -74.95836, 40.10119 ], [ -74.959329, 40.1003 ], [ -74.95943, 40.10021 ], [ -74.95953, 40.10011 ], [ -74.959639, 40.1 ], [ -74.95992, 40.09973 ], [ -74.960049, 40.099599 ], [ -74.96038, 40.09929 ], [ -74.96021, 40.099179 ], [ -74.96011, 40.09912 ], [ -74.959599, 40.098799 ], [ -74.959359, 40.09865 ], [ -74.958829, 40.09833 ], [ -74.95832, 40.09803 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307185", "route_id": "130" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.951799, 40.136789 ], [ -74.951489, 40.13691 ], [ -74.951219, 40.137039 ], [ -74.95089, 40.137209 ], [ -74.950319, 40.137499 ], [ -74.949019, 40.138149 ], [ -74.94859, 40.13837 ], [ -74.948529, 40.138399 ], [ -74.94833, 40.138499 ], [ -74.948119, 40.138599 ], [ -74.947859, 40.13873 ], [ -74.94755, 40.13855 ], [ -74.94724, 40.13836 ], [ -74.9468, 40.1381 ], [ -74.946489, 40.13791 ], [ -74.946149, 40.137699 ], [ -74.945919, 40.13755 ], [ -74.945339, 40.13719 ], [ -74.944969, 40.13699 ], [ -74.944649, 40.136849 ], [ -74.943159, 40.13628 ], [ -74.94323, 40.13612 ], [ -74.943259, 40.136049 ], [ -74.943349, 40.135769 ], [ -74.94341, 40.13558 ], [ -74.94342, 40.135249 ], [ -74.94327, 40.13442 ], [ -74.942889, 40.131749 ], [ -74.94422, 40.131099 ], [ -74.94437, 40.131019 ], [ -74.945199, 40.1306 ], [ -74.945559, 40.13051 ], [ -74.946059, 40.130379 ], [ -74.947539, 40.12999 ], [ -74.948439, 40.1298 ], [ -74.948739, 40.12974 ], [ -74.949689, 40.129509 ], [ -74.950599, 40.12928 ], [ -74.95201, 40.128879 ], [ -74.952569, 40.12871 ], [ -74.952969, 40.12854 ], [ -74.953329, 40.12835 ], [ -74.95354, 40.128229 ], [ -74.953609, 40.12818 ], [ -74.95377, 40.12808 ], [ -74.95417, 40.12783 ], [ -74.95449, 40.12757 ], [ -74.954739, 40.127349 ], [ -74.955309, 40.126889 ], [ -74.955769, 40.126429 ], [ -74.956579, 40.12569 ], [ -74.956659, 40.125619 ], [ -74.95692, 40.125369 ], [ -74.95724, 40.125079 ], [ -74.95799, 40.12439 ], [ -74.958609, 40.12377 ], [ -74.959909, 40.122479 ], [ -74.95998, 40.12242 ], [ -74.960589, 40.12179 ], [ -74.961, 40.121379 ], [ -74.96118, 40.121219 ], [ -74.96133, 40.12108 ], [ -74.961609, 40.12082 ], [ -74.96133, 40.12044 ], [ -74.961119, 40.120129 ], [ -74.96096, 40.119879 ], [ -74.960799, 40.11963 ], [ -74.960719, 40.119499 ], [ -74.96061, 40.119329 ], [ -74.960579, 40.11928 ], [ -74.96056, 40.119249 ], [ -74.96047, 40.1191 ], [ -74.960359, 40.11893 ], [ -74.96015, 40.118609 ], [ -74.95984, 40.118149 ], [ -74.95965, 40.117879 ], [ -74.95944, 40.11757 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.95767, 40.11539 ], [ -74.95737, 40.115539 ], [ -74.95714, 40.115649 ], [ -74.95661, 40.115979 ], [ -74.95601, 40.116349 ], [ -74.955639, 40.11658 ], [ -74.955399, 40.116629 ], [ -74.95525, 40.116629 ], [ -74.955049, 40.11658 ], [ -74.954879, 40.116529 ], [ -74.95476, 40.116449 ], [ -74.95395, 40.115999 ], [ -74.953479, 40.11575 ], [ -74.95332, 40.11567 ], [ -74.953209, 40.11561 ], [ -74.953069, 40.11552 ], [ -74.95283, 40.11542 ], [ -74.95264, 40.1154 ], [ -74.95247, 40.1154 ], [ -74.95233, 40.1154 ], [ -74.9522, 40.115459 ], [ -74.952039, 40.11558 ], [ -74.95148, 40.116189 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.9511, 40.117249 ], [ -74.951349, 40.11737 ], [ -74.952259, 40.11786 ], [ -74.952389, 40.117889 ], [ -74.95254, 40.11785 ], [ -74.952699, 40.117719 ], [ -74.953029, 40.117359 ], [ -74.953019, 40.11728 ], [ -74.95291, 40.11719 ], [ -74.95283, 40.117149 ], [ -74.95223, 40.116819 ], [ -74.951349, 40.11633 ], [ -74.95093, 40.11674 ], [ -74.950679, 40.11702 ], [ -74.950549, 40.117149 ], [ -74.95043, 40.117259 ], [ -74.950319, 40.11737 ], [ -74.95016, 40.117449 ], [ -74.950009, 40.117509 ], [ -74.94972, 40.11758 ], [ -74.94926, 40.11768 ], [ -74.94873, 40.117809 ], [ -74.94851, 40.11786 ], [ -74.94833, 40.117979 ], [ -74.948219, 40.11811 ], [ -74.948219, 40.118229 ], [ -74.94823, 40.11839 ], [ -74.94832, 40.118529 ], [ -74.949549, 40.1192 ], [ -74.950239, 40.119589 ], [ -74.950729, 40.119849 ], [ -74.95139, 40.120239 ], [ -74.95178, 40.12045 ], [ -74.951979, 40.12055 ], [ -74.95201, 40.120599 ], [ -74.95211, 40.120659 ], [ -74.952259, 40.120749 ], [ -74.95229, 40.120859 ], [ -74.952489, 40.12124 ], [ -74.952709, 40.121579 ], [ -74.952749, 40.12163 ], [ -74.952889, 40.12178 ], [ -74.95299, 40.121749 ], [ -74.95317, 40.121679 ], [ -74.953299, 40.12163 ], [ -74.95349, 40.12155 ], [ -74.954109, 40.12133 ], [ -74.954289, 40.12126 ], [ -74.955779, 40.120769 ], [ -74.955999, 40.120689 ], [ -74.95696, 40.12034 ], [ -74.957069, 40.12029 ], [ -74.95719, 40.12019 ], [ -74.957249, 40.12009 ], [ -74.95728, 40.11992 ], [ -74.95724, 40.119749 ], [ -74.957169, 40.119599 ], [ -74.957069, 40.11938 ], [ -74.957039, 40.11929 ], [ -74.957019, 40.11918 ], [ -74.957, 40.119029 ], [ -74.957019, 40.118959 ], [ -74.95706, 40.11882 ], [ -74.957119, 40.118669 ], [ -74.95719, 40.118429 ], [ -74.95719, 40.118229 ], [ -74.957169, 40.1181 ], [ -74.958059, 40.11775 ], [ -74.958239, 40.11768 ], [ -74.95859, 40.117539 ], [ -74.958739, 40.11748 ], [ -74.95925, 40.11728 ], [ -74.95902, 40.11693 ], [ -74.95885, 40.11668 ], [ -74.95867, 40.11641 ], [ -74.958369, 40.11597 ], [ -74.95818, 40.1157 ], [ -74.95791, 40.115339 ], [ -74.957889, 40.1153 ], [ -74.95778, 40.11514 ], [ -74.957699, 40.11503 ], [ -74.95763, 40.114929 ], [ -74.9574, 40.114639 ], [ -74.957349, 40.11459 ], [ -74.95697, 40.114189 ], [ -74.95664, 40.11389 ], [ -74.956409, 40.11369 ], [ -74.956039, 40.11343 ], [ -74.95557, 40.11308 ], [ -74.95548, 40.113009 ], [ -74.95508, 40.112679 ], [ -74.95484, 40.112479 ], [ -74.954699, 40.11234 ], [ -74.954549, 40.112199 ], [ -74.954519, 40.11216 ], [ -74.954419, 40.11206 ], [ -74.954189, 40.11179 ], [ -74.954159, 40.111759 ], [ -74.954019, 40.111579 ], [ -74.95358, 40.11099 ], [ -74.95345, 40.1108 ], [ -74.953249, 40.11047 ], [ -74.95313, 40.110239 ], [ -74.95309, 40.110159 ], [ -74.95304, 40.110039 ], [ -74.952889, 40.109699 ], [ -74.95278, 40.109439 ], [ -74.95265, 40.109169 ], [ -74.952519, 40.108879 ], [ -74.95247, 40.10875 ], [ -74.952299, 40.10838 ], [ -74.952119, 40.107969 ], [ -74.95193, 40.107549 ], [ -74.951809, 40.1073 ], [ -74.951759, 40.107189 ], [ -74.95169, 40.10705 ], [ -74.95164, 40.10695 ], [ -74.951539, 40.10675 ], [ -74.95147, 40.1066 ], [ -74.95138, 40.106379 ], [ -74.9513, 40.10621 ], [ -74.951259, 40.106109 ], [ -74.95107, 40.105659 ], [ -74.950989, 40.105469 ], [ -74.95094, 40.105359 ], [ -74.95089, 40.10525 ], [ -74.950899, 40.105099 ], [ -74.950899, 40.104989 ], [ -74.950909, 40.104899 ], [ -74.95093, 40.104839 ], [ -74.95101, 40.10471 ], [ -74.951089, 40.104579 ], [ -74.95112, 40.104489 ], [ -74.95121, 40.104389 ], [ -74.9513, 40.104299 ], [ -74.95143, 40.10416 ], [ -74.9516, 40.10396 ], [ -74.951769, 40.10378 ], [ -74.95211, 40.103409 ], [ -74.952219, 40.103299 ], [ -74.95233, 40.10319 ], [ -74.95246, 40.103049 ], [ -74.952569, 40.10292 ], [ -74.95281, 40.102689 ], [ -74.95299, 40.102509 ], [ -74.953209, 40.10229 ], [ -74.953299, 40.1022 ], [ -74.953379, 40.102119 ], [ -74.95346, 40.102049 ], [ -74.95355, 40.101969 ], [ -74.953659, 40.101879 ], [ -74.95377, 40.101779 ], [ -74.95386, 40.101689 ], [ -74.95399, 40.101579 ], [ -74.954159, 40.101429 ], [ -74.954379, 40.101249 ], [ -74.95454, 40.10111 ], [ -74.954829, 40.101239 ], [ -74.95508, 40.10136 ], [ -74.955219, 40.10144 ], [ -74.955359, 40.101509 ], [ -74.955499, 40.101579 ], [ -74.956179, 40.101869 ], [ -74.95683, 40.10217 ], [ -74.95719, 40.102329 ], [ -74.95733, 40.10219 ], [ -74.957829, 40.101689 ], [ -74.957979, 40.10154 ], [ -74.958149, 40.101389 ], [ -74.95836, 40.10119 ], [ -74.959329, 40.1003 ], [ -74.95943, 40.10021 ], [ -74.95953, 40.10011 ], [ -74.959639, 40.1 ], [ -74.95992, 40.09973 ], [ -74.960049, 40.099599 ], [ -74.96038, 40.09929 ], [ -74.96021, 40.099179 ], [ -74.96011, 40.09912 ], [ -74.959599, 40.098799 ], [ -74.959359, 40.09865 ], [ -74.958829, 40.09833 ], [ -74.95832, 40.09803 ], [ -74.95805, 40.09784 ], [ -74.95813, 40.097789 ], [ -74.95821, 40.097719 ], [ -74.958289, 40.097609 ], [ -74.958429, 40.09741 ], [ -74.958559, 40.097199 ], [ -74.958779, 40.09686 ], [ -74.958999, 40.096529 ], [ -74.959189, 40.09623 ], [ -74.9594, 40.095939 ], [ -74.95943, 40.09589 ], [ -74.95961, 40.095659 ], [ -74.95966, 40.09561 ], [ -74.959779, 40.095479 ], [ -74.96029, 40.095009 ], [ -74.961259, 40.094129 ], [ -74.9616, 40.093839 ], [ -74.96165, 40.0938 ], [ -74.96218, 40.093419 ], [ -74.962779, 40.09309 ], [ -74.96336, 40.0928 ], [ -74.96426, 40.092389 ], [ -74.964319, 40.09236 ], [ -74.964459, 40.092299 ], [ -74.96479, 40.092149 ], [ -74.964849, 40.092119 ], [ -74.965269, 40.0919 ], [ -74.9657, 40.09166 ], [ -74.965669, 40.091529 ], [ -74.965499, 40.09138 ], [ -74.965359, 40.091249 ], [ -74.965229, 40.091139 ], [ -74.965119, 40.091049 ], [ -74.96501, 40.09093 ], [ -74.964849, 40.090709 ], [ -74.964759, 40.09049 ], [ -74.964729, 40.09038 ], [ -74.96471, 40.090169 ], [ -74.96471, 40.09005 ], [ -74.964729, 40.089879 ], [ -74.964759, 40.08974 ], [ -74.96484, 40.08957 ], [ -74.964939, 40.08941 ], [ -74.96507, 40.089259 ], [ -74.965399, 40.08878 ], [ -74.96552, 40.08859 ], [ -74.9656, 40.08848 ], [ -74.965669, 40.088339 ], [ -74.965709, 40.08824 ], [ -74.965769, 40.08813 ], [ -74.96579, 40.088019 ], [ -74.965799, 40.08794 ], [ -74.96583, 40.087659 ], [ -74.96583, 40.087379 ], [ -74.965809, 40.087179 ], [ -74.965769, 40.086939 ], [ -74.9657, 40.08662 ], [ -74.96565, 40.08641 ], [ -74.96547, 40.085749 ], [ -74.96543, 40.0856 ], [ -74.965409, 40.085469 ], [ -74.965389, 40.085289 ], [ -74.965389, 40.08515 ], [ -74.965389, 40.085029 ], [ -74.965399, 40.084949 ], [ -74.965409, 40.084859 ], [ -74.965589, 40.084299 ], [ -74.96573, 40.08391 ], [ -74.965809, 40.083679 ], [ -74.96583, 40.08362 ], [ -74.96591, 40.08337 ], [ -74.96596, 40.08318 ], [ -74.966019, 40.082969 ], [ -74.966119, 40.082699 ], [ -74.96609, 40.082609 ], [ -74.96663, 40.082319 ], [ -74.966829, 40.08222 ], [ -74.967019, 40.08213 ], [ -74.96658, 40.081519 ], [ -74.966169, 40.080529 ], [ -74.965409, 40.078529 ], [ -74.965299, 40.07826 ], [ -74.964949, 40.077299 ], [ -74.96462, 40.076309 ], [ -74.96453, 40.07601 ], [ -74.964489, 40.07582 ], [ -74.96448, 40.075669 ], [ -74.96448, 40.075499 ], [ -74.964499, 40.075329 ], [ -74.96453, 40.075199 ], [ -74.964579, 40.075059 ], [ -74.964669, 40.07473 ], [ -74.96488, 40.074339 ], [ -74.964939, 40.0742 ], [ -74.96498, 40.07409 ], [ -74.964989, 40.073979 ], [ -74.964989, 40.073889 ], [ -74.96498, 40.073799 ], [ -74.964949, 40.073689 ], [ -74.964899, 40.07357 ], [ -74.964809, 40.073439 ], [ -74.96457, 40.07318 ], [ -74.96444, 40.07304 ], [ -74.964179, 40.07274 ], [ -74.964149, 40.07266 ], [ -74.964139, 40.07259 ], [ -74.964139, 40.072539 ], [ -74.964149, 40.07248 ], [ -74.964189, 40.072419 ], [ -74.964369, 40.07221 ], [ -74.96453, 40.07212 ], [ -74.96489, 40.071909 ], [ -74.965079, 40.071809 ], [ -74.96524, 40.071719 ], [ -74.965799, 40.071429 ], [ -74.965949, 40.071349 ], [ -74.966, 40.07132 ], [ -74.966289, 40.07114 ], [ -74.966469, 40.07102 ], [ -74.96669, 40.07086 ], [ -74.966749, 40.070809 ], [ -74.96682, 40.07075 ], [ -74.966889, 40.070699 ], [ -74.96703, 40.07058 ], [ -74.96736, 40.07033 ], [ -74.96753, 40.070189 ], [ -74.967729, 40.07003 ], [ -74.96789, 40.069899 ], [ -74.967959, 40.069839 ], [ -74.968229, 40.069629 ], [ -74.968539, 40.069389 ], [ -74.968809, 40.06916 ], [ -74.96928, 40.06879 ], [ -74.96966, 40.068489 ], [ -74.96991, 40.068299 ], [ -74.97009, 40.06815 ], [ -74.970299, 40.068 ], [ -74.97045, 40.0679 ], [ -74.97056, 40.067829 ], [ -74.970669, 40.067759 ], [ -74.97086, 40.06763 ], [ -74.970979, 40.06755 ], [ -74.971249, 40.06736 ], [ -74.97128, 40.06734 ], [ -74.97163, 40.067109 ], [ -74.97177, 40.067029 ], [ -74.971979, 40.0669 ], [ -74.97204, 40.066869 ], [ -74.972109, 40.066829 ], [ -74.972149, 40.06681 ], [ -74.9723, 40.066739 ], [ -74.972589, 40.06662 ], [ -74.972679, 40.066579 ], [ -74.972789, 40.06654 ], [ -74.97294, 40.066489 ], [ -74.97334, 40.06637 ], [ -74.973809, 40.066239 ], [ -74.973849, 40.066229 ], [ -74.97392, 40.066209 ], [ -74.9741, 40.066149 ], [ -74.974269, 40.0661 ], [ -74.974489, 40.066029 ], [ -74.97469, 40.065969 ], [ -74.97488, 40.06591 ], [ -74.975069, 40.065849 ], [ -74.975199, 40.06581 ], [ -74.975299, 40.065779 ], [ -74.975619, 40.065689 ], [ -74.975749, 40.06565 ], [ -74.976019, 40.065569 ], [ -74.97613, 40.06553 ], [ -74.97626, 40.065489 ], [ -74.976519, 40.065409 ], [ -74.97677, 40.065339 ], [ -74.97693, 40.06529 ], [ -74.977149, 40.065229 ], [ -74.977269, 40.06519 ], [ -74.977499, 40.06512 ], [ -74.977719, 40.065069 ], [ -74.977859, 40.065049 ], [ -74.97792, 40.065039 ], [ -74.977999, 40.06503 ], [ -74.978139, 40.06502 ], [ -74.97821, 40.06502 ], [ -74.978359, 40.06502 ], [ -74.978579, 40.065039 ], [ -74.97878, 40.06508 ], [ -74.97893, 40.0651 ], [ -74.97897, 40.06511 ], [ -74.97918, 40.065139 ], [ -74.97946, 40.06517 ], [ -74.97963, 40.06517 ], [ -74.97969, 40.06517 ], [ -74.97981, 40.065159 ], [ -74.97992, 40.065149 ], [ -74.97999, 40.065139 ], [ -74.98009, 40.065129 ], [ -74.98031, 40.06509 ], [ -74.980569, 40.065039 ], [ -74.98063, 40.06503 ], [ -74.980699, 40.06502 ], [ -74.980829, 40.065 ], [ -74.98109, 40.064949 ], [ -74.981429, 40.064879 ], [ -74.98167, 40.06483 ], [ -74.981509, 40.064339 ], [ -74.981679, 40.064059 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307213", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569121, 40.243495 ], [ -75.569256, 40.243501 ], [ -75.570416, 40.243584 ], [ -75.570782, 40.243613 ], [ -75.571382, 40.243648 ], [ -75.572068, 40.243695 ], [ -75.572399, 40.24372 ], [ -75.57272, 40.243755 ], [ -75.573217, 40.24378 ], [ -75.573717, 40.243826 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650468, 40.245421 ], [ -75.650551, 40.245052 ], [ -75.650607, 40.244799 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307214", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569121, 40.243495 ], [ -75.569256, 40.243501 ], [ -75.570416, 40.243584 ], [ -75.570782, 40.243613 ], [ -75.571382, 40.243648 ], [ -75.572068, 40.243695 ], [ -75.572399, 40.24372 ], [ -75.57272, 40.243755 ], [ -75.573217, 40.24378 ], [ -75.573717, 40.243826 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650468, 40.245421 ], [ -75.650551, 40.245052 ], [ -75.650607, 40.244799 ], [ -75.650636, 40.24471 ], [ -75.650652, 40.244634 ], [ -75.650807, 40.243927 ], [ -75.650864, 40.243665 ], [ -75.650936, 40.243358 ], [ -75.651034, 40.243233 ], [ -75.651091, 40.243185 ], [ -75.651153, 40.243148 ], [ -75.651232, 40.243128 ], [ -75.6513, 40.243128 ], [ -75.651567, 40.243171 ], [ -75.652022, 40.243355 ], [ -75.652982, 40.243767 ], [ -75.653239, 40.24386 ], [ -75.653326, 40.243893 ], [ -75.65374, 40.244033 ], [ -75.654078, 40.244144 ], [ -75.654415, 40.244243 ], [ -75.654317, 40.244427 ], [ -75.65421, 40.244647 ], [ -75.65421, 40.244754 ], [ -75.654288, 40.244796 ], [ -75.654395, 40.24479 ], [ -75.654537, 40.244701 ], [ -75.65459, 40.244651 ], [ -75.654644, 40.244599 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307215", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569347, 40.243415 ], [ -75.5699, 40.24332 ], [ -75.570656, 40.243117 ], [ -75.571584, 40.242878 ], [ -75.572172, 40.242728 ], [ -75.573064, 40.242501 ], [ -75.573359, 40.242427 ], [ -75.573635, 40.242357 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.57391, 40.242279 ], [ -75.573995, 40.242431 ], [ -75.574134, 40.242683 ], [ -75.57417, 40.242746 ], [ -75.574214, 40.242869 ], [ -75.574231, 40.24293 ], [ -75.574244, 40.243004 ], [ -75.574242, 40.24308 ], [ -75.574238, 40.243137 ], [ -75.574231, 40.243205 ], [ -75.574217, 40.243283 ], [ -75.574197, 40.243341 ], [ -75.574167, 40.243396 ], [ -75.574125, 40.243455 ], [ -75.574041, 40.243546 ], [ -75.57396, 40.243621 ], [ -75.57393, 40.243653 ], [ -75.573874, 40.243699 ], [ -75.573809, 40.243754 ], [ -75.573717, 40.243825 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650316, 40.246235 ], [ -75.650213, 40.246704 ], [ -75.652547, 40.247011 ], [ -75.653359, 40.247111 ], [ -75.654935, 40.247277 ], [ -75.655181, 40.247319 ], [ -75.655233, 40.247198 ], [ -75.655299, 40.247023 ], [ -75.655526, 40.246392 ], [ -75.655549, 40.246345 ], [ -75.655363, 40.246309 ], [ -75.655078, 40.246268 ], [ -75.653587, 40.246066 ], [ -75.653364, 40.246033 ], [ -75.652771, 40.245948 ], [ -75.652329, 40.245897 ], [ -75.651778, 40.245833 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307216", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408383, 40.159543 ], [ -75.408408, 40.159513 ], [ -75.408493, 40.159408 ], [ -75.408913, 40.158981 ], [ -75.409317, 40.158592 ], [ -75.409857, 40.158086 ], [ -75.410161, 40.157793 ], [ -75.410371, 40.157579 ], [ -75.411309, 40.15664 ], [ -75.411719, 40.156859 ], [ -75.412029, 40.157 ], [ -75.412238, 40.157019 ], [ -75.412313, 40.157027 ], [ -75.412483, 40.157027 ], [ -75.412624, 40.157024 ], [ -75.412872, 40.157014 ], [ -75.413029, 40.157012 ], [ -75.413136, 40.157008 ], [ -75.413243, 40.157014 ], [ -75.413321, 40.157016 ], [ -75.413397, 40.157027 ], [ -75.413457, 40.157039 ], [ -75.413529, 40.157058 ], [ -75.413569, 40.157072 ], [ -75.4136, 40.157084 ], [ -75.413665, 40.157118 ], [ -75.414127, 40.157396 ], [ -75.414407, 40.157567 ], [ -75.414701, 40.157751 ], [ -75.414968, 40.15791 ], [ -75.415056, 40.157965 ], [ -75.415123, 40.158001 ], [ -75.415213, 40.158044 ], [ -75.415275, 40.158072 ], [ -75.415347, 40.158097 ], [ -75.415407, 40.15811 ], [ -75.415467, 40.158117 ], [ -75.415531, 40.158117 ], [ -75.415584, 40.158114 ], [ -75.415641, 40.15811 ], [ -75.4157, 40.158103 ], [ -75.415773, 40.158094 ], [ -75.415846, 40.158069 ], [ -75.415916, 40.158041 ], [ -75.415982, 40.158007 ], [ -75.416018, 40.157983 ], [ -75.416046, 40.157964 ], [ -75.416102, 40.15792 ], [ -75.416136, 40.157883 ], [ -75.416159, 40.157855 ], [ -75.41619, 40.157818 ], [ -75.416238, 40.157755 ], [ -75.416293, 40.15768 ], [ -75.41632, 40.157638 ], [ -75.416362, 40.157588 ], [ -75.416406, 40.157534 ], [ -75.416538, 40.157419 ], [ -75.416738, 40.157309 ], [ -75.417014, 40.157216 ], [ -75.417327, 40.157153 ], [ -75.417537, 40.157132 ], [ -75.417767, 40.15715 ], [ -75.418052, 40.157187 ], [ -75.41825, 40.157233 ], [ -75.418562, 40.157356 ], [ -75.418697, 40.157425 ], [ -75.418855, 40.15753 ], [ -75.419015, 40.157663 ], [ -75.419235, 40.157872 ], [ -75.419313, 40.15797 ], [ -75.419812, 40.158533 ], [ -75.419981, 40.158685 ], [ -75.420114, 40.158764 ], [ -75.420287, 40.158835 ], [ -75.420452, 40.158862 ], [ -75.420848, 40.158896 ], [ -75.420987, 40.159187 ], [ -75.421201, 40.159405 ], [ -75.42144, 40.159548 ], [ -75.421758, 40.159648 ], [ -75.422001, 40.159669 ], [ -75.422101, 40.159616 ], [ -75.422122, 40.159526 ], [ -75.422037, 40.158791 ], [ -75.421954, 40.157931 ], [ -75.421783, 40.157956 ], [ -75.421498, 40.158031 ], [ -75.421262, 40.158145 ], [ -75.421037, 40.158366 ], [ -75.420905, 40.158602 ], [ -75.420848, 40.158896 ], [ -75.420452, 40.158862 ], [ -75.420287, 40.158835 ], [ -75.420114, 40.158764 ], [ -75.419981, 40.158685 ], [ -75.419812, 40.158533 ], [ -75.419313, 40.15797 ], [ -75.419235, 40.157872 ], [ -75.419015, 40.157663 ], [ -75.418855, 40.15753 ], [ -75.418697, 40.157425 ], [ -75.418562, 40.157356 ], [ -75.41825, 40.157233 ], [ -75.418052, 40.157187 ], [ -75.417767, 40.15715 ], [ -75.417537, 40.157132 ], [ -75.417327, 40.157153 ], [ -75.417014, 40.157216 ], [ -75.416738, 40.157309 ], [ -75.416538, 40.157419 ], [ -75.416406, 40.157534 ], [ -75.416362, 40.157588 ], [ -75.41632, 40.157638 ], [ -75.416293, 40.15768 ], [ -75.416238, 40.157755 ], [ -75.41619, 40.157818 ], [ -75.416159, 40.157855 ], [ -75.416136, 40.157883 ], [ -75.416102, 40.15792 ], [ -75.416046, 40.157964 ], [ -75.416018, 40.157983 ], [ -75.415982, 40.158007 ], [ -75.415916, 40.158041 ], [ -75.415846, 40.158069 ], [ -75.415773, 40.158094 ], [ -75.4157, 40.158103 ], [ -75.415641, 40.15811 ], [ -75.415584, 40.158114 ], [ -75.415531, 40.158117 ], [ -75.415467, 40.158117 ], [ -75.415407, 40.15811 ], [ -75.415347, 40.158097 ], [ -75.415275, 40.158072 ], [ -75.415213, 40.158044 ], [ -75.415123, 40.158001 ], [ -75.415056, 40.157965 ], [ -75.414968, 40.15791 ], [ -75.414701, 40.157751 ], [ -75.414407, 40.157567 ], [ -75.414127, 40.157396 ], [ -75.413665, 40.157118 ], [ -75.4136, 40.157084 ], [ -75.413569, 40.157072 ], [ -75.413529, 40.157058 ], [ -75.413457, 40.157039 ], [ -75.413397, 40.157027 ], [ -75.413321, 40.157016 ], [ -75.413243, 40.157014 ], [ -75.413136, 40.157008 ], [ -75.413029, 40.157012 ], [ -75.412872, 40.157014 ], [ -75.412624, 40.157024 ], [ -75.412483, 40.157027 ], [ -75.412313, 40.157027 ], [ -75.412238, 40.157019 ], [ -75.412029, 40.157 ], [ -75.411719, 40.156859 ], [ -75.411309, 40.15664 ], [ -75.410371, 40.157579 ], [ -75.410161, 40.157793 ], [ -75.409857, 40.158086 ], [ -75.409317, 40.158592 ], [ -75.408913, 40.158981 ], [ -75.408493, 40.159408 ], [ -75.408408, 40.159513 ], [ -75.408383, 40.159543 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569347, 40.243415 ], [ -75.5699, 40.24332 ], [ -75.570656, 40.243117 ], [ -75.571584, 40.242878 ], [ -75.572172, 40.242728 ], [ -75.573064, 40.242501 ], [ -75.573359, 40.242427 ], [ -75.573635, 40.242357 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.57391, 40.242279 ], [ -75.573995, 40.242431 ], [ -75.574134, 40.242683 ], [ -75.57417, 40.242746 ], [ -75.574214, 40.242869 ], [ -75.574231, 40.24293 ], [ -75.574244, 40.243004 ], [ -75.574242, 40.24308 ], [ -75.574238, 40.243137 ], [ -75.574231, 40.243205 ], [ -75.574217, 40.243283 ], [ -75.574197, 40.243341 ], [ -75.574167, 40.243396 ], [ -75.574125, 40.243455 ], [ -75.574041, 40.243546 ], [ -75.57396, 40.243621 ], [ -75.57393, 40.243653 ], [ -75.573874, 40.243699 ], [ -75.573809, 40.243754 ], [ -75.573717, 40.243825 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650316, 40.246235 ], [ -75.650213, 40.246704 ], [ -75.652547, 40.247011 ], [ -75.653359, 40.247111 ], [ -75.654935, 40.247277 ], [ -75.655181, 40.247319 ], [ -75.655233, 40.247198 ], [ -75.655299, 40.247023 ], [ -75.655526, 40.246392 ], [ -75.655549, 40.246345 ], [ -75.655363, 40.246309 ], [ -75.655078, 40.246268 ], [ -75.653587, 40.246066 ], [ -75.653364, 40.246033 ], [ -75.652771, 40.245948 ], [ -75.652329, 40.245897 ], [ -75.651778, 40.245833 ], [ -75.651555, 40.245806 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307217", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569347, 40.243415 ], [ -75.5699, 40.24332 ], [ -75.570656, 40.243117 ], [ -75.571584, 40.242878 ], [ -75.572172, 40.242728 ], [ -75.573064, 40.242501 ], [ -75.573359, 40.242427 ], [ -75.573635, 40.242357 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.57391, 40.242279 ], [ -75.573995, 40.242431 ], [ -75.574134, 40.242683 ], [ -75.57417, 40.242746 ], [ -75.574214, 40.242869 ], [ -75.574231, 40.24293 ], [ -75.574244, 40.243004 ], [ -75.574242, 40.24308 ], [ -75.574238, 40.243137 ], [ -75.574231, 40.243205 ], [ -75.574217, 40.243283 ], [ -75.574197, 40.243341 ], [ -75.574167, 40.243396 ], [ -75.574125, 40.243455 ], [ -75.574041, 40.243546 ], [ -75.57396, 40.243621 ], [ -75.57393, 40.243653 ], [ -75.573874, 40.243699 ], [ -75.573809, 40.243754 ], [ -75.573717, 40.243825 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650468, 40.245421 ], [ -75.650551, 40.245052 ], [ -75.650607, 40.244799 ], [ -75.650636, 40.24471 ], [ -75.650652, 40.244634 ], [ -75.650807, 40.243927 ], [ -75.650864, 40.243665 ], [ -75.650936, 40.243358 ], [ -75.651034, 40.243233 ], [ -75.651091, 40.243185 ], [ -75.651153, 40.243148 ], [ -75.651232, 40.243128 ], [ -75.6513, 40.243128 ], [ -75.651567, 40.243171 ], [ -75.652022, 40.243355 ], [ -75.652982, 40.243767 ], [ -75.653239, 40.24386 ], [ -75.653326, 40.243893 ], [ -75.65374, 40.244033 ], [ -75.654078, 40.244144 ], [ -75.654415, 40.244243 ], [ -75.654317, 40.244427 ], [ -75.65421, 40.244647 ], [ -75.65421, 40.244754 ], [ -75.654288, 40.244796 ], [ -75.654395, 40.24479 ], [ -75.654537, 40.244701 ], [ -75.65459, 40.244651 ], [ -75.654644, 40.244599 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307219", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307220", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408383, 40.159543 ], [ -75.408408, 40.159513 ], [ -75.408493, 40.159408 ], [ -75.408913, 40.158981 ], [ -75.409317, 40.158592 ], [ -75.409857, 40.158086 ], [ -75.410161, 40.157793 ], [ -75.410371, 40.157579 ], [ -75.410642, 40.157312 ], [ -75.410371, 40.157579 ], [ -75.411309, 40.15664 ], [ -75.411719, 40.156859 ], [ -75.412029, 40.157 ], [ -75.412238, 40.157019 ], [ -75.412313, 40.157027 ], [ -75.412483, 40.157027 ], [ -75.412624, 40.157024 ], [ -75.412872, 40.157014 ], [ -75.413029, 40.157012 ], [ -75.413136, 40.157008 ], [ -75.413243, 40.157014 ], [ -75.413321, 40.157016 ], [ -75.413397, 40.157027 ], [ -75.413457, 40.157039 ], [ -75.413529, 40.157058 ], [ -75.413569, 40.157072 ], [ -75.4136, 40.157084 ], [ -75.413665, 40.157118 ], [ -75.414127, 40.157396 ], [ -75.414407, 40.157567 ], [ -75.414701, 40.157751 ], [ -75.414968, 40.15791 ], [ -75.415056, 40.157965 ], [ -75.415123, 40.158001 ], [ -75.415213, 40.158044 ], [ -75.415275, 40.158072 ], [ -75.415347, 40.158097 ], [ -75.415407, 40.15811 ], [ -75.415467, 40.158117 ], [ -75.415531, 40.158117 ], [ -75.415584, 40.158114 ], [ -75.415641, 40.15811 ], [ -75.4157, 40.158103 ], [ -75.415773, 40.158094 ], [ -75.415846, 40.158069 ], [ -75.415916, 40.158041 ], [ -75.415982, 40.158007 ], [ -75.416018, 40.157983 ], [ -75.416046, 40.157964 ], [ -75.416102, 40.15792 ], [ -75.416136, 40.157883 ], [ -75.416159, 40.157855 ], [ -75.41619, 40.157818 ], [ -75.416238, 40.157755 ], [ -75.416293, 40.15768 ], [ -75.41632, 40.157638 ], [ -75.416362, 40.157588 ], [ -75.416406, 40.157534 ], [ -75.416538, 40.157419 ], [ -75.416738, 40.157309 ], [ -75.417014, 40.157216 ], [ -75.417327, 40.157153 ], [ -75.417537, 40.157132 ], [ -75.417767, 40.15715 ], [ -75.418052, 40.157187 ], [ -75.41825, 40.157233 ], [ -75.418562, 40.157356 ], [ -75.418697, 40.157425 ], [ -75.418855, 40.15753 ], [ -75.419015, 40.157663 ], [ -75.419235, 40.157872 ], [ -75.419313, 40.15797 ], [ -75.419812, 40.158533 ], [ -75.419981, 40.158685 ], [ -75.420114, 40.158764 ], [ -75.420287, 40.158835 ], [ -75.420452, 40.158862 ], [ -75.420848, 40.158896 ], [ -75.420987, 40.159187 ], [ -75.421201, 40.159405 ], [ -75.42144, 40.159548 ], [ -75.421758, 40.159648 ], [ -75.422001, 40.159669 ], [ -75.422101, 40.159616 ], [ -75.422122, 40.159526 ], [ -75.422037, 40.158791 ], [ -75.421954, 40.157931 ], [ -75.421783, 40.157956 ], [ -75.421498, 40.158031 ], [ -75.421262, 40.158145 ], [ -75.421037, 40.158366 ], [ -75.420905, 40.158602 ], [ -75.420848, 40.158896 ], [ -75.420452, 40.158862 ], [ -75.420287, 40.158835 ], [ -75.420114, 40.158764 ], [ -75.419981, 40.158685 ], [ -75.419812, 40.158533 ], [ -75.419313, 40.15797 ], [ -75.419235, 40.157872 ], [ -75.419015, 40.157663 ], [ -75.418855, 40.15753 ], [ -75.418697, 40.157425 ], [ -75.418562, 40.157356 ], [ -75.41825, 40.157233 ], [ -75.418052, 40.157187 ], [ -75.417767, 40.15715 ], [ -75.417537, 40.157132 ], [ -75.417327, 40.157153 ], [ -75.417014, 40.157216 ], [ -75.416738, 40.157309 ], [ -75.416538, 40.157419 ], [ -75.416406, 40.157534 ], [ -75.416362, 40.157588 ], [ -75.41632, 40.157638 ], [ -75.416293, 40.15768 ], [ -75.416238, 40.157755 ], [ -75.41619, 40.157818 ], [ -75.416159, 40.157855 ], [ -75.416136, 40.157883 ], [ -75.416102, 40.15792 ], [ -75.416046, 40.157964 ], [ -75.416018, 40.157983 ], [ -75.415982, 40.158007 ], [ -75.415916, 40.158041 ], [ -75.415846, 40.158069 ], [ -75.415773, 40.158094 ], [ -75.4157, 40.158103 ], [ -75.415641, 40.15811 ], [ -75.415584, 40.158114 ], [ -75.415531, 40.158117 ], [ -75.415467, 40.158117 ], [ -75.415407, 40.15811 ], [ -75.415347, 40.158097 ], [ -75.415275, 40.158072 ], [ -75.415213, 40.158044 ], [ -75.415123, 40.158001 ], [ -75.415056, 40.157965 ], [ -75.414968, 40.15791 ], [ -75.414701, 40.157751 ], [ -75.414407, 40.157567 ], [ -75.414127, 40.157396 ], [ -75.413665, 40.157118 ], [ -75.4136, 40.157084 ], [ -75.413569, 40.157072 ], [ -75.413529, 40.157058 ], [ -75.413457, 40.157039 ], [ -75.413397, 40.157027 ], [ -75.413321, 40.157016 ], [ -75.413243, 40.157014 ], [ -75.413136, 40.157008 ], [ -75.413029, 40.157012 ], [ -75.412872, 40.157014 ], [ -75.412624, 40.157024 ], [ -75.412483, 40.157027 ], [ -75.412313, 40.157027 ], [ -75.412238, 40.157019 ], [ -75.412029, 40.157 ], [ -75.411719, 40.156859 ], [ -75.411309, 40.15664 ], [ -75.410371, 40.157579 ], [ -75.410161, 40.157793 ], [ -75.409857, 40.158086 ], [ -75.409317, 40.158592 ], [ -75.408913, 40.158981 ], [ -75.408493, 40.159408 ], [ -75.408408, 40.159513 ], [ -75.408383, 40.159543 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.566366, 40.243234 ], [ -75.566415, 40.243232 ], [ -75.566574, 40.243246 ], [ -75.566633, 40.243249 ], [ -75.567157, 40.243292 ], [ -75.567681, 40.24332 ], [ -75.568145, 40.243348 ], [ -75.568455, 40.243353 ], [ -75.56864, 40.243348 ], [ -75.568821, 40.243338 ], [ -75.568987, 40.243324 ], [ -75.56913, 40.243307 ], [ -75.569308, 40.243288 ], [ -75.569499, 40.243258 ], [ -75.569679, 40.243224 ], [ -75.569887, 40.243185 ], [ -75.570105, 40.243137 ], [ -75.570495, 40.243054 ], [ -75.570656, 40.243117 ], [ -75.571584, 40.242878 ], [ -75.572172, 40.242728 ], [ -75.573064, 40.242501 ], [ -75.573359, 40.242427 ], [ -75.573635, 40.242357 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.57391, 40.242279 ], [ -75.573995, 40.242431 ], [ -75.574134, 40.242683 ], [ -75.57417, 40.242746 ], [ -75.574214, 40.242869 ], [ -75.574231, 40.24293 ], [ -75.574244, 40.243004 ], [ -75.574242, 40.24308 ], [ -75.574238, 40.243137 ], [ -75.574231, 40.243205 ], [ -75.574217, 40.243283 ], [ -75.574197, 40.243341 ], [ -75.574167, 40.243396 ], [ -75.574125, 40.243455 ], [ -75.574041, 40.243546 ], [ -75.57396, 40.243621 ], [ -75.57393, 40.243653 ], [ -75.573874, 40.243699 ], [ -75.573809, 40.243754 ], [ -75.573717, 40.243825 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650468, 40.245421 ], [ -75.650551, 40.245052 ], [ -75.650607, 40.244799 ], [ -75.650636, 40.24471 ], [ -75.650652, 40.244634 ], [ -75.650807, 40.243927 ], [ -75.650864, 40.243665 ], [ -75.650936, 40.243358 ], [ -75.651034, 40.243233 ], [ -75.651091, 40.243185 ], [ -75.651153, 40.243148 ], [ -75.651232, 40.243128 ], [ -75.6513, 40.243128 ], [ -75.651567, 40.243171 ], [ -75.652022, 40.243355 ], [ -75.652982, 40.243767 ], [ -75.653239, 40.24386 ], [ -75.653326, 40.243893 ], [ -75.65374, 40.244033 ], [ -75.654078, 40.244144 ], [ -75.654415, 40.244243 ], [ -75.654317, 40.244427 ], [ -75.65421, 40.244647 ], [ -75.65421, 40.244754 ], [ -75.654288, 40.244796 ], [ -75.654395, 40.24479 ], [ -75.654537, 40.244701 ], [ -75.65459, 40.244651 ], [ -75.654644, 40.244599 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307221", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408383, 40.159543 ], [ -75.408408, 40.159513 ], [ -75.408493, 40.159408 ], [ -75.408913, 40.158981 ], [ -75.409317, 40.158592 ], [ -75.409857, 40.158086 ], [ -75.410161, 40.157793 ], [ -75.410371, 40.157579 ], [ -75.410642, 40.157312 ], [ -75.410371, 40.157579 ], [ -75.411309, 40.15664 ], [ -75.411719, 40.156859 ], [ -75.412029, 40.157 ], [ -75.412238, 40.157019 ], [ -75.412313, 40.157027 ], [ -75.412483, 40.157027 ], [ -75.412624, 40.157024 ], [ -75.412872, 40.157014 ], [ -75.413029, 40.157012 ], [ -75.413136, 40.157008 ], [ -75.413243, 40.157014 ], [ -75.413321, 40.157016 ], [ -75.413397, 40.157027 ], [ -75.413457, 40.157039 ], [ -75.413529, 40.157058 ], [ -75.413569, 40.157072 ], [ -75.4136, 40.157084 ], [ -75.413665, 40.157118 ], [ -75.414127, 40.157396 ], [ -75.414407, 40.157567 ], [ -75.414701, 40.157751 ], [ -75.414968, 40.15791 ], [ -75.415056, 40.157965 ], [ -75.415123, 40.158001 ], [ -75.415213, 40.158044 ], [ -75.415275, 40.158072 ], [ -75.415347, 40.158097 ], [ -75.415407, 40.15811 ], [ -75.415467, 40.158117 ], [ -75.415531, 40.158117 ], [ -75.415584, 40.158114 ], [ -75.415641, 40.15811 ], [ -75.4157, 40.158103 ], [ -75.415773, 40.158094 ], [ -75.415846, 40.158069 ], [ -75.415916, 40.158041 ], [ -75.415982, 40.158007 ], [ -75.416018, 40.157983 ], [ -75.416046, 40.157964 ], [ -75.416102, 40.15792 ], [ -75.416136, 40.157883 ], [ -75.416159, 40.157855 ], [ -75.41619, 40.157818 ], [ -75.416238, 40.157755 ], [ -75.416293, 40.15768 ], [ -75.41632, 40.157638 ], [ -75.416362, 40.157588 ], [ -75.416406, 40.157534 ], [ -75.416538, 40.157419 ], [ -75.416738, 40.157309 ], [ -75.417014, 40.157216 ], [ -75.417327, 40.157153 ], [ -75.417537, 40.157132 ], [ -75.417767, 40.15715 ], [ -75.418052, 40.157187 ], [ -75.41825, 40.157233 ], [ -75.418562, 40.157356 ], [ -75.418697, 40.157425 ], [ -75.418855, 40.15753 ], [ -75.419015, 40.157663 ], [ -75.419235, 40.157872 ], [ -75.419313, 40.15797 ], [ -75.419812, 40.158533 ], [ -75.419981, 40.158685 ], [ -75.420114, 40.158764 ], [ -75.420287, 40.158835 ], [ -75.420452, 40.158862 ], [ -75.420848, 40.158896 ], [ -75.420987, 40.159187 ], [ -75.421201, 40.159405 ], [ -75.42144, 40.159548 ], [ -75.421758, 40.159648 ], [ -75.422001, 40.159669 ], [ -75.422101, 40.159616 ], [ -75.422122, 40.159526 ], [ -75.422037, 40.158791 ], [ -75.421954, 40.157931 ], [ -75.421783, 40.157956 ], [ -75.421498, 40.158031 ], [ -75.421262, 40.158145 ], [ -75.421037, 40.158366 ], [ -75.420905, 40.158602 ], [ -75.420848, 40.158896 ], [ -75.420452, 40.158862 ], [ -75.420287, 40.158835 ], [ -75.420114, 40.158764 ], [ -75.419981, 40.158685 ], [ -75.419812, 40.158533 ], [ -75.419313, 40.15797 ], [ -75.419235, 40.157872 ], [ -75.419015, 40.157663 ], [ -75.418855, 40.15753 ], [ -75.418697, 40.157425 ], [ -75.418562, 40.157356 ], [ -75.41825, 40.157233 ], [ -75.418052, 40.157187 ], [ -75.417767, 40.15715 ], [ -75.417537, 40.157132 ], [ -75.417327, 40.157153 ], [ -75.417014, 40.157216 ], [ -75.416738, 40.157309 ], [ -75.416538, 40.157419 ], [ -75.416406, 40.157534 ], [ -75.416362, 40.157588 ], [ -75.41632, 40.157638 ], [ -75.416293, 40.15768 ], [ -75.416238, 40.157755 ], [ -75.41619, 40.157818 ], [ -75.416159, 40.157855 ], [ -75.416136, 40.157883 ], [ -75.416102, 40.15792 ], [ -75.416046, 40.157964 ], [ -75.416018, 40.157983 ], [ -75.415982, 40.158007 ], [ -75.415916, 40.158041 ], [ -75.415846, 40.158069 ], [ -75.415773, 40.158094 ], [ -75.4157, 40.158103 ], [ -75.415641, 40.15811 ], [ -75.415584, 40.158114 ], [ -75.415531, 40.158117 ], [ -75.415467, 40.158117 ], [ -75.415407, 40.15811 ], [ -75.415347, 40.158097 ], [ -75.415275, 40.158072 ], [ -75.415213, 40.158044 ], [ -75.415123, 40.158001 ], [ -75.415056, 40.157965 ], [ -75.414968, 40.15791 ], [ -75.414701, 40.157751 ], [ -75.414407, 40.157567 ], [ -75.414127, 40.157396 ], [ -75.413665, 40.157118 ], [ -75.4136, 40.157084 ], [ -75.413569, 40.157072 ], [ -75.413529, 40.157058 ], [ -75.413457, 40.157039 ], [ -75.413397, 40.157027 ], [ -75.413321, 40.157016 ], [ -75.413243, 40.157014 ], [ -75.413136, 40.157008 ], [ -75.413029, 40.157012 ], [ -75.412872, 40.157014 ], [ -75.412624, 40.157024 ], [ -75.412483, 40.157027 ], [ -75.412313, 40.157027 ], [ -75.412238, 40.157019 ], [ -75.412029, 40.157 ], [ -75.411719, 40.156859 ], [ -75.411309, 40.15664 ], [ -75.410371, 40.157579 ], [ -75.410161, 40.157793 ], [ -75.409857, 40.158086 ], [ -75.409317, 40.158592 ], [ -75.408913, 40.158981 ], [ -75.408493, 40.159408 ], [ -75.408408, 40.159513 ], [ -75.408383, 40.159543 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569121, 40.243495 ], [ -75.569256, 40.243501 ], [ -75.570416, 40.243584 ], [ -75.570782, 40.243613 ], [ -75.571382, 40.243648 ], [ -75.572068, 40.243695 ], [ -75.572399, 40.24372 ], [ -75.57272, 40.243755 ], [ -75.573217, 40.24378 ], [ -75.573717, 40.243826 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650468, 40.245421 ], [ -75.650551, 40.245052 ], [ -75.650607, 40.244799 ], [ -75.650636, 40.24471 ], [ -75.650652, 40.244634 ], [ -75.650807, 40.243927 ], [ -75.650864, 40.243665 ], [ -75.650936, 40.243358 ], [ -75.651013, 40.242917 ], [ -75.651445, 40.243122 ], [ -75.651567, 40.243171 ], [ -75.652022, 40.243355 ], [ -75.652982, 40.243767 ], [ -75.653239, 40.24386 ], [ -75.653326, 40.243893 ], [ -75.65374, 40.244033 ], [ -75.654078, 40.244144 ], [ -75.654415, 40.244243 ], [ -75.654317, 40.244427 ], [ -75.65421, 40.244647 ], [ -75.65421, 40.244754 ], [ -75.654288, 40.244796 ], [ -75.654395, 40.24479 ], [ -75.654537, 40.244701 ], [ -75.65459, 40.244651 ], [ -75.654644, 40.244599 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307222", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408383, 40.159543 ], [ -75.408408, 40.159513 ], [ -75.408493, 40.159408 ], [ -75.408913, 40.158981 ], [ -75.409317, 40.158592 ], [ -75.409857, 40.158086 ], [ -75.410161, 40.157793 ], [ -75.410371, 40.157579 ], [ -75.411309, 40.15664 ], [ -75.411719, 40.156859 ], [ -75.412029, 40.157 ], [ -75.412238, 40.157019 ], [ -75.412313, 40.157027 ], [ -75.412483, 40.157027 ], [ -75.412624, 40.157024 ], [ -75.412872, 40.157014 ], [ -75.413029, 40.157012 ], [ -75.413136, 40.157008 ], [ -75.413243, 40.157014 ], [ -75.413321, 40.157016 ], [ -75.413397, 40.157027 ], [ -75.413457, 40.157039 ], [ -75.413529, 40.157058 ], [ -75.413569, 40.157072 ], [ -75.4136, 40.157084 ], [ -75.413665, 40.157118 ], [ -75.414127, 40.157396 ], [ -75.414407, 40.157567 ], [ -75.414701, 40.157751 ], [ -75.414968, 40.15791 ], [ -75.415056, 40.157965 ], [ -75.415123, 40.158001 ], [ -75.415213, 40.158044 ], [ -75.415275, 40.158072 ], [ -75.415347, 40.158097 ], [ -75.415407, 40.15811 ], [ -75.415467, 40.158117 ], [ -75.415531, 40.158117 ], [ -75.415584, 40.158114 ], [ -75.415641, 40.15811 ], [ -75.4157, 40.158103 ], [ -75.415773, 40.158094 ], [ -75.415846, 40.158069 ], [ -75.415916, 40.158041 ], [ -75.415982, 40.158007 ], [ -75.416018, 40.157983 ], [ -75.416046, 40.157964 ], [ -75.416102, 40.15792 ], [ -75.416136, 40.157883 ], [ -75.416159, 40.157855 ], [ -75.41619, 40.157818 ], [ -75.416238, 40.157755 ], [ -75.416293, 40.15768 ], [ -75.41632, 40.157638 ], [ -75.416362, 40.157588 ], [ -75.416406, 40.157534 ], [ -75.416538, 40.157419 ], [ -75.416738, 40.157309 ], [ -75.417014, 40.157216 ], [ -75.417327, 40.157153 ], [ -75.417537, 40.157132 ], [ -75.417767, 40.15715 ], [ -75.418052, 40.157187 ], [ -75.41825, 40.157233 ], [ -75.418562, 40.157356 ], [ -75.418697, 40.157425 ], [ -75.418855, 40.15753 ], [ -75.419015, 40.157663 ], [ -75.419235, 40.157872 ], [ -75.419313, 40.15797 ], [ -75.419812, 40.158533 ], [ -75.419981, 40.158685 ], [ -75.420114, 40.158764 ], [ -75.420287, 40.158835 ], [ -75.420452, 40.158862 ], [ -75.420848, 40.158896 ], [ -75.420987, 40.159187 ], [ -75.421201, 40.159405 ], [ -75.42144, 40.159548 ], [ -75.421758, 40.159648 ], [ -75.422001, 40.159669 ], [ -75.422101, 40.159616 ], [ -75.422122, 40.159526 ], [ -75.422037, 40.158791 ], [ -75.421954, 40.157931 ], [ -75.421783, 40.157956 ], [ -75.421498, 40.158031 ], [ -75.421262, 40.158145 ], [ -75.421037, 40.158366 ], [ -75.420905, 40.158602 ], [ -75.420848, 40.158896 ], [ -75.420452, 40.158862 ], [ -75.420287, 40.158835 ], [ -75.420114, 40.158764 ], [ -75.419981, 40.158685 ], [ -75.419812, 40.158533 ], [ -75.419313, 40.15797 ], [ -75.419235, 40.157872 ], [ -75.419015, 40.157663 ], [ -75.418855, 40.15753 ], [ -75.418697, 40.157425 ], [ -75.418562, 40.157356 ], [ -75.41825, 40.157233 ], [ -75.418052, 40.157187 ], [ -75.417767, 40.15715 ], [ -75.417537, 40.157132 ], [ -75.417327, 40.157153 ], [ -75.417014, 40.157216 ], [ -75.416738, 40.157309 ], [ -75.416538, 40.157419 ], [ -75.416406, 40.157534 ], [ -75.416362, 40.157588 ], [ -75.41632, 40.157638 ], [ -75.416293, 40.15768 ], [ -75.416238, 40.157755 ], [ -75.41619, 40.157818 ], [ -75.416159, 40.157855 ], [ -75.416136, 40.157883 ], [ -75.416102, 40.15792 ], [ -75.416046, 40.157964 ], [ -75.416018, 40.157983 ], [ -75.415982, 40.158007 ], [ -75.415916, 40.158041 ], [ -75.415846, 40.158069 ], [ -75.415773, 40.158094 ], [ -75.4157, 40.158103 ], [ -75.415641, 40.15811 ], [ -75.415584, 40.158114 ], [ -75.415531, 40.158117 ], [ -75.415467, 40.158117 ], [ -75.415407, 40.15811 ], [ -75.415347, 40.158097 ], [ -75.415275, 40.158072 ], [ -75.415213, 40.158044 ], [ -75.415123, 40.158001 ], [ -75.415056, 40.157965 ], [ -75.414968, 40.15791 ], [ -75.414701, 40.157751 ], [ -75.414407, 40.157567 ], [ -75.414127, 40.157396 ], [ -75.413665, 40.157118 ], [ -75.4136, 40.157084 ], [ -75.413569, 40.157072 ], [ -75.413529, 40.157058 ], [ -75.413457, 40.157039 ], [ -75.413397, 40.157027 ], [ -75.413321, 40.157016 ], [ -75.413243, 40.157014 ], [ -75.413136, 40.157008 ], [ -75.413029, 40.157012 ], [ -75.412872, 40.157014 ], [ -75.412624, 40.157024 ], [ -75.412483, 40.157027 ], [ -75.412313, 40.157027 ], [ -75.412238, 40.157019 ], [ -75.412168, 40.157008 ], [ -75.412238, 40.157019 ], [ -75.412029, 40.157 ], [ -75.411719, 40.156859 ], [ -75.411309, 40.15664 ], [ -75.410371, 40.157579 ], [ -75.410161, 40.157793 ], [ -75.409857, 40.158086 ], [ -75.409317, 40.158592 ], [ -75.408913, 40.158981 ], [ -75.408493, 40.159408 ], [ -75.408408, 40.159513 ], [ -75.408383, 40.159543 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569121, 40.243495 ], [ -75.569256, 40.243501 ], [ -75.570416, 40.243584 ], [ -75.570782, 40.243613 ], [ -75.571382, 40.243648 ], [ -75.572068, 40.243695 ], [ -75.572399, 40.24372 ], [ -75.57272, 40.243755 ], [ -75.573217, 40.24378 ], [ -75.573717, 40.243826 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650316, 40.246235 ], [ -75.650213, 40.246704 ], [ -75.652547, 40.247011 ], [ -75.653359, 40.247111 ], [ -75.654935, 40.247277 ], [ -75.655181, 40.247319 ], [ -75.655233, 40.247198 ], [ -75.655299, 40.247023 ], [ -75.655526, 40.246392 ], [ -75.655549, 40.246345 ], [ -75.655363, 40.246309 ], [ -75.655078, 40.246268 ], [ -75.653587, 40.246066 ], [ -75.653364, 40.246033 ], [ -75.652771, 40.245948 ], [ -75.652329, 40.245897 ], [ -75.651778, 40.245833 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307223", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.346111, 40.114201 ], [ -75.345629, 40.114956 ], [ -75.346042, 40.115118 ], [ -75.346398, 40.115258 ], [ -75.346886, 40.115451 ], [ -75.347031, 40.11551 ], [ -75.347287, 40.115614 ], [ -75.347386, 40.115654 ], [ -75.347483, 40.115697 ], [ -75.347533, 40.115721 ], [ -75.347569, 40.115765 ], [ -75.347578, 40.115771 ], [ -75.347586, 40.115777 ], [ -75.347627, 40.115796 ], [ -75.347883, 40.115919 ], [ -75.348293, 40.116146 ], [ -75.348633, 40.11636 ], [ -75.348868, 40.116507 ], [ -75.348981, 40.116587 ], [ -75.34909, 40.116655 ], [ -75.349187, 40.116709 ], [ -75.349512, 40.116891 ], [ -75.349669, 40.116985 ], [ -75.349892, 40.117119 ], [ -75.350259, 40.117344 ], [ -75.350346, 40.117356 ], [ -75.350408, 40.117388 ], [ -75.350452, 40.117411 ], [ -75.350721, 40.117578 ], [ -75.350861, 40.117672 ], [ -75.351103, 40.117833 ], [ -75.351177, 40.117883 ], [ -75.351261, 40.117937 ], [ -75.351395, 40.118027 ], [ -75.351458, 40.118071 ], [ -75.351574, 40.118148 ], [ -75.351648, 40.11819 ], [ -75.351708, 40.118226 ], [ -75.351773, 40.118255 ], [ -75.351846, 40.118285 ], [ -75.351931, 40.118316 ], [ -75.351991, 40.118334 ], [ -75.352077, 40.118365 ], [ -75.352398, 40.118477 ], [ -75.352545, 40.118529 ], [ -75.354032, 40.119057 ], [ -75.355284, 40.119506 ], [ -75.355436, 40.11956 ], [ -75.355544, 40.1196 ], [ -75.355668, 40.119647 ], [ -75.35584, 40.119721 ], [ -75.355909, 40.119755 ], [ -75.355967, 40.119783 ], [ -75.356163, 40.119884 ], [ -75.356434, 40.120034 ], [ -75.356945, 40.120326 ], [ -75.358156, 40.121021 ], [ -75.359387, 40.121722 ], [ -75.360601, 40.122423 ], [ -75.361265, 40.122838 ], [ -75.361545, 40.122999 ], [ -75.361867, 40.123184 ], [ -75.362269, 40.123415 ], [ -75.362414, 40.123498 ], [ -75.362521, 40.123554 ], [ -75.363003, 40.123828 ], [ -75.363573, 40.124151 ], [ -75.364535, 40.124705 ], [ -75.365828, 40.125456 ], [ -75.366753, 40.125988 ], [ -75.367721, 40.126543 ], [ -75.3684, 40.126936 ], [ -75.369467, 40.127565 ], [ -75.370699, 40.128268 ], [ -75.371057, 40.128481 ], [ -75.371847, 40.128935 ], [ -75.372146, 40.129107 ], [ -75.372422, 40.12926 ], [ -75.372506, 40.129307 ], [ -75.373139, 40.129661 ], [ -75.373415, 40.129828 ], [ -75.374039, 40.130176 ], [ -75.374519, 40.130449 ], [ -75.374761, 40.130589 ], [ -75.375027, 40.130742 ], [ -75.375283, 40.130889 ], [ -75.375727, 40.131142 ], [ -75.376811, 40.131758 ], [ -75.377294, 40.132036 ], [ -75.377697, 40.132262 ], [ -75.377989, 40.132425 ], [ -75.378277, 40.13258 ], [ -75.378359, 40.13263 ], [ -75.378457, 40.132719 ], [ -75.378618, 40.132861 ], [ -75.378844, 40.133064 ], [ -75.379356, 40.133519 ], [ -75.379683, 40.133804 ], [ -75.380298, 40.134339 ], [ -75.381147, 40.135073 ], [ -75.381591, 40.135459 ], [ -75.38192, 40.135738 ], [ -75.382115, 40.135904 ], [ -75.382524, 40.136267 ], [ -75.383054, 40.136751 ], [ -75.383549, 40.137194 ], [ -75.383988, 40.137591 ], [ -75.384988, 40.138483 ], [ -75.385178, 40.138652 ], [ -75.385452, 40.138885 ], [ -75.385742, 40.139154 ], [ -75.386411, 40.139753 ], [ -75.386578, 40.139906 ], [ -75.386783, 40.140086 ], [ -75.387033, 40.140284 ], [ -75.387179, 40.14039 ], [ -75.387552, 40.140656 ], [ -75.388235, 40.14113 ], [ -75.388995, 40.14166 ], [ -75.389055, 40.141703 ], [ -75.389341, 40.14191 ], [ -75.3898, 40.142241 ], [ -75.389952, 40.142358 ], [ -75.390117, 40.142485 ], [ -75.390246, 40.142584 ], [ -75.390447, 40.142738 ], [ -75.39111, 40.143246 ], [ -75.392004, 40.143941 ], [ -75.392423, 40.144254 ], [ -75.392825, 40.144546 ], [ -75.393588, 40.145126 ], [ -75.393794, 40.145288 ], [ -75.394005, 40.145465 ], [ -75.394093, 40.145542 ], [ -75.394159, 40.145606 ], [ -75.394233, 40.14568 ], [ -75.394774, 40.146324 ], [ -75.394862, 40.146432 ], [ -75.39491, 40.146483 ], [ -75.395229, 40.146809 ], [ -75.395344, 40.146943 ], [ -75.395625, 40.147259 ], [ -75.395635, 40.147271 ], [ -75.395683, 40.147327 ], [ -75.395866, 40.147538 ], [ -75.396062, 40.147784 ], [ -75.396122, 40.147857 ], [ -75.396179, 40.14793 ], [ -75.396324, 40.148162 ], [ -75.39643, 40.148348 ], [ -75.396738, 40.148917 ], [ -75.396908, 40.149193 ], [ -75.397417, 40.15008 ], [ -75.397605, 40.150444 ], [ -75.397769, 40.150773 ], [ -75.397843, 40.150925 ], [ -75.397997, 40.151204 ], [ -75.398032, 40.151276 ], [ -75.398271, 40.151795 ], [ -75.398311, 40.15188 ], [ -75.398382, 40.152052 ], [ -75.398428, 40.152165 ], [ -75.398457, 40.15224 ], [ -75.398484, 40.152305 ], [ -75.398543, 40.152443 ], [ -75.398692, 40.152783 ], [ -75.398759, 40.15292 ], [ -75.398836, 40.153072 ], [ -75.398895, 40.153161 ], [ -75.399005, 40.153356 ], [ -75.39912, 40.153528 ], [ -75.399185, 40.153619 ], [ -75.399427, 40.153925 ], [ -75.399606, 40.15412 ], [ -75.399861, 40.154386 ], [ -75.399944, 40.154475 ], [ -75.40006, 40.154585 ], [ -75.4002, 40.154707 ], [ -75.400278, 40.154779 ], [ -75.400341, 40.154834 ], [ -75.400638, 40.155069 ], [ -75.400671, 40.15509 ], [ -75.40071, 40.155115 ], [ -75.400942, 40.155267 ], [ -75.400964, 40.155283 ], [ -75.40126, 40.155484 ], [ -75.401868, 40.155879 ], [ -75.402095, 40.156028 ], [ -75.402628, 40.156357 ], [ -75.402805, 40.156467 ], [ -75.403073, 40.156634 ], [ -75.403308, 40.156784 ], [ -75.403529, 40.15692 ], [ -75.403617, 40.156972 ], [ -75.404147, 40.157278 ], [ -75.404186, 40.157308 ], [ -75.404433, 40.157444 ], [ -75.404628, 40.157558 ], [ -75.404882, 40.157706 ], [ -75.404936, 40.15774 ], [ -75.405124, 40.157856 ], [ -75.405377, 40.158017 ], [ -75.406312, 40.158557 ], [ -75.407053, 40.158957 ], [ -75.407242, 40.159057 ], [ -75.407678, 40.15929 ], [ -75.408324, 40.159635 ], [ -75.408523, 40.159746 ], [ -75.408901, 40.159943 ], [ -75.408925, 40.159985 ], [ -75.408977, 40.160016 ], [ -75.40914, 40.160098 ], [ -75.409174, 40.160117 ], [ -75.409405, 40.160241 ], [ -75.409459, 40.160269 ], [ -75.409706, 40.160403 ], [ -75.410151, 40.160661 ], [ -75.41053, 40.160886 ], [ -75.411076, 40.161207 ], [ -75.411335, 40.161363 ], [ -75.411571, 40.161509 ], [ -75.411591, 40.161521 ], [ -75.411705, 40.161591 ], [ -75.411804, 40.161655 ], [ -75.411829, 40.161668 ], [ -75.411908, 40.161674 ], [ -75.412574, 40.162063 ], [ -75.412915, 40.162265 ], [ -75.413446, 40.162583 ], [ -75.413529, 40.16263 ], [ -75.413812, 40.162799 ], [ -75.41427, 40.163071 ], [ -75.414562, 40.163262 ], [ -75.41496, 40.163509 ], [ -75.41581, 40.164029 ], [ -75.416347, 40.164355 ], [ -75.416674, 40.16454 ], [ -75.416899, 40.164669 ], [ -75.417043, 40.16475 ], [ -75.417195, 40.164838 ], [ -75.417383, 40.164943 ], [ -75.41743, 40.164969 ], [ -75.417475, 40.164991 ], [ -75.417698, 40.165101 ], [ -75.417874, 40.165181 ], [ -75.418143, 40.165305 ], [ -75.418205, 40.165332 ], [ -75.418303, 40.16538 ], [ -75.41842, 40.165434 ], [ -75.418548, 40.165496 ], [ -75.418678, 40.165552 ], [ -75.419181, 40.165774 ], [ -75.419772, 40.166049 ], [ -75.420296, 40.166284 ], [ -75.420892, 40.166559 ], [ -75.422584, 40.167358 ], [ -75.423649, 40.167841 ], [ -75.424395, 40.168185 ], [ -75.424936, 40.168457 ], [ -75.426304, 40.169069 ], [ -75.426628, 40.169222 ], [ -75.426926, 40.169352 ], [ -75.427483, 40.169612 ], [ -75.427764, 40.169747 ], [ -75.428004, 40.169875 ], [ -75.428229, 40.170007 ], [ -75.428395, 40.17011 ], [ -75.429705, 40.170943 ], [ -75.429765, 40.170981 ], [ -75.430255, 40.171289 ], [ -75.430789, 40.171624 ], [ -75.431261, 40.171931 ], [ -75.431566, 40.172129 ], [ -75.431767, 40.172278 ], [ -75.431978, 40.172446 ], [ -75.432443, 40.172849 ], [ -75.432625, 40.173004 ], [ -75.43281, 40.173162 ], [ -75.433418, 40.173701 ], [ -75.433914, 40.174087 ], [ -75.433931, 40.174146 ], [ -75.434045, 40.174254 ], [ -75.4342, 40.174386 ], [ -75.434306, 40.174479 ], [ -75.434767, 40.174883 ], [ -75.434912, 40.17501 ], [ -75.434952, 40.175046 ], [ -75.435571, 40.175584 ], [ -75.43572, 40.175714 ], [ -75.435982, 40.175934 ], [ -75.436145, 40.176076 ], [ -75.436384, 40.176284 ], [ -75.43683, 40.176654 ], [ -75.436887, 40.176705 ], [ -75.436897, 40.176712 ], [ -75.436916, 40.176717 ], [ -75.436992, 40.176737 ], [ -75.437018, 40.176759 ], [ -75.437563, 40.177215 ], [ -75.437725, 40.177348 ], [ -75.437788, 40.177402 ], [ -75.437848, 40.17745 ], [ -75.438711, 40.178184 ], [ -75.439769, 40.179094 ], [ -75.43992, 40.179232 ], [ -75.441104, 40.180237 ], [ -75.441769, 40.1808 ], [ -75.442512, 40.181436 ], [ -75.442652, 40.181559 ], [ -75.442907, 40.181781 ], [ -75.442956, 40.181825 ], [ -75.443167, 40.182019 ], [ -75.443729, 40.182491 ], [ -75.444111, 40.182822 ], [ -75.444392, 40.183062 ], [ -75.444705, 40.183282 ], [ -75.444925, 40.183404 ], [ -75.444992, 40.183429 ], [ -75.445066, 40.183466 ], [ -75.445314, 40.183594 ], [ -75.445432, 40.183656 ], [ -75.445547, 40.183715 ], [ -75.445927, 40.183913 ], [ -75.446184, 40.184046 ], [ -75.446378, 40.184146 ], [ -75.446427, 40.184172 ], [ -75.446608, 40.184254 ], [ -75.446726, 40.184294 ], [ -75.446835, 40.184324 ], [ -75.446947, 40.18434 ], [ -75.447056, 40.184353 ], [ -75.447239, 40.184359 ], [ -75.447456, 40.18435 ], [ -75.447659, 40.184331 ], [ -75.447925, 40.184306 ], [ -75.448004, 40.184296 ], [ -75.448229, 40.184266 ], [ -75.448314, 40.184261 ], [ -75.448488, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448644, 40.184248 ], [ -75.44872, 40.184267 ], [ -75.448762, 40.184285 ], [ -75.448786, 40.184302 ], [ -75.448826, 40.184335 ], [ -75.448914, 40.184425 ], [ -75.448974, 40.184496 ], [ -75.449034, 40.184559 ], [ -75.449093, 40.184614 ], [ -75.449173, 40.184688 ], [ -75.449263, 40.184752 ], [ -75.449362, 40.18481 ], [ -75.449513, 40.18489 ], [ -75.449796, 40.184988 ], [ -75.450038, 40.185057 ], [ -75.450348, 40.185147 ], [ -75.450513, 40.185196 ], [ -75.450576, 40.185216 ], [ -75.45064, 40.185242 ], [ -75.450687, 40.185263 ], [ -75.450748, 40.185304 ], [ -75.450854, 40.185376 ], [ -75.451293, 40.18567 ], [ -75.451373, 40.185727 ], [ -75.45141, 40.185756 ], [ -75.451436, 40.185775 ], [ -75.451507, 40.185831 ], [ -75.451591, 40.185897 ], [ -75.451645, 40.185935 ], [ -75.451672, 40.185954 ], [ -75.451709, 40.185987 ], [ -75.45181, 40.186083 ], [ -75.451881, 40.186157 ], [ -75.451975, 40.186273 ], [ -75.452094, 40.186426 ], [ -75.452235, 40.186602 ], [ -75.452816, 40.187329 ], [ -75.453332, 40.187987 ], [ -75.453631, 40.188364 ], [ -75.453862, 40.188665 ], [ -75.454231, 40.189135 ], [ -75.454315, 40.189246 ], [ -75.454416, 40.189364 ], [ -75.454527, 40.189472 ], [ -75.454648, 40.189571 ], [ -75.454731, 40.189636 ], [ -75.454827, 40.189717 ], [ -75.454988, 40.189825 ], [ -75.455096, 40.189903 ], [ -75.455447, 40.190122 ], [ -75.455805, 40.190306 ], [ -75.455963, 40.190378 ], [ -75.456216, 40.190493 ], [ -75.456328, 40.190546 ], [ -75.456419, 40.190582 ], [ -75.456623, 40.190663 ], [ -75.45676, 40.190722 ], [ -75.457473, 40.191032 ], [ -75.458261, 40.191347 ], [ -75.459655, 40.191937 ], [ -75.460643, 40.19234 ], [ -75.461081, 40.192526 ], [ -75.46154, 40.192714 ], [ -75.461871, 40.19285 ], [ -75.462199, 40.192984 ], [ -75.462322, 40.193034 ], [ -75.462868, 40.193264 ], [ -75.463546, 40.193553 ], [ -75.463984, 40.193729 ], [ -75.464541, 40.193953 ], [ -75.465161, 40.194222 ], [ -75.466091, 40.194614 ], [ -75.466218, 40.194668 ], [ -75.466289, 40.194759 ], [ -75.466364, 40.194798 ], [ -75.466496, 40.194839 ], [ -75.466608, 40.194879 ], [ -75.466787, 40.194946 ], [ -75.467057, 40.195047 ], [ -75.467117, 40.195069 ], [ -75.467833, 40.195371 ], [ -75.467942, 40.195418 ], [ -75.467988, 40.195433 ], [ -75.468116, 40.195491 ], [ -75.468479, 40.19564 ], [ -75.468839, 40.195792 ], [ -75.470093, 40.196307 ], [ -75.470345, 40.196411 ], [ -75.470471, 40.196408 ], [ -75.471026, 40.196633 ], [ -75.471745, 40.196939 ], [ -75.47269, 40.197341 ], [ -75.474008, 40.197901 ], [ -75.47426, 40.198009 ], [ -75.475017, 40.198324 ], [ -75.475088, 40.198353 ], [ -75.475151, 40.198377 ], [ -75.475245, 40.198417 ], [ -75.475786, 40.198643 ], [ -75.476063, 40.198757 ], [ -75.476621, 40.198987 ], [ -75.476707, 40.199022 ], [ -75.476776, 40.199054 ], [ -75.477265, 40.199276 ], [ -75.477477, 40.199364 ], [ -75.477516, 40.19938 ], [ -75.477692, 40.199459 ], [ -75.478134, 40.199653 ], [ -75.479322, 40.200196 ], [ -75.480565, 40.200755 ], [ -75.480913, 40.200913 ], [ -75.481203, 40.201057 ], [ -75.481782, 40.201336 ], [ -75.482025, 40.201464 ], [ -75.482191, 40.201558 ], [ -75.4823, 40.201623 ], [ -75.482458, 40.20172 ], [ -75.482852, 40.20198 ], [ -75.483423, 40.202369 ], [ -75.483644, 40.202515 ], [ -75.483858, 40.202674 ], [ -75.483963, 40.202753 ], [ -75.484087, 40.20286 ], [ -75.484304, 40.203055 ], [ -75.484783, 40.203489 ], [ -75.485468, 40.204139 ], [ -75.485694, 40.204355 ], [ -75.485897, 40.20455 ], [ -75.486415, 40.205096 ], [ -75.487397, 40.206157 ], [ -75.488138, 40.206939 ], [ -75.488287, 40.207094 ], [ -75.488353, 40.20716 ], [ -75.488449, 40.207254 ], [ -75.488535, 40.207335 ], [ -75.489678, 40.20834 ], [ -75.489902, 40.208517 ], [ -75.490153, 40.208728 ], [ -75.490644, 40.209145 ], [ -75.491389, 40.209766 ], [ -75.49213, 40.210318 ], [ -75.492501, 40.210565 ], [ -75.492881, 40.210798 ], [ -75.49354, 40.211154 ], [ -75.494851, 40.21187 ], [ -75.495283, 40.212156 ], [ -75.49569, 40.212419 ], [ -75.496321, 40.212809 ], [ -75.497031, 40.213226 ], [ -75.497192, 40.213324 ], [ -75.497283, 40.213391 ], [ -75.49771, 40.213695 ], [ -75.497778, 40.21373 ], [ -75.49793, 40.213812 ], [ -75.498161, 40.21394 ], [ -75.49843, 40.214092 ], [ -75.498881, 40.21433 ], [ -75.499237, 40.21457 ], [ -75.499433, 40.214704 ], [ -75.499753, 40.214917 ], [ -75.500328, 40.215277 ], [ -75.500632, 40.215468 ], [ -75.501102, 40.215762 ], [ -75.50141, 40.215955 ], [ -75.501656, 40.2161 ], [ -75.501792, 40.21618 ], [ -75.502361, 40.216516 ], [ -75.502873, 40.216818 ], [ -75.503033, 40.216912 ], [ -75.503213, 40.217018 ], [ -75.503558, 40.217222 ], [ -75.508117, 40.219809 ], [ -75.509628, 40.220699 ], [ -75.509856, 40.220826 ], [ -75.510426, 40.221157 ], [ -75.510963, 40.22147 ], [ -75.5111, 40.22155 ], [ -75.511369, 40.221708 ], [ -75.511783, 40.221953 ], [ -75.512535, 40.222386 ], [ -75.512628, 40.222437 ], [ -75.512765, 40.222523 ], [ -75.512879, 40.222597 ], [ -75.512958, 40.22265 ], [ -75.513049, 40.222714 ], [ -75.513196, 40.222823 ], [ -75.513359, 40.222969 ], [ -75.513447, 40.223046 ], [ -75.513571, 40.223167 ], [ -75.513652, 40.223251 ], [ -75.513742, 40.223352 ], [ -75.513965, 40.223605 ], [ -75.514104, 40.223765 ], [ -75.514406, 40.224123 ], [ -75.514938, 40.224766 ], [ -75.5152, 40.225083 ], [ -75.515377, 40.225303 ], [ -75.51575, 40.225749 ], [ -75.515879, 40.225904 ], [ -75.51626, 40.226359 ], [ -75.516399, 40.226526 ], [ -75.516925, 40.227176 ], [ -75.517301, 40.227624 ], [ -75.517463, 40.227819 ], [ -75.517726, 40.228127 ], [ -75.517737, 40.22814 ], [ -75.518007, 40.228459 ], [ -75.518292, 40.228783 ], [ -75.51843, 40.228913 ], [ -75.51851, 40.228988 ], [ -75.518621, 40.229079 ], [ -75.518697, 40.229133 ], [ -75.51879, 40.229191 ], [ -75.518975, 40.229302 ], [ -75.51911, 40.229381 ], [ -75.519271, 40.22947 ], [ -75.519613, 40.229656 ], [ -75.520415, 40.230085 ], [ -75.521771, 40.230823 ], [ -75.5221, 40.231004 ], [ -75.522219, 40.231072 ], [ -75.522373, 40.231153 ], [ -75.522594, 40.23127 ], [ -75.52268, 40.231311 ], [ -75.522788, 40.231357 ], [ -75.522882, 40.231395 ], [ -75.523004, 40.23144 ], [ -75.523142, 40.231483 ], [ -75.523332, 40.231542 ], [ -75.523453, 40.231574 ], [ -75.523589, 40.231611 ], [ -75.523957, 40.231725 ], [ -75.524206, 40.231802 ], [ -75.524691, 40.231959 ], [ -75.52501, 40.23205 ], [ -75.52547, 40.232171 ], [ -75.525828, 40.232264 ], [ -75.525942, 40.2323 ], [ -75.52637, 40.23243 ], [ -75.526466, 40.232459 ], [ -75.526537, 40.23248 ], [ -75.526711, 40.23253 ], [ -75.527181, 40.232666 ], [ -75.527762, 40.232836 ], [ -75.527958, 40.232895 ], [ -75.528455, 40.233044 ], [ -75.528652, 40.233103 ], [ -75.529021, 40.233214 ], [ -75.529133, 40.233247 ], [ -75.529677, 40.233406 ], [ -75.530223, 40.233567 ], [ -75.530442, 40.233632 ], [ -75.530644, 40.233689 ], [ -75.530886, 40.233758 ], [ -75.531183, 40.23385 ], [ -75.531487, 40.233945 ], [ -75.531784, 40.234045 ], [ -75.532032, 40.234144 ], [ -75.532314, 40.234266 ], [ -75.532567, 40.234403 ], [ -75.533161, 40.23473 ], [ -75.533489, 40.234918 ], [ -75.533784, 40.235088 ], [ -75.533935, 40.235175 ], [ -75.534067, 40.235245 ], [ -75.534355, 40.235408 ], [ -75.53461, 40.235553 ], [ -75.534625, 40.235561 ], [ -75.535555, 40.236086 ], [ -75.536435, 40.236593 ], [ -75.536562, 40.236663 ], [ -75.537093, 40.236953 ], [ -75.537532, 40.237211 ], [ -75.537943, 40.237446 ], [ -75.538393, 40.237712 ], [ -75.538533, 40.237781 ], [ -75.53869, 40.237871 ], [ -75.538792, 40.237927 ], [ -75.539424, 40.238292 ], [ -75.539619, 40.238407 ], [ -75.539908, 40.238574 ], [ -75.540149, 40.238709 ], [ -75.540689, 40.239018 ], [ -75.541659, 40.239581 ], [ -75.542733, 40.240205 ], [ -75.543357, 40.240567 ], [ -75.543875, 40.240856 ], [ -75.544044, 40.24095 ], [ -75.544201, 40.241038 ], [ -75.54441, 40.241154 ], [ -75.544829, 40.241358 ], [ -75.545028, 40.241444 ], [ -75.545251, 40.241529 ], [ -75.545368, 40.241569 ], [ -75.545491, 40.241608 ], [ -75.545845, 40.241718 ], [ -75.546152, 40.241794 ], [ -75.546416, 40.241855 ], [ -75.546664, 40.241905 ], [ -75.547023, 40.241956 ], [ -75.547372, 40.24199 ], [ -75.547669, 40.24202 ], [ -75.548044, 40.242058 ], [ -75.548368, 40.24209 ], [ -75.548494, 40.242103 ], [ -75.549076, 40.242144 ], [ -75.549223, 40.242155 ], [ -75.55227, 40.242402 ], [ -75.553378, 40.242491 ], [ -75.554875, 40.242597 ], [ -75.556986, 40.242736 ], [ -75.55708, 40.242742 ], [ -75.558334, 40.242818 ], [ -75.558934, 40.242841 ], [ -75.559783, 40.24287 ], [ -75.560947, 40.242934 ], [ -75.561044, 40.242939 ], [ -75.561731, 40.242975 ], [ -75.562412, 40.243022 ], [ -75.563569, 40.243103 ], [ -75.563935, 40.243129 ], [ -75.565286, 40.243217 ], [ -75.565812, 40.243246 ], [ -75.566276, 40.243268 ], [ -75.56636, 40.24331 ], [ -75.566537, 40.243325 ], [ -75.56699, 40.243357 ], [ -75.567068, 40.243362 ], [ -75.567706, 40.243408 ], [ -75.568832, 40.243482 ], [ -75.569121, 40.243495 ], [ -75.569256, 40.243501 ], [ -75.570416, 40.243584 ], [ -75.570782, 40.243613 ], [ -75.571382, 40.243648 ], [ -75.572068, 40.243695 ], [ -75.572399, 40.24372 ], [ -75.57272, 40.243755 ], [ -75.573217, 40.24378 ], [ -75.573717, 40.243826 ], [ -75.573817, 40.243833 ], [ -75.574074, 40.243853 ], [ -75.574253, 40.243859 ], [ -75.574395, 40.243874 ], [ -75.574889, 40.243893 ], [ -75.575196, 40.243923 ], [ -75.575623, 40.243959 ], [ -75.575815, 40.243976 ], [ -75.575921, 40.243951 ], [ -75.576307, 40.243963 ], [ -75.57687, 40.243998 ], [ -75.578223, 40.244081 ], [ -75.5789, 40.244104 ], [ -75.580203, 40.244127 ], [ -75.580935, 40.244133 ], [ -75.581664, 40.24415 ], [ -75.582017, 40.24417 ], [ -75.582377, 40.244186 ], [ -75.582851, 40.244218 ], [ -75.584411, 40.244332 ], [ -75.584494, 40.244338 ], [ -75.584942, 40.24437 ], [ -75.58519, 40.244397 ], [ -75.585494, 40.24443 ], [ -75.586046, 40.244487 ], [ -75.58615, 40.244493 ], [ -75.586424, 40.24451 ], [ -75.586644, 40.244524 ], [ -75.58735, 40.244576 ], [ -75.587826, 40.244603 ], [ -75.58827, 40.244631 ], [ -75.589294, 40.244693 ], [ -75.589527, 40.244706 ], [ -75.590323, 40.244765 ], [ -75.590913, 40.244816 ], [ -75.591382, 40.244862 ], [ -75.592282, 40.244946 ], [ -75.593054, 40.244994 ], [ -75.593717, 40.24503 ], [ -75.594142, 40.245055 ], [ -75.594493, 40.245078 ], [ -75.59464, 40.245086 ], [ -75.594792, 40.245086 ], [ -75.594929, 40.245084 ], [ -75.595098, 40.245079 ], [ -75.595328, 40.245062 ], [ -75.59561, 40.245044 ], [ -75.596362, 40.24498 ], [ -75.597009, 40.244925 ], [ -75.59708, 40.24492 ], [ -75.598009, 40.244856 ], [ -75.598111, 40.24485 ], [ -75.598451, 40.244816 ], [ -75.598666, 40.244789 ], [ -75.598834, 40.244761 ], [ -75.599002, 40.244726 ], [ -75.599602, 40.2446 ], [ -75.599982, 40.244522 ], [ -75.600164, 40.244484 ], [ -75.600502, 40.24442 ], [ -75.600747, 40.244374 ], [ -75.600996, 40.244341 ], [ -75.601053, 40.244339 ], [ -75.601272, 40.244329 ], [ -75.601794, 40.24431 ], [ -75.602652, 40.244275 ], [ -75.603588, 40.24425 ], [ -75.603954, 40.244235 ], [ -75.608047, 40.244027 ], [ -75.608339, 40.244012 ], [ -75.608792, 40.243996 ], [ -75.609025, 40.243988 ], [ -75.609419, 40.243978 ], [ -75.609886, 40.243968 ], [ -75.610061, 40.243964 ], [ -75.610269, 40.243959 ], [ -75.610462, 40.243954 ], [ -75.610724, 40.243946 ], [ -75.610888, 40.243943 ], [ -75.610996, 40.243943 ], [ -75.611111, 40.243942 ], [ -75.611462, 40.243939 ], [ -75.611752, 40.243947 ], [ -75.611938, 40.243953 ], [ -75.61215, 40.243958 ], [ -75.612348, 40.243966 ], [ -75.612871, 40.243987 ], [ -75.613004, 40.243992 ], [ -75.613316, 40.244003 ], [ -75.613588, 40.244007 ], [ -75.61384, 40.244025 ], [ -75.614224, 40.244035 ], [ -75.614389, 40.244044 ], [ -75.614588, 40.244056 ], [ -75.614798, 40.244059 ], [ -75.614807, 40.24406 ], [ -75.614972, 40.244056 ], [ -75.614988, 40.244056 ], [ -75.615074, 40.244052 ], [ -75.615141, 40.244045 ], [ -75.615216, 40.244036 ], [ -75.615302, 40.244027 ], [ -75.615399, 40.244013 ], [ -75.61549, 40.243995 ], [ -75.615567, 40.243978 ], [ -75.615656, 40.243958 ], [ -75.615752, 40.243932 ], [ -75.615916, 40.24389 ], [ -75.616096, 40.243843 ], [ -75.616122, 40.243836 ], [ -75.616571, 40.243718 ], [ -75.616816, 40.243654 ], [ -75.616997, 40.243611 ], [ -75.617075, 40.243594 ], [ -75.617328, 40.243542 ], [ -75.617412, 40.243526 ], [ -75.617567, 40.243497 ], [ -75.617806, 40.243455 ], [ -75.6183, 40.243367 ], [ -75.618695, 40.243296 ], [ -75.618928, 40.24326 ], [ -75.619169, 40.243223 ], [ -75.619288, 40.243219 ], [ -75.619612, 40.243233 ], [ -75.619963, 40.243272 ], [ -75.621147, 40.243426 ], [ -75.621389, 40.24346 ], [ -75.622486, 40.243587 ], [ -75.623207, 40.243671 ], [ -75.623443, 40.243701 ], [ -75.623953, 40.243769 ], [ -75.624506, 40.243843 ], [ -75.625748, 40.243976 ], [ -75.627219, 40.244158 ], [ -75.627726, 40.244222 ], [ -75.62787, 40.244243 ], [ -75.627977, 40.244251 ], [ -75.628098, 40.244253 ], [ -75.628228, 40.244243 ], [ -75.628332, 40.244234 ], [ -75.629061, 40.244169 ], [ -75.630547, 40.244054 ], [ -75.631416, 40.243986 ], [ -75.632975, 40.243857 ], [ -75.633706, 40.243795 ], [ -75.633926, 40.243776 ], [ -75.634183, 40.243753 ], [ -75.634252, 40.243747 ], [ -75.63438, 40.243736 ], [ -75.634529, 40.243721 ], [ -75.634665, 40.243715 ], [ -75.634774, 40.243715 ], [ -75.635027, 40.243741 ], [ -75.636028, 40.243846 ], [ -75.637711, 40.244063 ], [ -75.638542, 40.244168 ], [ -75.638763, 40.244195 ], [ -75.63895, 40.244223 ], [ -75.63922, 40.244257 ], [ -75.639498, 40.244293 ], [ -75.639761, 40.244327 ], [ -75.641012, 40.244481 ], [ -75.641489, 40.24454 ], [ -75.641657, 40.244564 ], [ -75.642198, 40.244626 ], [ -75.642641, 40.244689 ], [ -75.643278, 40.24478 ], [ -75.643398, 40.244797 ], [ -75.644305, 40.24492 ], [ -75.644471, 40.244938 ], [ -75.645795, 40.245083 ], [ -75.64596, 40.245101 ], [ -75.646437, 40.24517 ], [ -75.647006, 40.245252 ], [ -75.647568, 40.245334 ], [ -75.647801, 40.245359 ], [ -75.648039, 40.245385 ], [ -75.648609, 40.245448 ], [ -75.648958, 40.245487 ], [ -75.649341, 40.245532 ], [ -75.649532, 40.245556 ], [ -75.649848, 40.245598 ], [ -75.650415, 40.245675 ], [ -75.650316, 40.246235 ], [ -75.650213, 40.246704 ], [ -75.652547, 40.247011 ], [ -75.653359, 40.247111 ], [ -75.654935, 40.247277 ], [ -75.655181, 40.247319 ], [ -75.655233, 40.247198 ], [ -75.655299, 40.247023 ], [ -75.655526, 40.246392 ], [ -75.655549, 40.246345 ], [ -75.655363, 40.246309 ], [ -75.655078, 40.246268 ], [ -75.653587, 40.246066 ], [ -75.653364, 40.246033 ], [ -75.652771, 40.245948 ], [ -75.652329, 40.245897 ], [ -75.651778, 40.245833 ], [ -75.651555, 40.245806 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307224", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.651778, 40.245833 ], [ -75.650959, 40.245739 ], [ -75.650415, 40.245675 ], [ -75.649848, 40.245598 ], [ -75.649532, 40.245556 ], [ -75.649341, 40.245532 ], [ -75.648958, 40.245487 ], [ -75.648609, 40.245448 ], [ -75.648039, 40.245385 ], [ -75.647801, 40.245359 ], [ -75.647568, 40.245334 ], [ -75.647006, 40.245252 ], [ -75.646437, 40.24517 ], [ -75.64596, 40.245101 ], [ -75.645795, 40.245083 ], [ -75.644471, 40.244938 ], [ -75.644305, 40.24492 ], [ -75.643398, 40.244797 ], [ -75.643278, 40.24478 ], [ -75.642641, 40.244689 ], [ -75.642198, 40.244626 ], [ -75.641657, 40.244564 ], [ -75.641489, 40.24454 ], [ -75.641012, 40.244481 ], [ -75.639761, 40.244327 ], [ -75.639498, 40.244293 ], [ -75.63922, 40.244257 ], [ -75.63895, 40.244223 ], [ -75.638763, 40.244195 ], [ -75.638542, 40.244168 ], [ -75.637711, 40.244063 ], [ -75.636028, 40.243846 ], [ -75.635027, 40.243741 ], [ -75.634774, 40.243715 ], [ -75.634665, 40.243715 ], [ -75.634529, 40.243721 ], [ -75.63438, 40.243736 ], [ -75.634252, 40.243747 ], [ -75.634183, 40.243753 ], [ -75.633926, 40.243776 ], [ -75.633706, 40.243795 ], [ -75.632975, 40.243857 ], [ -75.631416, 40.243986 ], [ -75.630547, 40.244054 ], [ -75.629061, 40.244169 ], [ -75.628332, 40.244234 ], [ -75.628228, 40.244243 ], [ -75.628098, 40.244253 ], [ -75.627977, 40.244251 ], [ -75.62787, 40.244243 ], [ -75.627726, 40.244222 ], [ -75.627219, 40.244158 ], [ -75.625748, 40.243976 ], [ -75.624506, 40.243843 ], [ -75.623953, 40.243769 ], [ -75.623443, 40.243701 ], [ -75.623207, 40.243671 ], [ -75.622486, 40.243587 ], [ -75.621389, 40.24346 ], [ -75.621147, 40.243426 ], [ -75.619971, 40.243272 ], [ -75.619612, 40.243233 ], [ -75.619288, 40.243219 ], [ -75.61917, 40.243224 ], [ -75.618928, 40.24326 ], [ -75.618695, 40.243296 ], [ -75.6183, 40.243367 ], [ -75.617806, 40.243455 ], [ -75.617568, 40.243496 ], [ -75.617412, 40.243526 ], [ -75.617328, 40.243542 ], [ -75.617075, 40.243594 ], [ -75.616997, 40.243611 ], [ -75.616816, 40.243653 ], [ -75.616571, 40.243718 ], [ -75.616122, 40.243836 ], [ -75.616096, 40.243843 ], [ -75.615916, 40.24389 ], [ -75.615752, 40.243932 ], [ -75.615656, 40.243957 ], [ -75.615567, 40.243978 ], [ -75.61549, 40.243995 ], [ -75.6154, 40.244012 ], [ -75.615302, 40.244027 ], [ -75.615216, 40.244036 ], [ -75.61514, 40.244044 ], [ -75.615074, 40.244052 ], [ -75.614988, 40.244056 ], [ -75.614972, 40.244056 ], [ -75.614807, 40.24406 ], [ -75.614798, 40.244059 ], [ -75.614588, 40.244056 ], [ -75.614389, 40.244044 ], [ -75.614224, 40.244035 ], [ -75.61384, 40.244025 ], [ -75.613588, 40.244007 ], [ -75.613316, 40.244003 ], [ -75.613004, 40.243993 ], [ -75.612871, 40.243987 ], [ -75.612348, 40.243966 ], [ -75.61215, 40.243958 ], [ -75.611938, 40.243953 ], [ -75.611752, 40.243947 ], [ -75.611462, 40.243939 ], [ -75.611111, 40.243942 ], [ -75.610996, 40.243943 ], [ -75.610888, 40.243943 ], [ -75.610723, 40.243947 ], [ -75.610462, 40.243954 ], [ -75.610269, 40.243959 ], [ -75.610061, 40.243964 ], [ -75.609886, 40.243968 ], [ -75.609419, 40.243978 ], [ -75.609025, 40.243988 ], [ -75.608792, 40.243996 ], [ -75.608339, 40.244012 ], [ -75.608047, 40.244027 ], [ -75.603955, 40.244234 ], [ -75.603588, 40.24425 ], [ -75.602652, 40.244275 ], [ -75.601793, 40.244309 ], [ -75.601272, 40.244329 ], [ -75.601053, 40.244339 ], [ -75.600996, 40.244341 ], [ -75.600747, 40.244374 ], [ -75.600502, 40.24442 ], [ -75.600164, 40.244484 ], [ -75.599982, 40.244522 ], [ -75.599602, 40.2446 ], [ -75.599002, 40.244726 ], [ -75.598834, 40.244761 ], [ -75.598666, 40.244789 ], [ -75.598451, 40.244816 ], [ -75.598111, 40.24485 ], [ -75.598009, 40.244856 ], [ -75.597079, 40.24492 ], [ -75.597009, 40.244925 ], [ -75.596362, 40.24498 ], [ -75.59561, 40.245044 ], [ -75.595328, 40.245062 ], [ -75.595098, 40.245079 ], [ -75.594929, 40.245084 ], [ -75.594792, 40.245086 ], [ -75.59464, 40.245086 ], [ -75.594493, 40.245078 ], [ -75.594141, 40.245056 ], [ -75.593717, 40.24503 ], [ -75.593053, 40.244993 ], [ -75.592282, 40.244946 ], [ -75.591382, 40.244862 ], [ -75.590913, 40.244816 ], [ -75.590324, 40.244766 ], [ -75.589527, 40.244706 ], [ -75.589293, 40.244692 ], [ -75.58827, 40.244631 ], [ -75.587826, 40.244603 ], [ -75.58735, 40.244576 ], [ -75.586644, 40.244525 ], [ -75.586424, 40.24451 ], [ -75.58615, 40.244493 ], [ -75.586047, 40.244488 ], [ -75.585494, 40.24443 ], [ -75.58519, 40.244397 ], [ -75.584942, 40.24437 ], [ -75.584494, 40.244338 ], [ -75.584411, 40.244332 ], [ -75.582851, 40.244218 ], [ -75.582377, 40.244186 ], [ -75.582017, 40.24417 ], [ -75.581664, 40.24415 ], [ -75.580935, 40.244133 ], [ -75.580203, 40.244127 ], [ -75.5789, 40.244104 ], [ -75.578223, 40.244081 ], [ -75.57687, 40.243998 ], [ -75.576307, 40.243963 ], [ -75.575921, 40.243951 ], [ -75.57583, 40.243907 ], [ -75.575361, 40.24387 ], [ -75.574828, 40.243829 ], [ -75.574411, 40.243792 ], [ -75.574245, 40.243783 ], [ -75.574012, 40.243766 ], [ -75.573893, 40.243761 ], [ -75.573809, 40.243754 ], [ -75.573251, 40.243695 ], [ -75.572894, 40.24366 ], [ -75.572755, 40.243651 ], [ -75.572394, 40.243628 ], [ -75.572197, 40.243603 ], [ -75.57202, 40.243572 ], [ -75.571874, 40.243539 ], [ -75.571722, 40.243497 ], [ -75.571486, 40.243426 ], [ -75.571293, 40.243358 ], [ -75.571006, 40.243251 ], [ -75.570656, 40.243117 ], [ -75.570495, 40.243054 ], [ -75.570439, 40.243029 ], [ -75.570364, 40.243001 ], [ -75.570264, 40.242971 ], [ -75.570039, 40.242902 ], [ -75.56987, 40.242858 ], [ -75.569755, 40.242833 ], [ -75.569688, 40.242824 ], [ -75.569634, 40.242818 ], [ -75.569527, 40.242808 ], [ -75.569443, 40.242805 ], [ -75.569349, 40.242806 ], [ -75.569253, 40.242811 ], [ -75.569147, 40.242818 ], [ -75.569069, 40.242828 ], [ -75.568977, 40.242838 ], [ -75.568894, 40.242851 ], [ -75.568814, 40.242869 ], [ -75.568694, 40.242898 ], [ -75.56849, 40.242953 ], [ -75.56798, 40.243099 ], [ -75.56778, 40.243148 ], [ -75.56763, 40.243175 ], [ -75.567452, 40.243201 ], [ -75.567272, 40.243217 ], [ -75.566977, 40.243231 ], [ -75.566633, 40.243249 ], [ -75.566574, 40.243246 ], [ -75.566415, 40.243232 ], [ -75.566366, 40.243234 ], [ -75.566276, 40.243268 ], [ -75.565811, 40.243245 ], [ -75.565287, 40.243217 ], [ -75.563935, 40.243129 ], [ -75.563569, 40.243103 ], [ -75.562412, 40.243022 ], [ -75.561731, 40.242975 ], [ -75.561044, 40.242939 ], [ -75.560947, 40.242934 ], [ -75.559783, 40.24287 ], [ -75.558934, 40.242841 ], [ -75.558335, 40.242819 ], [ -75.55708, 40.242742 ], [ -75.556986, 40.242736 ], [ -75.554875, 40.242597 ], [ -75.553377, 40.242491 ], [ -75.55227, 40.242402 ], [ -75.549223, 40.242155 ], [ -75.549076, 40.242144 ], [ -75.548493, 40.242103 ], [ -75.548368, 40.24209 ], [ -75.548044, 40.242058 ], [ -75.547669, 40.24202 ], [ -75.547372, 40.24199 ], [ -75.547024, 40.241955 ], [ -75.546664, 40.241905 ], [ -75.546417, 40.241855 ], [ -75.546152, 40.241794 ], [ -75.545845, 40.241718 ], [ -75.545491, 40.241608 ], [ -75.545368, 40.241569 ], [ -75.545251, 40.241529 ], [ -75.545028, 40.241444 ], [ -75.544829, 40.241358 ], [ -75.54441, 40.241154 ], [ -75.544201, 40.241038 ], [ -75.544044, 40.24095 ], [ -75.543875, 40.240856 ], [ -75.543357, 40.240568 ], [ -75.542733, 40.240205 ], [ -75.54166, 40.239581 ], [ -75.540689, 40.239018 ], [ -75.540149, 40.238709 ], [ -75.539908, 40.238574 ], [ -75.539619, 40.238407 ], [ -75.539424, 40.238292 ], [ -75.538792, 40.237927 ], [ -75.53869, 40.237871 ], [ -75.538533, 40.237781 ], [ -75.538393, 40.237712 ], [ -75.537943, 40.237446 ], [ -75.537532, 40.237211 ], [ -75.537092, 40.236952 ], [ -75.536562, 40.236663 ], [ -75.536435, 40.236593 ], [ -75.535555, 40.236086 ], [ -75.534625, 40.235561 ], [ -75.534611, 40.235552 ], [ -75.534355, 40.235408 ], [ -75.534068, 40.235244 ], [ -75.533935, 40.235175 ], [ -75.533784, 40.235088 ], [ -75.533489, 40.234918 ], [ -75.533161, 40.23473 ], [ -75.532567, 40.234403 ], [ -75.532314, 40.234266 ], [ -75.532033, 40.234145 ], [ -75.531784, 40.234045 ], [ -75.531486, 40.233944 ], [ -75.531183, 40.23385 ], [ -75.530886, 40.233758 ], [ -75.530644, 40.233689 ], [ -75.530442, 40.233632 ], [ -75.530223, 40.233567 ], [ -75.529677, 40.233407 ], [ -75.529133, 40.233247 ], [ -75.529021, 40.233213 ], [ -75.528652, 40.233103 ], [ -75.528455, 40.233044 ], [ -75.527958, 40.232895 ], [ -75.527761, 40.232835 ], [ -75.527182, 40.232665 ], [ -75.526711, 40.23253 ], [ -75.526537, 40.23248 ], [ -75.526466, 40.232459 ], [ -75.52637, 40.23243 ], [ -75.525942, 40.2323 ], [ -75.525828, 40.232264 ], [ -75.52547, 40.232171 ], [ -75.52501, 40.23205 ], [ -75.52469, 40.231958 ], [ -75.524206, 40.231802 ], [ -75.523957, 40.231725 ], [ -75.523589, 40.231611 ], [ -75.523453, 40.231574 ], [ -75.523332, 40.231542 ], [ -75.523142, 40.231483 ], [ -75.523004, 40.23144 ], [ -75.522883, 40.231396 ], [ -75.522788, 40.231357 ], [ -75.522679, 40.23131 ], [ -75.522595, 40.231271 ], [ -75.522373, 40.231153 ], [ -75.52222, 40.231071 ], [ -75.5221, 40.231004 ], [ -75.521772, 40.230824 ], [ -75.520415, 40.230085 ], [ -75.519614, 40.229655 ], [ -75.519271, 40.22947 ], [ -75.51911, 40.229381 ], [ -75.518975, 40.229302 ], [ -75.51879, 40.229191 ], [ -75.518697, 40.229133 ], [ -75.518621, 40.229079 ], [ -75.51851, 40.228988 ], [ -75.51843, 40.228913 ], [ -75.518292, 40.228784 ], [ -75.518007, 40.228459 ], [ -75.517737, 40.22814 ], [ -75.517726, 40.228127 ], [ -75.517464, 40.227818 ], [ -75.517301, 40.227624 ], [ -75.516925, 40.227176 ], [ -75.516399, 40.226526 ], [ -75.51626, 40.226359 ], [ -75.515879, 40.225904 ], [ -75.51575, 40.225749 ], [ -75.515377, 40.225303 ], [ -75.5152, 40.225083 ], [ -75.514938, 40.224766 ], [ -75.514406, 40.224123 ], [ -75.514104, 40.223765 ], [ -75.513965, 40.223605 ], [ -75.513742, 40.223352 ], [ -75.513652, 40.223251 ], [ -75.513571, 40.223167 ], [ -75.513447, 40.223046 ], [ -75.513359, 40.222969 ], [ -75.513196, 40.222823 ], [ -75.513049, 40.222714 ], [ -75.512959, 40.222651 ], [ -75.512879, 40.222597 ], [ -75.512765, 40.222523 ], [ -75.512628, 40.222437 ], [ -75.512534, 40.222386 ], [ -75.511783, 40.221953 ], [ -75.511369, 40.221708 ], [ -75.511101, 40.221551 ], [ -75.510963, 40.22147 ], [ -75.510425, 40.221158 ], [ -75.509857, 40.220825 ], [ -75.509628, 40.220699 ], [ -75.508116, 40.21981 ], [ -75.503558, 40.217222 ], [ -75.503213, 40.217018 ], [ -75.503033, 40.216912 ], [ -75.502873, 40.216818 ], [ -75.502361, 40.216516 ], [ -75.501792, 40.21618 ], [ -75.501656, 40.2161 ], [ -75.50141, 40.215955 ], [ -75.501102, 40.215762 ], [ -75.500632, 40.215468 ], [ -75.500328, 40.215277 ], [ -75.499754, 40.214918 ], [ -75.499433, 40.214704 ], [ -75.499237, 40.214571 ], [ -75.498881, 40.21433 ], [ -75.49843, 40.214092 ], [ -75.498161, 40.21394 ], [ -75.49793, 40.213812 ], [ -75.497778, 40.21373 ], [ -75.49771, 40.213695 ], [ -75.497283, 40.213391 ], [ -75.497192, 40.213324 ], [ -75.497031, 40.213226 ], [ -75.496321, 40.212809 ], [ -75.49569, 40.212419 ], [ -75.495283, 40.212156 ], [ -75.494851, 40.21187 ], [ -75.493539, 40.211154 ], [ -75.492881, 40.210798 ], [ -75.4925, 40.210564 ], [ -75.49213, 40.210318 ], [ -75.491389, 40.209766 ], [ -75.490644, 40.209144 ], [ -75.490153, 40.208728 ], [ -75.489902, 40.208517 ], [ -75.489679, 40.208341 ], [ -75.488535, 40.207335 ], [ -75.488449, 40.207254 ], [ -75.488353, 40.20716 ], [ -75.488287, 40.207094 ], [ -75.488138, 40.206939 ], [ -75.487397, 40.206157 ], [ -75.486415, 40.205096 ], [ -75.485897, 40.20455 ], [ -75.485694, 40.204355 ], [ -75.485468, 40.204139 ], [ -75.484783, 40.203489 ], [ -75.484304, 40.203055 ], [ -75.484087, 40.20286 ], [ -75.483963, 40.202753 ], [ -75.483858, 40.202674 ], [ -75.483643, 40.202516 ], [ -75.483423, 40.202369 ], [ -75.482852, 40.20198 ], [ -75.482458, 40.20172 ], [ -75.4823, 40.201623 ], [ -75.482191, 40.201558 ], [ -75.482025, 40.201464 ], [ -75.481782, 40.201336 ], [ -75.481203, 40.201057 ], [ -75.480913, 40.200913 ], [ -75.480565, 40.200755 ], [ -75.479322, 40.200196 ], [ -75.478134, 40.199653 ], [ -75.477692, 40.199459 ], [ -75.477516, 40.19938 ], [ -75.477477, 40.199364 ], [ -75.477265, 40.199276 ], [ -75.476776, 40.199054 ], [ -75.476707, 40.199022 ], [ -75.476621, 40.198987 ], [ -75.476063, 40.198757 ], [ -75.475786, 40.198643 ], [ -75.475245, 40.198417 ], [ -75.475151, 40.198377 ], [ -75.475088, 40.198353 ], [ -75.475017, 40.198324 ], [ -75.47426, 40.19801 ], [ -75.474008, 40.197901 ], [ -75.47269, 40.197341 ], [ -75.471745, 40.196939 ], [ -75.471026, 40.196633 ], [ -75.470471, 40.196408 ], [ -75.470404, 40.196325 ], [ -75.470361, 40.196304 ], [ -75.470064, 40.196183 ], [ -75.468783, 40.19565 ], [ -75.468181, 40.195399 ], [ -75.46799, 40.195325 ], [ -75.467618, 40.19518 ], [ -75.467236, 40.195018 ], [ -75.466738, 40.194816 ], [ -75.466462, 40.194697 ], [ -75.466372, 40.194668 ], [ -75.466219, 40.194669 ], [ -75.466091, 40.194614 ], [ -75.46516, 40.194222 ], [ -75.464541, 40.193953 ], [ -75.463984, 40.193729 ], [ -75.463546, 40.193553 ], [ -75.462868, 40.193264 ], [ -75.462322, 40.193034 ], [ -75.462199, 40.192984 ], [ -75.461871, 40.19285 ], [ -75.46154, 40.192714 ], [ -75.461081, 40.192526 ], [ -75.460642, 40.19234 ], [ -75.459655, 40.191937 ], [ -75.45826, 40.191347 ], [ -75.457473, 40.191032 ], [ -75.45676, 40.190722 ], [ -75.456623, 40.190663 ], [ -75.456419, 40.190582 ], [ -75.456328, 40.190546 ], [ -75.456216, 40.190493 ], [ -75.455964, 40.190377 ], [ -75.455805, 40.190306 ], [ -75.455447, 40.190122 ], [ -75.455096, 40.189903 ], [ -75.454988, 40.189825 ], [ -75.454827, 40.189717 ], [ -75.454731, 40.189636 ], [ -75.454648, 40.189571 ], [ -75.454527, 40.189472 ], [ -75.454417, 40.189363 ], [ -75.454315, 40.189246 ], [ -75.454231, 40.189135 ], [ -75.453862, 40.188665 ], [ -75.453631, 40.188364 ], [ -75.453332, 40.187986 ], [ -75.452816, 40.187329 ], [ -75.452235, 40.186602 ], [ -75.452094, 40.186426 ], [ -75.451974, 40.186274 ], [ -75.451881, 40.186157 ], [ -75.451809, 40.186083 ], [ -75.451709, 40.185987 ], [ -75.451673, 40.185953 ], [ -75.451645, 40.185935 ], [ -75.451592, 40.185896 ], [ -75.451507, 40.185831 ], [ -75.451436, 40.185776 ], [ -75.45141, 40.185756 ], [ -75.451373, 40.185727 ], [ -75.451293, 40.18567 ], [ -75.450854, 40.185376 ], [ -75.450748, 40.185304 ], [ -75.450687, 40.185263 ], [ -75.45064, 40.185242 ], [ -75.450576, 40.185216 ], [ -75.450513, 40.185196 ], [ -75.450348, 40.185147 ], [ -75.450038, 40.185057 ], [ -75.449796, 40.184988 ], [ -75.449513, 40.18489 ], [ -75.449362, 40.18481 ], [ -75.449263, 40.184752 ], [ -75.449173, 40.184688 ], [ -75.449093, 40.184614 ], [ -75.449034, 40.184559 ], [ -75.448974, 40.184496 ], [ -75.448914, 40.184425 ], [ -75.448826, 40.184335 ], [ -75.448786, 40.184302 ], [ -75.448762, 40.184285 ], [ -75.44872, 40.184267 ], [ -75.448644, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448487, 40.184247 ], [ -75.448314, 40.184261 ], [ -75.44823, 40.184267 ], [ -75.448004, 40.184296 ], [ -75.447925, 40.184306 ], [ -75.447659, 40.184331 ], [ -75.447456, 40.18435 ], [ -75.447238, 40.184359 ], [ -75.447056, 40.184353 ], [ -75.446947, 40.18434 ], [ -75.446835, 40.184324 ], [ -75.446727, 40.184294 ], [ -75.446608, 40.184254 ], [ -75.446426, 40.184171 ], [ -75.446378, 40.184146 ], [ -75.446191, 40.184049 ], [ -75.445927, 40.183913 ], [ -75.445547, 40.183715 ], [ -75.445432, 40.183656 ], [ -75.445314, 40.183594 ], [ -75.445066, 40.183466 ], [ -75.444992, 40.183429 ], [ -75.444925, 40.183404 ], [ -75.444705, 40.183282 ], [ -75.444392, 40.183062 ], [ -75.444111, 40.182822 ], [ -75.443729, 40.182491 ], [ -75.443167, 40.182019 ], [ -75.442956, 40.181825 ], [ -75.442907, 40.181781 ], [ -75.442652, 40.181559 ], [ -75.442512, 40.181436 ], [ -75.441769, 40.1808 ], [ -75.441104, 40.180237 ], [ -75.43992, 40.179232 ], [ -75.439769, 40.179094 ], [ -75.438712, 40.178185 ], [ -75.437848, 40.17745 ], [ -75.437788, 40.177402 ], [ -75.437725, 40.177348 ], [ -75.437563, 40.177215 ], [ -75.437018, 40.176759 ], [ -75.436992, 40.176737 ], [ -75.436981, 40.176677 ], [ -75.436977, 40.176665 ], [ -75.436968, 40.176654 ], [ -75.436897, 40.176601 ], [ -75.436528, 40.176274 ], [ -75.436466, 40.176221 ], [ -75.436059, 40.175875 ], [ -75.435781, 40.175638 ], [ -75.43566, 40.175536 ], [ -75.435447, 40.175354 ], [ -75.435234, 40.175172 ], [ -75.435206, 40.175148 ], [ -75.434989, 40.174966 ], [ -75.434842, 40.174842 ], [ -75.434804, 40.17481 ], [ -75.43436, 40.174428 ], [ -75.434306, 40.17438 ], [ -75.434102, 40.174216 ], [ -75.433982, 40.174108 ], [ -75.433915, 40.174088 ], [ -75.433418, 40.173701 ], [ -75.43281, 40.173163 ], [ -75.432625, 40.173004 ], [ -75.432443, 40.172849 ], [ -75.431978, 40.172446 ], [ -75.431767, 40.172278 ], [ -75.431566, 40.172129 ], [ -75.431261, 40.171931 ], [ -75.430788, 40.171625 ], [ -75.430255, 40.171289 ], [ -75.429765, 40.170981 ], [ -75.429705, 40.170943 ], [ -75.428396, 40.17011 ], [ -75.428229, 40.170007 ], [ -75.428004, 40.169875 ], [ -75.427764, 40.169747 ], [ -75.427483, 40.169612 ], [ -75.426926, 40.169352 ], [ -75.426628, 40.169222 ], [ -75.426304, 40.169069 ], [ -75.424936, 40.168457 ], [ -75.424395, 40.168185 ], [ -75.423649, 40.167841 ], [ -75.422584, 40.167358 ], [ -75.420891, 40.166558 ], [ -75.420296, 40.166284 ], [ -75.419772, 40.166049 ], [ -75.419181, 40.165774 ], [ -75.418678, 40.165552 ], [ -75.418548, 40.165496 ], [ -75.41842, 40.165434 ], [ -75.418303, 40.16538 ], [ -75.418205, 40.165332 ], [ -75.418143, 40.165305 ], [ -75.417874, 40.165181 ], [ -75.417698, 40.165101 ], [ -75.417475, 40.164991 ], [ -75.41743, 40.164969 ], [ -75.417384, 40.164943 ], [ -75.417195, 40.164838 ], [ -75.417044, 40.164749 ], [ -75.416899, 40.164669 ], [ -75.416674, 40.164539 ], [ -75.416347, 40.164355 ], [ -75.415811, 40.164028 ], [ -75.41496, 40.163509 ], [ -75.414562, 40.163261 ], [ -75.41427, 40.163071 ], [ -75.413811, 40.162798 ], [ -75.413529, 40.16263 ], [ -75.413446, 40.162583 ], [ -75.412915, 40.162265 ], [ -75.412574, 40.162063 ], [ -75.411908, 40.161674 ], [ -75.411879, 40.161624 ], [ -75.411706, 40.161515 ], [ -75.411328, 40.161279 ], [ -75.410769, 40.160951 ], [ -75.410344, 40.160699 ], [ -75.410065, 40.160533 ], [ -75.409808, 40.160388 ], [ -75.409474, 40.160208 ], [ -75.409246, 40.16009 ], [ -75.408974, 40.159949 ], [ -75.408901, 40.159943 ], [ -75.408523, 40.159746 ], [ -75.408324, 40.159635 ], [ -75.407678, 40.15929 ], [ -75.407242, 40.159057 ], [ -75.407052, 40.158957 ], [ -75.406312, 40.158557 ], [ -75.405377, 40.158017 ], [ -75.405124, 40.157856 ], [ -75.404936, 40.15774 ], [ -75.404882, 40.157706 ], [ -75.404628, 40.157558 ], [ -75.404433, 40.157444 ], [ -75.404186, 40.157308 ], [ -75.404147, 40.157278 ], [ -75.403617, 40.156972 ], [ -75.403528, 40.156921 ], [ -75.403308, 40.156784 ], [ -75.403074, 40.156633 ], [ -75.402805, 40.156467 ], [ -75.402628, 40.156357 ], [ -75.402095, 40.156028 ], [ -75.401868, 40.155879 ], [ -75.40126, 40.155484 ], [ -75.400964, 40.155283 ], [ -75.400942, 40.155268 ], [ -75.40071, 40.155115 ], [ -75.400671, 40.15509 ], [ -75.400638, 40.155069 ], [ -75.400341, 40.154834 ], [ -75.400278, 40.154779 ], [ -75.4002, 40.154707 ], [ -75.40006, 40.154585 ], [ -75.399944, 40.154475 ], [ -75.399861, 40.154386 ], [ -75.399606, 40.15412 ], [ -75.399427, 40.153925 ], [ -75.399185, 40.153619 ], [ -75.39912, 40.153528 ], [ -75.399005, 40.153356 ], [ -75.398895, 40.153161 ], [ -75.398836, 40.153072 ], [ -75.398759, 40.15292 ], [ -75.398692, 40.152783 ], [ -75.398543, 40.152443 ], [ -75.398484, 40.152305 ], [ -75.398457, 40.15224 ], [ -75.398428, 40.152165 ], [ -75.398382, 40.152052 ], [ -75.398311, 40.15188 ], [ -75.398271, 40.151795 ], [ -75.398033, 40.151275 ], [ -75.397997, 40.151204 ], [ -75.397844, 40.150925 ], [ -75.397769, 40.150773 ], [ -75.397606, 40.150444 ], [ -75.397417, 40.15008 ], [ -75.396907, 40.149192 ], [ -75.396738, 40.148917 ], [ -75.39643, 40.148348 ], [ -75.396324, 40.148162 ], [ -75.396179, 40.147931 ], [ -75.396122, 40.147857 ], [ -75.396062, 40.147784 ], [ -75.395866, 40.147538 ], [ -75.395683, 40.147327 ], [ -75.395635, 40.147271 ], [ -75.395625, 40.147259 ], [ -75.395344, 40.146943 ], [ -75.395229, 40.146809 ], [ -75.39491, 40.146483 ], [ -75.394862, 40.146432 ], [ -75.394774, 40.146325 ], [ -75.394233, 40.14568 ], [ -75.394159, 40.145606 ], [ -75.394093, 40.145542 ], [ -75.394005, 40.145465 ], [ -75.393794, 40.145288 ], [ -75.393588, 40.145126 ], [ -75.392825, 40.144546 ], [ -75.392423, 40.144254 ], [ -75.392004, 40.143941 ], [ -75.39111, 40.143246 ], [ -75.390447, 40.142738 ], [ -75.390246, 40.142584 ], [ -75.390117, 40.142485 ], [ -75.389952, 40.142358 ], [ -75.3898, 40.142241 ], [ -75.389341, 40.14191 ], [ -75.389055, 40.141703 ], [ -75.388995, 40.14166 ], [ -75.388235, 40.14113 ], [ -75.387552, 40.140656 ], [ -75.387179, 40.14039 ], [ -75.387033, 40.140284 ], [ -75.386783, 40.140086 ], [ -75.386578, 40.139906 ], [ -75.386411, 40.139753 ], [ -75.385742, 40.139154 ], [ -75.385452, 40.138885 ], [ -75.385178, 40.138652 ], [ -75.384988, 40.138483 ], [ -75.383988, 40.137591 ], [ -75.383549, 40.137194 ], [ -75.383054, 40.136751 ], [ -75.382524, 40.136267 ], [ -75.382115, 40.135904 ], [ -75.38192, 40.135738 ], [ -75.381591, 40.135459 ], [ -75.381147, 40.135073 ], [ -75.380298, 40.134339 ], [ -75.379683, 40.133804 ], [ -75.379356, 40.133519 ], [ -75.378844, 40.133064 ], [ -75.378618, 40.132861 ], [ -75.378457, 40.132719 ], [ -75.378359, 40.13263 ], [ -75.378277, 40.13258 ], [ -75.377989, 40.132425 ], [ -75.377697, 40.132262 ], [ -75.377294, 40.132036 ], [ -75.376811, 40.131758 ], [ -75.375727, 40.131142 ], [ -75.375283, 40.130889 ], [ -75.375027, 40.130742 ], [ -75.374761, 40.130589 ], [ -75.374519, 40.130449 ], [ -75.374039, 40.130176 ], [ -75.373415, 40.129828 ], [ -75.373139, 40.129661 ], [ -75.372506, 40.129307 ], [ -75.372422, 40.12926 ], [ -75.372146, 40.129107 ], [ -75.371847, 40.128935 ], [ -75.371057, 40.128481 ], [ -75.370699, 40.128268 ], [ -75.369467, 40.127565 ], [ -75.3684, 40.126936 ], [ -75.367721, 40.126543 ], [ -75.366753, 40.125988 ], [ -75.365828, 40.125456 ], [ -75.364535, 40.124705 ], [ -75.363573, 40.124151 ], [ -75.363003, 40.123828 ], [ -75.362521, 40.123554 ], [ -75.362414, 40.123498 ], [ -75.362269, 40.123415 ], [ -75.361867, 40.123184 ], [ -75.361545, 40.122999 ], [ -75.361265, 40.122838 ], [ -75.360601, 40.122423 ], [ -75.359387, 40.121722 ], [ -75.358156, 40.121021 ], [ -75.356945, 40.120326 ], [ -75.356434, 40.120034 ], [ -75.356163, 40.119884 ], [ -75.355967, 40.119783 ], [ -75.355909, 40.119755 ], [ -75.35584, 40.119721 ], [ -75.355668, 40.119647 ], [ -75.355544, 40.1196 ], [ -75.355436, 40.11956 ], [ -75.355284, 40.119506 ], [ -75.354032, 40.119057 ], [ -75.352545, 40.118529 ], [ -75.352398, 40.118477 ], [ -75.352077, 40.118365 ], [ -75.351991, 40.118334 ], [ -75.351931, 40.118316 ], [ -75.351846, 40.118285 ], [ -75.351773, 40.118255 ], [ -75.351708, 40.118226 ], [ -75.351648, 40.11819 ], [ -75.351574, 40.118148 ], [ -75.351458, 40.118071 ], [ -75.351395, 40.118027 ], [ -75.351261, 40.117937 ], [ -75.351177, 40.117883 ], [ -75.351103, 40.117833 ], [ -75.350861, 40.117672 ], [ -75.350721, 40.117578 ], [ -75.350452, 40.117411 ], [ -75.350408, 40.117388 ], [ -75.350346, 40.117356 ], [ -75.350307, 40.117284 ], [ -75.350229, 40.11722 ], [ -75.350129, 40.11716 ], [ -75.350099, 40.117141 ], [ -75.349977, 40.117064 ], [ -75.349713, 40.11692 ], [ -75.34956, 40.116834 ], [ -75.349477, 40.11679 ], [ -75.349216, 40.116634 ], [ -75.349147, 40.116592 ], [ -75.349041, 40.116515 ], [ -75.348922, 40.116436 ], [ -75.348775, 40.116349 ], [ -75.348693, 40.116301 ], [ -75.348396, 40.116128 ], [ -75.348332, 40.116091 ], [ -75.348185, 40.116013 ], [ -75.348084, 40.115961 ], [ -75.347995, 40.115912 ], [ -75.347885, 40.115859 ], [ -75.347621, 40.115728 ], [ -75.347612, 40.115724 ], [ -75.347601, 40.115721 ], [ -75.347533, 40.115721 ], [ -75.347483, 40.115697 ], [ -75.347946, 40.11493 ], [ -75.347588, 40.114785 ], [ -75.346682, 40.114416 ], [ -75.346111, 40.114201 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307225", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.651778, 40.245833 ], [ -75.650959, 40.245739 ], [ -75.650415, 40.245675 ], [ -75.649848, 40.245598 ], [ -75.649532, 40.245556 ], [ -75.649341, 40.245532 ], [ -75.648958, 40.245487 ], [ -75.648609, 40.245448 ], [ -75.648039, 40.245385 ], [ -75.647801, 40.245359 ], [ -75.647568, 40.245334 ], [ -75.647006, 40.245252 ], [ -75.646437, 40.24517 ], [ -75.64596, 40.245101 ], [ -75.645795, 40.245083 ], [ -75.644471, 40.244938 ], [ -75.644305, 40.24492 ], [ -75.643398, 40.244797 ], [ -75.643278, 40.24478 ], [ -75.642641, 40.244689 ], [ -75.642198, 40.244626 ], [ -75.641657, 40.244564 ], [ -75.641489, 40.24454 ], [ -75.641012, 40.244481 ], [ -75.639761, 40.244327 ], [ -75.639498, 40.244293 ], [ -75.63922, 40.244257 ], [ -75.63895, 40.244223 ], [ -75.638763, 40.244195 ], [ -75.638542, 40.244168 ], [ -75.637711, 40.244063 ], [ -75.636028, 40.243846 ], [ -75.635027, 40.243741 ], [ -75.634774, 40.243715 ], [ -75.634665, 40.243715 ], [ -75.634529, 40.243721 ], [ -75.63438, 40.243736 ], [ -75.634252, 40.243747 ], [ -75.634183, 40.243753 ], [ -75.633926, 40.243776 ], [ -75.633706, 40.243795 ], [ -75.632975, 40.243857 ], [ -75.631416, 40.243986 ], [ -75.630547, 40.244054 ], [ -75.629061, 40.244169 ], [ -75.628332, 40.244234 ], [ -75.628228, 40.244243 ], [ -75.628098, 40.244253 ], [ -75.627977, 40.244251 ], [ -75.62787, 40.244243 ], [ -75.627726, 40.244222 ], [ -75.627219, 40.244158 ], [ -75.625748, 40.243976 ], [ -75.624506, 40.243843 ], [ -75.623953, 40.243769 ], [ -75.623443, 40.243701 ], [ -75.623207, 40.243671 ], [ -75.622486, 40.243587 ], [ -75.621389, 40.24346 ], [ -75.621147, 40.243426 ], [ -75.619971, 40.243272 ], [ -75.619612, 40.243233 ], [ -75.619288, 40.243219 ], [ -75.61917, 40.243224 ], [ -75.618928, 40.24326 ], [ -75.618695, 40.243296 ], [ -75.6183, 40.243367 ], [ -75.617806, 40.243455 ], [ -75.617568, 40.243496 ], [ -75.617412, 40.243526 ], [ -75.617328, 40.243542 ], [ -75.617075, 40.243594 ], [ -75.616997, 40.243611 ], [ -75.616816, 40.243653 ], [ -75.616571, 40.243718 ], [ -75.616122, 40.243836 ], [ -75.616096, 40.243843 ], [ -75.615916, 40.24389 ], [ -75.615752, 40.243932 ], [ -75.615656, 40.243957 ], [ -75.615567, 40.243978 ], [ -75.61549, 40.243995 ], [ -75.6154, 40.244012 ], [ -75.615302, 40.244027 ], [ -75.615216, 40.244036 ], [ -75.61514, 40.244044 ], [ -75.615074, 40.244052 ], [ -75.614988, 40.244056 ], [ -75.614972, 40.244056 ], [ -75.614807, 40.24406 ], [ -75.614798, 40.244059 ], [ -75.614588, 40.244056 ], [ -75.614389, 40.244044 ], [ -75.614224, 40.244035 ], [ -75.61384, 40.244025 ], [ -75.613588, 40.244007 ], [ -75.613316, 40.244003 ], [ -75.613004, 40.243993 ], [ -75.612871, 40.243987 ], [ -75.612348, 40.243966 ], [ -75.61215, 40.243958 ], [ -75.611938, 40.243953 ], [ -75.611752, 40.243947 ], [ -75.611462, 40.243939 ], [ -75.611111, 40.243942 ], [ -75.610996, 40.243943 ], [ -75.610888, 40.243943 ], [ -75.610723, 40.243947 ], [ -75.610462, 40.243954 ], [ -75.610269, 40.243959 ], [ -75.610061, 40.243964 ], [ -75.609886, 40.243968 ], [ -75.609419, 40.243978 ], [ -75.609025, 40.243988 ], [ -75.608792, 40.243996 ], [ -75.608339, 40.244012 ], [ -75.608047, 40.244027 ], [ -75.603955, 40.244234 ], [ -75.603588, 40.24425 ], [ -75.602652, 40.244275 ], [ -75.601793, 40.244309 ], [ -75.601272, 40.244329 ], [ -75.601053, 40.244339 ], [ -75.600996, 40.244341 ], [ -75.600747, 40.244374 ], [ -75.600502, 40.24442 ], [ -75.600164, 40.244484 ], [ -75.599982, 40.244522 ], [ -75.599602, 40.2446 ], [ -75.599002, 40.244726 ], [ -75.598834, 40.244761 ], [ -75.598666, 40.244789 ], [ -75.598451, 40.244816 ], [ -75.598111, 40.24485 ], [ -75.598009, 40.244856 ], [ -75.597079, 40.24492 ], [ -75.597009, 40.244925 ], [ -75.596362, 40.24498 ], [ -75.59561, 40.245044 ], [ -75.595328, 40.245062 ], [ -75.595098, 40.245079 ], [ -75.594929, 40.245084 ], [ -75.594792, 40.245086 ], [ -75.59464, 40.245086 ], [ -75.594493, 40.245078 ], [ -75.594141, 40.245056 ], [ -75.593717, 40.24503 ], [ -75.593053, 40.244993 ], [ -75.592282, 40.244946 ], [ -75.591382, 40.244862 ], [ -75.590913, 40.244816 ], [ -75.590324, 40.244766 ], [ -75.589527, 40.244706 ], [ -75.589293, 40.244692 ], [ -75.58827, 40.244631 ], [ -75.587826, 40.244603 ], [ -75.58735, 40.244576 ], [ -75.586644, 40.244525 ], [ -75.586424, 40.24451 ], [ -75.58615, 40.244493 ], [ -75.586047, 40.244488 ], [ -75.585494, 40.24443 ], [ -75.58519, 40.244397 ], [ -75.584942, 40.24437 ], [ -75.584494, 40.244338 ], [ -75.584411, 40.244332 ], [ -75.582851, 40.244218 ], [ -75.582377, 40.244186 ], [ -75.582017, 40.24417 ], [ -75.581664, 40.24415 ], [ -75.580935, 40.244133 ], [ -75.580203, 40.244127 ], [ -75.5789, 40.244104 ], [ -75.578223, 40.244081 ], [ -75.57687, 40.243998 ], [ -75.576307, 40.243963 ], [ -75.575921, 40.243951 ], [ -75.57583, 40.243907 ], [ -75.575361, 40.24387 ], [ -75.574828, 40.243829 ], [ -75.574411, 40.243792 ], [ -75.574336, 40.243762 ], [ -75.574309, 40.243743 ], [ -75.574286, 40.243725 ], [ -75.574271, 40.243709 ], [ -75.574254, 40.243694 ], [ -75.574231, 40.243664 ], [ -75.574215, 40.243636 ], [ -75.5742, 40.243607 ], [ -75.574192, 40.243563 ], [ -75.574194, 40.243527 ], [ -75.574196, 40.243487 ], [ -75.574197, 40.243439 ], [ -75.574197, 40.243381 ], [ -75.574197, 40.243341 ], [ -75.574217, 40.243283 ], [ -75.574231, 40.243205 ], [ -75.574237, 40.243138 ], [ -75.574242, 40.24308 ], [ -75.574244, 40.243004 ], [ -75.574231, 40.24293 ], [ -75.574214, 40.242869 ], [ -75.57417, 40.242746 ], [ -75.574134, 40.242683 ], [ -75.573995, 40.242431 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.573596, 40.242253 ], [ -75.573448, 40.242287 ], [ -75.573297, 40.242326 ], [ -75.573087, 40.242377 ], [ -75.572929, 40.242421 ], [ -75.57255, 40.242515 ], [ -75.572107, 40.242628 ], [ -75.571651, 40.24274 ], [ -75.570881, 40.242944 ], [ -75.570495, 40.243054 ], [ -75.570105, 40.243137 ], [ -75.569887, 40.243185 ], [ -75.569679, 40.243224 ], [ -75.569499, 40.243258 ], [ -75.569308, 40.243288 ], [ -75.56913, 40.243307 ], [ -75.568987, 40.243324 ], [ -75.568821, 40.243338 ], [ -75.56864, 40.243348 ], [ -75.568455, 40.243353 ], [ -75.568145, 40.243348 ], [ -75.567681, 40.24332 ], [ -75.567157, 40.243292 ], [ -75.566633, 40.243249 ], [ -75.566574, 40.243246 ], [ -75.566415, 40.243232 ], [ -75.566366, 40.243234 ], [ -75.566276, 40.243268 ], [ -75.565811, 40.243245 ], [ -75.565287, 40.243217 ], [ -75.563935, 40.243129 ], [ -75.563569, 40.243103 ], [ -75.562412, 40.243022 ], [ -75.561731, 40.242975 ], [ -75.561044, 40.242939 ], [ -75.560947, 40.242934 ], [ -75.559783, 40.24287 ], [ -75.558934, 40.242841 ], [ -75.558335, 40.242819 ], [ -75.55708, 40.242742 ], [ -75.556986, 40.242736 ], [ -75.554875, 40.242597 ], [ -75.553377, 40.242491 ], [ -75.55227, 40.242402 ], [ -75.549223, 40.242155 ], [ -75.549076, 40.242144 ], [ -75.548493, 40.242103 ], [ -75.548368, 40.24209 ], [ -75.548044, 40.242058 ], [ -75.547669, 40.24202 ], [ -75.547372, 40.24199 ], [ -75.547024, 40.241955 ], [ -75.546664, 40.241905 ], [ -75.546417, 40.241855 ], [ -75.546152, 40.241794 ], [ -75.545845, 40.241718 ], [ -75.545491, 40.241608 ], [ -75.545368, 40.241569 ], [ -75.545251, 40.241529 ], [ -75.545028, 40.241444 ], [ -75.544829, 40.241358 ], [ -75.54441, 40.241154 ], [ -75.544201, 40.241038 ], [ -75.544044, 40.24095 ], [ -75.543875, 40.240856 ], [ -75.543357, 40.240568 ], [ -75.542733, 40.240205 ], [ -75.54166, 40.239581 ], [ -75.540689, 40.239018 ], [ -75.540149, 40.238709 ], [ -75.539908, 40.238574 ], [ -75.539619, 40.238407 ], [ -75.539424, 40.238292 ], [ -75.538792, 40.237927 ], [ -75.53869, 40.237871 ], [ -75.538533, 40.237781 ], [ -75.538393, 40.237712 ], [ -75.537943, 40.237446 ], [ -75.537532, 40.237211 ], [ -75.537092, 40.236952 ], [ -75.536562, 40.236663 ], [ -75.536435, 40.236593 ], [ -75.535555, 40.236086 ], [ -75.534625, 40.235561 ], [ -75.534611, 40.235552 ], [ -75.534355, 40.235408 ], [ -75.534068, 40.235244 ], [ -75.533935, 40.235175 ], [ -75.533784, 40.235088 ], [ -75.533489, 40.234918 ], [ -75.533161, 40.23473 ], [ -75.532567, 40.234403 ], [ -75.532314, 40.234266 ], [ -75.532033, 40.234145 ], [ -75.531784, 40.234045 ], [ -75.531486, 40.233944 ], [ -75.531183, 40.23385 ], [ -75.530886, 40.233758 ], [ -75.530644, 40.233689 ], [ -75.530442, 40.233632 ], [ -75.530223, 40.233567 ], [ -75.529677, 40.233407 ], [ -75.529133, 40.233247 ], [ -75.529021, 40.233213 ], [ -75.528652, 40.233103 ], [ -75.528455, 40.233044 ], [ -75.527958, 40.232895 ], [ -75.527761, 40.232835 ], [ -75.527182, 40.232665 ], [ -75.526711, 40.23253 ], [ -75.526537, 40.23248 ], [ -75.526466, 40.232459 ], [ -75.52637, 40.23243 ], [ -75.525942, 40.2323 ], [ -75.525828, 40.232264 ], [ -75.52547, 40.232171 ], [ -75.52501, 40.23205 ], [ -75.52469, 40.231958 ], [ -75.524206, 40.231802 ], [ -75.523957, 40.231725 ], [ -75.523589, 40.231611 ], [ -75.523453, 40.231574 ], [ -75.523332, 40.231542 ], [ -75.523142, 40.231483 ], [ -75.523004, 40.23144 ], [ -75.522883, 40.231396 ], [ -75.522788, 40.231357 ], [ -75.522679, 40.23131 ], [ -75.522595, 40.231271 ], [ -75.522373, 40.231153 ], [ -75.52222, 40.231071 ], [ -75.5221, 40.231004 ], [ -75.521772, 40.230824 ], [ -75.520415, 40.230085 ], [ -75.519614, 40.229655 ], [ -75.519271, 40.22947 ], [ -75.51911, 40.229381 ], [ -75.518975, 40.229302 ], [ -75.51879, 40.229191 ], [ -75.518697, 40.229133 ], [ -75.518621, 40.229079 ], [ -75.51851, 40.228988 ], [ -75.51843, 40.228913 ], [ -75.518292, 40.228784 ], [ -75.518007, 40.228459 ], [ -75.517737, 40.22814 ], [ -75.517726, 40.228127 ], [ -75.517464, 40.227818 ], [ -75.517301, 40.227624 ], [ -75.516925, 40.227176 ], [ -75.516399, 40.226526 ], [ -75.51626, 40.226359 ], [ -75.515879, 40.225904 ], [ -75.51575, 40.225749 ], [ -75.515377, 40.225303 ], [ -75.5152, 40.225083 ], [ -75.514938, 40.224766 ], [ -75.514406, 40.224123 ], [ -75.514104, 40.223765 ], [ -75.513965, 40.223605 ], [ -75.513742, 40.223352 ], [ -75.513652, 40.223251 ], [ -75.513571, 40.223167 ], [ -75.513447, 40.223046 ], [ -75.513359, 40.222969 ], [ -75.513196, 40.222823 ], [ -75.513049, 40.222714 ], [ -75.512959, 40.222651 ], [ -75.512879, 40.222597 ], [ -75.512765, 40.222523 ], [ -75.512628, 40.222437 ], [ -75.512534, 40.222386 ], [ -75.511783, 40.221953 ], [ -75.511369, 40.221708 ], [ -75.511101, 40.221551 ], [ -75.510963, 40.22147 ], [ -75.510425, 40.221158 ], [ -75.509857, 40.220825 ], [ -75.509628, 40.220699 ], [ -75.508116, 40.21981 ], [ -75.503558, 40.217222 ], [ -75.503213, 40.217018 ], [ -75.503033, 40.216912 ], [ -75.502873, 40.216818 ], [ -75.502361, 40.216516 ], [ -75.501792, 40.21618 ], [ -75.501656, 40.2161 ], [ -75.50141, 40.215955 ], [ -75.501102, 40.215762 ], [ -75.500632, 40.215468 ], [ -75.500328, 40.215277 ], [ -75.499754, 40.214918 ], [ -75.499433, 40.214704 ], [ -75.499237, 40.214571 ], [ -75.498881, 40.21433 ], [ -75.49843, 40.214092 ], [ -75.498161, 40.21394 ], [ -75.49793, 40.213812 ], [ -75.497778, 40.21373 ], [ -75.49771, 40.213695 ], [ -75.497283, 40.213391 ], [ -75.497192, 40.213324 ], [ -75.497031, 40.213226 ], [ -75.496321, 40.212809 ], [ -75.49569, 40.212419 ], [ -75.495283, 40.212156 ], [ -75.494851, 40.21187 ], [ -75.493539, 40.211154 ], [ -75.492881, 40.210798 ], [ -75.4925, 40.210564 ], [ -75.49213, 40.210318 ], [ -75.491389, 40.209766 ], [ -75.490644, 40.209144 ], [ -75.490153, 40.208728 ], [ -75.489902, 40.208517 ], [ -75.489679, 40.208341 ], [ -75.488535, 40.207335 ], [ -75.488449, 40.207254 ], [ -75.488353, 40.20716 ], [ -75.488287, 40.207094 ], [ -75.488138, 40.206939 ], [ -75.487397, 40.206157 ], [ -75.486415, 40.205096 ], [ -75.485897, 40.20455 ], [ -75.485694, 40.204355 ], [ -75.485468, 40.204139 ], [ -75.484783, 40.203489 ], [ -75.484304, 40.203055 ], [ -75.484087, 40.20286 ], [ -75.483963, 40.202753 ], [ -75.483858, 40.202674 ], [ -75.483643, 40.202516 ], [ -75.483423, 40.202369 ], [ -75.482852, 40.20198 ], [ -75.482458, 40.20172 ], [ -75.4823, 40.201623 ], [ -75.482191, 40.201558 ], [ -75.482025, 40.201464 ], [ -75.481782, 40.201336 ], [ -75.481203, 40.201057 ], [ -75.480913, 40.200913 ], [ -75.480565, 40.200755 ], [ -75.479322, 40.200196 ], [ -75.478134, 40.199653 ], [ -75.477692, 40.199459 ], [ -75.477516, 40.19938 ], [ -75.477477, 40.199364 ], [ -75.477265, 40.199276 ], [ -75.476776, 40.199054 ], [ -75.476707, 40.199022 ], [ -75.476621, 40.198987 ], [ -75.476063, 40.198757 ], [ -75.475786, 40.198643 ], [ -75.475245, 40.198417 ], [ -75.475151, 40.198377 ], [ -75.475088, 40.198353 ], [ -75.475017, 40.198324 ], [ -75.47426, 40.19801 ], [ -75.474008, 40.197901 ], [ -75.47269, 40.197341 ], [ -75.471745, 40.196939 ], [ -75.471026, 40.196633 ], [ -75.470471, 40.196408 ], [ -75.470404, 40.196325 ], [ -75.470361, 40.196304 ], [ -75.470064, 40.196183 ], [ -75.468783, 40.19565 ], [ -75.468181, 40.195399 ], [ -75.46799, 40.195325 ], [ -75.467618, 40.19518 ], [ -75.467236, 40.195018 ], [ -75.466738, 40.194816 ], [ -75.466462, 40.194697 ], [ -75.466372, 40.194668 ], [ -75.466219, 40.194669 ], [ -75.466091, 40.194614 ], [ -75.46516, 40.194222 ], [ -75.464541, 40.193953 ], [ -75.463984, 40.193729 ], [ -75.463546, 40.193553 ], [ -75.462868, 40.193264 ], [ -75.462322, 40.193034 ], [ -75.462199, 40.192984 ], [ -75.461871, 40.19285 ], [ -75.46154, 40.192714 ], [ -75.461081, 40.192526 ], [ -75.460642, 40.19234 ], [ -75.459655, 40.191937 ], [ -75.45826, 40.191347 ], [ -75.457473, 40.191032 ], [ -75.45676, 40.190722 ], [ -75.456623, 40.190663 ], [ -75.456419, 40.190582 ], [ -75.456328, 40.190546 ], [ -75.456216, 40.190493 ], [ -75.455964, 40.190377 ], [ -75.455805, 40.190306 ], [ -75.455447, 40.190122 ], [ -75.455096, 40.189903 ], [ -75.454988, 40.189825 ], [ -75.454827, 40.189717 ], [ -75.454731, 40.189636 ], [ -75.454648, 40.189571 ], [ -75.454527, 40.189472 ], [ -75.454417, 40.189363 ], [ -75.454315, 40.189246 ], [ -75.454231, 40.189135 ], [ -75.453862, 40.188665 ], [ -75.453631, 40.188364 ], [ -75.453332, 40.187986 ], [ -75.452816, 40.187329 ], [ -75.452235, 40.186602 ], [ -75.452094, 40.186426 ], [ -75.451974, 40.186274 ], [ -75.451881, 40.186157 ], [ -75.451809, 40.186083 ], [ -75.451709, 40.185987 ], [ -75.451673, 40.185953 ], [ -75.451645, 40.185935 ], [ -75.451592, 40.185896 ], [ -75.451507, 40.185831 ], [ -75.451436, 40.185776 ], [ -75.45141, 40.185756 ], [ -75.451373, 40.185727 ], [ -75.451293, 40.18567 ], [ -75.450854, 40.185376 ], [ -75.450748, 40.185304 ], [ -75.450687, 40.185263 ], [ -75.45064, 40.185242 ], [ -75.450576, 40.185216 ], [ -75.450513, 40.185196 ], [ -75.450348, 40.185147 ], [ -75.450038, 40.185057 ], [ -75.449796, 40.184988 ], [ -75.449513, 40.18489 ], [ -75.449362, 40.18481 ], [ -75.449263, 40.184752 ], [ -75.449173, 40.184688 ], [ -75.449093, 40.184614 ], [ -75.449034, 40.184559 ], [ -75.448974, 40.184496 ], [ -75.448914, 40.184425 ], [ -75.448826, 40.184335 ], [ -75.448786, 40.184302 ], [ -75.448762, 40.184285 ], [ -75.44872, 40.184267 ], [ -75.448644, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448487, 40.184247 ], [ -75.448314, 40.184261 ], [ -75.44823, 40.184267 ], [ -75.448004, 40.184296 ], [ -75.447925, 40.184306 ], [ -75.447659, 40.184331 ], [ -75.447456, 40.18435 ], [ -75.447238, 40.184359 ], [ -75.447056, 40.184353 ], [ -75.446947, 40.18434 ], [ -75.446835, 40.184324 ], [ -75.446727, 40.184294 ], [ -75.446608, 40.184254 ], [ -75.446426, 40.184171 ], [ -75.446378, 40.184146 ], [ -75.446191, 40.184049 ], [ -75.445927, 40.183913 ], [ -75.445547, 40.183715 ], [ -75.445432, 40.183656 ], [ -75.445314, 40.183594 ], [ -75.445066, 40.183466 ], [ -75.444992, 40.183429 ], [ -75.444925, 40.183404 ], [ -75.444705, 40.183282 ], [ -75.444392, 40.183062 ], [ -75.444111, 40.182822 ], [ -75.443729, 40.182491 ], [ -75.443167, 40.182019 ], [ -75.442956, 40.181825 ], [ -75.442907, 40.181781 ], [ -75.442652, 40.181559 ], [ -75.442512, 40.181436 ], [ -75.441769, 40.1808 ], [ -75.441104, 40.180237 ], [ -75.43992, 40.179232 ], [ -75.439769, 40.179094 ], [ -75.438712, 40.178185 ], [ -75.437848, 40.17745 ], [ -75.437788, 40.177402 ], [ -75.437725, 40.177348 ], [ -75.437563, 40.177215 ], [ -75.437018, 40.176759 ], [ -75.436992, 40.176737 ], [ -75.436981, 40.176677 ], [ -75.436977, 40.176665 ], [ -75.436968, 40.176654 ], [ -75.436897, 40.176601 ], [ -75.436528, 40.176274 ], [ -75.436466, 40.176221 ], [ -75.436059, 40.175875 ], [ -75.435781, 40.175638 ], [ -75.43566, 40.175536 ], [ -75.435447, 40.175354 ], [ -75.435234, 40.175172 ], [ -75.435206, 40.175148 ], [ -75.434989, 40.174966 ], [ -75.434842, 40.174842 ], [ -75.434804, 40.17481 ], [ -75.43436, 40.174428 ], [ -75.434306, 40.17438 ], [ -75.434102, 40.174216 ], [ -75.433982, 40.174108 ], [ -75.433915, 40.174088 ], [ -75.433418, 40.173701 ], [ -75.43281, 40.173163 ], [ -75.432625, 40.173004 ], [ -75.432443, 40.172849 ], [ -75.431978, 40.172446 ], [ -75.431767, 40.172278 ], [ -75.431566, 40.172129 ], [ -75.431261, 40.171931 ], [ -75.430788, 40.171625 ], [ -75.430255, 40.171289 ], [ -75.429765, 40.170981 ], [ -75.429705, 40.170943 ], [ -75.428396, 40.17011 ], [ -75.428229, 40.170007 ], [ -75.428004, 40.169875 ], [ -75.427764, 40.169747 ], [ -75.427483, 40.169612 ], [ -75.426926, 40.169352 ], [ -75.426628, 40.169222 ], [ -75.426304, 40.169069 ], [ -75.424936, 40.168457 ], [ -75.424395, 40.168185 ], [ -75.423649, 40.167841 ], [ -75.422584, 40.167358 ], [ -75.420891, 40.166558 ], [ -75.420296, 40.166284 ], [ -75.419772, 40.166049 ], [ -75.419181, 40.165774 ], [ -75.418678, 40.165552 ], [ -75.418548, 40.165496 ], [ -75.41842, 40.165434 ], [ -75.418303, 40.16538 ], [ -75.418205, 40.165332 ], [ -75.418143, 40.165305 ], [ -75.417874, 40.165181 ], [ -75.417698, 40.165101 ], [ -75.417475, 40.164991 ], [ -75.41743, 40.164969 ], [ -75.417384, 40.164943 ], [ -75.417195, 40.164838 ], [ -75.417044, 40.164749 ], [ -75.416899, 40.164669 ], [ -75.416674, 40.164539 ], [ -75.416347, 40.164355 ], [ -75.415811, 40.164028 ], [ -75.41496, 40.163509 ], [ -75.414562, 40.163261 ], [ -75.41427, 40.163071 ], [ -75.413811, 40.162798 ], [ -75.413529, 40.16263 ], [ -75.413446, 40.162583 ], [ -75.412915, 40.162265 ], [ -75.412574, 40.162063 ], [ -75.411908, 40.161674 ], [ -75.411879, 40.161624 ], [ -75.411706, 40.161515 ], [ -75.411328, 40.161279 ], [ -75.410769, 40.160951 ], [ -75.410344, 40.160699 ], [ -75.410065, 40.160533 ], [ -75.409808, 40.160388 ], [ -75.409474, 40.160208 ], [ -75.409246, 40.16009 ], [ -75.408974, 40.159949 ], [ -75.408901, 40.159943 ], [ -75.408523, 40.159746 ], [ -75.408324, 40.159635 ], [ -75.407678, 40.15929 ], [ -75.407242, 40.159057 ], [ -75.407052, 40.158957 ], [ -75.406312, 40.158557 ], [ -75.405377, 40.158017 ], [ -75.405124, 40.157856 ], [ -75.404936, 40.15774 ], [ -75.404882, 40.157706 ], [ -75.404628, 40.157558 ], [ -75.404433, 40.157444 ], [ -75.404186, 40.157308 ], [ -75.404147, 40.157278 ], [ -75.403617, 40.156972 ], [ -75.403528, 40.156921 ], [ -75.403308, 40.156784 ], [ -75.403074, 40.156633 ], [ -75.402805, 40.156467 ], [ -75.402628, 40.156357 ], [ -75.402095, 40.156028 ], [ -75.401868, 40.155879 ], [ -75.40126, 40.155484 ], [ -75.400964, 40.155283 ], [ -75.400942, 40.155268 ], [ -75.40071, 40.155115 ], [ -75.400671, 40.15509 ], [ -75.400638, 40.155069 ], [ -75.400341, 40.154834 ], [ -75.400278, 40.154779 ], [ -75.4002, 40.154707 ], [ -75.40006, 40.154585 ], [ -75.399944, 40.154475 ], [ -75.399861, 40.154386 ], [ -75.399606, 40.15412 ], [ -75.399427, 40.153925 ], [ -75.399185, 40.153619 ], [ -75.39912, 40.153528 ], [ -75.399005, 40.153356 ], [ -75.398895, 40.153161 ], [ -75.398836, 40.153072 ], [ -75.398759, 40.15292 ], [ -75.398692, 40.152783 ], [ -75.398543, 40.152443 ], [ -75.398484, 40.152305 ], [ -75.398457, 40.15224 ], [ -75.398428, 40.152165 ], [ -75.398382, 40.152052 ], [ -75.398311, 40.15188 ], [ -75.398271, 40.151795 ], [ -75.398033, 40.151275 ], [ -75.397997, 40.151204 ], [ -75.397844, 40.150925 ], [ -75.397769, 40.150773 ], [ -75.397606, 40.150444 ], [ -75.397417, 40.15008 ], [ -75.396907, 40.149192 ], [ -75.396738, 40.148917 ], [ -75.39643, 40.148348 ], [ -75.396324, 40.148162 ], [ -75.396179, 40.147931 ], [ -75.396122, 40.147857 ], [ -75.396062, 40.147784 ], [ -75.395866, 40.147538 ], [ -75.395683, 40.147327 ], [ -75.395635, 40.147271 ], [ -75.395625, 40.147259 ], [ -75.395344, 40.146943 ], [ -75.395229, 40.146809 ], [ -75.39491, 40.146483 ], [ -75.394862, 40.146432 ], [ -75.394774, 40.146325 ], [ -75.394233, 40.14568 ], [ -75.394159, 40.145606 ], [ -75.394093, 40.145542 ], [ -75.394005, 40.145465 ], [ -75.393794, 40.145288 ], [ -75.393588, 40.145126 ], [ -75.392825, 40.144546 ], [ -75.392423, 40.144254 ], [ -75.392004, 40.143941 ], [ -75.39111, 40.143246 ], [ -75.390447, 40.142738 ], [ -75.390246, 40.142584 ], [ -75.390117, 40.142485 ], [ -75.389952, 40.142358 ], [ -75.3898, 40.142241 ], [ -75.389341, 40.14191 ], [ -75.389055, 40.141703 ], [ -75.388995, 40.14166 ], [ -75.388235, 40.14113 ], [ -75.387552, 40.140656 ], [ -75.387179, 40.14039 ], [ -75.387033, 40.140284 ], [ -75.386783, 40.140086 ], [ -75.386578, 40.139906 ], [ -75.386411, 40.139753 ], [ -75.385742, 40.139154 ], [ -75.385452, 40.138885 ], [ -75.385178, 40.138652 ], [ -75.384988, 40.138483 ], [ -75.383988, 40.137591 ], [ -75.383549, 40.137194 ], [ -75.383054, 40.136751 ], [ -75.382524, 40.136267 ], [ -75.382115, 40.135904 ], [ -75.38192, 40.135738 ], [ -75.381591, 40.135459 ], [ -75.381147, 40.135073 ], [ -75.380298, 40.134339 ], [ -75.379683, 40.133804 ], [ -75.379356, 40.133519 ], [ -75.378844, 40.133064 ], [ -75.378618, 40.132861 ], [ -75.378457, 40.132719 ], [ -75.378359, 40.13263 ], [ -75.378277, 40.13258 ], [ -75.377989, 40.132425 ], [ -75.377697, 40.132262 ], [ -75.377294, 40.132036 ], [ -75.376811, 40.131758 ], [ -75.375727, 40.131142 ], [ -75.375283, 40.130889 ], [ -75.375027, 40.130742 ], [ -75.374761, 40.130589 ], [ -75.374519, 40.130449 ], [ -75.374039, 40.130176 ], [ -75.373415, 40.129828 ], [ -75.373139, 40.129661 ], [ -75.372506, 40.129307 ], [ -75.372422, 40.12926 ], [ -75.372146, 40.129107 ], [ -75.371847, 40.128935 ], [ -75.371057, 40.128481 ], [ -75.370699, 40.128268 ], [ -75.369467, 40.127565 ], [ -75.3684, 40.126936 ], [ -75.367721, 40.126543 ], [ -75.366753, 40.125988 ], [ -75.365828, 40.125456 ], [ -75.364535, 40.124705 ], [ -75.363573, 40.124151 ], [ -75.363003, 40.123828 ], [ -75.362521, 40.123554 ], [ -75.362414, 40.123498 ], [ -75.362269, 40.123415 ], [ -75.361867, 40.123184 ], [ -75.361545, 40.122999 ], [ -75.361265, 40.122838 ], [ -75.360601, 40.122423 ], [ -75.359387, 40.121722 ], [ -75.358156, 40.121021 ], [ -75.356945, 40.120326 ], [ -75.356434, 40.120034 ], [ -75.356163, 40.119884 ], [ -75.355967, 40.119783 ], [ -75.355909, 40.119755 ], [ -75.35584, 40.119721 ], [ -75.355668, 40.119647 ], [ -75.355544, 40.1196 ], [ -75.355436, 40.11956 ], [ -75.355284, 40.119506 ], [ -75.354032, 40.119057 ], [ -75.352545, 40.118529 ], [ -75.352398, 40.118477 ], [ -75.352077, 40.118365 ], [ -75.351991, 40.118334 ], [ -75.351931, 40.118316 ], [ -75.351846, 40.118285 ], [ -75.351773, 40.118255 ], [ -75.351708, 40.118226 ], [ -75.351648, 40.11819 ], [ -75.351574, 40.118148 ], [ -75.351458, 40.118071 ], [ -75.351395, 40.118027 ], [ -75.351261, 40.117937 ], [ -75.351177, 40.117883 ], [ -75.351103, 40.117833 ], [ -75.350861, 40.117672 ], [ -75.350721, 40.117578 ], [ -75.350452, 40.117411 ], [ -75.350408, 40.117388 ], [ -75.350346, 40.117356 ], [ -75.350307, 40.117284 ], [ -75.350229, 40.11722 ], [ -75.350129, 40.11716 ], [ -75.350099, 40.117141 ], [ -75.349977, 40.117064 ], [ -75.349713, 40.11692 ], [ -75.34956, 40.116834 ], [ -75.349477, 40.11679 ], [ -75.349216, 40.116634 ], [ -75.349147, 40.116592 ], [ -75.349041, 40.116515 ], [ -75.348922, 40.116436 ], [ -75.348775, 40.116349 ], [ -75.348693, 40.116301 ], [ -75.348396, 40.116128 ], [ -75.348332, 40.116091 ], [ -75.348185, 40.116013 ], [ -75.348084, 40.115961 ], [ -75.347995, 40.115912 ], [ -75.347885, 40.115859 ], [ -75.347621, 40.115728 ], [ -75.347612, 40.115724 ], [ -75.347601, 40.115721 ], [ -75.347533, 40.115721 ], [ -75.347483, 40.115697 ], [ -75.347946, 40.11493 ], [ -75.347588, 40.114785 ], [ -75.346682, 40.114416 ], [ -75.346111, 40.114201 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307226", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.651778, 40.245833 ], [ -75.650959, 40.245739 ], [ -75.650415, 40.245675 ], [ -75.649848, 40.245598 ], [ -75.649532, 40.245556 ], [ -75.649341, 40.245532 ], [ -75.648958, 40.245487 ], [ -75.648609, 40.245448 ], [ -75.648039, 40.245385 ], [ -75.647801, 40.245359 ], [ -75.647568, 40.245334 ], [ -75.647006, 40.245252 ], [ -75.646437, 40.24517 ], [ -75.64596, 40.245101 ], [ -75.645795, 40.245083 ], [ -75.644471, 40.244938 ], [ -75.644305, 40.24492 ], [ -75.643398, 40.244797 ], [ -75.643278, 40.24478 ], [ -75.642641, 40.244689 ], [ -75.642198, 40.244626 ], [ -75.641657, 40.244564 ], [ -75.641489, 40.24454 ], [ -75.641012, 40.244481 ], [ -75.639761, 40.244327 ], [ -75.639498, 40.244293 ], [ -75.63922, 40.244257 ], [ -75.63895, 40.244223 ], [ -75.638763, 40.244195 ], [ -75.638542, 40.244168 ], [ -75.637711, 40.244063 ], [ -75.636028, 40.243846 ], [ -75.635027, 40.243741 ], [ -75.634774, 40.243715 ], [ -75.634665, 40.243715 ], [ -75.634529, 40.243721 ], [ -75.63438, 40.243736 ], [ -75.634252, 40.243747 ], [ -75.634183, 40.243753 ], [ -75.633926, 40.243776 ], [ -75.633706, 40.243795 ], [ -75.632975, 40.243857 ], [ -75.631416, 40.243986 ], [ -75.630547, 40.244054 ], [ -75.629061, 40.244169 ], [ -75.628332, 40.244234 ], [ -75.628228, 40.244243 ], [ -75.628098, 40.244253 ], [ -75.627977, 40.244251 ], [ -75.62787, 40.244243 ], [ -75.627726, 40.244222 ], [ -75.627219, 40.244158 ], [ -75.625748, 40.243976 ], [ -75.624506, 40.243843 ], [ -75.623953, 40.243769 ], [ -75.623443, 40.243701 ], [ -75.623207, 40.243671 ], [ -75.622486, 40.243587 ], [ -75.621389, 40.24346 ], [ -75.621147, 40.243426 ], [ -75.619971, 40.243272 ], [ -75.619612, 40.243233 ], [ -75.619288, 40.243219 ], [ -75.61917, 40.243224 ], [ -75.618928, 40.24326 ], [ -75.618695, 40.243296 ], [ -75.6183, 40.243367 ], [ -75.617806, 40.243455 ], [ -75.617568, 40.243496 ], [ -75.617412, 40.243526 ], [ -75.617328, 40.243542 ], [ -75.617075, 40.243594 ], [ -75.616997, 40.243611 ], [ -75.616816, 40.243653 ], [ -75.616571, 40.243718 ], [ -75.616122, 40.243836 ], [ -75.616096, 40.243843 ], [ -75.615916, 40.24389 ], [ -75.615752, 40.243932 ], [ -75.615656, 40.243957 ], [ -75.615567, 40.243978 ], [ -75.61549, 40.243995 ], [ -75.6154, 40.244012 ], [ -75.615302, 40.244027 ], [ -75.615216, 40.244036 ], [ -75.61514, 40.244044 ], [ -75.615074, 40.244052 ], [ -75.614988, 40.244056 ], [ -75.614972, 40.244056 ], [ -75.614807, 40.24406 ], [ -75.614798, 40.244059 ], [ -75.614588, 40.244056 ], [ -75.614389, 40.244044 ], [ -75.614224, 40.244035 ], [ -75.61384, 40.244025 ], [ -75.613588, 40.244007 ], [ -75.613316, 40.244003 ], [ -75.613004, 40.243993 ], [ -75.612871, 40.243987 ], [ -75.612348, 40.243966 ], [ -75.61215, 40.243958 ], [ -75.611938, 40.243953 ], [ -75.611752, 40.243947 ], [ -75.611462, 40.243939 ], [ -75.611111, 40.243942 ], [ -75.610996, 40.243943 ], [ -75.610888, 40.243943 ], [ -75.610723, 40.243947 ], [ -75.610462, 40.243954 ], [ -75.610269, 40.243959 ], [ -75.610061, 40.243964 ], [ -75.609886, 40.243968 ], [ -75.609419, 40.243978 ], [ -75.609025, 40.243988 ], [ -75.608792, 40.243996 ], [ -75.608339, 40.244012 ], [ -75.608047, 40.244027 ], [ -75.603955, 40.244234 ], [ -75.603588, 40.24425 ], [ -75.602652, 40.244275 ], [ -75.601793, 40.244309 ], [ -75.601272, 40.244329 ], [ -75.601053, 40.244339 ], [ -75.600996, 40.244341 ], [ -75.600747, 40.244374 ], [ -75.600502, 40.24442 ], [ -75.600164, 40.244484 ], [ -75.599982, 40.244522 ], [ -75.599602, 40.2446 ], [ -75.599002, 40.244726 ], [ -75.598834, 40.244761 ], [ -75.598666, 40.244789 ], [ -75.598451, 40.244816 ], [ -75.598111, 40.24485 ], [ -75.598009, 40.244856 ], [ -75.597079, 40.24492 ], [ -75.597009, 40.244925 ], [ -75.596362, 40.24498 ], [ -75.59561, 40.245044 ], [ -75.595328, 40.245062 ], [ -75.595098, 40.245079 ], [ -75.594929, 40.245084 ], [ -75.594792, 40.245086 ], [ -75.59464, 40.245086 ], [ -75.594493, 40.245078 ], [ -75.594141, 40.245056 ], [ -75.593717, 40.24503 ], [ -75.593053, 40.244993 ], [ -75.592282, 40.244946 ], [ -75.591382, 40.244862 ], [ -75.590913, 40.244816 ], [ -75.590324, 40.244766 ], [ -75.589527, 40.244706 ], [ -75.589293, 40.244692 ], [ -75.58827, 40.244631 ], [ -75.587826, 40.244603 ], [ -75.58735, 40.244576 ], [ -75.586644, 40.244525 ], [ -75.586424, 40.24451 ], [ -75.58615, 40.244493 ], [ -75.586047, 40.244488 ], [ -75.585494, 40.24443 ], [ -75.58519, 40.244397 ], [ -75.584942, 40.24437 ], [ -75.584494, 40.244338 ], [ -75.584411, 40.244332 ], [ -75.582851, 40.244218 ], [ -75.582377, 40.244186 ], [ -75.582017, 40.24417 ], [ -75.581664, 40.24415 ], [ -75.580935, 40.244133 ], [ -75.580203, 40.244127 ], [ -75.5789, 40.244104 ], [ -75.578223, 40.244081 ], [ -75.57687, 40.243998 ], [ -75.576307, 40.243963 ], [ -75.575921, 40.243951 ], [ -75.57583, 40.243907 ], [ -75.575361, 40.24387 ], [ -75.574828, 40.243829 ], [ -75.574411, 40.243792 ], [ -75.574336, 40.243762 ], [ -75.574309, 40.243743 ], [ -75.574286, 40.243725 ], [ -75.574271, 40.243709 ], [ -75.574254, 40.243694 ], [ -75.574231, 40.243664 ], [ -75.574215, 40.243636 ], [ -75.5742, 40.243607 ], [ -75.574192, 40.243563 ], [ -75.574194, 40.243527 ], [ -75.574196, 40.243487 ], [ -75.574197, 40.243439 ], [ -75.574197, 40.243381 ], [ -75.574197, 40.243341 ], [ -75.574217, 40.243283 ], [ -75.574231, 40.243205 ], [ -75.574237, 40.243138 ], [ -75.574242, 40.24308 ], [ -75.574244, 40.243004 ], [ -75.574231, 40.24293 ], [ -75.574214, 40.242869 ], [ -75.57417, 40.242746 ], [ -75.574134, 40.242683 ], [ -75.573995, 40.242431 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.573596, 40.242253 ], [ -75.573448, 40.242287 ], [ -75.573297, 40.242326 ], [ -75.573087, 40.242377 ], [ -75.572929, 40.242421 ], [ -75.57255, 40.242515 ], [ -75.572107, 40.242628 ], [ -75.571651, 40.24274 ], [ -75.570881, 40.242944 ], [ -75.570495, 40.243054 ], [ -75.570105, 40.243137 ], [ -75.569887, 40.243185 ], [ -75.569679, 40.243224 ], [ -75.569499, 40.243258 ], [ -75.569308, 40.243288 ], [ -75.56913, 40.243307 ], [ -75.568987, 40.243324 ], [ -75.568821, 40.243338 ], [ -75.56864, 40.243348 ], [ -75.568455, 40.243353 ], [ -75.568145, 40.243348 ], [ -75.567681, 40.24332 ], [ -75.567157, 40.243292 ], [ -75.566633, 40.243249 ], [ -75.566574, 40.243246 ], [ -75.566415, 40.243232 ], [ -75.566366, 40.243234 ], [ -75.566276, 40.243268 ], [ -75.565811, 40.243245 ], [ -75.565287, 40.243217 ], [ -75.563935, 40.243129 ], [ -75.563569, 40.243103 ], [ -75.562412, 40.243022 ], [ -75.561731, 40.242975 ], [ -75.561044, 40.242939 ], [ -75.560947, 40.242934 ], [ -75.559783, 40.24287 ], [ -75.558934, 40.242841 ], [ -75.558335, 40.242819 ], [ -75.55708, 40.242742 ], [ -75.556986, 40.242736 ], [ -75.554875, 40.242597 ], [ -75.553377, 40.242491 ], [ -75.55227, 40.242402 ], [ -75.549223, 40.242155 ], [ -75.549076, 40.242144 ], [ -75.548493, 40.242103 ], [ -75.548368, 40.24209 ], [ -75.548044, 40.242058 ], [ -75.547669, 40.24202 ], [ -75.547372, 40.24199 ], [ -75.547024, 40.241955 ], [ -75.546664, 40.241905 ], [ -75.546417, 40.241855 ], [ -75.546152, 40.241794 ], [ -75.545845, 40.241718 ], [ -75.545491, 40.241608 ], [ -75.545368, 40.241569 ], [ -75.545251, 40.241529 ], [ -75.545028, 40.241444 ], [ -75.544829, 40.241358 ], [ -75.54441, 40.241154 ], [ -75.544201, 40.241038 ], [ -75.544044, 40.24095 ], [ -75.543875, 40.240856 ], [ -75.543357, 40.240568 ], [ -75.542733, 40.240205 ], [ -75.54166, 40.239581 ], [ -75.540689, 40.239018 ], [ -75.540149, 40.238709 ], [ -75.539908, 40.238574 ], [ -75.539619, 40.238407 ], [ -75.539424, 40.238292 ], [ -75.538792, 40.237927 ], [ -75.53869, 40.237871 ], [ -75.538533, 40.237781 ], [ -75.538393, 40.237712 ], [ -75.537943, 40.237446 ], [ -75.537532, 40.237211 ], [ -75.537092, 40.236952 ], [ -75.536562, 40.236663 ], [ -75.536435, 40.236593 ], [ -75.535555, 40.236086 ], [ -75.534625, 40.235561 ], [ -75.534611, 40.235552 ], [ -75.534355, 40.235408 ], [ -75.534068, 40.235244 ], [ -75.533935, 40.235175 ], [ -75.533784, 40.235088 ], [ -75.533489, 40.234918 ], [ -75.533161, 40.23473 ], [ -75.532567, 40.234403 ], [ -75.532314, 40.234266 ], [ -75.532033, 40.234145 ], [ -75.531784, 40.234045 ], [ -75.531486, 40.233944 ], [ -75.531183, 40.23385 ], [ -75.530886, 40.233758 ], [ -75.530644, 40.233689 ], [ -75.530442, 40.233632 ], [ -75.530223, 40.233567 ], [ -75.529677, 40.233407 ], [ -75.529133, 40.233247 ], [ -75.529021, 40.233213 ], [ -75.528652, 40.233103 ], [ -75.528455, 40.233044 ], [ -75.527958, 40.232895 ], [ -75.527761, 40.232835 ], [ -75.527182, 40.232665 ], [ -75.526711, 40.23253 ], [ -75.526537, 40.23248 ], [ -75.526466, 40.232459 ], [ -75.52637, 40.23243 ], [ -75.525942, 40.2323 ], [ -75.525828, 40.232264 ], [ -75.52547, 40.232171 ], [ -75.52501, 40.23205 ], [ -75.52469, 40.231958 ], [ -75.524206, 40.231802 ], [ -75.523957, 40.231725 ], [ -75.523589, 40.231611 ], [ -75.523453, 40.231574 ], [ -75.523332, 40.231542 ], [ -75.523142, 40.231483 ], [ -75.523004, 40.23144 ], [ -75.522883, 40.231396 ], [ -75.522788, 40.231357 ], [ -75.522679, 40.23131 ], [ -75.522595, 40.231271 ], [ -75.522373, 40.231153 ], [ -75.52222, 40.231071 ], [ -75.5221, 40.231004 ], [ -75.521772, 40.230824 ], [ -75.520415, 40.230085 ], [ -75.519614, 40.229655 ], [ -75.519271, 40.22947 ], [ -75.51911, 40.229381 ], [ -75.518975, 40.229302 ], [ -75.51879, 40.229191 ], [ -75.518697, 40.229133 ], [ -75.518621, 40.229079 ], [ -75.51851, 40.228988 ], [ -75.51843, 40.228913 ], [ -75.518292, 40.228784 ], [ -75.518007, 40.228459 ], [ -75.517737, 40.22814 ], [ -75.517726, 40.228127 ], [ -75.517464, 40.227818 ], [ -75.517301, 40.227624 ], [ -75.516925, 40.227176 ], [ -75.516399, 40.226526 ], [ -75.51626, 40.226359 ], [ -75.515879, 40.225904 ], [ -75.51575, 40.225749 ], [ -75.515377, 40.225303 ], [ -75.5152, 40.225083 ], [ -75.514938, 40.224766 ], [ -75.514406, 40.224123 ], [ -75.514104, 40.223765 ], [ -75.513965, 40.223605 ], [ -75.513742, 40.223352 ], [ -75.513652, 40.223251 ], [ -75.513571, 40.223167 ], [ -75.513447, 40.223046 ], [ -75.513359, 40.222969 ], [ -75.513196, 40.222823 ], [ -75.513049, 40.222714 ], [ -75.512959, 40.222651 ], [ -75.512879, 40.222597 ], [ -75.512765, 40.222523 ], [ -75.512628, 40.222437 ], [ -75.512534, 40.222386 ], [ -75.511783, 40.221953 ], [ -75.511369, 40.221708 ], [ -75.511101, 40.221551 ], [ -75.510963, 40.22147 ], [ -75.510425, 40.221158 ], [ -75.509857, 40.220825 ], [ -75.509628, 40.220699 ], [ -75.508116, 40.21981 ], [ -75.503558, 40.217222 ], [ -75.503213, 40.217018 ], [ -75.503033, 40.216912 ], [ -75.502873, 40.216818 ], [ -75.502361, 40.216516 ], [ -75.501792, 40.21618 ], [ -75.501656, 40.2161 ], [ -75.50141, 40.215955 ], [ -75.501102, 40.215762 ], [ -75.500632, 40.215468 ], [ -75.500328, 40.215277 ], [ -75.499754, 40.214918 ], [ -75.499433, 40.214704 ], [ -75.499237, 40.214571 ], [ -75.498881, 40.21433 ], [ -75.49843, 40.214092 ], [ -75.498161, 40.21394 ], [ -75.49793, 40.213812 ], [ -75.497778, 40.21373 ], [ -75.49771, 40.213695 ], [ -75.497283, 40.213391 ], [ -75.497192, 40.213324 ], [ -75.497031, 40.213226 ], [ -75.496321, 40.212809 ], [ -75.49569, 40.212419 ], [ -75.495283, 40.212156 ], [ -75.494851, 40.21187 ], [ -75.493539, 40.211154 ], [ -75.492881, 40.210798 ], [ -75.4925, 40.210564 ], [ -75.49213, 40.210318 ], [ -75.491389, 40.209766 ], [ -75.490644, 40.209144 ], [ -75.490153, 40.208728 ], [ -75.489902, 40.208517 ], [ -75.489679, 40.208341 ], [ -75.488535, 40.207335 ], [ -75.488449, 40.207254 ], [ -75.488353, 40.20716 ], [ -75.488287, 40.207094 ], [ -75.488138, 40.206939 ], [ -75.487397, 40.206157 ], [ -75.486415, 40.205096 ], [ -75.485897, 40.20455 ], [ -75.485694, 40.204355 ], [ -75.485468, 40.204139 ], [ -75.484783, 40.203489 ], [ -75.484304, 40.203055 ], [ -75.484087, 40.20286 ], [ -75.483963, 40.202753 ], [ -75.483858, 40.202674 ], [ -75.483643, 40.202516 ], [ -75.483423, 40.202369 ], [ -75.482852, 40.20198 ], [ -75.482458, 40.20172 ], [ -75.4823, 40.201623 ], [ -75.482191, 40.201558 ], [ -75.482025, 40.201464 ], [ -75.481782, 40.201336 ], [ -75.481203, 40.201057 ], [ -75.480913, 40.200913 ], [ -75.480565, 40.200755 ], [ -75.479322, 40.200196 ], [ -75.478134, 40.199653 ], [ -75.477692, 40.199459 ], [ -75.477516, 40.19938 ], [ -75.477477, 40.199364 ], [ -75.477265, 40.199276 ], [ -75.476776, 40.199054 ], [ -75.476707, 40.199022 ], [ -75.476621, 40.198987 ], [ -75.476063, 40.198757 ], [ -75.475786, 40.198643 ], [ -75.475245, 40.198417 ], [ -75.475151, 40.198377 ], [ -75.475088, 40.198353 ], [ -75.475017, 40.198324 ], [ -75.47426, 40.19801 ], [ -75.474008, 40.197901 ], [ -75.47269, 40.197341 ], [ -75.471745, 40.196939 ], [ -75.471026, 40.196633 ], [ -75.470471, 40.196408 ], [ -75.470404, 40.196325 ], [ -75.470361, 40.196304 ], [ -75.470064, 40.196183 ], [ -75.468783, 40.19565 ], [ -75.468181, 40.195399 ], [ -75.46799, 40.195325 ], [ -75.467618, 40.19518 ], [ -75.467236, 40.195018 ], [ -75.466738, 40.194816 ], [ -75.466462, 40.194697 ], [ -75.466372, 40.194668 ], [ -75.466219, 40.194669 ], [ -75.466091, 40.194614 ], [ -75.46516, 40.194222 ], [ -75.464541, 40.193953 ], [ -75.463984, 40.193729 ], [ -75.463546, 40.193553 ], [ -75.462868, 40.193264 ], [ -75.462322, 40.193034 ], [ -75.462199, 40.192984 ], [ -75.461871, 40.19285 ], [ -75.46154, 40.192714 ], [ -75.461081, 40.192526 ], [ -75.460642, 40.19234 ], [ -75.459655, 40.191937 ], [ -75.45826, 40.191347 ], [ -75.457473, 40.191032 ], [ -75.45676, 40.190722 ], [ -75.456623, 40.190663 ], [ -75.456419, 40.190582 ], [ -75.456328, 40.190546 ], [ -75.456216, 40.190493 ], [ -75.455964, 40.190377 ], [ -75.455805, 40.190306 ], [ -75.455447, 40.190122 ], [ -75.455096, 40.189903 ], [ -75.454988, 40.189825 ], [ -75.454827, 40.189717 ], [ -75.454731, 40.189636 ], [ -75.454648, 40.189571 ], [ -75.454527, 40.189472 ], [ -75.454417, 40.189363 ], [ -75.454315, 40.189246 ], [ -75.454231, 40.189135 ], [ -75.453862, 40.188665 ], [ -75.453631, 40.188364 ], [ -75.453332, 40.187986 ], [ -75.452816, 40.187329 ], [ -75.452235, 40.186602 ], [ -75.452094, 40.186426 ], [ -75.451974, 40.186274 ], [ -75.451881, 40.186157 ], [ -75.451809, 40.186083 ], [ -75.451709, 40.185987 ], [ -75.451673, 40.185953 ], [ -75.451645, 40.185935 ], [ -75.451592, 40.185896 ], [ -75.451507, 40.185831 ], [ -75.451436, 40.185776 ], [ -75.45141, 40.185756 ], [ -75.451373, 40.185727 ], [ -75.451293, 40.18567 ], [ -75.450854, 40.185376 ], [ -75.450748, 40.185304 ], [ -75.450687, 40.185263 ], [ -75.45064, 40.185242 ], [ -75.450576, 40.185216 ], [ -75.450513, 40.185196 ], [ -75.450348, 40.185147 ], [ -75.450038, 40.185057 ], [ -75.449796, 40.184988 ], [ -75.449513, 40.18489 ], [ -75.449362, 40.18481 ], [ -75.449263, 40.184752 ], [ -75.449173, 40.184688 ], [ -75.449093, 40.184614 ], [ -75.449034, 40.184559 ], [ -75.448974, 40.184496 ], [ -75.448914, 40.184425 ], [ -75.448826, 40.184335 ], [ -75.448786, 40.184302 ], [ -75.448762, 40.184285 ], [ -75.44872, 40.184267 ], [ -75.448644, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448487, 40.184247 ], [ -75.448314, 40.184261 ], [ -75.44823, 40.184267 ], [ -75.448004, 40.184296 ], [ -75.447925, 40.184306 ], [ -75.447659, 40.184331 ], [ -75.447456, 40.18435 ], [ -75.447238, 40.184359 ], [ -75.447056, 40.184353 ], [ -75.446947, 40.18434 ], [ -75.446835, 40.184324 ], [ -75.446727, 40.184294 ], [ -75.446608, 40.184254 ], [ -75.446426, 40.184171 ], [ -75.446378, 40.184146 ], [ -75.446191, 40.184049 ], [ -75.445927, 40.183913 ], [ -75.445547, 40.183715 ], [ -75.445432, 40.183656 ], [ -75.445314, 40.183594 ], [ -75.445066, 40.183466 ], [ -75.444992, 40.183429 ], [ -75.444925, 40.183404 ], [ -75.444705, 40.183282 ], [ -75.444392, 40.183062 ], [ -75.444111, 40.182822 ], [ -75.443729, 40.182491 ], [ -75.443167, 40.182019 ], [ -75.442956, 40.181825 ], [ -75.442907, 40.181781 ], [ -75.442652, 40.181559 ], [ -75.442512, 40.181436 ], [ -75.441769, 40.1808 ], [ -75.441104, 40.180237 ], [ -75.43992, 40.179232 ], [ -75.439769, 40.179094 ], [ -75.438712, 40.178185 ], [ -75.437848, 40.17745 ], [ -75.437788, 40.177402 ], [ -75.437725, 40.177348 ], [ -75.437563, 40.177215 ], [ -75.437018, 40.176759 ], [ -75.436992, 40.176737 ], [ -75.436981, 40.176677 ], [ -75.436977, 40.176665 ], [ -75.436968, 40.176654 ], [ -75.436897, 40.176601 ], [ -75.436528, 40.176274 ], [ -75.436466, 40.176221 ], [ -75.436059, 40.175875 ], [ -75.435781, 40.175638 ], [ -75.43566, 40.175536 ], [ -75.435447, 40.175354 ], [ -75.435234, 40.175172 ], [ -75.435206, 40.175148 ], [ -75.434989, 40.174966 ], [ -75.434842, 40.174842 ], [ -75.434804, 40.17481 ], [ -75.43436, 40.174428 ], [ -75.434306, 40.17438 ], [ -75.434102, 40.174216 ], [ -75.433982, 40.174108 ], [ -75.433915, 40.174088 ], [ -75.433418, 40.173701 ], [ -75.43281, 40.173163 ], [ -75.432625, 40.173004 ], [ -75.432443, 40.172849 ], [ -75.431978, 40.172446 ], [ -75.431767, 40.172278 ], [ -75.431566, 40.172129 ], [ -75.431261, 40.171931 ], [ -75.430788, 40.171625 ], [ -75.430255, 40.171289 ], [ -75.429765, 40.170981 ], [ -75.429705, 40.170943 ], [ -75.428396, 40.17011 ], [ -75.428229, 40.170007 ], [ -75.428004, 40.169875 ], [ -75.427764, 40.169747 ], [ -75.427483, 40.169612 ], [ -75.426926, 40.169352 ], [ -75.426628, 40.169222 ], [ -75.426304, 40.169069 ], [ -75.424936, 40.168457 ], [ -75.424395, 40.168185 ], [ -75.423649, 40.167841 ], [ -75.422584, 40.167358 ], [ -75.420891, 40.166558 ], [ -75.420296, 40.166284 ], [ -75.419772, 40.166049 ], [ -75.419181, 40.165774 ], [ -75.418678, 40.165552 ], [ -75.418548, 40.165496 ], [ -75.41842, 40.165434 ], [ -75.418303, 40.16538 ], [ -75.418205, 40.165332 ], [ -75.418143, 40.165305 ], [ -75.417874, 40.165181 ], [ -75.417698, 40.165101 ], [ -75.417475, 40.164991 ], [ -75.41743, 40.164969 ], [ -75.417384, 40.164943 ], [ -75.417195, 40.164838 ], [ -75.417044, 40.164749 ], [ -75.416899, 40.164669 ], [ -75.416674, 40.164539 ], [ -75.416347, 40.164355 ], [ -75.415811, 40.164028 ], [ -75.41496, 40.163509 ], [ -75.414562, 40.163261 ], [ -75.41427, 40.163071 ], [ -75.413811, 40.162798 ], [ -75.413529, 40.16263 ], [ -75.413446, 40.162583 ], [ -75.412915, 40.162265 ], [ -75.412574, 40.162063 ], [ -75.411908, 40.161674 ], [ -75.411879, 40.161624 ], [ -75.411706, 40.161515 ], [ -75.411328, 40.161279 ], [ -75.410769, 40.160951 ], [ -75.410344, 40.160699 ], [ -75.410065, 40.160533 ], [ -75.409808, 40.160388 ], [ -75.409474, 40.160208 ], [ -75.409246, 40.16009 ], [ -75.408974, 40.159949 ], [ -75.408901, 40.159943 ], [ -75.408523, 40.159746 ], [ -75.408324, 40.159635 ], [ -75.408383, 40.159543 ], [ -75.408408, 40.159513 ], [ -75.408493, 40.159408 ], [ -75.408913, 40.158981 ], [ -75.409317, 40.158592 ], [ -75.409857, 40.158086 ], [ -75.410161, 40.157793 ], [ -75.410371, 40.157579 ], [ -75.411309, 40.15664 ], [ -75.411719, 40.156859 ], [ -75.412029, 40.157 ], [ -75.412238, 40.157019 ], [ -75.412313, 40.157027 ], [ -75.412483, 40.157027 ], [ -75.412624, 40.157024 ], [ -75.412872, 40.157014 ], [ -75.413029, 40.157012 ], [ -75.413136, 40.157008 ], [ -75.413243, 40.157014 ], [ -75.413321, 40.157016 ], [ -75.413397, 40.157027 ], [ -75.413457, 40.157039 ], [ -75.413529, 40.157058 ], [ -75.413569, 40.157072 ], [ -75.4136, 40.157084 ], [ -75.413665, 40.157118 ], [ -75.414127, 40.157396 ], [ -75.414407, 40.157567 ], [ -75.414701, 40.157751 ], [ -75.414968, 40.15791 ], [ -75.415056, 40.157965 ], [ -75.415123, 40.158001 ], [ -75.415213, 40.158044 ], [ -75.415275, 40.158072 ], [ -75.415347, 40.158097 ], [ -75.415407, 40.15811 ], [ -75.415467, 40.158117 ], [ -75.415531, 40.158117 ], [ -75.415584, 40.158114 ], [ -75.415641, 40.15811 ], [ -75.4157, 40.158103 ], [ -75.415773, 40.158094 ], [ -75.415846, 40.158069 ], [ -75.415916, 40.158041 ], [ -75.415982, 40.158007 ], [ -75.416018, 40.157983 ], [ -75.416046, 40.157964 ], [ -75.416102, 40.15792 ], [ -75.416136, 40.157883 ], [ -75.416159, 40.157855 ], [ -75.41619, 40.157818 ], [ -75.416238, 40.157755 ], [ -75.416293, 40.15768 ], [ -75.41632, 40.157638 ], [ -75.416362, 40.157588 ], [ -75.416406, 40.157534 ], [ -75.416538, 40.157419 ], [ -75.416738, 40.157309 ], [ -75.417014, 40.157216 ], [ -75.417327, 40.157153 ], [ -75.417537, 40.157132 ], [ -75.417767, 40.15715 ], [ -75.418052, 40.157187 ], [ -75.41825, 40.157233 ], [ -75.418562, 40.157356 ], [ -75.418697, 40.157425 ], [ -75.418855, 40.15753 ], [ -75.419015, 40.157663 ], [ -75.419235, 40.157872 ], [ -75.419313, 40.15797 ], [ -75.419812, 40.158533 ], [ -75.419981, 40.158685 ], [ -75.420114, 40.158764 ], [ -75.420287, 40.158835 ], [ -75.420452, 40.158862 ], [ -75.420848, 40.158896 ], [ -75.420987, 40.159187 ], [ -75.421201, 40.159405 ], [ -75.42144, 40.159548 ], [ -75.421758, 40.159648 ], [ -75.422001, 40.159669 ], [ -75.422101, 40.159616 ], [ -75.422122, 40.159526 ], [ -75.422037, 40.158791 ], [ -75.421954, 40.157931 ], [ -75.421783, 40.157956 ], [ -75.421498, 40.158031 ], [ -75.421262, 40.158145 ], [ -75.421037, 40.158366 ], [ -75.420905, 40.158602 ], [ -75.420848, 40.158896 ], [ -75.420452, 40.158862 ], [ -75.420287, 40.158835 ], [ -75.420114, 40.158764 ], [ -75.419981, 40.158685 ], [ -75.419812, 40.158533 ], [ -75.419313, 40.15797 ], [ -75.419235, 40.157872 ], [ -75.419015, 40.157663 ], [ -75.418855, 40.15753 ], [ -75.418697, 40.157425 ], [ -75.418562, 40.157356 ], [ -75.41825, 40.157233 ], [ -75.418052, 40.157187 ], [ -75.417767, 40.15715 ], [ -75.417537, 40.157132 ], [ -75.417327, 40.157153 ], [ -75.417014, 40.157216 ], [ -75.416738, 40.157309 ], [ -75.416538, 40.157419 ], [ -75.416406, 40.157534 ], [ -75.416362, 40.157588 ], [ -75.41632, 40.157638 ], [ -75.416293, 40.15768 ], [ -75.416238, 40.157755 ], [ -75.41619, 40.157818 ], [ -75.416159, 40.157855 ], [ -75.416136, 40.157883 ], [ -75.416102, 40.15792 ], [ -75.416046, 40.157964 ], [ -75.416018, 40.157983 ], [ -75.415982, 40.158007 ], [ -75.415916, 40.158041 ], [ -75.415846, 40.158069 ], [ -75.415773, 40.158094 ], [ -75.4157, 40.158103 ], [ -75.415641, 40.15811 ], [ -75.415584, 40.158114 ], [ -75.415531, 40.158117 ], [ -75.415467, 40.158117 ], [ -75.415407, 40.15811 ], [ -75.415347, 40.158097 ], [ -75.415275, 40.158072 ], [ -75.415213, 40.158044 ], [ -75.415123, 40.158001 ], [ -75.415056, 40.157965 ], [ -75.414968, 40.15791 ], [ -75.414701, 40.157751 ], [ -75.414407, 40.157567 ], [ -75.414127, 40.157396 ], [ -75.413665, 40.157118 ], [ -75.4136, 40.157084 ], [ -75.413569, 40.157072 ], [ -75.413529, 40.157058 ], [ -75.413457, 40.157039 ], [ -75.413397, 40.157027 ], [ -75.413321, 40.157016 ], [ -75.413243, 40.157014 ], [ -75.413136, 40.157008 ], [ -75.413029, 40.157012 ], [ -75.412872, 40.157014 ], [ -75.412624, 40.157024 ], [ -75.412483, 40.157027 ], [ -75.412313, 40.157027 ], [ -75.412238, 40.157019 ], [ -75.412168, 40.157008 ], [ -75.412238, 40.157019 ], [ -75.412029, 40.157 ], [ -75.411719, 40.156859 ], [ -75.411309, 40.15664 ], [ -75.410371, 40.157579 ], [ -75.410161, 40.157793 ], [ -75.409857, 40.158086 ], [ -75.409317, 40.158592 ], [ -75.408913, 40.158981 ], [ -75.408493, 40.159408 ], [ -75.408408, 40.159513 ], [ -75.408383, 40.159543 ], [ -75.408324, 40.159635 ], [ -75.407678, 40.15929 ], [ -75.407242, 40.159057 ], [ -75.407052, 40.158957 ], [ -75.406312, 40.158557 ], [ -75.405377, 40.158017 ], [ -75.405124, 40.157856 ], [ -75.404936, 40.15774 ], [ -75.404882, 40.157706 ], [ -75.404628, 40.157558 ], [ -75.404433, 40.157444 ], [ -75.404186, 40.157308 ], [ -75.404147, 40.157278 ], [ -75.403617, 40.156972 ], [ -75.403528, 40.156921 ], [ -75.403308, 40.156784 ], [ -75.403074, 40.156633 ], [ -75.402805, 40.156467 ], [ -75.402628, 40.156357 ], [ -75.402095, 40.156028 ], [ -75.401868, 40.155879 ], [ -75.40126, 40.155484 ], [ -75.400964, 40.155283 ], [ -75.400942, 40.155268 ], [ -75.40071, 40.155115 ], [ -75.400671, 40.15509 ], [ -75.400638, 40.155069 ], [ -75.400341, 40.154834 ], [ -75.400278, 40.154779 ], [ -75.4002, 40.154707 ], [ -75.40006, 40.154585 ], [ -75.399944, 40.154475 ], [ -75.399861, 40.154386 ], [ -75.399606, 40.15412 ], [ -75.399427, 40.153925 ], [ -75.399185, 40.153619 ], [ -75.39912, 40.153528 ], [ -75.399005, 40.153356 ], [ -75.398895, 40.153161 ], [ -75.398836, 40.153072 ], [ -75.398759, 40.15292 ], [ -75.398692, 40.152783 ], [ -75.398543, 40.152443 ], [ -75.398484, 40.152305 ], [ -75.398457, 40.15224 ], [ -75.398428, 40.152165 ], [ -75.398382, 40.152052 ], [ -75.398311, 40.15188 ], [ -75.398271, 40.151795 ], [ -75.398033, 40.151275 ], [ -75.397997, 40.151204 ], [ -75.397844, 40.150925 ], [ -75.397769, 40.150773 ], [ -75.397606, 40.150444 ], [ -75.397417, 40.15008 ], [ -75.396907, 40.149192 ], [ -75.396738, 40.148917 ], [ -75.39643, 40.148348 ], [ -75.396324, 40.148162 ], [ -75.396179, 40.147931 ], [ -75.396122, 40.147857 ], [ -75.396062, 40.147784 ], [ -75.395866, 40.147538 ], [ -75.395683, 40.147327 ], [ -75.395635, 40.147271 ], [ -75.395625, 40.147259 ], [ -75.395344, 40.146943 ], [ -75.395229, 40.146809 ], [ -75.39491, 40.146483 ], [ -75.394862, 40.146432 ], [ -75.394774, 40.146325 ], [ -75.394233, 40.14568 ], [ -75.394159, 40.145606 ], [ -75.394093, 40.145542 ], [ -75.394005, 40.145465 ], [ -75.393794, 40.145288 ], [ -75.393588, 40.145126 ], [ -75.392825, 40.144546 ], [ -75.392423, 40.144254 ], [ -75.392004, 40.143941 ], [ -75.39111, 40.143246 ], [ -75.390447, 40.142738 ], [ -75.390246, 40.142584 ], [ -75.390117, 40.142485 ], [ -75.389952, 40.142358 ], [ -75.3898, 40.142241 ], [ -75.389341, 40.14191 ], [ -75.389055, 40.141703 ], [ -75.388995, 40.14166 ], [ -75.388235, 40.14113 ], [ -75.387552, 40.140656 ], [ -75.387179, 40.14039 ], [ -75.387033, 40.140284 ], [ -75.386783, 40.140086 ], [ -75.386578, 40.139906 ], [ -75.386411, 40.139753 ], [ -75.385742, 40.139154 ], [ -75.385452, 40.138885 ], [ -75.385178, 40.138652 ], [ -75.384988, 40.138483 ], [ -75.383988, 40.137591 ], [ -75.383549, 40.137194 ], [ -75.383054, 40.136751 ], [ -75.382524, 40.136267 ], [ -75.382115, 40.135904 ], [ -75.38192, 40.135738 ], [ -75.381591, 40.135459 ], [ -75.381147, 40.135073 ], [ -75.380298, 40.134339 ], [ -75.379683, 40.133804 ], [ -75.379356, 40.133519 ], [ -75.378844, 40.133064 ], [ -75.378618, 40.132861 ], [ -75.378457, 40.132719 ], [ -75.378359, 40.13263 ], [ -75.378277, 40.13258 ], [ -75.377989, 40.132425 ], [ -75.377697, 40.132262 ], [ -75.377294, 40.132036 ], [ -75.376811, 40.131758 ], [ -75.375727, 40.131142 ], [ -75.375283, 40.130889 ], [ -75.375027, 40.130742 ], [ -75.374761, 40.130589 ], [ -75.374519, 40.130449 ], [ -75.374039, 40.130176 ], [ -75.373415, 40.129828 ], [ -75.373139, 40.129661 ], [ -75.372506, 40.129307 ], [ -75.372422, 40.12926 ], [ -75.372146, 40.129107 ], [ -75.371847, 40.128935 ], [ -75.371057, 40.128481 ], [ -75.370699, 40.128268 ], [ -75.369467, 40.127565 ], [ -75.3684, 40.126936 ], [ -75.367721, 40.126543 ], [ -75.366753, 40.125988 ], [ -75.365828, 40.125456 ], [ -75.364535, 40.124705 ], [ -75.363573, 40.124151 ], [ -75.363003, 40.123828 ], [ -75.362521, 40.123554 ], [ -75.362414, 40.123498 ], [ -75.362269, 40.123415 ], [ -75.361867, 40.123184 ], [ -75.361545, 40.122999 ], [ -75.361265, 40.122838 ], [ -75.360601, 40.122423 ], [ -75.359387, 40.121722 ], [ -75.358156, 40.121021 ], [ -75.356945, 40.120326 ], [ -75.356434, 40.120034 ], [ -75.356163, 40.119884 ], [ -75.355967, 40.119783 ], [ -75.355909, 40.119755 ], [ -75.35584, 40.119721 ], [ -75.355668, 40.119647 ], [ -75.355544, 40.1196 ], [ -75.355436, 40.11956 ], [ -75.355284, 40.119506 ], [ -75.354032, 40.119057 ], [ -75.352545, 40.118529 ], [ -75.352398, 40.118477 ], [ -75.352077, 40.118365 ], [ -75.351991, 40.118334 ], [ -75.351931, 40.118316 ], [ -75.351846, 40.118285 ], [ -75.351773, 40.118255 ], [ -75.351708, 40.118226 ], [ -75.351648, 40.11819 ], [ -75.351574, 40.118148 ], [ -75.351458, 40.118071 ], [ -75.351395, 40.118027 ], [ -75.351261, 40.117937 ], [ -75.351177, 40.117883 ], [ -75.351103, 40.117833 ], [ -75.350861, 40.117672 ], [ -75.350721, 40.117578 ], [ -75.350452, 40.117411 ], [ -75.350408, 40.117388 ], [ -75.350346, 40.117356 ], [ -75.350307, 40.117284 ], [ -75.350229, 40.11722 ], [ -75.350129, 40.11716 ], [ -75.350099, 40.117141 ], [ -75.349977, 40.117064 ], [ -75.349713, 40.11692 ], [ -75.34956, 40.116834 ], [ -75.349477, 40.11679 ], [ -75.349216, 40.116634 ], [ -75.349147, 40.116592 ], [ -75.349041, 40.116515 ], [ -75.348922, 40.116436 ], [ -75.348775, 40.116349 ], [ -75.348693, 40.116301 ], [ -75.348396, 40.116128 ], [ -75.348332, 40.116091 ], [ -75.348185, 40.116013 ], [ -75.348084, 40.115961 ], [ -75.347995, 40.115912 ], [ -75.347885, 40.115859 ], [ -75.347621, 40.115728 ], [ -75.347612, 40.115724 ], [ -75.347601, 40.115721 ], [ -75.347533, 40.115721 ], [ -75.347483, 40.115697 ], [ -75.347946, 40.11493 ], [ -75.347588, 40.114785 ], [ -75.346682, 40.114416 ], [ -75.346111, 40.114201 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307228", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.654644, 40.244599 ], [ -75.654673, 40.244518 ], [ -75.65474, 40.244326 ], [ -75.654414, 40.244243 ], [ -75.654078, 40.244144 ], [ -75.65374, 40.244033 ], [ -75.653326, 40.243893 ], [ -75.653239, 40.24386 ], [ -75.652982, 40.243767 ], [ -75.652022, 40.243355 ], [ -75.651567, 40.243171 ], [ -75.651445, 40.243122 ], [ -75.651013, 40.242917 ], [ -75.650936, 40.243358 ], [ -75.650864, 40.243665 ], [ -75.650807, 40.243927 ], [ -75.650652, 40.244634 ], [ -75.650636, 40.24471 ], [ -75.650607, 40.244799 ], [ -75.650551, 40.245052 ], [ -75.650468, 40.245421 ], [ -75.650415, 40.245675 ], [ -75.649848, 40.245598 ], [ -75.649532, 40.245556 ], [ -75.649341, 40.245532 ], [ -75.648958, 40.245487 ], [ -75.648609, 40.245448 ], [ -75.648039, 40.245385 ], [ -75.647801, 40.245359 ], [ -75.647568, 40.245334 ], [ -75.647006, 40.245252 ], [ -75.646437, 40.24517 ], [ -75.64596, 40.245101 ], [ -75.645795, 40.245083 ], [ -75.644471, 40.244938 ], [ -75.644305, 40.24492 ], [ -75.643398, 40.244797 ], [ -75.643278, 40.24478 ], [ -75.642641, 40.244689 ], [ -75.642198, 40.244626 ], [ -75.641657, 40.244564 ], [ -75.641489, 40.24454 ], [ -75.641012, 40.244481 ], [ -75.639761, 40.244327 ], [ -75.639498, 40.244293 ], [ -75.63922, 40.244257 ], [ -75.63895, 40.244223 ], [ -75.638763, 40.244195 ], [ -75.638542, 40.244168 ], [ -75.637711, 40.244063 ], [ -75.636028, 40.243846 ], [ -75.635027, 40.243741 ], [ -75.634774, 40.243715 ], [ -75.634665, 40.243715 ], [ -75.634529, 40.243721 ], [ -75.63438, 40.243736 ], [ -75.634252, 40.243747 ], [ -75.634183, 40.243753 ], [ -75.633926, 40.243776 ], [ -75.633706, 40.243795 ], [ -75.632975, 40.243857 ], [ -75.631416, 40.243986 ], [ -75.630547, 40.244054 ], [ -75.629061, 40.244169 ], [ -75.628332, 40.244234 ], [ -75.628228, 40.244243 ], [ -75.628098, 40.244253 ], [ -75.627977, 40.244251 ], [ -75.62787, 40.244243 ], [ -75.627726, 40.244222 ], [ -75.627219, 40.244158 ], [ -75.625748, 40.243976 ], [ -75.624506, 40.243843 ], [ -75.623953, 40.243769 ], [ -75.623443, 40.243701 ], [ -75.623207, 40.243671 ], [ -75.622486, 40.243587 ], [ -75.621389, 40.24346 ], [ -75.621147, 40.243426 ], [ -75.619971, 40.243272 ], [ -75.619612, 40.243233 ], [ -75.619288, 40.243219 ], [ -75.61917, 40.243224 ], [ -75.618928, 40.24326 ], [ -75.618695, 40.243296 ], [ -75.6183, 40.243367 ], [ -75.617806, 40.243455 ], [ -75.617568, 40.243496 ], [ -75.617412, 40.243526 ], [ -75.617328, 40.243542 ], [ -75.617075, 40.243594 ], [ -75.616997, 40.243611 ], [ -75.616816, 40.243653 ], [ -75.616571, 40.243718 ], [ -75.616122, 40.243836 ], [ -75.616096, 40.243843 ], [ -75.615916, 40.24389 ], [ -75.615752, 40.243932 ], [ -75.615656, 40.243957 ], [ -75.615567, 40.243978 ], [ -75.61549, 40.243995 ], [ -75.6154, 40.244012 ], [ -75.615302, 40.244027 ], [ -75.615216, 40.244036 ], [ -75.61514, 40.244044 ], [ -75.615074, 40.244052 ], [ -75.614988, 40.244056 ], [ -75.614972, 40.244056 ], [ -75.614807, 40.24406 ], [ -75.614798, 40.244059 ], [ -75.614588, 40.244056 ], [ -75.614389, 40.244044 ], [ -75.614224, 40.244035 ], [ -75.61384, 40.244025 ], [ -75.613588, 40.244007 ], [ -75.613316, 40.244003 ], [ -75.613004, 40.243993 ], [ -75.612871, 40.243987 ], [ -75.612348, 40.243966 ], [ -75.61215, 40.243958 ], [ -75.611938, 40.243953 ], [ -75.611752, 40.243947 ], [ -75.611462, 40.243939 ], [ -75.611111, 40.243942 ], [ -75.610996, 40.243943 ], [ -75.610888, 40.243943 ], [ -75.610723, 40.243947 ], [ -75.610462, 40.243954 ], [ -75.610269, 40.243959 ], [ -75.610061, 40.243964 ], [ -75.609886, 40.243968 ], [ -75.609419, 40.243978 ], [ -75.609025, 40.243988 ], [ -75.608792, 40.243996 ], [ -75.608339, 40.244012 ], [ -75.608047, 40.244027 ], [ -75.603955, 40.244234 ], [ -75.603588, 40.24425 ], [ -75.602652, 40.244275 ], [ -75.601793, 40.244309 ], [ -75.601272, 40.244329 ], [ -75.601053, 40.244339 ], [ -75.600996, 40.244341 ], [ -75.600747, 40.244374 ], [ -75.600502, 40.24442 ], [ -75.600164, 40.244484 ], [ -75.599982, 40.244522 ], [ -75.599602, 40.2446 ], [ -75.599002, 40.244726 ], [ -75.598834, 40.244761 ], [ -75.598666, 40.244789 ], [ -75.598451, 40.244816 ], [ -75.598111, 40.24485 ], [ -75.598009, 40.244856 ], [ -75.597079, 40.24492 ], [ -75.597009, 40.244925 ], [ -75.596362, 40.24498 ], [ -75.59561, 40.245044 ], [ -75.595328, 40.245062 ], [ -75.595098, 40.245079 ], [ -75.594929, 40.245084 ], [ -75.594792, 40.245086 ], [ -75.59464, 40.245086 ], [ -75.594493, 40.245078 ], [ -75.594141, 40.245056 ], [ -75.593717, 40.24503 ], [ -75.593053, 40.244993 ], [ -75.592282, 40.244946 ], [ -75.591382, 40.244862 ], [ -75.590913, 40.244816 ], [ -75.590324, 40.244766 ], [ -75.589527, 40.244706 ], [ -75.589293, 40.244692 ], [ -75.58827, 40.244631 ], [ -75.587826, 40.244603 ], [ -75.58735, 40.244576 ], [ -75.586644, 40.244525 ], [ -75.586424, 40.24451 ], [ -75.58615, 40.244493 ], [ -75.586047, 40.244488 ], [ -75.585494, 40.24443 ], [ -75.58519, 40.244397 ], [ -75.584942, 40.24437 ], [ -75.584494, 40.244338 ], [ -75.584411, 40.244332 ], [ -75.582851, 40.244218 ], [ -75.582377, 40.244186 ], [ -75.582017, 40.24417 ], [ -75.581664, 40.24415 ], [ -75.580935, 40.244133 ], [ -75.580203, 40.244127 ], [ -75.5789, 40.244104 ], [ -75.578223, 40.244081 ], [ -75.57687, 40.243998 ], [ -75.576307, 40.243963 ], [ -75.575921, 40.243951 ], [ -75.575815, 40.243976 ], [ -75.575623, 40.243959 ], [ -75.575196, 40.243923 ], [ -75.574889, 40.243893 ], [ -75.574395, 40.243874 ], [ -75.574253, 40.243859 ], [ -75.574074, 40.243853 ], [ -75.573817, 40.243833 ], [ -75.573717, 40.243825 ], [ -75.573217, 40.24378 ], [ -75.57272, 40.243755 ], [ -75.572399, 40.24372 ], [ -75.572069, 40.243694 ], [ -75.571382, 40.243648 ], [ -75.570781, 40.243613 ], [ -75.570416, 40.243584 ], [ -75.569257, 40.243502 ], [ -75.569121, 40.243495 ], [ -75.568832, 40.243482 ], [ -75.567706, 40.243407 ], [ -75.567068, 40.243362 ], [ -75.56699, 40.243357 ], [ -75.566537, 40.243325 ], [ -75.56636, 40.24331 ], [ -75.566276, 40.243268 ], [ -75.565811, 40.243245 ], [ -75.565287, 40.243217 ], [ -75.563935, 40.243129 ], [ -75.563569, 40.243103 ], [ -75.562412, 40.243022 ], [ -75.561731, 40.242975 ], [ -75.561044, 40.242939 ], [ -75.560947, 40.242934 ], [ -75.559783, 40.24287 ], [ -75.558934, 40.242841 ], [ -75.558335, 40.242819 ], [ -75.55708, 40.242742 ], [ -75.556986, 40.242736 ], [ -75.554875, 40.242597 ], [ -75.553377, 40.242491 ], [ -75.55227, 40.242402 ], [ -75.549223, 40.242155 ], [ -75.549076, 40.242144 ], [ -75.548493, 40.242103 ], [ -75.548368, 40.24209 ], [ -75.548044, 40.242058 ], [ -75.547669, 40.24202 ], [ -75.547372, 40.24199 ], [ -75.547024, 40.241955 ], [ -75.546664, 40.241905 ], [ -75.546417, 40.241855 ], [ -75.546152, 40.241794 ], [ -75.545845, 40.241718 ], [ -75.545491, 40.241608 ], [ -75.545368, 40.241569 ], [ -75.545251, 40.241529 ], [ -75.545028, 40.241444 ], [ -75.544829, 40.241358 ], [ -75.54441, 40.241154 ], [ -75.544201, 40.241038 ], [ -75.544044, 40.24095 ], [ -75.543875, 40.240856 ], [ -75.543357, 40.240568 ], [ -75.542733, 40.240205 ], [ -75.54166, 40.239581 ], [ -75.540689, 40.239018 ], [ -75.540149, 40.238709 ], [ -75.539908, 40.238574 ], [ -75.539619, 40.238407 ], [ -75.539424, 40.238292 ], [ -75.538792, 40.237927 ], [ -75.53869, 40.237871 ], [ -75.538533, 40.237781 ], [ -75.538393, 40.237712 ], [ -75.537943, 40.237446 ], [ -75.537532, 40.237211 ], [ -75.537092, 40.236952 ], [ -75.536562, 40.236663 ], [ -75.536435, 40.236593 ], [ -75.535555, 40.236086 ], [ -75.534625, 40.235561 ], [ -75.534611, 40.235552 ], [ -75.534355, 40.235408 ], [ -75.534068, 40.235244 ], [ -75.533935, 40.235175 ], [ -75.533784, 40.235088 ], [ -75.533489, 40.234918 ], [ -75.533161, 40.23473 ], [ -75.532567, 40.234403 ], [ -75.532314, 40.234266 ], [ -75.532033, 40.234145 ], [ -75.531784, 40.234045 ], [ -75.531486, 40.233944 ], [ -75.531183, 40.23385 ], [ -75.530886, 40.233758 ], [ -75.530644, 40.233689 ], [ -75.530442, 40.233632 ], [ -75.530223, 40.233567 ], [ -75.529677, 40.233407 ], [ -75.529133, 40.233247 ], [ -75.529021, 40.233213 ], [ -75.528652, 40.233103 ], [ -75.528455, 40.233044 ], [ -75.527958, 40.232895 ], [ -75.527761, 40.232835 ], [ -75.527182, 40.232665 ], [ -75.526711, 40.23253 ], [ -75.526537, 40.23248 ], [ -75.526466, 40.232459 ], [ -75.52637, 40.23243 ], [ -75.525942, 40.2323 ], [ -75.525828, 40.232264 ], [ -75.52547, 40.232171 ], [ -75.52501, 40.23205 ], [ -75.52469, 40.231958 ], [ -75.524206, 40.231802 ], [ -75.523957, 40.231725 ], [ -75.523589, 40.231611 ], [ -75.523453, 40.231574 ], [ -75.523332, 40.231542 ], [ -75.523142, 40.231483 ], [ -75.523004, 40.23144 ], [ -75.522883, 40.231396 ], [ -75.522788, 40.231357 ], [ -75.522679, 40.23131 ], [ -75.522595, 40.231271 ], [ -75.522373, 40.231153 ], [ -75.52222, 40.231071 ], [ -75.5221, 40.231004 ], [ -75.521772, 40.230824 ], [ -75.520415, 40.230085 ], [ -75.519614, 40.229655 ], [ -75.519271, 40.22947 ], [ -75.51911, 40.229381 ], [ -75.518975, 40.229302 ], [ -75.51879, 40.229191 ], [ -75.518697, 40.229133 ], [ -75.518621, 40.229079 ], [ -75.51851, 40.228988 ], [ -75.51843, 40.228913 ], [ -75.518292, 40.228784 ], [ -75.518007, 40.228459 ], [ -75.517737, 40.22814 ], [ -75.517726, 40.228127 ], [ -75.517464, 40.227818 ], [ -75.517301, 40.227624 ], [ -75.516925, 40.227176 ], [ -75.516399, 40.226526 ], [ -75.51626, 40.226359 ], [ -75.515879, 40.225904 ], [ -75.51575, 40.225749 ], [ -75.515377, 40.225303 ], [ -75.5152, 40.225083 ], [ -75.514938, 40.224766 ], [ -75.514406, 40.224123 ], [ -75.514104, 40.223765 ], [ -75.513965, 40.223605 ], [ -75.513742, 40.223352 ], [ -75.513652, 40.223251 ], [ -75.513571, 40.223167 ], [ -75.513447, 40.223046 ], [ -75.513359, 40.222969 ], [ -75.513196, 40.222823 ], [ -75.513049, 40.222714 ], [ -75.512959, 40.222651 ], [ -75.512879, 40.222597 ], [ -75.512765, 40.222523 ], [ -75.512628, 40.222437 ], [ -75.512534, 40.222386 ], [ -75.511783, 40.221953 ], [ -75.511369, 40.221708 ], [ -75.511101, 40.221551 ], [ -75.510963, 40.22147 ], [ -75.510425, 40.221158 ], [ -75.509857, 40.220825 ], [ -75.509628, 40.220699 ], [ -75.508116, 40.21981 ], [ -75.503558, 40.217222 ], [ -75.503213, 40.217018 ], [ -75.503033, 40.216912 ], [ -75.502873, 40.216818 ], [ -75.502361, 40.216516 ], [ -75.501792, 40.21618 ], [ -75.501656, 40.2161 ], [ -75.50141, 40.215955 ], [ -75.501102, 40.215762 ], [ -75.500632, 40.215468 ], [ -75.500328, 40.215277 ], [ -75.499754, 40.214918 ], [ -75.499433, 40.214704 ], [ -75.499237, 40.214571 ], [ -75.498881, 40.21433 ], [ -75.49843, 40.214092 ], [ -75.498161, 40.21394 ], [ -75.49793, 40.213812 ], [ -75.497778, 40.21373 ], [ -75.49771, 40.213695 ], [ -75.497283, 40.213391 ], [ -75.497192, 40.213324 ], [ -75.497031, 40.213226 ], [ -75.496321, 40.212809 ], [ -75.49569, 40.212419 ], [ -75.495283, 40.212156 ], [ -75.494851, 40.21187 ], [ -75.493539, 40.211154 ], [ -75.492881, 40.210798 ], [ -75.4925, 40.210564 ], [ -75.49213, 40.210318 ], [ -75.491389, 40.209766 ], [ -75.490644, 40.209144 ], [ -75.490153, 40.208728 ], [ -75.489902, 40.208517 ], [ -75.489679, 40.208341 ], [ -75.488535, 40.207335 ], [ -75.488449, 40.207254 ], [ -75.488353, 40.20716 ], [ -75.488287, 40.207094 ], [ -75.488138, 40.206939 ], [ -75.487397, 40.206157 ], [ -75.486415, 40.205096 ], [ -75.485897, 40.20455 ], [ -75.485694, 40.204355 ], [ -75.485468, 40.204139 ], [ -75.484783, 40.203489 ], [ -75.484304, 40.203055 ], [ -75.484087, 40.20286 ], [ -75.483963, 40.202753 ], [ -75.483858, 40.202674 ], [ -75.483643, 40.202516 ], [ -75.483423, 40.202369 ], [ -75.482852, 40.20198 ], [ -75.482458, 40.20172 ], [ -75.4823, 40.201623 ], [ -75.482191, 40.201558 ], [ -75.482025, 40.201464 ], [ -75.481782, 40.201336 ], [ -75.481203, 40.201057 ], [ -75.480913, 40.200913 ], [ -75.480565, 40.200755 ], [ -75.479322, 40.200196 ], [ -75.478134, 40.199653 ], [ -75.477692, 40.199459 ], [ -75.477516, 40.19938 ], [ -75.477477, 40.199364 ], [ -75.477265, 40.199276 ], [ -75.476776, 40.199054 ], [ -75.476707, 40.199022 ], [ -75.476621, 40.198987 ], [ -75.476063, 40.198757 ], [ -75.475786, 40.198643 ], [ -75.475245, 40.198417 ], [ -75.475151, 40.198377 ], [ -75.475088, 40.198353 ], [ -75.475017, 40.198324 ], [ -75.47426, 40.19801 ], [ -75.474008, 40.197901 ], [ -75.47269, 40.197341 ], [ -75.471745, 40.196939 ], [ -75.471026, 40.196633 ], [ -75.470471, 40.196408 ], [ -75.470404, 40.196325 ], [ -75.470361, 40.196304 ], [ -75.470064, 40.196183 ], [ -75.468783, 40.19565 ], [ -75.468181, 40.195399 ], [ -75.46799, 40.195325 ], [ -75.467618, 40.19518 ], [ -75.467236, 40.195018 ], [ -75.466738, 40.194816 ], [ -75.466462, 40.194697 ], [ -75.466372, 40.194668 ], [ -75.466219, 40.194669 ], [ -75.466091, 40.194614 ], [ -75.46516, 40.194222 ], [ -75.464541, 40.193953 ], [ -75.463984, 40.193729 ], [ -75.463546, 40.193553 ], [ -75.462868, 40.193264 ], [ -75.462322, 40.193034 ], [ -75.462199, 40.192984 ], [ -75.461871, 40.19285 ], [ -75.46154, 40.192714 ], [ -75.461081, 40.192526 ], [ -75.460642, 40.19234 ], [ -75.459655, 40.191937 ], [ -75.45826, 40.191347 ], [ -75.457473, 40.191032 ], [ -75.45676, 40.190722 ], [ -75.456623, 40.190663 ], [ -75.456419, 40.190582 ], [ -75.456328, 40.190546 ], [ -75.456216, 40.190493 ], [ -75.455964, 40.190377 ], [ -75.455805, 40.190306 ], [ -75.455447, 40.190122 ], [ -75.455096, 40.189903 ], [ -75.454988, 40.189825 ], [ -75.454827, 40.189717 ], [ -75.454731, 40.189636 ], [ -75.454648, 40.189571 ], [ -75.454527, 40.189472 ], [ -75.454417, 40.189363 ], [ -75.454315, 40.189246 ], [ -75.454231, 40.189135 ], [ -75.453862, 40.188665 ], [ -75.453631, 40.188364 ], [ -75.453332, 40.187986 ], [ -75.452816, 40.187329 ], [ -75.452235, 40.186602 ], [ -75.452094, 40.186426 ], [ -75.451974, 40.186274 ], [ -75.451881, 40.186157 ], [ -75.451809, 40.186083 ], [ -75.451709, 40.185987 ], [ -75.451673, 40.185953 ], [ -75.451645, 40.185935 ], [ -75.451592, 40.185896 ], [ -75.451507, 40.185831 ], [ -75.451436, 40.185776 ], [ -75.45141, 40.185756 ], [ -75.451373, 40.185727 ], [ -75.451293, 40.18567 ], [ -75.450854, 40.185376 ], [ -75.450748, 40.185304 ], [ -75.450687, 40.185263 ], [ -75.45064, 40.185242 ], [ -75.450576, 40.185216 ], [ -75.450513, 40.185196 ], [ -75.450348, 40.185147 ], [ -75.450038, 40.185057 ], [ -75.449796, 40.184988 ], [ -75.449513, 40.18489 ], [ -75.449362, 40.18481 ], [ -75.449263, 40.184752 ], [ -75.449173, 40.184688 ], [ -75.449093, 40.184614 ], [ -75.449034, 40.184559 ], [ -75.448974, 40.184496 ], [ -75.448914, 40.184425 ], [ -75.448826, 40.184335 ], [ -75.448786, 40.184302 ], [ -75.448762, 40.184285 ], [ -75.44872, 40.184267 ], [ -75.448644, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448487, 40.184247 ], [ -75.448314, 40.184261 ], [ -75.44823, 40.184267 ], [ -75.448004, 40.184296 ], [ -75.447925, 40.184306 ], [ -75.447659, 40.184331 ], [ -75.447456, 40.18435 ], [ -75.447238, 40.184359 ], [ -75.447056, 40.184353 ], [ -75.446947, 40.18434 ], [ -75.446835, 40.184324 ], [ -75.446727, 40.184294 ], [ -75.446608, 40.184254 ], [ -75.446426, 40.184171 ], [ -75.446378, 40.184146 ], [ -75.446191, 40.184049 ], [ -75.445927, 40.183913 ], [ -75.445547, 40.183715 ], [ -75.445432, 40.183656 ], [ -75.445314, 40.183594 ], [ -75.445066, 40.183466 ], [ -75.444992, 40.183429 ], [ -75.444925, 40.183404 ], [ -75.444705, 40.183282 ], [ -75.444392, 40.183062 ], [ -75.444111, 40.182822 ], [ -75.443729, 40.182491 ], [ -75.443167, 40.182019 ], [ -75.442956, 40.181825 ], [ -75.442907, 40.181781 ], [ -75.442652, 40.181559 ], [ -75.442512, 40.181436 ], [ -75.441769, 40.1808 ], [ -75.441104, 40.180237 ], [ -75.43992, 40.179232 ], [ -75.439769, 40.179094 ], [ -75.438712, 40.178185 ], [ -75.437848, 40.17745 ], [ -75.437788, 40.177402 ], [ -75.437725, 40.177348 ], [ -75.437563, 40.177215 ], [ -75.437018, 40.176759 ], [ -75.436992, 40.176737 ], [ -75.436981, 40.176677 ], [ -75.436977, 40.176665 ], [ -75.436968, 40.176654 ], [ -75.436897, 40.176601 ], [ -75.436528, 40.176274 ], [ -75.436466, 40.176221 ], [ -75.436059, 40.175875 ], [ -75.435781, 40.175638 ], [ -75.43566, 40.175536 ], [ -75.435447, 40.175354 ], [ -75.435234, 40.175172 ], [ -75.435206, 40.175148 ], [ -75.434989, 40.174966 ], [ -75.434842, 40.174842 ], [ -75.434804, 40.17481 ], [ -75.43436, 40.174428 ], [ -75.434306, 40.17438 ], [ -75.434102, 40.174216 ], [ -75.433982, 40.174108 ], [ -75.433915, 40.174088 ], [ -75.433418, 40.173701 ], [ -75.43281, 40.173163 ], [ -75.432625, 40.173004 ], [ -75.432443, 40.172849 ], [ -75.431978, 40.172446 ], [ -75.431767, 40.172278 ], [ -75.431566, 40.172129 ], [ -75.431261, 40.171931 ], [ -75.430788, 40.171625 ], [ -75.430255, 40.171289 ], [ -75.429765, 40.170981 ], [ -75.429705, 40.170943 ], [ -75.428396, 40.17011 ], [ -75.428229, 40.170007 ], [ -75.428004, 40.169875 ], [ -75.427764, 40.169747 ], [ -75.427483, 40.169612 ], [ -75.426926, 40.169352 ], [ -75.426628, 40.169222 ], [ -75.426304, 40.169069 ], [ -75.424936, 40.168457 ], [ -75.424395, 40.168185 ], [ -75.423649, 40.167841 ], [ -75.422584, 40.167358 ], [ -75.420891, 40.166558 ], [ -75.420296, 40.166284 ], [ -75.419772, 40.166049 ], [ -75.419181, 40.165774 ], [ -75.418678, 40.165552 ], [ -75.418548, 40.165496 ], [ -75.41842, 40.165434 ], [ -75.418303, 40.16538 ], [ -75.418205, 40.165332 ], [ -75.418143, 40.165305 ], [ -75.417874, 40.165181 ], [ -75.417698, 40.165101 ], [ -75.417475, 40.164991 ], [ -75.41743, 40.164969 ], [ -75.417384, 40.164943 ], [ -75.417195, 40.164838 ], [ -75.417044, 40.164749 ], [ -75.416899, 40.164669 ], [ -75.416674, 40.164539 ], [ -75.416347, 40.164355 ], [ -75.415811, 40.164028 ], [ -75.41496, 40.163509 ], [ -75.414562, 40.163261 ], [ -75.41427, 40.163071 ], [ -75.413811, 40.162798 ], [ -75.413529, 40.16263 ], [ -75.413446, 40.162583 ], [ -75.412915, 40.162265 ], [ -75.412574, 40.162063 ], [ -75.411908, 40.161674 ], [ -75.411879, 40.161624 ], [ -75.411706, 40.161515 ], [ -75.411328, 40.161279 ], [ -75.410769, 40.160951 ], [ -75.410344, 40.160699 ], [ -75.410065, 40.160533 ], [ -75.409808, 40.160388 ], [ -75.409474, 40.160208 ], [ -75.409246, 40.16009 ], [ -75.408974, 40.159949 ], [ -75.408901, 40.159943 ], [ -75.408523, 40.159746 ], [ -75.408324, 40.159635 ], [ -75.407678, 40.15929 ], [ -75.407242, 40.159057 ], [ -75.407052, 40.158957 ], [ -75.406312, 40.158557 ], [ -75.405377, 40.158017 ], [ -75.405124, 40.157856 ], [ -75.404936, 40.15774 ], [ -75.404882, 40.157706 ], [ -75.404628, 40.157558 ], [ -75.404433, 40.157444 ], [ -75.404186, 40.157308 ], [ -75.404147, 40.157278 ], [ -75.403617, 40.156972 ], [ -75.403528, 40.156921 ], [ -75.403308, 40.156784 ], [ -75.403074, 40.156633 ], [ -75.402805, 40.156467 ], [ -75.402628, 40.156357 ], [ -75.402095, 40.156028 ], [ -75.401868, 40.155879 ], [ -75.40126, 40.155484 ], [ -75.400964, 40.155283 ], [ -75.400942, 40.155268 ], [ -75.40071, 40.155115 ], [ -75.400671, 40.15509 ], [ -75.400638, 40.155069 ], [ -75.400341, 40.154834 ], [ -75.400278, 40.154779 ], [ -75.4002, 40.154707 ], [ -75.40006, 40.154585 ], [ -75.399944, 40.154475 ], [ -75.399861, 40.154386 ], [ -75.399606, 40.15412 ], [ -75.399427, 40.153925 ], [ -75.399185, 40.153619 ], [ -75.39912, 40.153528 ], [ -75.399005, 40.153356 ], [ -75.398895, 40.153161 ], [ -75.398836, 40.153072 ], [ -75.398759, 40.15292 ], [ -75.398692, 40.152783 ], [ -75.398543, 40.152443 ], [ -75.398484, 40.152305 ], [ -75.398457, 40.15224 ], [ -75.398428, 40.152165 ], [ -75.398382, 40.152052 ], [ -75.398311, 40.15188 ], [ -75.398271, 40.151795 ], [ -75.398033, 40.151275 ], [ -75.397997, 40.151204 ], [ -75.397844, 40.150925 ], [ -75.397769, 40.150773 ], [ -75.397606, 40.150444 ], [ -75.397417, 40.15008 ], [ -75.396907, 40.149192 ], [ -75.396738, 40.148917 ], [ -75.39643, 40.148348 ], [ -75.396324, 40.148162 ], [ -75.396179, 40.147931 ], [ -75.396122, 40.147857 ], [ -75.396062, 40.147784 ], [ -75.395866, 40.147538 ], [ -75.395683, 40.147327 ], [ -75.395635, 40.147271 ], [ -75.395625, 40.147259 ], [ -75.395344, 40.146943 ], [ -75.395229, 40.146809 ], [ -75.39491, 40.146483 ], [ -75.394862, 40.146432 ], [ -75.394774, 40.146325 ], [ -75.394233, 40.14568 ], [ -75.394159, 40.145606 ], [ -75.394093, 40.145542 ], [ -75.394005, 40.145465 ], [ -75.393794, 40.145288 ], [ -75.393588, 40.145126 ], [ -75.392825, 40.144546 ], [ -75.392423, 40.144254 ], [ -75.392004, 40.143941 ], [ -75.39111, 40.143246 ], [ -75.390447, 40.142738 ], [ -75.390246, 40.142584 ], [ -75.390117, 40.142485 ], [ -75.389952, 40.142358 ], [ -75.3898, 40.142241 ], [ -75.389341, 40.14191 ], [ -75.389055, 40.141703 ], [ -75.388995, 40.14166 ], [ -75.388235, 40.14113 ], [ -75.387552, 40.140656 ], [ -75.387179, 40.14039 ], [ -75.387033, 40.140284 ], [ -75.386783, 40.140086 ], [ -75.386578, 40.139906 ], [ -75.386411, 40.139753 ], [ -75.385742, 40.139154 ], [ -75.385452, 40.138885 ], [ -75.385178, 40.138652 ], [ -75.384988, 40.138483 ], [ -75.383988, 40.137591 ], [ -75.383549, 40.137194 ], [ -75.383054, 40.136751 ], [ -75.382524, 40.136267 ], [ -75.382115, 40.135904 ], [ -75.38192, 40.135738 ], [ -75.381591, 40.135459 ], [ -75.381147, 40.135073 ], [ -75.380298, 40.134339 ], [ -75.379683, 40.133804 ], [ -75.379356, 40.133519 ], [ -75.378844, 40.133064 ], [ -75.378618, 40.132861 ], [ -75.378457, 40.132719 ], [ -75.378359, 40.13263 ], [ -75.378277, 40.13258 ], [ -75.377989, 40.132425 ], [ -75.377697, 40.132262 ], [ -75.377294, 40.132036 ], [ -75.376811, 40.131758 ], [ -75.375727, 40.131142 ], [ -75.375283, 40.130889 ], [ -75.375027, 40.130742 ], [ -75.374761, 40.130589 ], [ -75.374519, 40.130449 ], [ -75.374039, 40.130176 ], [ -75.373415, 40.129828 ], [ -75.373139, 40.129661 ], [ -75.372506, 40.129307 ], [ -75.372422, 40.12926 ], [ -75.372146, 40.129107 ], [ -75.371847, 40.128935 ], [ -75.371057, 40.128481 ], [ -75.370699, 40.128268 ], [ -75.369467, 40.127565 ], [ -75.3684, 40.126936 ], [ -75.367721, 40.126543 ], [ -75.366753, 40.125988 ], [ -75.365828, 40.125456 ], [ -75.364535, 40.124705 ], [ -75.363573, 40.124151 ], [ -75.363003, 40.123828 ], [ -75.362521, 40.123554 ], [ -75.362414, 40.123498 ], [ -75.362269, 40.123415 ], [ -75.361867, 40.123184 ], [ -75.361545, 40.122999 ], [ -75.361265, 40.122838 ], [ -75.360601, 40.122423 ], [ -75.359387, 40.121722 ], [ -75.358156, 40.121021 ], [ -75.356945, 40.120326 ], [ -75.356434, 40.120034 ], [ -75.356163, 40.119884 ], [ -75.355967, 40.119783 ], [ -75.355909, 40.119755 ], [ -75.35584, 40.119721 ], [ -75.355668, 40.119647 ], [ -75.355544, 40.1196 ], [ -75.355436, 40.11956 ], [ -75.355284, 40.119506 ], [ -75.354032, 40.119057 ], [ -75.352545, 40.118529 ], [ -75.352398, 40.118477 ], [ -75.352077, 40.118365 ], [ -75.351991, 40.118334 ], [ -75.351931, 40.118316 ], [ -75.351846, 40.118285 ], [ -75.351773, 40.118255 ], [ -75.351708, 40.118226 ], [ -75.351648, 40.11819 ], [ -75.351574, 40.118148 ], [ -75.351458, 40.118071 ], [ -75.351395, 40.118027 ], [ -75.351261, 40.117937 ], [ -75.351177, 40.117883 ], [ -75.351103, 40.117833 ], [ -75.350861, 40.117672 ], [ -75.350721, 40.117578 ], [ -75.350452, 40.117411 ], [ -75.350408, 40.117388 ], [ -75.350346, 40.117356 ], [ -75.350307, 40.117284 ], [ -75.350229, 40.11722 ], [ -75.350129, 40.11716 ], [ -75.350099, 40.117141 ], [ -75.349977, 40.117064 ], [ -75.349713, 40.11692 ], [ -75.34956, 40.116834 ], [ -75.349477, 40.11679 ], [ -75.349216, 40.116634 ], [ -75.349147, 40.116592 ], [ -75.349041, 40.116515 ], [ -75.348922, 40.116436 ], [ -75.348775, 40.116349 ], [ -75.348693, 40.116301 ], [ -75.348396, 40.116128 ], [ -75.348332, 40.116091 ], [ -75.348185, 40.116013 ], [ -75.348084, 40.115961 ], [ -75.347995, 40.115912 ], [ -75.347885, 40.115859 ], [ -75.347621, 40.115728 ], [ -75.347612, 40.115724 ], [ -75.347601, 40.115721 ], [ -75.347533, 40.115721 ], [ -75.347483, 40.115697 ], [ -75.347946, 40.11493 ], [ -75.347588, 40.114785 ], [ -75.346682, 40.114416 ], [ -75.346111, 40.114201 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307229", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.654644, 40.244599 ], [ -75.654673, 40.244518 ], [ -75.65474, 40.244326 ], [ -75.654414, 40.244243 ], [ -75.654078, 40.244144 ], [ -75.65374, 40.244033 ], [ -75.653326, 40.243893 ], [ -75.653239, 40.24386 ], [ -75.652982, 40.243767 ], [ -75.652022, 40.243355 ], [ -75.651567, 40.243171 ], [ -75.651445, 40.243122 ], [ -75.651013, 40.242917 ], [ -75.650936, 40.243358 ], [ -75.650864, 40.243665 ], [ -75.650807, 40.243927 ], [ -75.650652, 40.244634 ], [ -75.650636, 40.24471 ], [ -75.650607, 40.244799 ], [ -75.650551, 40.245052 ], [ -75.650468, 40.245421 ], [ -75.650415, 40.245675 ], [ -75.649848, 40.245598 ], [ -75.649532, 40.245556 ], [ -75.649341, 40.245532 ], [ -75.648958, 40.245487 ], [ -75.648609, 40.245448 ], [ -75.648039, 40.245385 ], [ -75.647801, 40.245359 ], [ -75.647568, 40.245334 ], [ -75.647006, 40.245252 ], [ -75.646437, 40.24517 ], [ -75.64596, 40.245101 ], [ -75.645795, 40.245083 ], [ -75.644471, 40.244938 ], [ -75.644305, 40.24492 ], [ -75.643398, 40.244797 ], [ -75.643278, 40.24478 ], [ -75.642641, 40.244689 ], [ -75.642198, 40.244626 ], [ -75.641657, 40.244564 ], [ -75.641489, 40.24454 ], [ -75.641012, 40.244481 ], [ -75.639761, 40.244327 ], [ -75.639498, 40.244293 ], [ -75.63922, 40.244257 ], [ -75.63895, 40.244223 ], [ -75.638763, 40.244195 ], [ -75.638542, 40.244168 ], [ -75.637711, 40.244063 ], [ -75.636028, 40.243846 ], [ -75.635027, 40.243741 ], [ -75.634774, 40.243715 ], [ -75.634665, 40.243715 ], [ -75.634529, 40.243721 ], [ -75.63438, 40.243736 ], [ -75.634252, 40.243747 ], [ -75.634183, 40.243753 ], [ -75.633926, 40.243776 ], [ -75.633706, 40.243795 ], [ -75.632975, 40.243857 ], [ -75.631416, 40.243986 ], [ -75.630547, 40.244054 ], [ -75.629061, 40.244169 ], [ -75.628332, 40.244234 ], [ -75.628228, 40.244243 ], [ -75.628098, 40.244253 ], [ -75.627977, 40.244251 ], [ -75.62787, 40.244243 ], [ -75.627726, 40.244222 ], [ -75.627219, 40.244158 ], [ -75.625748, 40.243976 ], [ -75.624506, 40.243843 ], [ -75.623953, 40.243769 ], [ -75.623443, 40.243701 ], [ -75.623207, 40.243671 ], [ -75.622486, 40.243587 ], [ -75.621389, 40.24346 ], [ -75.621147, 40.243426 ], [ -75.619971, 40.243272 ], [ -75.619612, 40.243233 ], [ -75.619288, 40.243219 ], [ -75.61917, 40.243224 ], [ -75.618928, 40.24326 ], [ -75.618695, 40.243296 ], [ -75.6183, 40.243367 ], [ -75.617806, 40.243455 ], [ -75.617568, 40.243496 ], [ -75.617412, 40.243526 ], [ -75.617328, 40.243542 ], [ -75.617075, 40.243594 ], [ -75.616997, 40.243611 ], [ -75.616816, 40.243653 ], [ -75.616571, 40.243718 ], [ -75.616122, 40.243836 ], [ -75.616096, 40.243843 ], [ -75.615916, 40.24389 ], [ -75.615752, 40.243932 ], [ -75.615656, 40.243957 ], [ -75.615567, 40.243978 ], [ -75.61549, 40.243995 ], [ -75.6154, 40.244012 ], [ -75.615302, 40.244027 ], [ -75.615216, 40.244036 ], [ -75.61514, 40.244044 ], [ -75.615074, 40.244052 ], [ -75.614988, 40.244056 ], [ -75.614972, 40.244056 ], [ -75.614807, 40.24406 ], [ -75.614798, 40.244059 ], [ -75.614588, 40.244056 ], [ -75.614389, 40.244044 ], [ -75.614224, 40.244035 ], [ -75.61384, 40.244025 ], [ -75.613588, 40.244007 ], [ -75.613316, 40.244003 ], [ -75.613004, 40.243993 ], [ -75.612871, 40.243987 ], [ -75.612348, 40.243966 ], [ -75.61215, 40.243958 ], [ -75.611938, 40.243953 ], [ -75.611752, 40.243947 ], [ -75.611462, 40.243939 ], [ -75.611111, 40.243942 ], [ -75.610996, 40.243943 ], [ -75.610888, 40.243943 ], [ -75.610723, 40.243947 ], [ -75.610462, 40.243954 ], [ -75.610269, 40.243959 ], [ -75.610061, 40.243964 ], [ -75.609886, 40.243968 ], [ -75.609419, 40.243978 ], [ -75.609025, 40.243988 ], [ -75.608792, 40.243996 ], [ -75.608339, 40.244012 ], [ -75.608047, 40.244027 ], [ -75.603955, 40.244234 ], [ -75.603588, 40.24425 ], [ -75.602652, 40.244275 ], [ -75.601793, 40.244309 ], [ -75.601272, 40.244329 ], [ -75.601053, 40.244339 ], [ -75.600996, 40.244341 ], [ -75.600747, 40.244374 ], [ -75.600502, 40.24442 ], [ -75.600164, 40.244484 ], [ -75.599982, 40.244522 ], [ -75.599602, 40.2446 ], [ -75.599002, 40.244726 ], [ -75.598834, 40.244761 ], [ -75.598666, 40.244789 ], [ -75.598451, 40.244816 ], [ -75.598111, 40.24485 ], [ -75.598009, 40.244856 ], [ -75.597079, 40.24492 ], [ -75.597009, 40.244925 ], [ -75.596362, 40.24498 ], [ -75.59561, 40.245044 ], [ -75.595328, 40.245062 ], [ -75.595098, 40.245079 ], [ -75.594929, 40.245084 ], [ -75.594792, 40.245086 ], [ -75.59464, 40.245086 ], [ -75.594493, 40.245078 ], [ -75.594141, 40.245056 ], [ -75.593717, 40.24503 ], [ -75.593053, 40.244993 ], [ -75.592282, 40.244946 ], [ -75.591382, 40.244862 ], [ -75.590913, 40.244816 ], [ -75.590324, 40.244766 ], [ -75.589527, 40.244706 ], [ -75.589293, 40.244692 ], [ -75.58827, 40.244631 ], [ -75.587826, 40.244603 ], [ -75.58735, 40.244576 ], [ -75.586644, 40.244525 ], [ -75.586424, 40.24451 ], [ -75.58615, 40.244493 ], [ -75.586047, 40.244488 ], [ -75.585494, 40.24443 ], [ -75.58519, 40.244397 ], [ -75.584942, 40.24437 ], [ -75.584494, 40.244338 ], [ -75.584411, 40.244332 ], [ -75.582851, 40.244218 ], [ -75.582377, 40.244186 ], [ -75.582017, 40.24417 ], [ -75.581664, 40.24415 ], [ -75.580935, 40.244133 ], [ -75.580203, 40.244127 ], [ -75.5789, 40.244104 ], [ -75.578223, 40.244081 ], [ -75.57687, 40.243998 ], [ -75.576307, 40.243963 ], [ -75.575921, 40.243951 ], [ -75.57583, 40.243907 ], [ -75.575361, 40.24387 ], [ -75.574828, 40.243829 ], [ -75.574411, 40.243792 ], [ -75.574336, 40.243762 ], [ -75.574309, 40.243743 ], [ -75.574286, 40.243725 ], [ -75.574271, 40.243709 ], [ -75.574254, 40.243694 ], [ -75.574231, 40.243664 ], [ -75.574215, 40.243636 ], [ -75.5742, 40.243607 ], [ -75.574192, 40.243563 ], [ -75.574194, 40.243527 ], [ -75.574196, 40.243487 ], [ -75.574197, 40.243439 ], [ -75.574197, 40.243381 ], [ -75.574197, 40.243341 ], [ -75.574217, 40.243283 ], [ -75.574231, 40.243205 ], [ -75.574237, 40.243138 ], [ -75.574242, 40.24308 ], [ -75.574244, 40.243004 ], [ -75.574231, 40.24293 ], [ -75.574214, 40.242869 ], [ -75.57417, 40.242746 ], [ -75.574134, 40.242683 ], [ -75.573995, 40.242431 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.573596, 40.242253 ], [ -75.573448, 40.242287 ], [ -75.573297, 40.242326 ], [ -75.573087, 40.242377 ], [ -75.572929, 40.242421 ], [ -75.57255, 40.242515 ], [ -75.572107, 40.242628 ], [ -75.571651, 40.24274 ], [ -75.570881, 40.242944 ], [ -75.570495, 40.243054 ], [ -75.570105, 40.243137 ], [ -75.569887, 40.243185 ], [ -75.569679, 40.243224 ], [ -75.569499, 40.243258 ], [ -75.569308, 40.243288 ], [ -75.56913, 40.243307 ], [ -75.568987, 40.243324 ], [ -75.568821, 40.243338 ], [ -75.56864, 40.243348 ], [ -75.568455, 40.243353 ], [ -75.568145, 40.243348 ], [ -75.567681, 40.24332 ], [ -75.567157, 40.243292 ], [ -75.566633, 40.243249 ], [ -75.566574, 40.243246 ], [ -75.566415, 40.243232 ], [ -75.566366, 40.243234 ], [ -75.566276, 40.243268 ], [ -75.565811, 40.243245 ], [ -75.565287, 40.243217 ], [ -75.563935, 40.243129 ], [ -75.563569, 40.243103 ], [ -75.562412, 40.243022 ], [ -75.561731, 40.242975 ], [ -75.561044, 40.242939 ], [ -75.560947, 40.242934 ], [ -75.559783, 40.24287 ], [ -75.558934, 40.242841 ], [ -75.558335, 40.242819 ], [ -75.55708, 40.242742 ], [ -75.556986, 40.242736 ], [ -75.554875, 40.242597 ], [ -75.553377, 40.242491 ], [ -75.55227, 40.242402 ], [ -75.549223, 40.242155 ], [ -75.549076, 40.242144 ], [ -75.548493, 40.242103 ], [ -75.548368, 40.24209 ], [ -75.548044, 40.242058 ], [ -75.547669, 40.24202 ], [ -75.547372, 40.24199 ], [ -75.547024, 40.241955 ], [ -75.546664, 40.241905 ], [ -75.546417, 40.241855 ], [ -75.546152, 40.241794 ], [ -75.545845, 40.241718 ], [ -75.545491, 40.241608 ], [ -75.545368, 40.241569 ], [ -75.545251, 40.241529 ], [ -75.545028, 40.241444 ], [ -75.544829, 40.241358 ], [ -75.54441, 40.241154 ], [ -75.544201, 40.241038 ], [ -75.544044, 40.24095 ], [ -75.543875, 40.240856 ], [ -75.543357, 40.240568 ], [ -75.542733, 40.240205 ], [ -75.54166, 40.239581 ], [ -75.540689, 40.239018 ], [ -75.540149, 40.238709 ], [ -75.539908, 40.238574 ], [ -75.539619, 40.238407 ], [ -75.539424, 40.238292 ], [ -75.538792, 40.237927 ], [ -75.53869, 40.237871 ], [ -75.538533, 40.237781 ], [ -75.538393, 40.237712 ], [ -75.537943, 40.237446 ], [ -75.537532, 40.237211 ], [ -75.537092, 40.236952 ], [ -75.536562, 40.236663 ], [ -75.536435, 40.236593 ], [ -75.535555, 40.236086 ], [ -75.534625, 40.235561 ], [ -75.534611, 40.235552 ], [ -75.534355, 40.235408 ], [ -75.534068, 40.235244 ], [ -75.533935, 40.235175 ], [ -75.533784, 40.235088 ], [ -75.533489, 40.234918 ], [ -75.533161, 40.23473 ], [ -75.532567, 40.234403 ], [ -75.532314, 40.234266 ], [ -75.532033, 40.234145 ], [ -75.531784, 40.234045 ], [ -75.531486, 40.233944 ], [ -75.531183, 40.23385 ], [ -75.530886, 40.233758 ], [ -75.530644, 40.233689 ], [ -75.530442, 40.233632 ], [ -75.530223, 40.233567 ], [ -75.529677, 40.233407 ], [ -75.529133, 40.233247 ], [ -75.529021, 40.233213 ], [ -75.528652, 40.233103 ], [ -75.528455, 40.233044 ], [ -75.527958, 40.232895 ], [ -75.527761, 40.232835 ], [ -75.527182, 40.232665 ], [ -75.526711, 40.23253 ], [ -75.526537, 40.23248 ], [ -75.526466, 40.232459 ], [ -75.52637, 40.23243 ], [ -75.525942, 40.2323 ], [ -75.525828, 40.232264 ], [ -75.52547, 40.232171 ], [ -75.52501, 40.23205 ], [ -75.52469, 40.231958 ], [ -75.524206, 40.231802 ], [ -75.523957, 40.231725 ], [ -75.523589, 40.231611 ], [ -75.523453, 40.231574 ], [ -75.523332, 40.231542 ], [ -75.523142, 40.231483 ], [ -75.523004, 40.23144 ], [ -75.522883, 40.231396 ], [ -75.522788, 40.231357 ], [ -75.522679, 40.23131 ], [ -75.522595, 40.231271 ], [ -75.522373, 40.231153 ], [ -75.52222, 40.231071 ], [ -75.5221, 40.231004 ], [ -75.521772, 40.230824 ], [ -75.520415, 40.230085 ], [ -75.519614, 40.229655 ], [ -75.519271, 40.22947 ], [ -75.51911, 40.229381 ], [ -75.518975, 40.229302 ], [ -75.51879, 40.229191 ], [ -75.518697, 40.229133 ], [ -75.518621, 40.229079 ], [ -75.51851, 40.228988 ], [ -75.51843, 40.228913 ], [ -75.518292, 40.228784 ], [ -75.518007, 40.228459 ], [ -75.517737, 40.22814 ], [ -75.517726, 40.228127 ], [ -75.517464, 40.227818 ], [ -75.517301, 40.227624 ], [ -75.516925, 40.227176 ], [ -75.516399, 40.226526 ], [ -75.51626, 40.226359 ], [ -75.515879, 40.225904 ], [ -75.51575, 40.225749 ], [ -75.515377, 40.225303 ], [ -75.5152, 40.225083 ], [ -75.514938, 40.224766 ], [ -75.514406, 40.224123 ], [ -75.514104, 40.223765 ], [ -75.513965, 40.223605 ], [ -75.513742, 40.223352 ], [ -75.513652, 40.223251 ], [ -75.513571, 40.223167 ], [ -75.513447, 40.223046 ], [ -75.513359, 40.222969 ], [ -75.513196, 40.222823 ], [ -75.513049, 40.222714 ], [ -75.512959, 40.222651 ], [ -75.512879, 40.222597 ], [ -75.512765, 40.222523 ], [ -75.512628, 40.222437 ], [ -75.512534, 40.222386 ], [ -75.511783, 40.221953 ], [ -75.511369, 40.221708 ], [ -75.511101, 40.221551 ], [ -75.510963, 40.22147 ], [ -75.510425, 40.221158 ], [ -75.509857, 40.220825 ], [ -75.509628, 40.220699 ], [ -75.508116, 40.21981 ], [ -75.503558, 40.217222 ], [ -75.503213, 40.217018 ], [ -75.503033, 40.216912 ], [ -75.502873, 40.216818 ], [ -75.502361, 40.216516 ], [ -75.501792, 40.21618 ], [ -75.501656, 40.2161 ], [ -75.50141, 40.215955 ], [ -75.501102, 40.215762 ], [ -75.500632, 40.215468 ], [ -75.500328, 40.215277 ], [ -75.499754, 40.214918 ], [ -75.499433, 40.214704 ], [ -75.499237, 40.214571 ], [ -75.498881, 40.21433 ], [ -75.49843, 40.214092 ], [ -75.498161, 40.21394 ], [ -75.49793, 40.213812 ], [ -75.497778, 40.21373 ], [ -75.49771, 40.213695 ], [ -75.497283, 40.213391 ], [ -75.497192, 40.213324 ], [ -75.497031, 40.213226 ], [ -75.496321, 40.212809 ], [ -75.49569, 40.212419 ], [ -75.495283, 40.212156 ], [ -75.494851, 40.21187 ], [ -75.493539, 40.211154 ], [ -75.492881, 40.210798 ], [ -75.4925, 40.210564 ], [ -75.49213, 40.210318 ], [ -75.491389, 40.209766 ], [ -75.490644, 40.209144 ], [ -75.490153, 40.208728 ], [ -75.489902, 40.208517 ], [ -75.489679, 40.208341 ], [ -75.488535, 40.207335 ], [ -75.488449, 40.207254 ], [ -75.488353, 40.20716 ], [ -75.488287, 40.207094 ], [ -75.488138, 40.206939 ], [ -75.487397, 40.206157 ], [ -75.486415, 40.205096 ], [ -75.485897, 40.20455 ], [ -75.485694, 40.204355 ], [ -75.485468, 40.204139 ], [ -75.484783, 40.203489 ], [ -75.484304, 40.203055 ], [ -75.484087, 40.20286 ], [ -75.483963, 40.202753 ], [ -75.483858, 40.202674 ], [ -75.483643, 40.202516 ], [ -75.483423, 40.202369 ], [ -75.482852, 40.20198 ], [ -75.482458, 40.20172 ], [ -75.4823, 40.201623 ], [ -75.482191, 40.201558 ], [ -75.482025, 40.201464 ], [ -75.481782, 40.201336 ], [ -75.481203, 40.201057 ], [ -75.480913, 40.200913 ], [ -75.480565, 40.200755 ], [ -75.479322, 40.200196 ], [ -75.478134, 40.199653 ], [ -75.477692, 40.199459 ], [ -75.477516, 40.19938 ], [ -75.477477, 40.199364 ], [ -75.477265, 40.199276 ], [ -75.476776, 40.199054 ], [ -75.476707, 40.199022 ], [ -75.476621, 40.198987 ], [ -75.476063, 40.198757 ], [ -75.475786, 40.198643 ], [ -75.475245, 40.198417 ], [ -75.475151, 40.198377 ], [ -75.475088, 40.198353 ], [ -75.475017, 40.198324 ], [ -75.47426, 40.19801 ], [ -75.474008, 40.197901 ], [ -75.47269, 40.197341 ], [ -75.471745, 40.196939 ], [ -75.471026, 40.196633 ], [ -75.470471, 40.196408 ], [ -75.470404, 40.196325 ], [ -75.470361, 40.196304 ], [ -75.470064, 40.196183 ], [ -75.468783, 40.19565 ], [ -75.468181, 40.195399 ], [ -75.46799, 40.195325 ], [ -75.467618, 40.19518 ], [ -75.467236, 40.195018 ], [ -75.466738, 40.194816 ], [ -75.466462, 40.194697 ], [ -75.466372, 40.194668 ], [ -75.466219, 40.194669 ], [ -75.466091, 40.194614 ], [ -75.46516, 40.194222 ], [ -75.464541, 40.193953 ], [ -75.463984, 40.193729 ], [ -75.463546, 40.193553 ], [ -75.462868, 40.193264 ], [ -75.462322, 40.193034 ], [ -75.462199, 40.192984 ], [ -75.461871, 40.19285 ], [ -75.46154, 40.192714 ], [ -75.461081, 40.192526 ], [ -75.460642, 40.19234 ], [ -75.459655, 40.191937 ], [ -75.45826, 40.191347 ], [ -75.457473, 40.191032 ], [ -75.45676, 40.190722 ], [ -75.456623, 40.190663 ], [ -75.456419, 40.190582 ], [ -75.456328, 40.190546 ], [ -75.456216, 40.190493 ], [ -75.455964, 40.190377 ], [ -75.455805, 40.190306 ], [ -75.455447, 40.190122 ], [ -75.455096, 40.189903 ], [ -75.454988, 40.189825 ], [ -75.454827, 40.189717 ], [ -75.454731, 40.189636 ], [ -75.454648, 40.189571 ], [ -75.454527, 40.189472 ], [ -75.454417, 40.189363 ], [ -75.454315, 40.189246 ], [ -75.454231, 40.189135 ], [ -75.453862, 40.188665 ], [ -75.453631, 40.188364 ], [ -75.453332, 40.187986 ], [ -75.452816, 40.187329 ], [ -75.452235, 40.186602 ], [ -75.452094, 40.186426 ], [ -75.451974, 40.186274 ], [ -75.451881, 40.186157 ], [ -75.451809, 40.186083 ], [ -75.451709, 40.185987 ], [ -75.451673, 40.185953 ], [ -75.451645, 40.185935 ], [ -75.451592, 40.185896 ], [ -75.451507, 40.185831 ], [ -75.451436, 40.185776 ], [ -75.45141, 40.185756 ], [ -75.451373, 40.185727 ], [ -75.451293, 40.18567 ], [ -75.450854, 40.185376 ], [ -75.450748, 40.185304 ], [ -75.450687, 40.185263 ], [ -75.45064, 40.185242 ], [ -75.450576, 40.185216 ], [ -75.450513, 40.185196 ], [ -75.450348, 40.185147 ], [ -75.450038, 40.185057 ], [ -75.449796, 40.184988 ], [ -75.449513, 40.18489 ], [ -75.449362, 40.18481 ], [ -75.449263, 40.184752 ], [ -75.449173, 40.184688 ], [ -75.449093, 40.184614 ], [ -75.449034, 40.184559 ], [ -75.448974, 40.184496 ], [ -75.448914, 40.184425 ], [ -75.448826, 40.184335 ], [ -75.448786, 40.184302 ], [ -75.448762, 40.184285 ], [ -75.44872, 40.184267 ], [ -75.448644, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448487, 40.184247 ], [ -75.448314, 40.184261 ], [ -75.44823, 40.184267 ], [ -75.448004, 40.184296 ], [ -75.447925, 40.184306 ], [ -75.447659, 40.184331 ], [ -75.447456, 40.18435 ], [ -75.447238, 40.184359 ], [ -75.447056, 40.184353 ], [ -75.446947, 40.18434 ], [ -75.446835, 40.184324 ], [ -75.446727, 40.184294 ], [ -75.446608, 40.184254 ], [ -75.446426, 40.184171 ], [ -75.446378, 40.184146 ], [ -75.446191, 40.184049 ], [ -75.445927, 40.183913 ], [ -75.445547, 40.183715 ], [ -75.445432, 40.183656 ], [ -75.445314, 40.183594 ], [ -75.445066, 40.183466 ], [ -75.444992, 40.183429 ], [ -75.444925, 40.183404 ], [ -75.444705, 40.183282 ], [ -75.444392, 40.183062 ], [ -75.444111, 40.182822 ], [ -75.443729, 40.182491 ], [ -75.443167, 40.182019 ], [ -75.442956, 40.181825 ], [ -75.442907, 40.181781 ], [ -75.442652, 40.181559 ], [ -75.442512, 40.181436 ], [ -75.441769, 40.1808 ], [ -75.441104, 40.180237 ], [ -75.43992, 40.179232 ], [ -75.439769, 40.179094 ], [ -75.438712, 40.178185 ], [ -75.437848, 40.17745 ], [ -75.437788, 40.177402 ], [ -75.437725, 40.177348 ], [ -75.437563, 40.177215 ], [ -75.437018, 40.176759 ], [ -75.436992, 40.176737 ], [ -75.436981, 40.176677 ], [ -75.436977, 40.176665 ], [ -75.436968, 40.176654 ], [ -75.436897, 40.176601 ], [ -75.436528, 40.176274 ], [ -75.436466, 40.176221 ], [ -75.436059, 40.175875 ], [ -75.435781, 40.175638 ], [ -75.43566, 40.175536 ], [ -75.435447, 40.175354 ], [ -75.435234, 40.175172 ], [ -75.435206, 40.175148 ], [ -75.434989, 40.174966 ], [ -75.434842, 40.174842 ], [ -75.434804, 40.17481 ], [ -75.43436, 40.174428 ], [ -75.434306, 40.17438 ], [ -75.434102, 40.174216 ], [ -75.433982, 40.174108 ], [ -75.433915, 40.174088 ], [ -75.433418, 40.173701 ], [ -75.43281, 40.173163 ], [ -75.432625, 40.173004 ], [ -75.432443, 40.172849 ], [ -75.431978, 40.172446 ], [ -75.431767, 40.172278 ], [ -75.431566, 40.172129 ], [ -75.431261, 40.171931 ], [ -75.430788, 40.171625 ], [ -75.430255, 40.171289 ], [ -75.429765, 40.170981 ], [ -75.429705, 40.170943 ], [ -75.428396, 40.17011 ], [ -75.428229, 40.170007 ], [ -75.428004, 40.169875 ], [ -75.427764, 40.169747 ], [ -75.427483, 40.169612 ], [ -75.426926, 40.169352 ], [ -75.426628, 40.169222 ], [ -75.426304, 40.169069 ], [ -75.424936, 40.168457 ], [ -75.424395, 40.168185 ], [ -75.423649, 40.167841 ], [ -75.422584, 40.167358 ], [ -75.420891, 40.166558 ], [ -75.420296, 40.166284 ], [ -75.419772, 40.166049 ], [ -75.419181, 40.165774 ], [ -75.418678, 40.165552 ], [ -75.418548, 40.165496 ], [ -75.41842, 40.165434 ], [ -75.418303, 40.16538 ], [ -75.418205, 40.165332 ], [ -75.418143, 40.165305 ], [ -75.417874, 40.165181 ], [ -75.417698, 40.165101 ], [ -75.417475, 40.164991 ], [ -75.41743, 40.164969 ], [ -75.417384, 40.164943 ], [ -75.417195, 40.164838 ], [ -75.417044, 40.164749 ], [ -75.416899, 40.164669 ], [ -75.416674, 40.164539 ], [ -75.416347, 40.164355 ], [ -75.415811, 40.164028 ], [ -75.41496, 40.163509 ], [ -75.414562, 40.163261 ], [ -75.41427, 40.163071 ], [ -75.413811, 40.162798 ], [ -75.413529, 40.16263 ], [ -75.413446, 40.162583 ], [ -75.412915, 40.162265 ], [ -75.412574, 40.162063 ], [ -75.411908, 40.161674 ], [ -75.411879, 40.161624 ], [ -75.411706, 40.161515 ], [ -75.411328, 40.161279 ], [ -75.410769, 40.160951 ], [ -75.410344, 40.160699 ], [ -75.410065, 40.160533 ], [ -75.409808, 40.160388 ], [ -75.409474, 40.160208 ], [ -75.409246, 40.16009 ], [ -75.408974, 40.159949 ], [ -75.408901, 40.159943 ], [ -75.408523, 40.159746 ], [ -75.408324, 40.159635 ], [ -75.407678, 40.15929 ], [ -75.407242, 40.159057 ], [ -75.407052, 40.158957 ], [ -75.406312, 40.158557 ], [ -75.405377, 40.158017 ], [ -75.405124, 40.157856 ], [ -75.404936, 40.15774 ], [ -75.404882, 40.157706 ], [ -75.404628, 40.157558 ], [ -75.404433, 40.157444 ], [ -75.404186, 40.157308 ], [ -75.404147, 40.157278 ], [ -75.403617, 40.156972 ], [ -75.403528, 40.156921 ], [ -75.403308, 40.156784 ], [ -75.403074, 40.156633 ], [ -75.402805, 40.156467 ], [ -75.402628, 40.156357 ], [ -75.402095, 40.156028 ], [ -75.401868, 40.155879 ], [ -75.40126, 40.155484 ], [ -75.400964, 40.155283 ], [ -75.400942, 40.155268 ], [ -75.40071, 40.155115 ], [ -75.400671, 40.15509 ], [ -75.400638, 40.155069 ], [ -75.400341, 40.154834 ], [ -75.400278, 40.154779 ], [ -75.4002, 40.154707 ], [ -75.40006, 40.154585 ], [ -75.399944, 40.154475 ], [ -75.399861, 40.154386 ], [ -75.399606, 40.15412 ], [ -75.399427, 40.153925 ], [ -75.399185, 40.153619 ], [ -75.39912, 40.153528 ], [ -75.399005, 40.153356 ], [ -75.398895, 40.153161 ], [ -75.398836, 40.153072 ], [ -75.398759, 40.15292 ], [ -75.398692, 40.152783 ], [ -75.398543, 40.152443 ], [ -75.398484, 40.152305 ], [ -75.398457, 40.15224 ], [ -75.398428, 40.152165 ], [ -75.398382, 40.152052 ], [ -75.398311, 40.15188 ], [ -75.398271, 40.151795 ], [ -75.398033, 40.151275 ], [ -75.397997, 40.151204 ], [ -75.397844, 40.150925 ], [ -75.397769, 40.150773 ], [ -75.397606, 40.150444 ], [ -75.397417, 40.15008 ], [ -75.396907, 40.149192 ], [ -75.396738, 40.148917 ], [ -75.39643, 40.148348 ], [ -75.396324, 40.148162 ], [ -75.396179, 40.147931 ], [ -75.396122, 40.147857 ], [ -75.396062, 40.147784 ], [ -75.395866, 40.147538 ], [ -75.395683, 40.147327 ], [ -75.395635, 40.147271 ], [ -75.395625, 40.147259 ], [ -75.395344, 40.146943 ], [ -75.395229, 40.146809 ], [ -75.39491, 40.146483 ], [ -75.394862, 40.146432 ], [ -75.394774, 40.146325 ], [ -75.394233, 40.14568 ], [ -75.394159, 40.145606 ], [ -75.394093, 40.145542 ], [ -75.394005, 40.145465 ], [ -75.393794, 40.145288 ], [ -75.393588, 40.145126 ], [ -75.392825, 40.144546 ], [ -75.392423, 40.144254 ], [ -75.392004, 40.143941 ], [ -75.39111, 40.143246 ], [ -75.390447, 40.142738 ], [ -75.390246, 40.142584 ], [ -75.390117, 40.142485 ], [ -75.389952, 40.142358 ], [ -75.3898, 40.142241 ], [ -75.389341, 40.14191 ], [ -75.389055, 40.141703 ], [ -75.388995, 40.14166 ], [ -75.388235, 40.14113 ], [ -75.387552, 40.140656 ], [ -75.387179, 40.14039 ], [ -75.387033, 40.140284 ], [ -75.386783, 40.140086 ], [ -75.386578, 40.139906 ], [ -75.386411, 40.139753 ], [ -75.385742, 40.139154 ], [ -75.385452, 40.138885 ], [ -75.385178, 40.138652 ], [ -75.384988, 40.138483 ], [ -75.383988, 40.137591 ], [ -75.383549, 40.137194 ], [ -75.383054, 40.136751 ], [ -75.382524, 40.136267 ], [ -75.382115, 40.135904 ], [ -75.38192, 40.135738 ], [ -75.381591, 40.135459 ], [ -75.381147, 40.135073 ], [ -75.380298, 40.134339 ], [ -75.379683, 40.133804 ], [ -75.379356, 40.133519 ], [ -75.378844, 40.133064 ], [ -75.378618, 40.132861 ], [ -75.378457, 40.132719 ], [ -75.378359, 40.13263 ], [ -75.378277, 40.13258 ], [ -75.377989, 40.132425 ], [ -75.377697, 40.132262 ], [ -75.377294, 40.132036 ], [ -75.376811, 40.131758 ], [ -75.375727, 40.131142 ], [ -75.375283, 40.130889 ], [ -75.375027, 40.130742 ], [ -75.374761, 40.130589 ], [ -75.374519, 40.130449 ], [ -75.374039, 40.130176 ], [ -75.373415, 40.129828 ], [ -75.373139, 40.129661 ], [ -75.372506, 40.129307 ], [ -75.372422, 40.12926 ], [ -75.372146, 40.129107 ], [ -75.371847, 40.128935 ], [ -75.371057, 40.128481 ], [ -75.370699, 40.128268 ], [ -75.369467, 40.127565 ], [ -75.3684, 40.126936 ], [ -75.367721, 40.126543 ], [ -75.366753, 40.125988 ], [ -75.365828, 40.125456 ], [ -75.364535, 40.124705 ], [ -75.363573, 40.124151 ], [ -75.363003, 40.123828 ], [ -75.362521, 40.123554 ], [ -75.362414, 40.123498 ], [ -75.362269, 40.123415 ], [ -75.361867, 40.123184 ], [ -75.361545, 40.122999 ], [ -75.361265, 40.122838 ], [ -75.360601, 40.122423 ], [ -75.359387, 40.121722 ], [ -75.358156, 40.121021 ], [ -75.356945, 40.120326 ], [ -75.356434, 40.120034 ], [ -75.356163, 40.119884 ], [ -75.355967, 40.119783 ], [ -75.355909, 40.119755 ], [ -75.35584, 40.119721 ], [ -75.355668, 40.119647 ], [ -75.355544, 40.1196 ], [ -75.355436, 40.11956 ], [ -75.355284, 40.119506 ], [ -75.354032, 40.119057 ], [ -75.352545, 40.118529 ], [ -75.352398, 40.118477 ], [ -75.352077, 40.118365 ], [ -75.351991, 40.118334 ], [ -75.351931, 40.118316 ], [ -75.351846, 40.118285 ], [ -75.351773, 40.118255 ], [ -75.351708, 40.118226 ], [ -75.351648, 40.11819 ], [ -75.351574, 40.118148 ], [ -75.351458, 40.118071 ], [ -75.351395, 40.118027 ], [ -75.351261, 40.117937 ], [ -75.351177, 40.117883 ], [ -75.351103, 40.117833 ], [ -75.350861, 40.117672 ], [ -75.350721, 40.117578 ], [ -75.350452, 40.117411 ], [ -75.350408, 40.117388 ], [ -75.350346, 40.117356 ], [ -75.350307, 40.117284 ], [ -75.350229, 40.11722 ], [ -75.350129, 40.11716 ], [ -75.350099, 40.117141 ], [ -75.349977, 40.117064 ], [ -75.349713, 40.11692 ], [ -75.34956, 40.116834 ], [ -75.349477, 40.11679 ], [ -75.349216, 40.116634 ], [ -75.349147, 40.116592 ], [ -75.349041, 40.116515 ], [ -75.348922, 40.116436 ], [ -75.348775, 40.116349 ], [ -75.348693, 40.116301 ], [ -75.348396, 40.116128 ], [ -75.348332, 40.116091 ], [ -75.348185, 40.116013 ], [ -75.348084, 40.115961 ], [ -75.347995, 40.115912 ], [ -75.347885, 40.115859 ], [ -75.347621, 40.115728 ], [ -75.347612, 40.115724 ], [ -75.347601, 40.115721 ], [ -75.347533, 40.115721 ], [ -75.347483, 40.115697 ], [ -75.347946, 40.11493 ], [ -75.347588, 40.114785 ], [ -75.346682, 40.114416 ], [ -75.346111, 40.114201 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307230", "route_id": "93" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.654644, 40.244599 ], [ -75.654673, 40.244518 ], [ -75.65474, 40.244326 ], [ -75.654414, 40.244243 ], [ -75.654078, 40.244144 ], [ -75.65374, 40.244033 ], [ -75.653326, 40.243893 ], [ -75.653239, 40.24386 ], [ -75.652982, 40.243767 ], [ -75.652022, 40.243355 ], [ -75.651567, 40.243171 ], [ -75.651445, 40.243122 ], [ -75.651013, 40.242917 ], [ -75.650936, 40.243358 ], [ -75.650864, 40.243665 ], [ -75.650807, 40.243927 ], [ -75.650652, 40.244634 ], [ -75.650636, 40.24471 ], [ -75.650607, 40.244799 ], [ -75.650551, 40.245052 ], [ -75.650468, 40.245421 ], [ -75.650415, 40.245675 ], [ -75.649848, 40.245598 ], [ -75.649532, 40.245556 ], [ -75.649341, 40.245532 ], [ -75.648958, 40.245487 ], [ -75.648609, 40.245448 ], [ -75.648039, 40.245385 ], [ -75.647801, 40.245359 ], [ -75.647568, 40.245334 ], [ -75.647006, 40.245252 ], [ -75.646437, 40.24517 ], [ -75.64596, 40.245101 ], [ -75.645795, 40.245083 ], [ -75.644471, 40.244938 ], [ -75.644305, 40.24492 ], [ -75.643398, 40.244797 ], [ -75.643278, 40.24478 ], [ -75.642641, 40.244689 ], [ -75.642198, 40.244626 ], [ -75.641657, 40.244564 ], [ -75.641489, 40.24454 ], [ -75.641012, 40.244481 ], [ -75.639761, 40.244327 ], [ -75.639498, 40.244293 ], [ -75.63922, 40.244257 ], [ -75.63895, 40.244223 ], [ -75.638763, 40.244195 ], [ -75.638542, 40.244168 ], [ -75.637711, 40.244063 ], [ -75.636028, 40.243846 ], [ -75.635027, 40.243741 ], [ -75.634774, 40.243715 ], [ -75.634665, 40.243715 ], [ -75.634529, 40.243721 ], [ -75.63438, 40.243736 ], [ -75.634252, 40.243747 ], [ -75.634183, 40.243753 ], [ -75.633926, 40.243776 ], [ -75.633706, 40.243795 ], [ -75.632975, 40.243857 ], [ -75.631416, 40.243986 ], [ -75.630547, 40.244054 ], [ -75.629061, 40.244169 ], [ -75.628332, 40.244234 ], [ -75.628228, 40.244243 ], [ -75.628098, 40.244253 ], [ -75.627977, 40.244251 ], [ -75.62787, 40.244243 ], [ -75.627726, 40.244222 ], [ -75.627219, 40.244158 ], [ -75.625748, 40.243976 ], [ -75.624506, 40.243843 ], [ -75.623953, 40.243769 ], [ -75.623443, 40.243701 ], [ -75.623207, 40.243671 ], [ -75.622486, 40.243587 ], [ -75.621389, 40.24346 ], [ -75.621147, 40.243426 ], [ -75.619971, 40.243272 ], [ -75.619612, 40.243233 ], [ -75.619288, 40.243219 ], [ -75.61917, 40.243224 ], [ -75.618928, 40.24326 ], [ -75.618695, 40.243296 ], [ -75.6183, 40.243367 ], [ -75.617806, 40.243455 ], [ -75.617568, 40.243496 ], [ -75.617412, 40.243526 ], [ -75.617328, 40.243542 ], [ -75.617075, 40.243594 ], [ -75.616997, 40.243611 ], [ -75.616816, 40.243653 ], [ -75.616571, 40.243718 ], [ -75.616122, 40.243836 ], [ -75.616096, 40.243843 ], [ -75.615916, 40.24389 ], [ -75.615752, 40.243932 ], [ -75.615656, 40.243957 ], [ -75.615567, 40.243978 ], [ -75.61549, 40.243995 ], [ -75.6154, 40.244012 ], [ -75.615302, 40.244027 ], [ -75.615216, 40.244036 ], [ -75.61514, 40.244044 ], [ -75.615074, 40.244052 ], [ -75.614988, 40.244056 ], [ -75.614972, 40.244056 ], [ -75.614807, 40.24406 ], [ -75.614798, 40.244059 ], [ -75.614588, 40.244056 ], [ -75.614389, 40.244044 ], [ -75.614224, 40.244035 ], [ -75.61384, 40.244025 ], [ -75.613588, 40.244007 ], [ -75.613316, 40.244003 ], [ -75.613004, 40.243993 ], [ -75.612871, 40.243987 ], [ -75.612348, 40.243966 ], [ -75.61215, 40.243958 ], [ -75.611938, 40.243953 ], [ -75.611752, 40.243947 ], [ -75.611462, 40.243939 ], [ -75.611111, 40.243942 ], [ -75.610996, 40.243943 ], [ -75.610888, 40.243943 ], [ -75.610723, 40.243947 ], [ -75.610462, 40.243954 ], [ -75.610269, 40.243959 ], [ -75.610061, 40.243964 ], [ -75.609886, 40.243968 ], [ -75.609419, 40.243978 ], [ -75.609025, 40.243988 ], [ -75.608792, 40.243996 ], [ -75.608339, 40.244012 ], [ -75.608047, 40.244027 ], [ -75.603955, 40.244234 ], [ -75.603588, 40.24425 ], [ -75.602652, 40.244275 ], [ -75.601793, 40.244309 ], [ -75.601272, 40.244329 ], [ -75.601053, 40.244339 ], [ -75.600996, 40.244341 ], [ -75.600747, 40.244374 ], [ -75.600502, 40.24442 ], [ -75.600164, 40.244484 ], [ -75.599982, 40.244522 ], [ -75.599602, 40.2446 ], [ -75.599002, 40.244726 ], [ -75.598834, 40.244761 ], [ -75.598666, 40.244789 ], [ -75.598451, 40.244816 ], [ -75.598111, 40.24485 ], [ -75.598009, 40.244856 ], [ -75.597079, 40.24492 ], [ -75.597009, 40.244925 ], [ -75.596362, 40.24498 ], [ -75.59561, 40.245044 ], [ -75.595328, 40.245062 ], [ -75.595098, 40.245079 ], [ -75.594929, 40.245084 ], [ -75.594792, 40.245086 ], [ -75.59464, 40.245086 ], [ -75.594493, 40.245078 ], [ -75.594141, 40.245056 ], [ -75.593717, 40.24503 ], [ -75.593053, 40.244993 ], [ -75.592282, 40.244946 ], [ -75.591382, 40.244862 ], [ -75.590913, 40.244816 ], [ -75.590324, 40.244766 ], [ -75.589527, 40.244706 ], [ -75.589293, 40.244692 ], [ -75.58827, 40.244631 ], [ -75.587826, 40.244603 ], [ -75.58735, 40.244576 ], [ -75.586644, 40.244525 ], [ -75.586424, 40.24451 ], [ -75.58615, 40.244493 ], [ -75.586047, 40.244488 ], [ -75.585494, 40.24443 ], [ -75.58519, 40.244397 ], [ -75.584942, 40.24437 ], [ -75.584494, 40.244338 ], [ -75.584411, 40.244332 ], [ -75.582851, 40.244218 ], [ -75.582377, 40.244186 ], [ -75.582017, 40.24417 ], [ -75.581664, 40.24415 ], [ -75.580935, 40.244133 ], [ -75.580203, 40.244127 ], [ -75.5789, 40.244104 ], [ -75.578223, 40.244081 ], [ -75.57687, 40.243998 ], [ -75.576307, 40.243963 ], [ -75.575921, 40.243951 ], [ -75.57583, 40.243907 ], [ -75.575361, 40.24387 ], [ -75.574828, 40.243829 ], [ -75.574411, 40.243792 ], [ -75.574336, 40.243762 ], [ -75.574309, 40.243743 ], [ -75.574286, 40.243725 ], [ -75.574271, 40.243709 ], [ -75.574254, 40.243694 ], [ -75.574231, 40.243664 ], [ -75.574215, 40.243636 ], [ -75.5742, 40.243607 ], [ -75.574192, 40.243563 ], [ -75.574194, 40.243527 ], [ -75.574196, 40.243487 ], [ -75.574197, 40.243439 ], [ -75.574197, 40.243381 ], [ -75.574197, 40.243341 ], [ -75.574217, 40.243283 ], [ -75.574231, 40.243205 ], [ -75.574237, 40.243138 ], [ -75.574242, 40.24308 ], [ -75.574244, 40.243004 ], [ -75.574231, 40.24293 ], [ -75.574214, 40.242869 ], [ -75.57417, 40.242746 ], [ -75.574134, 40.242683 ], [ -75.573995, 40.242431 ], [ -75.57391, 40.242279 ], [ -75.574143, 40.242193 ], [ -75.574266, 40.242143 ], [ -75.574405, 40.242084 ], [ -75.574638, 40.241972 ], [ -75.574818, 40.241873 ], [ -75.575153, 40.241686 ], [ -75.575248, 40.24163 ], [ -75.575612, 40.241437 ], [ -75.575857, 40.241304 ], [ -75.575933, 40.241261 ], [ -75.576135, 40.241139 ], [ -75.576167, 40.241121 ], [ -75.576196, 40.241105 ], [ -75.576499, 40.240932 ], [ -75.576563, 40.24089 ], [ -75.576607, 40.240816 ], [ -75.576673, 40.240778 ], [ -75.576754, 40.240733 ], [ -75.576957, 40.240598 ], [ -75.577046, 40.240539 ], [ -75.57716, 40.240455 ], [ -75.577368, 40.240286 ], [ -75.577964, 40.239734 ], [ -75.578296, 40.239416 ], [ -75.578396, 40.239197 ], [ -75.578491, 40.239126 ], [ -75.578522, 40.238912 ], [ -75.578509, 40.23874 ], [ -75.578493, 40.238639 ], [ -75.578315, 40.238284 ], [ -75.578139, 40.238129 ], [ -75.575009, 40.236196 ], [ -75.5748, 40.236025 ], [ -75.574632, 40.235828 ], [ -75.574403, 40.235414 ], [ -75.574343, 40.235304 ], [ -75.574226, 40.235342 ], [ -75.573734, 40.235495 ], [ -75.573345, 40.235614 ], [ -75.57312, 40.235715 ], [ -75.573027, 40.235778 ], [ -75.573024, 40.235783 ], [ -75.572924, 40.235903 ], [ -75.572884, 40.23598 ], [ -75.572871, 40.236006 ], [ -75.57285, 40.236104 ], [ -75.572843, 40.236314 ], [ -75.57296, 40.23632 ], [ -75.573068, 40.23632 ], [ -75.573162, 40.236318 ], [ -75.573268, 40.236324 ], [ -75.573284, 40.236327 ], [ -75.57332, 40.236341 ], [ -75.573373, 40.236367 ], [ -75.573608, 40.236508 ], [ -75.573756, 40.236625 ], [ -75.573894, 40.236754 ], [ -75.573912, 40.236825 ], [ -75.573921, 40.236992 ], [ -75.573925, 40.237101 ], [ -75.573885, 40.237268 ], [ -75.573798, 40.237425 ], [ -75.573703, 40.237613 ], [ -75.573624, 40.237763 ], [ -75.573586, 40.237817 ], [ -75.573533, 40.237874 ], [ -75.57348, 40.237904 ], [ -75.573345, 40.237921 ], [ -75.573126, 40.237929 ], [ -75.573029, 40.237931 ], [ -75.572919, 40.237936 ], [ -75.572787, 40.237934 ], [ -75.5727, 40.237942 ], [ -75.572514, 40.237936 ], [ -75.572449, 40.237937 ], [ -75.572115, 40.237937 ], [ -75.571901, 40.23791 ], [ -75.571802, 40.237894 ], [ -75.571662, 40.237861 ], [ -75.571458, 40.237802 ], [ -75.571357, 40.237768 ], [ -75.571263, 40.23774 ], [ -75.571174, 40.237714 ], [ -75.571063, 40.237679 ], [ -75.570848, 40.237619 ], [ -75.570626, 40.237549 ], [ -75.570512, 40.237518 ], [ -75.570406, 40.237488 ], [ -75.570216, 40.237434 ], [ -75.570102, 40.2374 ], [ -75.57001, 40.237375 ], [ -75.569803, 40.237313 ], [ -75.569577, 40.237246 ], [ -75.569495, 40.237222 ], [ -75.569344, 40.237178 ], [ -75.569161, 40.237116 ], [ -75.568965, 40.237049 ], [ -75.568838, 40.236997 ], [ -75.568767, 40.236979 ], [ -75.568543, 40.2369 ], [ -75.568383, 40.236822 ], [ -75.568282, 40.236761 ], [ -75.568246, 40.236735 ], [ -75.568111, 40.236635 ], [ -75.568045, 40.236586 ], [ -75.567949, 40.236512 ], [ -75.567787, 40.236387 ], [ -75.567626, 40.236274 ], [ -75.567528, 40.236203 ], [ -75.567434, 40.236133 ], [ -75.567427, 40.236076 ], [ -75.56741, 40.236017 ], [ -75.567408, 40.235957 ], [ -75.567416, 40.2359 ], [ -75.567424, 40.235848 ], [ -75.567491, 40.235691 ], [ -75.567555, 40.235533 ], [ -75.567587, 40.235458 ], [ -75.5676, 40.235427 ], [ -75.567622, 40.235373 ], [ -75.567661, 40.235323 ], [ -75.567695, 40.235285 ], [ -75.567747, 40.235244 ], [ -75.567848, 40.235163 ], [ -75.567926, 40.235105 ], [ -75.568013, 40.23505 ], [ -75.568105, 40.235019 ], [ -75.568133, 40.235009 ], [ -75.568229, 40.234988 ], [ -75.568447, 40.235004 ], [ -75.568667, 40.235045 ], [ -75.56887, 40.235087 ], [ -75.568952, 40.235105 ], [ -75.569082, 40.235138 ], [ -75.569267, 40.235242 ], [ -75.569272, 40.235246 ], [ -75.569361, 40.23531 ], [ -75.569448, 40.235213 ], [ -75.56948, 40.235165 ], [ -75.569502, 40.235135 ], [ -75.569529, 40.235082 ], [ -75.569542, 40.235043 ], [ -75.569547, 40.235 ], [ -75.569546, 40.234955 ], [ -75.569543, 40.234917 ], [ -75.569526, 40.234862 ], [ -75.569469, 40.234771 ], [ -75.569347, 40.234637 ], [ -75.569194, 40.234494 ], [ -75.569091, 40.234377 ], [ -75.569077, 40.234357 ], [ -75.569047, 40.234251 ], [ -75.569047, 40.234225 ], [ -75.569052, 40.234191 ], [ -75.569074, 40.234135 ], [ -75.56909, 40.234114 ], [ -75.569137, 40.234074 ], [ -75.569221, 40.234006 ], [ -75.569703, 40.233834 ], [ -75.570181, 40.233705 ], [ -75.570447, 40.233646 ], [ -75.570723, 40.233623 ], [ -75.571001, 40.233642 ], [ -75.571274, 40.233701 ], [ -75.572921, 40.234279 ], [ -75.573415, 40.234463 ], [ -75.573635, 40.23458 ], [ -75.573821, 40.234724 ], [ -75.573968, 40.234888 ], [ -75.574186, 40.235271 ], [ -75.574226, 40.235342 ], [ -75.574283, 40.235455 ], [ -75.57452, 40.235902 ], [ -75.57468, 40.236092 ], [ -75.574993, 40.236328 ], [ -75.577916, 40.238132 ], [ -75.578103, 40.238275 ], [ -75.578235, 40.238427 ], [ -75.57833, 40.238595 ], [ -75.578363, 40.238641 ], [ -75.578381, 40.238747 ], [ -75.578385, 40.238983 ], [ -75.578361, 40.239106 ], [ -75.578396, 40.239197 ], [ -75.578296, 40.239416 ], [ -75.577964, 40.239734 ], [ -75.577368, 40.240286 ], [ -75.57716, 40.240455 ], [ -75.577046, 40.240539 ], [ -75.576957, 40.240598 ], [ -75.576754, 40.240733 ], [ -75.576673, 40.240778 ], [ -75.576607, 40.240816 ], [ -75.576515, 40.240826 ], [ -75.576429, 40.24087 ], [ -75.576088, 40.24106 ], [ -75.575803, 40.241223 ], [ -75.575721, 40.241271 ], [ -75.575574, 40.241354 ], [ -75.575473, 40.241406 ], [ -75.575212, 40.241541 ], [ -75.575128, 40.241589 ], [ -75.574891, 40.241727 ], [ -75.574693, 40.241833 ], [ -75.574517, 40.241921 ], [ -75.574366, 40.241991 ], [ -75.57421, 40.242058 ], [ -75.574028, 40.242126 ], [ -75.57385, 40.24218 ], [ -75.573596, 40.242253 ], [ -75.573448, 40.242287 ], [ -75.573297, 40.242326 ], [ -75.573087, 40.242377 ], [ -75.572929, 40.242421 ], [ -75.57255, 40.242515 ], [ -75.572107, 40.242628 ], [ -75.571651, 40.24274 ], [ -75.570881, 40.242944 ], [ -75.570495, 40.243054 ], [ -75.570105, 40.243137 ], [ -75.569887, 40.243185 ], [ -75.569679, 40.243224 ], [ -75.569499, 40.243258 ], [ -75.569308, 40.243288 ], [ -75.56913, 40.243307 ], [ -75.568987, 40.243324 ], [ -75.568821, 40.243338 ], [ -75.56864, 40.243348 ], [ -75.568455, 40.243353 ], [ -75.568145, 40.243348 ], [ -75.567681, 40.24332 ], [ -75.567157, 40.243292 ], [ -75.566633, 40.243249 ], [ -75.566574, 40.243246 ], [ -75.566415, 40.243232 ], [ -75.566366, 40.243234 ], [ -75.566276, 40.243268 ], [ -75.565811, 40.243245 ], [ -75.565287, 40.243217 ], [ -75.563935, 40.243129 ], [ -75.563569, 40.243103 ], [ -75.562412, 40.243022 ], [ -75.561731, 40.242975 ], [ -75.561044, 40.242939 ], [ -75.560947, 40.242934 ], [ -75.559783, 40.24287 ], [ -75.558934, 40.242841 ], [ -75.558335, 40.242819 ], [ -75.55708, 40.242742 ], [ -75.556986, 40.242736 ], [ -75.554875, 40.242597 ], [ -75.553377, 40.242491 ], [ -75.55227, 40.242402 ], [ -75.549223, 40.242155 ], [ -75.549076, 40.242144 ], [ -75.548493, 40.242103 ], [ -75.548368, 40.24209 ], [ -75.548044, 40.242058 ], [ -75.547669, 40.24202 ], [ -75.547372, 40.24199 ], [ -75.547024, 40.241955 ], [ -75.546664, 40.241905 ], [ -75.546417, 40.241855 ], [ -75.546152, 40.241794 ], [ -75.545845, 40.241718 ], [ -75.545491, 40.241608 ], [ -75.545368, 40.241569 ], [ -75.545251, 40.241529 ], [ -75.545028, 40.241444 ], [ -75.544829, 40.241358 ], [ -75.54441, 40.241154 ], [ -75.544201, 40.241038 ], [ -75.544044, 40.24095 ], [ -75.543875, 40.240856 ], [ -75.543357, 40.240568 ], [ -75.542733, 40.240205 ], [ -75.54166, 40.239581 ], [ -75.540689, 40.239018 ], [ -75.540149, 40.238709 ], [ -75.539908, 40.238574 ], [ -75.539619, 40.238407 ], [ -75.539424, 40.238292 ], [ -75.538792, 40.237927 ], [ -75.53869, 40.237871 ], [ -75.538533, 40.237781 ], [ -75.538393, 40.237712 ], [ -75.537943, 40.237446 ], [ -75.537532, 40.237211 ], [ -75.537092, 40.236952 ], [ -75.536562, 40.236663 ], [ -75.536435, 40.236593 ], [ -75.535555, 40.236086 ], [ -75.534625, 40.235561 ], [ -75.534611, 40.235552 ], [ -75.534355, 40.235408 ], [ -75.534068, 40.235244 ], [ -75.533935, 40.235175 ], [ -75.533784, 40.235088 ], [ -75.533489, 40.234918 ], [ -75.533161, 40.23473 ], [ -75.532567, 40.234403 ], [ -75.532314, 40.234266 ], [ -75.532033, 40.234145 ], [ -75.531784, 40.234045 ], [ -75.531486, 40.233944 ], [ -75.531183, 40.23385 ], [ -75.530886, 40.233758 ], [ -75.530644, 40.233689 ], [ -75.530442, 40.233632 ], [ -75.530223, 40.233567 ], [ -75.529677, 40.233407 ], [ -75.529133, 40.233247 ], [ -75.529021, 40.233213 ], [ -75.528652, 40.233103 ], [ -75.528455, 40.233044 ], [ -75.527958, 40.232895 ], [ -75.527761, 40.232835 ], [ -75.527182, 40.232665 ], [ -75.526711, 40.23253 ], [ -75.526537, 40.23248 ], [ -75.526466, 40.232459 ], [ -75.52637, 40.23243 ], [ -75.525942, 40.2323 ], [ -75.525828, 40.232264 ], [ -75.52547, 40.232171 ], [ -75.52501, 40.23205 ], [ -75.52469, 40.231958 ], [ -75.524206, 40.231802 ], [ -75.523957, 40.231725 ], [ -75.523589, 40.231611 ], [ -75.523453, 40.231574 ], [ -75.523332, 40.231542 ], [ -75.523142, 40.231483 ], [ -75.523004, 40.23144 ], [ -75.522883, 40.231396 ], [ -75.522788, 40.231357 ], [ -75.522679, 40.23131 ], [ -75.522595, 40.231271 ], [ -75.522373, 40.231153 ], [ -75.52222, 40.231071 ], [ -75.5221, 40.231004 ], [ -75.521772, 40.230824 ], [ -75.520415, 40.230085 ], [ -75.519614, 40.229655 ], [ -75.519271, 40.22947 ], [ -75.51911, 40.229381 ], [ -75.518975, 40.229302 ], [ -75.51879, 40.229191 ], [ -75.518697, 40.229133 ], [ -75.518621, 40.229079 ], [ -75.51851, 40.228988 ], [ -75.51843, 40.228913 ], [ -75.518292, 40.228784 ], [ -75.518007, 40.228459 ], [ -75.517737, 40.22814 ], [ -75.517726, 40.228127 ], [ -75.517464, 40.227818 ], [ -75.517301, 40.227624 ], [ -75.516925, 40.227176 ], [ -75.516399, 40.226526 ], [ -75.51626, 40.226359 ], [ -75.515879, 40.225904 ], [ -75.51575, 40.225749 ], [ -75.515377, 40.225303 ], [ -75.5152, 40.225083 ], [ -75.514938, 40.224766 ], [ -75.514406, 40.224123 ], [ -75.514104, 40.223765 ], [ -75.513965, 40.223605 ], [ -75.513742, 40.223352 ], [ -75.513652, 40.223251 ], [ -75.513571, 40.223167 ], [ -75.513447, 40.223046 ], [ -75.513359, 40.222969 ], [ -75.513196, 40.222823 ], [ -75.513049, 40.222714 ], [ -75.512959, 40.222651 ], [ -75.512879, 40.222597 ], [ -75.512765, 40.222523 ], [ -75.512628, 40.222437 ], [ -75.512534, 40.222386 ], [ -75.511783, 40.221953 ], [ -75.511369, 40.221708 ], [ -75.511101, 40.221551 ], [ -75.510963, 40.22147 ], [ -75.510425, 40.221158 ], [ -75.509857, 40.220825 ], [ -75.509628, 40.220699 ], [ -75.508116, 40.21981 ], [ -75.503558, 40.217222 ], [ -75.503213, 40.217018 ], [ -75.503033, 40.216912 ], [ -75.502873, 40.216818 ], [ -75.502361, 40.216516 ], [ -75.501792, 40.21618 ], [ -75.501656, 40.2161 ], [ -75.50141, 40.215955 ], [ -75.501102, 40.215762 ], [ -75.500632, 40.215468 ], [ -75.500328, 40.215277 ], [ -75.499754, 40.214918 ], [ -75.499433, 40.214704 ], [ -75.499237, 40.214571 ], [ -75.498881, 40.21433 ], [ -75.49843, 40.214092 ], [ -75.498161, 40.21394 ], [ -75.49793, 40.213812 ], [ -75.497778, 40.21373 ], [ -75.49771, 40.213695 ], [ -75.497283, 40.213391 ], [ -75.497192, 40.213324 ], [ -75.497031, 40.213226 ], [ -75.496321, 40.212809 ], [ -75.49569, 40.212419 ], [ -75.495283, 40.212156 ], [ -75.494851, 40.21187 ], [ -75.493539, 40.211154 ], [ -75.492881, 40.210798 ], [ -75.4925, 40.210564 ], [ -75.49213, 40.210318 ], [ -75.491389, 40.209766 ], [ -75.490644, 40.209144 ], [ -75.490153, 40.208728 ], [ -75.489902, 40.208517 ], [ -75.489679, 40.208341 ], [ -75.488535, 40.207335 ], [ -75.488449, 40.207254 ], [ -75.488353, 40.20716 ], [ -75.488287, 40.207094 ], [ -75.488138, 40.206939 ], [ -75.487397, 40.206157 ], [ -75.486415, 40.205096 ], [ -75.485897, 40.20455 ], [ -75.485694, 40.204355 ], [ -75.485468, 40.204139 ], [ -75.484783, 40.203489 ], [ -75.484304, 40.203055 ], [ -75.484087, 40.20286 ], [ -75.483963, 40.202753 ], [ -75.483858, 40.202674 ], [ -75.483643, 40.202516 ], [ -75.483423, 40.202369 ], [ -75.482852, 40.20198 ], [ -75.482458, 40.20172 ], [ -75.4823, 40.201623 ], [ -75.482191, 40.201558 ], [ -75.482025, 40.201464 ], [ -75.481782, 40.201336 ], [ -75.481203, 40.201057 ], [ -75.480913, 40.200913 ], [ -75.480565, 40.200755 ], [ -75.479322, 40.200196 ], [ -75.478134, 40.199653 ], [ -75.477692, 40.199459 ], [ -75.477516, 40.19938 ], [ -75.477477, 40.199364 ], [ -75.477265, 40.199276 ], [ -75.476776, 40.199054 ], [ -75.476707, 40.199022 ], [ -75.476621, 40.198987 ], [ -75.476063, 40.198757 ], [ -75.475786, 40.198643 ], [ -75.475245, 40.198417 ], [ -75.475151, 40.198377 ], [ -75.475088, 40.198353 ], [ -75.475017, 40.198324 ], [ -75.47426, 40.19801 ], [ -75.474008, 40.197901 ], [ -75.47269, 40.197341 ], [ -75.471745, 40.196939 ], [ -75.471026, 40.196633 ], [ -75.470471, 40.196408 ], [ -75.470404, 40.196325 ], [ -75.470361, 40.196304 ], [ -75.470064, 40.196183 ], [ -75.468783, 40.19565 ], [ -75.468181, 40.195399 ], [ -75.46799, 40.195325 ], [ -75.467618, 40.19518 ], [ -75.467236, 40.195018 ], [ -75.466738, 40.194816 ], [ -75.466462, 40.194697 ], [ -75.466372, 40.194668 ], [ -75.466219, 40.194669 ], [ -75.466091, 40.194614 ], [ -75.46516, 40.194222 ], [ -75.464541, 40.193953 ], [ -75.463984, 40.193729 ], [ -75.463546, 40.193553 ], [ -75.462868, 40.193264 ], [ -75.462322, 40.193034 ], [ -75.462199, 40.192984 ], [ -75.461871, 40.19285 ], [ -75.46154, 40.192714 ], [ -75.461081, 40.192526 ], [ -75.460642, 40.19234 ], [ -75.459655, 40.191937 ], [ -75.45826, 40.191347 ], [ -75.457473, 40.191032 ], [ -75.45676, 40.190722 ], [ -75.456623, 40.190663 ], [ -75.456419, 40.190582 ], [ -75.456328, 40.190546 ], [ -75.456216, 40.190493 ], [ -75.455964, 40.190377 ], [ -75.455805, 40.190306 ], [ -75.455447, 40.190122 ], [ -75.455096, 40.189903 ], [ -75.454988, 40.189825 ], [ -75.454827, 40.189717 ], [ -75.454731, 40.189636 ], [ -75.454648, 40.189571 ], [ -75.454527, 40.189472 ], [ -75.454417, 40.189363 ], [ -75.454315, 40.189246 ], [ -75.454231, 40.189135 ], [ -75.453862, 40.188665 ], [ -75.453631, 40.188364 ], [ -75.453332, 40.187986 ], [ -75.452816, 40.187329 ], [ -75.452235, 40.186602 ], [ -75.452094, 40.186426 ], [ -75.451974, 40.186274 ], [ -75.451881, 40.186157 ], [ -75.451809, 40.186083 ], [ -75.451709, 40.185987 ], [ -75.451673, 40.185953 ], [ -75.451645, 40.185935 ], [ -75.451592, 40.185896 ], [ -75.451507, 40.185831 ], [ -75.451436, 40.185776 ], [ -75.45141, 40.185756 ], [ -75.451373, 40.185727 ], [ -75.451293, 40.18567 ], [ -75.450854, 40.185376 ], [ -75.450748, 40.185304 ], [ -75.450687, 40.185263 ], [ -75.45064, 40.185242 ], [ -75.450576, 40.185216 ], [ -75.450513, 40.185196 ], [ -75.450348, 40.185147 ], [ -75.450038, 40.185057 ], [ -75.449796, 40.184988 ], [ -75.449513, 40.18489 ], [ -75.449362, 40.18481 ], [ -75.449263, 40.184752 ], [ -75.449173, 40.184688 ], [ -75.449093, 40.184614 ], [ -75.449034, 40.184559 ], [ -75.448974, 40.184496 ], [ -75.448914, 40.184425 ], [ -75.448826, 40.184335 ], [ -75.448786, 40.184302 ], [ -75.448762, 40.184285 ], [ -75.44872, 40.184267 ], [ -75.448644, 40.184248 ], [ -75.448579, 40.184243 ], [ -75.448487, 40.184247 ], [ -75.448314, 40.184261 ], [ -75.44823, 40.184267 ], [ -75.448004, 40.184296 ], [ -75.447925, 40.184306 ], [ -75.447659, 40.184331 ], [ -75.447456, 40.18435 ], [ -75.447238, 40.184359 ], [ -75.447056, 40.184353 ], [ -75.446947, 40.18434 ], [ -75.446835, 40.184324 ], [ -75.446727, 40.184294 ], [ -75.446608, 40.184254 ], [ -75.446426, 40.184171 ], [ -75.446378, 40.184146 ], [ -75.446191, 40.184049 ], [ -75.445927, 40.183913 ], [ -75.445547, 40.183715 ], [ -75.445432, 40.183656 ], [ -75.445314, 40.183594 ], [ -75.445066, 40.183466 ], [ -75.444992, 40.183429 ], [ -75.444925, 40.183404 ], [ -75.444705, 40.183282 ], [ -75.444392, 40.183062 ], [ -75.444111, 40.182822 ], [ -75.443729, 40.182491 ], [ -75.443167, 40.182019 ], [ -75.442956, 40.181825 ], [ -75.442907, 40.181781 ], [ -75.442652, 40.181559 ], [ -75.442512, 40.181436 ], [ -75.441769, 40.1808 ], [ -75.441104, 40.180237 ], [ -75.43992, 40.179232 ], [ -75.439769, 40.179094 ], [ -75.438712, 40.178185 ], [ -75.437848, 40.17745 ], [ -75.437788, 40.177402 ], [ -75.437725, 40.177348 ], [ -75.437563, 40.177215 ], [ -75.437018, 40.176759 ], [ -75.436992, 40.176737 ], [ -75.436981, 40.176677 ], [ -75.436977, 40.176665 ], [ -75.436968, 40.176654 ], [ -75.436897, 40.176601 ], [ -75.436528, 40.176274 ], [ -75.436466, 40.176221 ], [ -75.436059, 40.175875 ], [ -75.435781, 40.175638 ], [ -75.43566, 40.175536 ], [ -75.435447, 40.175354 ], [ -75.435234, 40.175172 ], [ -75.435206, 40.175148 ], [ -75.434989, 40.174966 ], [ -75.434842, 40.174842 ], [ -75.434804, 40.17481 ], [ -75.43436, 40.174428 ], [ -75.434306, 40.17438 ], [ -75.434102, 40.174216 ], [ -75.433982, 40.174108 ], [ -75.433915, 40.174088 ], [ -75.433418, 40.173701 ], [ -75.43281, 40.173163 ], [ -75.432625, 40.173004 ], [ -75.432443, 40.172849 ], [ -75.431978, 40.172446 ], [ -75.431767, 40.172278 ], [ -75.431566, 40.172129 ], [ -75.431261, 40.171931 ], [ -75.430788, 40.171625 ], [ -75.430255, 40.171289 ], [ -75.429765, 40.170981 ], [ -75.429705, 40.170943 ], [ -75.428396, 40.17011 ], [ -75.428229, 40.170007 ], [ -75.428004, 40.169875 ], [ -75.427764, 40.169747 ], [ -75.427483, 40.169612 ], [ -75.426926, 40.169352 ], [ -75.426628, 40.169222 ], [ -75.426304, 40.169069 ], [ -75.424936, 40.168457 ], [ -75.424395, 40.168185 ], [ -75.423649, 40.167841 ], [ -75.422584, 40.167358 ], [ -75.420891, 40.166558 ], [ -75.420296, 40.166284 ], [ -75.419772, 40.166049 ], [ -75.419181, 40.165774 ], [ -75.418678, 40.165552 ], [ -75.418548, 40.165496 ], [ -75.41842, 40.165434 ], [ -75.418303, 40.16538 ], [ -75.418205, 40.165332 ], [ -75.418143, 40.165305 ], [ -75.417874, 40.165181 ], [ -75.417698, 40.165101 ], [ -75.417475, 40.164991 ], [ -75.41743, 40.164969 ], [ -75.417384, 40.164943 ], [ -75.417195, 40.164838 ], [ -75.417044, 40.164749 ], [ -75.416899, 40.164669 ], [ -75.416674, 40.164539 ], [ -75.416347, 40.164355 ], [ -75.415811, 40.164028 ], [ -75.41496, 40.163509 ], [ -75.414562, 40.163261 ], [ -75.41427, 40.163071 ], [ -75.413811, 40.162798 ], [ -75.413529, 40.16263 ], [ -75.413446, 40.162583 ], [ -75.412915, 40.162265 ], [ -75.412574, 40.162063 ], [ -75.411908, 40.161674 ], [ -75.411879, 40.161624 ], [ -75.411706, 40.161515 ], [ -75.411328, 40.161279 ], [ -75.410769, 40.160951 ], [ -75.410344, 40.160699 ], [ -75.410065, 40.160533 ], [ -75.409808, 40.160388 ], [ -75.409474, 40.160208 ], [ -75.409246, 40.16009 ], [ -75.408974, 40.159949 ], [ -75.408901, 40.159943 ], [ -75.408523, 40.159746 ], [ -75.408324, 40.159635 ], [ -75.408383, 40.159543 ], [ -75.408408, 40.159513 ], [ -75.408493, 40.159408 ], [ -75.408913, 40.158981 ], [ -75.409317, 40.158592 ], [ -75.409857, 40.158086 ], [ -75.410161, 40.157793 ], [ -75.410371, 40.157579 ], [ -75.410642, 40.157312 ], [ -75.410371, 40.157579 ], [ -75.411309, 40.15664 ], [ -75.411719, 40.156859 ], [ -75.412029, 40.157 ], [ -75.412238, 40.157019 ], [ -75.412313, 40.157027 ], [ -75.412483, 40.157027 ], [ -75.412624, 40.157024 ], [ -75.412872, 40.157014 ], [ -75.413029, 40.157012 ], [ -75.413136, 40.157008 ], [ -75.413243, 40.157014 ], [ -75.413321, 40.157016 ], [ -75.413397, 40.157027 ], [ -75.413457, 40.157039 ], [ -75.413529, 40.157058 ], [ -75.413569, 40.157072 ], [ -75.4136, 40.157084 ], [ -75.413665, 40.157118 ], [ -75.414127, 40.157396 ], [ -75.414407, 40.157567 ], [ -75.414701, 40.157751 ], [ -75.414968, 40.15791 ], [ -75.415056, 40.157965 ], [ -75.415123, 40.158001 ], [ -75.415213, 40.158044 ], [ -75.415275, 40.158072 ], [ -75.415347, 40.158097 ], [ -75.415407, 40.15811 ], [ -75.415467, 40.158117 ], [ -75.415531, 40.158117 ], [ -75.415584, 40.158114 ], [ -75.415641, 40.15811 ], [ -75.4157, 40.158103 ], [ -75.415773, 40.158094 ], [ -75.415846, 40.158069 ], [ -75.415916, 40.158041 ], [ -75.415982, 40.158007 ], [ -75.416018, 40.157983 ], [ -75.416046, 40.157964 ], [ -75.416102, 40.15792 ], [ -75.416136, 40.157883 ], [ -75.416159, 40.157855 ], [ -75.41619, 40.157818 ], [ -75.416238, 40.157755 ], [ -75.416293, 40.15768 ], [ -75.41632, 40.157638 ], [ -75.416362, 40.157588 ], [ -75.416406, 40.157534 ], [ -75.416538, 40.157419 ], [ -75.416738, 40.157309 ], [ -75.417014, 40.157216 ], [ -75.417327, 40.157153 ], [ -75.417537, 40.157132 ], [ -75.417767, 40.15715 ], [ -75.418052, 40.157187 ], [ -75.41825, 40.157233 ], [ -75.418562, 40.157356 ], [ -75.418697, 40.157425 ], [ -75.418855, 40.15753 ], [ -75.419015, 40.157663 ], [ -75.419235, 40.157872 ], [ -75.419313, 40.15797 ], [ -75.419812, 40.158533 ], [ -75.419981, 40.158685 ], [ -75.420114, 40.158764 ], [ -75.420287, 40.158835 ], [ -75.420452, 40.158862 ], [ -75.420848, 40.158896 ], [ -75.420987, 40.159187 ], [ -75.421201, 40.159405 ], [ -75.42144, 40.159548 ], [ -75.421758, 40.159648 ], [ -75.422001, 40.159669 ], [ -75.422101, 40.159616 ], [ -75.422122, 40.159526 ], [ -75.422037, 40.158791 ], [ -75.421954, 40.157931 ], [ -75.421783, 40.157956 ], [ -75.421498, 40.158031 ], [ -75.421262, 40.158145 ], [ -75.421037, 40.158366 ], [ -75.420905, 40.158602 ], [ -75.420848, 40.158896 ], [ -75.420452, 40.158862 ], [ -75.420287, 40.158835 ], [ -75.420114, 40.158764 ], [ -75.419981, 40.158685 ], [ -75.419812, 40.158533 ], [ -75.419313, 40.15797 ], [ -75.419235, 40.157872 ], [ -75.419015, 40.157663 ], [ -75.418855, 40.15753 ], [ -75.418697, 40.157425 ], [ -75.418562, 40.157356 ], [ -75.41825, 40.157233 ], [ -75.418052, 40.157187 ], [ -75.417767, 40.15715 ], [ -75.417537, 40.157132 ], [ -75.417327, 40.157153 ], [ -75.417014, 40.157216 ], [ -75.416738, 40.157309 ], [ -75.416538, 40.157419 ], [ -75.416406, 40.157534 ], [ -75.416362, 40.157588 ], [ -75.41632, 40.157638 ], [ -75.416293, 40.15768 ], [ -75.416238, 40.157755 ], [ -75.41619, 40.157818 ], [ -75.416159, 40.157855 ], [ -75.416136, 40.157883 ], [ -75.416102, 40.15792 ], [ -75.416046, 40.157964 ], [ -75.416018, 40.157983 ], [ -75.415982, 40.158007 ], [ -75.415916, 40.158041 ], [ -75.415846, 40.158069 ], [ -75.415773, 40.158094 ], [ -75.4157, 40.158103 ], [ -75.415641, 40.15811 ], [ -75.415584, 40.158114 ], [ -75.415531, 40.158117 ], [ -75.415467, 40.158117 ], [ -75.415407, 40.15811 ], [ -75.415347, 40.158097 ], [ -75.415275, 40.158072 ], [ -75.415213, 40.158044 ], [ -75.415123, 40.158001 ], [ -75.415056, 40.157965 ], [ -75.414968, 40.15791 ], [ -75.414701, 40.157751 ], [ -75.414407, 40.157567 ], [ -75.414127, 40.157396 ], [ -75.413665, 40.157118 ], [ -75.4136, 40.157084 ], [ -75.413569, 40.157072 ], [ -75.413529, 40.157058 ], [ -75.413457, 40.157039 ], [ -75.413397, 40.157027 ], [ -75.413321, 40.157016 ], [ -75.413243, 40.157014 ], [ -75.413136, 40.157008 ], [ -75.413029, 40.157012 ], [ -75.412872, 40.157014 ], [ -75.412624, 40.157024 ], [ -75.412483, 40.157027 ], [ -75.412313, 40.157027 ], [ -75.412238, 40.157019 ], [ -75.412029, 40.157 ], [ -75.411719, 40.156859 ], [ -75.411309, 40.15664 ], [ -75.410371, 40.157579 ], [ -75.410161, 40.157793 ], [ -75.409857, 40.158086 ], [ -75.409317, 40.158592 ], [ -75.408913, 40.158981 ], [ -75.408493, 40.159408 ], [ -75.408408, 40.159513 ], [ -75.408383, 40.159543 ], [ -75.408324, 40.159635 ], [ -75.407678, 40.15929 ], [ -75.407242, 40.159057 ], [ -75.407052, 40.158957 ], [ -75.406312, 40.158557 ], [ -75.405377, 40.158017 ], [ -75.405124, 40.157856 ], [ -75.404936, 40.15774 ], [ -75.404882, 40.157706 ], [ -75.404628, 40.157558 ], [ -75.404433, 40.157444 ], [ -75.404186, 40.157308 ], [ -75.404147, 40.157278 ], [ -75.403617, 40.156972 ], [ -75.403528, 40.156921 ], [ -75.403308, 40.156784 ], [ -75.403074, 40.156633 ], [ -75.402805, 40.156467 ], [ -75.402628, 40.156357 ], [ -75.402095, 40.156028 ], [ -75.401868, 40.155879 ], [ -75.40126, 40.155484 ], [ -75.400964, 40.155283 ], [ -75.400942, 40.155268 ], [ -75.40071, 40.155115 ], [ -75.400671, 40.15509 ], [ -75.400638, 40.155069 ], [ -75.400341, 40.154834 ], [ -75.400278, 40.154779 ], [ -75.4002, 40.154707 ], [ -75.40006, 40.154585 ], [ -75.399944, 40.154475 ], [ -75.399861, 40.154386 ], [ -75.399606, 40.15412 ], [ -75.399427, 40.153925 ], [ -75.399185, 40.153619 ], [ -75.39912, 40.153528 ], [ -75.399005, 40.153356 ], [ -75.398895, 40.153161 ], [ -75.398836, 40.153072 ], [ -75.398759, 40.15292 ], [ -75.398692, 40.152783 ], [ -75.398543, 40.152443 ], [ -75.398484, 40.152305 ], [ -75.398457, 40.15224 ], [ -75.398428, 40.152165 ], [ -75.398382, 40.152052 ], [ -75.398311, 40.15188 ], [ -75.398271, 40.151795 ], [ -75.398033, 40.151275 ], [ -75.397997, 40.151204 ], [ -75.397844, 40.150925 ], [ -75.397769, 40.150773 ], [ -75.397606, 40.150444 ], [ -75.397417, 40.15008 ], [ -75.396907, 40.149192 ], [ -75.396738, 40.148917 ], [ -75.39643, 40.148348 ], [ -75.396324, 40.148162 ], [ -75.396179, 40.147931 ], [ -75.396122, 40.147857 ], [ -75.396062, 40.147784 ], [ -75.395866, 40.147538 ], [ -75.395683, 40.147327 ], [ -75.395635, 40.147271 ], [ -75.395625, 40.147259 ], [ -75.395344, 40.146943 ], [ -75.395229, 40.146809 ], [ -75.39491, 40.146483 ], [ -75.394862, 40.146432 ], [ -75.394774, 40.146325 ], [ -75.394233, 40.14568 ], [ -75.394159, 40.145606 ], [ -75.394093, 40.145542 ], [ -75.394005, 40.145465 ], [ -75.393794, 40.145288 ], [ -75.393588, 40.145126 ], [ -75.392825, 40.144546 ], [ -75.392423, 40.144254 ], [ -75.392004, 40.143941 ], [ -75.39111, 40.143246 ], [ -75.390447, 40.142738 ], [ -75.390246, 40.142584 ], [ -75.390117, 40.142485 ], [ -75.389952, 40.142358 ], [ -75.3898, 40.142241 ], [ -75.389341, 40.14191 ], [ -75.389055, 40.141703 ], [ -75.388995, 40.14166 ], [ -75.388235, 40.14113 ], [ -75.387552, 40.140656 ], [ -75.387179, 40.14039 ], [ -75.387033, 40.140284 ], [ -75.386783, 40.140086 ], [ -75.386578, 40.139906 ], [ -75.386411, 40.139753 ], [ -75.385742, 40.139154 ], [ -75.385452, 40.138885 ], [ -75.385178, 40.138652 ], [ -75.384988, 40.138483 ], [ -75.383988, 40.137591 ], [ -75.383549, 40.137194 ], [ -75.383054, 40.136751 ], [ -75.382524, 40.136267 ], [ -75.382115, 40.135904 ], [ -75.38192, 40.135738 ], [ -75.381591, 40.135459 ], [ -75.381147, 40.135073 ], [ -75.380298, 40.134339 ], [ -75.379683, 40.133804 ], [ -75.379356, 40.133519 ], [ -75.378844, 40.133064 ], [ -75.378618, 40.132861 ], [ -75.378457, 40.132719 ], [ -75.378359, 40.13263 ], [ -75.378277, 40.13258 ], [ -75.377989, 40.132425 ], [ -75.377697, 40.132262 ], [ -75.377294, 40.132036 ], [ -75.376811, 40.131758 ], [ -75.375727, 40.131142 ], [ -75.375283, 40.130889 ], [ -75.375027, 40.130742 ], [ -75.374761, 40.130589 ], [ -75.374519, 40.130449 ], [ -75.374039, 40.130176 ], [ -75.373415, 40.129828 ], [ -75.373139, 40.129661 ], [ -75.372506, 40.129307 ], [ -75.372422, 40.12926 ], [ -75.372146, 40.129107 ], [ -75.371847, 40.128935 ], [ -75.371057, 40.128481 ], [ -75.370699, 40.128268 ], [ -75.369467, 40.127565 ], [ -75.3684, 40.126936 ], [ -75.367721, 40.126543 ], [ -75.366753, 40.125988 ], [ -75.365828, 40.125456 ], [ -75.364535, 40.124705 ], [ -75.363573, 40.124151 ], [ -75.363003, 40.123828 ], [ -75.362521, 40.123554 ], [ -75.362414, 40.123498 ], [ -75.362269, 40.123415 ], [ -75.361867, 40.123184 ], [ -75.361545, 40.122999 ], [ -75.361265, 40.122838 ], [ -75.360601, 40.122423 ], [ -75.359387, 40.121722 ], [ -75.358156, 40.121021 ], [ -75.356945, 40.120326 ], [ -75.356434, 40.120034 ], [ -75.356163, 40.119884 ], [ -75.355967, 40.119783 ], [ -75.355909, 40.119755 ], [ -75.35584, 40.119721 ], [ -75.355668, 40.119647 ], [ -75.355544, 40.1196 ], [ -75.355436, 40.11956 ], [ -75.355284, 40.119506 ], [ -75.354032, 40.119057 ], [ -75.352545, 40.118529 ], [ -75.352398, 40.118477 ], [ -75.352077, 40.118365 ], [ -75.351991, 40.118334 ], [ -75.351931, 40.118316 ], [ -75.351846, 40.118285 ], [ -75.351773, 40.118255 ], [ -75.351708, 40.118226 ], [ -75.351648, 40.11819 ], [ -75.351574, 40.118148 ], [ -75.351458, 40.118071 ], [ -75.351395, 40.118027 ], [ -75.351261, 40.117937 ], [ -75.351177, 40.117883 ], [ -75.351103, 40.117833 ], [ -75.350861, 40.117672 ], [ -75.350721, 40.117578 ], [ -75.350452, 40.117411 ], [ -75.350408, 40.117388 ], [ -75.350346, 40.117356 ], [ -75.350307, 40.117284 ], [ -75.350229, 40.11722 ], [ -75.350129, 40.11716 ], [ -75.350099, 40.117141 ], [ -75.349977, 40.117064 ], [ -75.349713, 40.11692 ], [ -75.34956, 40.116834 ], [ -75.349477, 40.11679 ], [ -75.349216, 40.116634 ], [ -75.349147, 40.116592 ], [ -75.349041, 40.116515 ], [ -75.348922, 40.116436 ], [ -75.348775, 40.116349 ], [ -75.348693, 40.116301 ], [ -75.348396, 40.116128 ], [ -75.348332, 40.116091 ], [ -75.348185, 40.116013 ], [ -75.348084, 40.115961 ], [ -75.347995, 40.115912 ], [ -75.347885, 40.115859 ], [ -75.347621, 40.115728 ], [ -75.347612, 40.115724 ], [ -75.347601, 40.115721 ], [ -75.347533, 40.115721 ], [ -75.347483, 40.115697 ], [ -75.347946, 40.11493 ], [ -75.347588, 40.114785 ], [ -75.346682, 40.114416 ], [ -75.346111, 40.114201 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307233", "route_id": "94" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.208287, 40.077763 ], [ -75.208237, 40.077762 ], [ -75.208094, 40.077752 ], [ -75.208085, 40.077915 ], [ -75.208064, 40.078137 ], [ -75.208036, 40.078358 ], [ -75.208011, 40.078534 ], [ -75.207945, 40.079004 ], [ -75.207869, 40.079564 ], [ -75.207865, 40.07962 ], [ -75.20787, 40.079673 ], [ -75.207878, 40.079729 ], [ -75.207894, 40.079786 ], [ -75.207931, 40.079961 ], [ -75.208057, 40.080529 ], [ -75.20809, 40.080709 ], [ -75.208114, 40.08081 ], [ -75.208145, 40.080901 ], [ -75.208181, 40.081008 ], [ -75.208278, 40.081271 ], [ -75.20834, 40.081441 ], [ -75.208385, 40.081562 ], [ -75.208435, 40.081663 ], [ -75.2086, 40.081953 ], [ -75.208721, 40.082173 ], [ -75.208951, 40.082583 ], [ -75.209373, 40.083354 ], [ -75.209871, 40.084253 ], [ -75.209898, 40.084302 ], [ -75.209886, 40.084393 ], [ -75.209966, 40.084551 ], [ -75.210054, 40.084711 ], [ -75.210189, 40.084924 ], [ -75.210356, 40.085208 ], [ -75.21037, 40.085231 ], [ -75.210408, 40.085293 ], [ -75.210422, 40.085315 ], [ -75.210523, 40.085482 ], [ -75.210935, 40.085659 ], [ -75.211271, 40.085807 ], [ -75.211523, 40.085913 ], [ -75.211862, 40.086119 ], [ -75.212037, 40.08622 ], [ -75.212149, 40.086294 ], [ -75.212228, 40.08634 ], [ -75.212289, 40.086383 ], [ -75.212378, 40.086462 ], [ -75.212454, 40.08653 ], [ -75.212588, 40.08665 ], [ -75.212657, 40.086714 ], [ -75.212745, 40.086795 ], [ -75.21285, 40.086914 ], [ -75.212909, 40.086991 ], [ -75.213004, 40.087117 ], [ -75.213109, 40.087278 ], [ -75.213219, 40.087511 ], [ -75.213293, 40.087671 ], [ -75.213301, 40.087684 ], [ -75.213382, 40.087735 ], [ -75.213394, 40.087765 ], [ -75.213495, 40.088044 ], [ -75.213528, 40.088145 ], [ -75.213571, 40.08826 ], [ -75.213629, 40.088438 ], [ -75.213808, 40.088982 ], [ -75.213849, 40.089099 ], [ -75.213889, 40.089214 ], [ -75.213948, 40.089349 ], [ -75.21401, 40.089479 ], [ -75.214181, 40.089773 ], [ -75.214272, 40.089916 ], [ -75.214412, 40.090134 ], [ -75.214565, 40.090385 ], [ -75.214671, 40.090543 ], [ -75.214734, 40.09065 ], [ -75.214759, 40.090711 ], [ -75.214772, 40.090757 ], [ -75.214779, 40.090814 ], [ -75.214773, 40.090874 ], [ -75.214768, 40.090928 ], [ -75.21476, 40.090978 ], [ -75.214731, 40.091063 ], [ -75.2147, 40.091153 ], [ -75.214501, 40.091666 ], [ -75.214452, 40.0918 ], [ -75.21432, 40.092174 ], [ -75.21423, 40.092403 ], [ -75.214145, 40.092622 ], [ -75.213777, 40.093638 ], [ -75.213473, 40.094471 ], [ -75.213397, 40.094699 ], [ -75.213368, 40.09482 ], [ -75.213343, 40.094955 ], [ -75.213239, 40.095867 ], [ -75.212983, 40.097722 ], [ -75.212968, 40.097854 ], [ -75.212867, 40.098517 ], [ -75.212829, 40.098796 ], [ -75.212763, 40.099268 ], [ -75.212721, 40.099568 ], [ -75.212696, 40.099815 ], [ -75.212696, 40.099931 ], [ -75.212722, 40.100345 ], [ -75.212735, 40.100552 ], [ -75.212763, 40.100821 ], [ -75.212797, 40.1012 ], [ -75.212829, 40.101608 ], [ -75.212888, 40.102238 ], [ -75.212915, 40.10252 ], [ -75.212965, 40.102879 ], [ -75.21318, 40.104389 ], [ -75.21322, 40.104667 ], [ -75.213259, 40.104918 ], [ -75.213306, 40.105258 ], [ -75.213372, 40.10572 ], [ -75.21346, 40.106386 ], [ -75.213603, 40.107427 ], [ -75.213644, 40.107724 ], [ -75.213666, 40.107859 ], [ -75.213685, 40.10798 ], [ -75.213698, 40.108058 ], [ -75.213726, 40.108312 ], [ -75.213745, 40.108424 ], [ -75.213827, 40.108985 ], [ -75.213984, 40.110087 ], [ -75.214018, 40.110322 ], [ -75.214079, 40.110742 ], [ -75.214108, 40.110933 ], [ -75.214146, 40.111195 ], [ -75.214169, 40.111348 ], [ -75.214212, 40.111651 ], [ -75.214275, 40.112083 ], [ -75.214366, 40.112569 ], [ -75.214413, 40.11282 ], [ -75.214448, 40.113011 ], [ -75.214512, 40.113367 ], [ -75.214559, 40.113623 ], [ -75.214604, 40.113876 ], [ -75.214688, 40.114405 ], [ -75.214726, 40.114644 ], [ -75.214779, 40.115038 ], [ -75.214795, 40.115158 ], [ -75.214819, 40.115288 ], [ -75.214875, 40.11559 ], [ -75.215018, 40.11642 ], [ -75.215319, 40.118012 ], [ -75.215353, 40.118164 ], [ -75.215331, 40.11827 ], [ -75.215365, 40.11845 ], [ -75.215389, 40.118586 ], [ -75.215452, 40.118925 ], [ -75.215465, 40.118998 ], [ -75.215492, 40.119144 ], [ -75.215517, 40.119284 ], [ -75.215557, 40.119481 ], [ -75.215612, 40.119535 ], [ -75.215637, 40.119642 ], [ -75.215663, 40.119752 ], [ -75.215691, 40.119828 ], [ -75.215712, 40.119875 ], [ -75.215739, 40.119938 ], [ -75.215785, 40.120016 ], [ -75.215823, 40.120076 ], [ -75.215888, 40.120148 ], [ -75.215957, 40.120205 ], [ -75.216017, 40.120256 ], [ -75.216084, 40.120306 ], [ -75.216156, 40.120349 ], [ -75.216229, 40.120393 ], [ -75.216342, 40.120453 ], [ -75.216464, 40.120531 ], [ -75.216605, 40.120613 ], [ -75.216619, 40.120624 ], [ -75.216678, 40.120667 ], [ -75.216763, 40.120742 ], [ -75.216815, 40.120794 ], [ -75.216882, 40.120868 ], [ -75.21691, 40.120905 ], [ -75.216946, 40.120953 ], [ -75.217001, 40.12104 ], [ -75.217042, 40.121131 ], [ -75.217078, 40.121237 ], [ -75.217102, 40.121358 ], [ -75.21712, 40.121497 ], [ -75.217146, 40.121736 ], [ -75.217202, 40.122232 ], [ -75.217259, 40.12256 ], [ -75.217309, 40.122957 ], [ -75.217334, 40.123196 ], [ -75.217418, 40.123999 ], [ -75.217429, 40.12412 ], [ -75.217435, 40.124175 ], [ -75.217464, 40.12442 ], [ -75.217755, 40.127014 ], [ -75.217796, 40.127389 ], [ -75.217812, 40.127547 ], [ -75.217834, 40.127673 ], [ -75.217844, 40.12775 ], [ -75.217844, 40.127817 ], [ -75.217852, 40.128024 ], [ -75.217852, 40.128116 ], [ -75.217841, 40.128209 ], [ -75.217832, 40.128259 ], [ -75.217815, 40.12834 ], [ -75.217775, 40.128468 ], [ -75.217715, 40.12862 ], [ -75.217686, 40.128693 ], [ -75.217613, 40.128893 ], [ -75.217525, 40.129093 ], [ -75.217434, 40.129298 ], [ -75.217398, 40.129382 ], [ -75.217295, 40.129616 ], [ -75.21721, 40.12977 ], [ -75.217165, 40.129861 ], [ -75.217098, 40.129965 ], [ -75.216469, 40.130901 ], [ -75.216267, 40.131176 ], [ -75.216141, 40.131335 ], [ -75.216043, 40.131453 ], [ -75.215938, 40.13156 ], [ -75.215831, 40.131662 ], [ -75.215657, 40.131826 ], [ -75.215457, 40.132007 ], [ -75.214671, 40.132729 ], [ -75.214294, 40.133074 ], [ -75.2142, 40.133176 ], [ -75.214139, 40.133252 ], [ -75.214066, 40.133358 ], [ -75.213998, 40.13346 ], [ -75.213906, 40.133618 ], [ -75.21383, 40.133753 ], [ -75.213807, 40.133807 ], [ -75.213777, 40.133877 ], [ -75.21374, 40.133997 ], [ -75.213735, 40.134015 ], [ -75.21367, 40.134243 ], [ -75.213642, 40.134371 ], [ -75.213591, 40.134595 ], [ -75.213523, 40.134917 ], [ -75.21347, 40.135169 ], [ -75.21344, 40.135337 ], [ -75.213397, 40.135582 ], [ -75.213315, 40.136024 ], [ -75.213247, 40.136251 ], [ -75.213217, 40.136345 ], [ -75.213191, 40.136418 ], [ -75.213163, 40.136496 ], [ -75.213051, 40.136707 ], [ -75.212859, 40.137035 ], [ -75.212689, 40.137309 ], [ -75.212631, 40.137404 ], [ -75.212468, 40.137634 ], [ -75.212325, 40.137813 ], [ -75.212297, 40.137886 ], [ -75.212284, 40.137937 ], [ -75.212266, 40.13804 ], [ -75.212257, 40.138096 ], [ -75.212252, 40.138169 ], [ -75.212253, 40.1382 ], [ -75.212255, 40.138251 ], [ -75.212257, 40.138323 ], [ -75.212268, 40.138401 ], [ -75.212272, 40.138422 ], [ -75.212296, 40.138517 ], [ -75.212311, 40.138574 ], [ -75.212336, 40.138669 ], [ -75.212362, 40.138765 ], [ -75.212426, 40.138985 ], [ -75.212657, 40.139838 ], [ -75.212691, 40.139976 ], [ -75.212716, 40.140133 ], [ -75.212726, 40.140246 ], [ -75.212756, 40.140485 ], [ -75.212775, 40.14074 ], [ -75.2128, 40.141207 ], [ -75.212854, 40.141929 ], [ -75.212854, 40.142072 ], [ -75.212794, 40.142894 ], [ -75.212736, 40.143876 ], [ -75.212684, 40.144779 ], [ -75.212629, 40.145758 ], [ -75.212615, 40.146111 ], [ -75.212603, 40.146445 ], [ -75.212569, 40.147335 ], [ -75.212507, 40.148143 ], [ -75.212488, 40.148666 ], [ -75.212488, 40.14874 ], [ -75.212498, 40.148826 ], [ -75.212505, 40.148919 ], [ -75.212519, 40.149004 ], [ -75.212549, 40.149176 ], [ -75.212589, 40.149403 ], [ -75.212669, 40.149855 ], [ -75.212695, 40.15 ], [ -75.212729, 40.150167 ], [ -75.212805, 40.150529 ], [ -75.212908, 40.151122 ], [ -75.212933, 40.151266 ], [ -75.212943, 40.151322 ], [ -75.213073, 40.152068 ], [ -75.213137, 40.152395 ], [ -75.213185, 40.15262 ], [ -75.213236, 40.152803 ], [ -75.213319, 40.153023 ], [ -75.213397, 40.153253 ], [ -75.213461, 40.153433 ], [ -75.213742, 40.154266 ], [ -75.213771, 40.154361 ], [ -75.213793, 40.154452 ], [ -75.213815, 40.154533 ], [ -75.213844, 40.154678 ], [ -75.213892, 40.15497 ], [ -75.213923, 40.155263 ], [ -75.213935, 40.155455 ], [ -75.214751, 40.155501 ], [ -75.215508, 40.155532 ], [ -75.21714, 40.155604 ], [ -75.217886, 40.155642 ], [ -75.218852, 40.155671 ], [ -75.219209, 40.155685 ], [ -75.219315, 40.155698 ], [ -75.219389, 40.15571 ], [ -75.220957, 40.154925 ], [ -75.22153, 40.154674 ], [ -75.222134, 40.154399 ], [ -75.222967, 40.154083 ], [ -75.223792, 40.153746 ], [ -75.224513, 40.153473 ], [ -75.224877, 40.154024 ], [ -75.224886, 40.154061 ], [ -75.224887, 40.154098 ], [ -75.224876, 40.154126 ], [ -75.224463, 40.154289 ], [ -75.22434, 40.154275 ], [ -75.224832, 40.1548 ], [ -75.225349, 40.155319 ], [ -75.226055, 40.156027 ], [ -75.226557, 40.156532 ], [ -75.226385, 40.157466 ], [ -75.226308, 40.15786 ], [ -75.226823, 40.158168 ], [ -75.227165, 40.158373 ], [ -75.227887, 40.158798 ], [ -75.228611, 40.159225 ], [ -75.229011, 40.159464 ], [ -75.229407, 40.159698 ], [ -75.2295, 40.159751 ], [ -75.229571, 40.159804 ], [ -75.229644, 40.159864 ], [ -75.229683, 40.159903 ], [ -75.229755, 40.159993 ], [ -75.229856, 40.160129 ], [ -75.230312, 40.160553 ], [ -75.230445, 40.160675 ], [ -75.230515, 40.160729 ], [ -75.230734, 40.160875 ], [ -75.231006, 40.161047 ], [ -75.231515, 40.161425 ], [ -75.231878, 40.161702 ], [ -75.233139, 40.162668 ], [ -75.233494, 40.162932 ], [ -75.233575, 40.162997 ], [ -75.233614, 40.163044 ], [ -75.233651, 40.163098 ], [ -75.233668, 40.16315 ], [ -75.233674, 40.163197 ], [ -75.233685, 40.163253 ], [ -75.233705, 40.163415 ], [ -75.233747, 40.163478 ], [ -75.233785, 40.163518 ], [ -75.233825, 40.163557 ], [ -75.233881, 40.163602 ], [ -75.233983, 40.163666 ], [ -75.234192, 40.163795 ], [ -75.234336, 40.163879 ], [ -75.234506, 40.163979 ], [ -75.234698, 40.164083 ], [ -75.23527, 40.164415 ], [ -75.235858, 40.164753 ], [ -75.236539, 40.165146 ], [ -75.237175, 40.165527 ], [ -75.237659, 40.165802 ], [ -75.238844, 40.166475 ], [ -75.240484, 40.167414 ], [ -75.241501, 40.168002 ], [ -75.241914, 40.168244 ], [ -75.242176, 40.1684 ], [ -75.242524, 40.1686 ], [ -75.242733, 40.168728 ], [ -75.242905, 40.168838 ], [ -75.242984, 40.168897 ], [ -75.243059, 40.168959 ], [ -75.243136, 40.169031 ], [ -75.243226, 40.169126 ], [ -75.24331, 40.169214 ], [ -75.243415, 40.169334 ], [ -75.243484, 40.169419 ], [ -75.243529, 40.169478 ], [ -75.243558, 40.169525 ], [ -75.243578, 40.169556 ], [ -75.243583, 40.169578 ], [ -75.243582, 40.169604 ], [ -75.243567, 40.169635 ], [ -75.243534, 40.169672 ], [ -75.243214, 40.169947 ], [ -75.24381, 40.1703 ], [ -75.243952, 40.17039 ], [ -75.244067, 40.170465 ], [ -75.2442, 40.170564 ], [ -75.244284, 40.170632 ], [ -75.244401, 40.17073 ], [ -75.244586, 40.170891 ], [ -75.244855, 40.170756 ], [ -75.245445, 40.170454 ], [ -75.246225, 40.170071 ], [ -75.246659, 40.169851 ], [ -75.24685, 40.169754 ], [ -75.247162, 40.169596 ], [ -75.247219, 40.169567 ], [ -75.247276, 40.169537 ], [ -75.247335, 40.169509 ], [ -75.247393, 40.169485 ], [ -75.247464, 40.169457 ], [ -75.247525, 40.169433 ], [ -75.247587, 40.169413 ], [ -75.247649, 40.169391 ], [ -75.247699, 40.169377 ], [ -75.247754, 40.169367 ], [ -75.247798, 40.16936 ], [ -75.247919, 40.169346 ], [ -75.248055, 40.169334 ], [ -75.248136, 40.169326 ], [ -75.248224, 40.169318 ], [ -75.248319, 40.169309 ], [ -75.24841, 40.1693 ], [ -75.248489, 40.169292 ], [ -75.248562, 40.169287 ], [ -75.248631, 40.169284 ], [ -75.248747, 40.169281 ], [ -75.248856, 40.169284 ], [ -75.249488, 40.169328 ], [ -75.24958, 40.169331 ], [ -75.249659, 40.169335 ], [ -75.249747, 40.169337 ], [ -75.249842, 40.169339 ], [ -75.249946, 40.169339 ], [ -75.250029, 40.169333 ], [ -75.250098, 40.169326 ], [ -75.250166, 40.169315 ], [ -75.250226, 40.169301 ], [ -75.250323, 40.16928 ], [ -75.250383, 40.169261 ], [ -75.250523, 40.169216 ], [ -75.250951, 40.169072 ], [ -75.251365, 40.168934 ], [ -75.251596, 40.168851 ], [ -75.251921, 40.168732 ], [ -75.252001, 40.168697 ], [ -75.252102, 40.168645 ], [ -75.252186, 40.168596 ], [ -75.252256, 40.168546 ], [ -75.252357, 40.168459 ], [ -75.25249, 40.168332 ], [ -75.252663, 40.168158 ], [ -75.253134, 40.167683 ], [ -75.253588, 40.167198 ], [ -75.253727, 40.167048 ], [ -75.253962, 40.166802 ], [ -75.25425, 40.166499 ], [ -75.254784, 40.165945 ], [ -75.255528, 40.165177 ], [ -75.255929, 40.16477 ], [ -75.256433, 40.164251 ], [ -75.256926, 40.163731 ], [ -75.257066, 40.163575 ], [ -75.257149, 40.163468 ], [ -75.25719, 40.163402 ], [ -75.257241, 40.163295 ], [ -75.257277, 40.163197 ], [ -75.257364, 40.162918 ], [ -75.257458, 40.162583 ], [ -75.257506, 40.162617 ], [ -75.258527, 40.163257 ], [ -75.260044, 40.164204 ], [ -75.26149, 40.165095 ], [ -75.262276, 40.165583 ], [ -75.262903, 40.165983 ], [ -75.264263, 40.166821 ], [ -75.264462, 40.166951 ], [ -75.265698, 40.167626 ], [ -75.266537, 40.168098 ], [ -75.266719, 40.168198 ], [ -75.266814, 40.168259 ], [ -75.266863, 40.168299 ], [ -75.266896, 40.168338 ], [ -75.266942, 40.168391 ], [ -75.267022, 40.168509 ], [ -75.267202, 40.168802 ], [ -75.267327, 40.169003 ], [ -75.267615, 40.169466 ], [ -75.268217, 40.170417 ], [ -75.268626, 40.171059 ], [ -75.269103, 40.171833 ], [ -75.269429, 40.172354 ], [ -75.269427, 40.172393 ], [ -75.270243, 40.173781 ], [ -75.270411, 40.174057 ], [ -75.270455, 40.174113 ], [ -75.270613, 40.174318 ], [ -75.270735, 40.174475 ], [ -75.270904, 40.174685 ], [ -75.271096, 40.174898 ], [ -75.271217, 40.175022 ], [ -75.271363, 40.175176 ], [ -75.271461, 40.175277 ], [ -75.271509, 40.175323 ], [ -75.27156, 40.175339 ], [ -75.272018, 40.17579 ], [ -75.272381, 40.176149 ], [ -75.272583, 40.176353 ], [ -75.272715, 40.176487 ], [ -75.272958, 40.176732 ], [ -75.273089, 40.176874 ], [ -75.27317, 40.176953 ], [ -75.273266, 40.177047 ], [ -75.273381, 40.177154 ], [ -75.273505, 40.177262 ], [ -75.273623, 40.177349 ], [ -75.273738, 40.177425 ], [ -75.273915, 40.177537 ], [ -75.274115, 40.177658 ], [ -75.274971, 40.178156 ], [ -75.27559, 40.178514 ], [ -75.275722, 40.178588 ], [ -75.275894, 40.17868 ], [ -75.276045, 40.178754 ], [ -75.276215, 40.178833 ], [ -75.276468, 40.178951 ], [ -75.276573, 40.179001 ], [ -75.276755, 40.179086 ], [ -75.276889, 40.179148 ], [ -75.277031, 40.179209 ], [ -75.277237, 40.179288 ], [ -75.277484, 40.179383 ], [ -75.27769, 40.179463 ], [ -75.277749, 40.179488 ], [ -75.277912, 40.179548 ], [ -75.278007, 40.179581 ], [ -75.278076, 40.179611 ], [ -75.278134, 40.179639 ], [ -75.278294, 40.179731 ], [ -75.279636, 40.180504 ], [ -75.279789, 40.1806 ], [ -75.280126, 40.180793 ], [ -75.280766, 40.18118 ], [ -75.281283, 40.181481 ], [ -75.281902, 40.181836 ], [ -75.282958, 40.182468 ], [ -75.285442, 40.18393 ], [ -75.286861, 40.184749 ], [ -75.28781, 40.185324 ], [ -75.288045, 40.185459 ], [ -75.289109, 40.186076 ], [ -75.289264, 40.186153 ], [ -75.28947, 40.186251 ], [ -75.28956, 40.1863 ], [ -75.289662, 40.186356 ], [ -75.290446, 40.18681 ], [ -75.291181, 40.187241 ], [ -75.291381, 40.187359 ], [ -75.291648, 40.187539 ], [ -75.291817, 40.187663 ], [ -75.291885, 40.187719 ], [ -75.291984, 40.187813 ], [ -75.292217, 40.188047 ], [ -75.292392, 40.188261 ], [ -75.292523, 40.188452 ], [ -75.292594, 40.188565 ], [ -75.292728, 40.188807 ], [ -75.293, 40.18938 ], [ -75.293304, 40.190014 ], [ -75.293517, 40.190456 ], [ -75.293611, 40.190639 ], [ -75.293602, 40.190684 ], [ -75.293618, 40.190728 ], [ -75.293704, 40.190893 ], [ -75.293812, 40.191091 ], [ -75.293877, 40.191227 ], [ -75.294043, 40.191571 ], [ -75.294071, 40.191626 ], [ -75.294132, 40.191756 ], [ -75.294158, 40.1918 ], [ -75.294206, 40.191829 ], [ -75.294275, 40.191967 ], [ -75.29451, 40.192606 ], [ -75.294727, 40.193149 ], [ -75.294861, 40.193421 ], [ -75.294902, 40.193503 ], [ -75.294966, 40.193611 ], [ -75.295039, 40.193723 ], [ -75.295088, 40.193795 ], [ -75.295144, 40.19387 ], [ -75.295234, 40.193982 ], [ -75.29534, 40.194102 ], [ -75.295417, 40.194176 ], [ -75.295487, 40.194249 ], [ -75.295583, 40.194336 ], [ -75.295644, 40.194388 ], [ -75.29579, 40.1945 ], [ -75.295906, 40.194586 ], [ -75.295994, 40.194648 ], [ -75.296061, 40.194691 ], [ -75.296145, 40.194738 ], [ -75.29633, 40.194857 ], [ -75.296473, 40.194936 ], [ -75.296493, 40.194968 ], [ -75.297365, 40.195508 ], [ -75.297666, 40.19569 ], [ -75.297729, 40.195697 ], [ -75.297981, 40.195847 ], [ -75.298092, 40.195913 ], [ -75.298322, 40.196044 ], [ -75.298729, 40.196282 ], [ -75.29923, 40.196556 ], [ -75.299688, 40.196807 ], [ -75.300123, 40.197045 ], [ -75.300551, 40.19728 ], [ -75.300798, 40.197415 ], [ -75.301173, 40.197621 ], [ -75.301367, 40.197727 ], [ -75.301798, 40.197957 ], [ -75.302079, 40.198108 ], [ -75.302329, 40.198241 ], [ -75.30259, 40.198381 ], [ -75.302968, 40.198583 ], [ -75.303235, 40.198726 ], [ -75.30357, 40.198906 ], [ -75.303637, 40.198938 ], [ -75.30368, 40.199007 ], [ -75.304039, 40.199206 ], [ -75.304347, 40.199376 ], [ -75.304366, 40.199383 ], [ -75.304508, 40.199408 ], [ -75.304539, 40.199428 ], [ -75.305159, 40.199788 ], [ -75.304425, 40.200573 ], [ -75.304358, 40.200596 ], [ -75.304177, 40.200783 ], [ -75.30411, 40.200851 ], [ -75.303906, 40.201074 ], [ -75.303752, 40.201242 ], [ -75.303741, 40.20129 ], [ -75.303099, 40.201974 ], [ -75.302731, 40.202352 ], [ -75.302037, 40.203078 ], [ -75.301873, 40.203254 ], [ -75.301583, 40.203562 ], [ -75.300846, 40.20433 ], [ -75.299917, 40.20531 ], [ -75.299351, 40.205904 ], [ -75.298907, 40.206413 ], [ -75.298284, 40.20708 ], [ -75.298127, 40.207234 ], [ -75.29748, 40.207918 ], [ -75.297206, 40.208217 ], [ -75.297114, 40.208323 ], [ -75.296483, 40.208991 ], [ -75.295456, 40.2101 ], [ -75.295189, 40.210395 ], [ -75.294418, 40.211168 ], [ -75.294181, 40.211377 ], [ -75.294072, 40.211484 ], [ -75.293906, 40.211648 ], [ -75.293793, 40.211784 ], [ -75.293737, 40.211853 ], [ -75.293695, 40.211918 ], [ -75.293662, 40.211967 ], [ -75.293626, 40.212038 ], [ -75.293481, 40.212334 ], [ -75.293267, 40.212827 ], [ -75.292891, 40.213667 ], [ -75.292649, 40.21424 ], [ -75.292617, 40.214324 ], [ -75.292584, 40.214415 ], [ -75.292554, 40.21452 ], [ -75.292549, 40.214559 ], [ -75.292554, 40.2146 ], [ -75.292519, 40.214668 ], [ -75.292529, 40.214728 ], [ -75.292546, 40.214806 ], [ -75.292575, 40.214939 ], [ -75.292627, 40.215121 ], [ -75.292682, 40.215171 ], [ -75.292735, 40.21541 ], [ -75.292746, 40.215534 ], [ -75.292741, 40.215647 ], [ -75.292723, 40.215758 ], [ -75.29269, 40.215866 ], [ -75.292638, 40.215972 ], [ -75.292579, 40.216075 ], [ -75.292538, 40.216133 ], [ -75.292285, 40.216556 ], [ -75.291968, 40.217016 ], [ -75.291951, 40.217042 ], [ -75.291682, 40.217415 ], [ -75.291475, 40.217704 ], [ -75.291288, 40.217963 ], [ -75.291007, 40.218354 ], [ -75.290475, 40.219175 ], [ -75.289992, 40.21988 ], [ -75.289819, 40.220135 ], [ -75.289273, 40.220942 ], [ -75.289071, 40.221232 ], [ -75.288491, 40.222074 ], [ -75.287983, 40.222806 ], [ -75.287832, 40.223022 ], [ -75.287696, 40.223194 ], [ -75.287206, 40.223786 ], [ -75.286959, 40.224109 ], [ -75.286866, 40.224227 ], [ -75.286318, 40.224872 ], [ -75.286123, 40.225128 ], [ -75.285682, 40.225694 ], [ -75.285226, 40.226417 ], [ -75.285176, 40.226473 ], [ -75.285122, 40.226534 ], [ -75.285068, 40.226597 ], [ -75.285011, 40.226658 ], [ -75.284931, 40.22676 ], [ -75.284774, 40.226949 ], [ -75.284418, 40.227357 ], [ -75.284264, 40.227515 ], [ -75.284106, 40.227669 ], [ -75.283937, 40.227816 ], [ -75.283658, 40.228041 ], [ -75.283586, 40.228099 ], [ -75.28264, 40.228822 ], [ -75.282406, 40.229003 ], [ -75.28229, 40.229094 ], [ -75.282193, 40.22917 ], [ -75.281752, 40.22952 ], [ -75.281593, 40.229647 ], [ -75.281117, 40.230008 ], [ -75.280878, 40.230208 ], [ -75.280759, 40.230309 ], [ -75.280662, 40.230405 ], [ -75.280194, 40.23091 ], [ -75.27976, 40.231376 ], [ -75.279316, 40.231857 ], [ -75.278821, 40.232352 ], [ -75.278397, 40.232813 ], [ -75.278067, 40.233156 ], [ -75.277483, 40.233773 ], [ -75.27702, 40.234271 ], [ -75.276572, 40.234749 ], [ -75.276352, 40.234967 ], [ -75.275999, 40.235355 ], [ -75.275686, 40.235695 ], [ -75.275056, 40.236379 ], [ -75.274769, 40.236216 ], [ -75.274696, 40.236171 ], [ -75.274531, 40.23607 ], [ -75.274213, 40.235878 ], [ -75.273708, 40.235595 ], [ -75.273313, 40.235359 ], [ -75.272955, 40.235146 ], [ -75.272376, 40.234803 ], [ -75.271984, 40.234573 ], [ -75.271492, 40.234271 ], [ -75.271211, 40.234106 ], [ -75.271177, 40.234045 ], [ -75.270444, 40.233601 ], [ -75.270305, 40.233518 ], [ -75.26977, 40.233194 ], [ -75.268879, 40.232645 ], [ -75.26864, 40.232516 ], [ -75.268543, 40.23247 ], [ -75.268467, 40.232459 ], [ -75.268266, 40.232338 ], [ -75.26811, 40.232254 ], [ -75.267538, 40.231911 ], [ -75.266969, 40.231569 ], [ -75.266541, 40.231314 ], [ -75.26616, 40.231086 ], [ -75.265324, 40.230588 ], [ -75.26499, 40.230388 ], [ -75.264665, 40.230191 ], [ -75.263583, 40.229555 ], [ -75.26316, 40.229292 ], [ -75.262475, 40.228884 ], [ -75.262171, 40.229256 ], [ -75.261892, 40.229608 ], [ -75.261308, 40.230274 ], [ -75.261007, 40.230602 ], [ -75.260879, 40.230743 ], [ -75.260849, 40.230771 ], [ -75.260817, 40.2308 ], [ -75.260772, 40.230826 ], [ -75.260646, 40.230885 ], [ -75.259277, 40.231373 ], [ -75.257717, 40.231952 ], [ -75.256581, 40.232375 ], [ -75.255113, 40.233008 ], [ -75.254849, 40.233126 ], [ -75.254663, 40.233211 ], [ -75.25453, 40.233278 ], [ -75.2544, 40.233343 ], [ -75.254299, 40.233397 ], [ -75.254098, 40.233565 ], [ -75.253526, 40.234031 ], [ -75.252733, 40.234677 ], [ -75.252068, 40.23523 ], [ -75.251793, 40.235479 ], [ -75.250766, 40.23634 ], [ -75.250569, 40.236495 ], [ -75.250455, 40.236573 ], [ -75.250372, 40.236619 ], [ -75.250323, 40.236622 ], [ -75.250211, 40.236667 ], [ -75.250114, 40.236726 ], [ -75.249358, 40.237183 ], [ -75.248849, 40.236711 ], [ -75.248742, 40.2366 ], [ -75.248624, 40.236495 ], [ -75.248528, 40.236424 ], [ -75.248453, 40.236382 ], [ -75.248383, 40.236356 ], [ -75.2483, 40.236341 ], [ -75.248122, 40.236333 ], [ -75.248122, 40.236256 ], [ -75.248108, 40.23607 ], [ -75.248072, 40.235956 ], [ -75.248051, 40.23589 ], [ -75.248006, 40.235795 ], [ -75.247979, 40.235739 ], [ -75.247906, 40.235615 ], [ -75.247887, 40.235583 ], [ -75.247706, 40.235324 ], [ -75.247704, 40.235318 ], [ -75.247639, 40.235134 ], [ -75.247623, 40.235075 ], [ -75.247603, 40.235007 ], [ -75.247603, 40.234883 ], [ -75.247603, 40.23487 ], [ -75.247649, 40.234744 ], [ -75.247668, 40.23472 ], [ -75.247722, 40.234649 ], [ -75.247793, 40.234582 ], [ -75.247484, 40.234444 ], [ -75.247244, 40.234334 ], [ -75.247178, 40.234401 ], [ -75.247137, 40.23446 ], [ -75.247113, 40.234486 ], [ -75.247064, 40.234523 ], [ -75.24702, 40.234541 ], [ -75.246949, 40.234559 ], [ -75.246904, 40.234565 ], [ -75.246582, 40.234632 ], [ -75.246431, 40.234661 ], [ -75.246267, 40.234695 ], [ -75.245955, 40.234756 ], [ -75.245801, 40.234792 ], [ -75.245757, 40.234806 ], [ -75.245684, 40.234851 ], [ -75.245619, 40.234906 ], [ -75.24558, 40.234983 ], [ -75.245575, 40.234995 ], [ -75.245552, 40.235051 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307234", "route_id": "94" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.208287, 40.077763 ], [ -75.208237, 40.077762 ], [ -75.208094, 40.077752 ], [ -75.208085, 40.077915 ], [ -75.208064, 40.078137 ], [ -75.208036, 40.078358 ], [ -75.208011, 40.078534 ], [ -75.207945, 40.079004 ], [ -75.207869, 40.079564 ], [ -75.207865, 40.07962 ], [ -75.20787, 40.079673 ], [ -75.207878, 40.079729 ], [ -75.207894, 40.079786 ], [ -75.207931, 40.079961 ], [ -75.208057, 40.080529 ], [ -75.20809, 40.080709 ], [ -75.208114, 40.08081 ], [ -75.208145, 40.080901 ], [ -75.208181, 40.081008 ], [ -75.208278, 40.081271 ], [ -75.20834, 40.081441 ], [ -75.208385, 40.081562 ], [ -75.208435, 40.081663 ], [ -75.2086, 40.081953 ], [ -75.208721, 40.082173 ], [ -75.208951, 40.082583 ], [ -75.209373, 40.083354 ], [ -75.209871, 40.084253 ], [ -75.209898, 40.084302 ], [ -75.209886, 40.084393 ], [ -75.209966, 40.084551 ], [ -75.210054, 40.084711 ], [ -75.210189, 40.084924 ], [ -75.210356, 40.085208 ], [ -75.21037, 40.085231 ], [ -75.210408, 40.085293 ], [ -75.210422, 40.085315 ], [ -75.210523, 40.085482 ], [ -75.210935, 40.085659 ], [ -75.211271, 40.085807 ], [ -75.211523, 40.085913 ], [ -75.211862, 40.086119 ], [ -75.212037, 40.08622 ], [ -75.212149, 40.086294 ], [ -75.212228, 40.08634 ], [ -75.212289, 40.086383 ], [ -75.212378, 40.086462 ], [ -75.212454, 40.08653 ], [ -75.212588, 40.08665 ], [ -75.212657, 40.086714 ], [ -75.212745, 40.086795 ], [ -75.21285, 40.086914 ], [ -75.212909, 40.086991 ], [ -75.213004, 40.087117 ], [ -75.213109, 40.087278 ], [ -75.213219, 40.087511 ], [ -75.213293, 40.087671 ], [ -75.213301, 40.087684 ], [ -75.213382, 40.087735 ], [ -75.213394, 40.087765 ], [ -75.213495, 40.088044 ], [ -75.213528, 40.088145 ], [ -75.213571, 40.08826 ], [ -75.213629, 40.088438 ], [ -75.213808, 40.088982 ], [ -75.213849, 40.089099 ], [ -75.213889, 40.089214 ], [ -75.213948, 40.089349 ], [ -75.21401, 40.089479 ], [ -75.214181, 40.089773 ], [ -75.214272, 40.089916 ], [ -75.214412, 40.090134 ], [ -75.214565, 40.090385 ], [ -75.214671, 40.090543 ], [ -75.214734, 40.09065 ], [ -75.214759, 40.090711 ], [ -75.214772, 40.090757 ], [ -75.214779, 40.090814 ], [ -75.214773, 40.090874 ], [ -75.214768, 40.090928 ], [ -75.21476, 40.090978 ], [ -75.214731, 40.091063 ], [ -75.2147, 40.091153 ], [ -75.214501, 40.091666 ], [ -75.214452, 40.0918 ], [ -75.21432, 40.092174 ], [ -75.21423, 40.092403 ], [ -75.214145, 40.092622 ], [ -75.213777, 40.093638 ], [ -75.213473, 40.094471 ], [ -75.213397, 40.094699 ], [ -75.213368, 40.09482 ], [ -75.213343, 40.094955 ], [ -75.213239, 40.095867 ], [ -75.212983, 40.097722 ], [ -75.212968, 40.097854 ], [ -75.212867, 40.098517 ], [ -75.212829, 40.098796 ], [ -75.212763, 40.099268 ], [ -75.212721, 40.099568 ], [ -75.212696, 40.099815 ], [ -75.212696, 40.099931 ], [ -75.212722, 40.100345 ], [ -75.212735, 40.100552 ], [ -75.212763, 40.100821 ], [ -75.212797, 40.1012 ], [ -75.212829, 40.101608 ], [ -75.212888, 40.102238 ], [ -75.212915, 40.10252 ], [ -75.212965, 40.102879 ], [ -75.21318, 40.104389 ], [ -75.21322, 40.104667 ], [ -75.213259, 40.104918 ], [ -75.213306, 40.105258 ], [ -75.213372, 40.10572 ], [ -75.21346, 40.106386 ], [ -75.213603, 40.107427 ], [ -75.213644, 40.107724 ], [ -75.213666, 40.107859 ], [ -75.213685, 40.10798 ], [ -75.213698, 40.108058 ], [ -75.213726, 40.108312 ], [ -75.213745, 40.108424 ], [ -75.213827, 40.108985 ], [ -75.213984, 40.110087 ], [ -75.214018, 40.110322 ], [ -75.214079, 40.110742 ], [ -75.214108, 40.110933 ], [ -75.214146, 40.111195 ], [ -75.214169, 40.111348 ], [ -75.214212, 40.111651 ], [ -75.214275, 40.112083 ], [ -75.214366, 40.112569 ], [ -75.214413, 40.11282 ], [ -75.214448, 40.113011 ], [ -75.214512, 40.113367 ], [ -75.214559, 40.113623 ], [ -75.214604, 40.113876 ], [ -75.214688, 40.114405 ], [ -75.214726, 40.114644 ], [ -75.214779, 40.115038 ], [ -75.214795, 40.115158 ], [ -75.214819, 40.115288 ], [ -75.214875, 40.11559 ], [ -75.215018, 40.11642 ], [ -75.215319, 40.118012 ], [ -75.215353, 40.118164 ], [ -75.215331, 40.11827 ], [ -75.215365, 40.11845 ], [ -75.215389, 40.118586 ], [ -75.215452, 40.118925 ], [ -75.215465, 40.118998 ], [ -75.215492, 40.119144 ], [ -75.215517, 40.119284 ], [ -75.215557, 40.119481 ], [ -75.215612, 40.119535 ], [ -75.215637, 40.119642 ], [ -75.215663, 40.119752 ], [ -75.215691, 40.119828 ], [ -75.215712, 40.119875 ], [ -75.215739, 40.119938 ], [ -75.215785, 40.120016 ], [ -75.215823, 40.120076 ], [ -75.215888, 40.120148 ], [ -75.215957, 40.120205 ], [ -75.216017, 40.120256 ], [ -75.216084, 40.120306 ], [ -75.216156, 40.120349 ], [ -75.216229, 40.120393 ], [ -75.216342, 40.120453 ], [ -75.216464, 40.120531 ], [ -75.216605, 40.120613 ], [ -75.216619, 40.120624 ], [ -75.216678, 40.120667 ], [ -75.216763, 40.120742 ], [ -75.216815, 40.120794 ], [ -75.216882, 40.120868 ], [ -75.21691, 40.120905 ], [ -75.216946, 40.120953 ], [ -75.217001, 40.12104 ], [ -75.217042, 40.121131 ], [ -75.217078, 40.121237 ], [ -75.217102, 40.121358 ], [ -75.21712, 40.121497 ], [ -75.217146, 40.121736 ], [ -75.217202, 40.122232 ], [ -75.217259, 40.12256 ], [ -75.217309, 40.122957 ], [ -75.217334, 40.123196 ], [ -75.217418, 40.123999 ], [ -75.217429, 40.12412 ], [ -75.217435, 40.124175 ], [ -75.217464, 40.12442 ], [ -75.217755, 40.127014 ], [ -75.217796, 40.127389 ], [ -75.217812, 40.127547 ], [ -75.217834, 40.127673 ], [ -75.217844, 40.12775 ], [ -75.217844, 40.127817 ], [ -75.217852, 40.128024 ], [ -75.217852, 40.128116 ], [ -75.217841, 40.128209 ], [ -75.217832, 40.128259 ], [ -75.217815, 40.12834 ], [ -75.217775, 40.128468 ], [ -75.217715, 40.12862 ], [ -75.217686, 40.128693 ], [ -75.217613, 40.128893 ], [ -75.217525, 40.129093 ], [ -75.217434, 40.129298 ], [ -75.217398, 40.129382 ], [ -75.217295, 40.129616 ], [ -75.21721, 40.12977 ], [ -75.217165, 40.129861 ], [ -75.217098, 40.129965 ], [ -75.216469, 40.130901 ], [ -75.216267, 40.131176 ], [ -75.216141, 40.131335 ], [ -75.216043, 40.131453 ], [ -75.215938, 40.13156 ], [ -75.215831, 40.131662 ], [ -75.215657, 40.131826 ], [ -75.215457, 40.132007 ], [ -75.214671, 40.132729 ], [ -75.214294, 40.133074 ], [ -75.2142, 40.133176 ], [ -75.214139, 40.133252 ], [ -75.214066, 40.133358 ], [ -75.213998, 40.13346 ], [ -75.213906, 40.133618 ], [ -75.21383, 40.133753 ], [ -75.213807, 40.133807 ], [ -75.213777, 40.133877 ], [ -75.21374, 40.133997 ], [ -75.213735, 40.134015 ], [ -75.21367, 40.134243 ], [ -75.213642, 40.134371 ], [ -75.213591, 40.134595 ], [ -75.213523, 40.134917 ], [ -75.21347, 40.135169 ], [ -75.21344, 40.135337 ], [ -75.213397, 40.135582 ], [ -75.213315, 40.136024 ], [ -75.213247, 40.136251 ], [ -75.213217, 40.136345 ], [ -75.213191, 40.136418 ], [ -75.213163, 40.136496 ], [ -75.213051, 40.136707 ], [ -75.212859, 40.137035 ], [ -75.212689, 40.137309 ], [ -75.212631, 40.137404 ], [ -75.212468, 40.137634 ], [ -75.212325, 40.137813 ], [ -75.212297, 40.137886 ], [ -75.212284, 40.137937 ], [ -75.212266, 40.13804 ], [ -75.212257, 40.138096 ], [ -75.212252, 40.138169 ], [ -75.212253, 40.1382 ], [ -75.212255, 40.138251 ], [ -75.212257, 40.138323 ], [ -75.212268, 40.138401 ], [ -75.212272, 40.138422 ], [ -75.212296, 40.138517 ], [ -75.212311, 40.138574 ], [ -75.212336, 40.138669 ], [ -75.212362, 40.138765 ], [ -75.212426, 40.138985 ], [ -75.212657, 40.139838 ], [ -75.212691, 40.139976 ], [ -75.212716, 40.140133 ], [ -75.212726, 40.140246 ], [ -75.212756, 40.140485 ], [ -75.212775, 40.14074 ], [ -75.2128, 40.141207 ], [ -75.212854, 40.141929 ], [ -75.212854, 40.142072 ], [ -75.212794, 40.142894 ], [ -75.212736, 40.143876 ], [ -75.212684, 40.144779 ], [ -75.212629, 40.145758 ], [ -75.212615, 40.146111 ], [ -75.212603, 40.146445 ], [ -75.212569, 40.147335 ], [ -75.212507, 40.148143 ], [ -75.212488, 40.148666 ], [ -75.212488, 40.14874 ], [ -75.212498, 40.148826 ], [ -75.212505, 40.148919 ], [ -75.212519, 40.149004 ], [ -75.212549, 40.149176 ], [ -75.212589, 40.149403 ], [ -75.212669, 40.149855 ], [ -75.212695, 40.15 ], [ -75.212729, 40.150167 ], [ -75.212805, 40.150529 ], [ -75.212908, 40.151122 ], [ -75.212933, 40.151266 ], [ -75.212943, 40.151322 ], [ -75.213073, 40.152068 ], [ -75.213137, 40.152395 ], [ -75.213185, 40.15262 ], [ -75.213236, 40.152803 ], [ -75.213319, 40.153023 ], [ -75.213397, 40.153253 ], [ -75.213461, 40.153433 ], [ -75.213742, 40.154266 ], [ -75.213771, 40.154361 ], [ -75.213793, 40.154452 ], [ -75.213815, 40.154533 ], [ -75.213844, 40.154678 ], [ -75.213892, 40.15497 ], [ -75.213923, 40.155263 ], [ -75.213935, 40.155455 ], [ -75.214751, 40.155501 ], [ -75.215508, 40.155532 ], [ -75.21714, 40.155604 ], [ -75.217886, 40.155642 ], [ -75.218852, 40.155671 ], [ -75.219209, 40.155685 ], [ -75.219315, 40.155698 ], [ -75.219389, 40.15571 ], [ -75.220957, 40.154925 ], [ -75.22153, 40.154674 ], [ -75.222134, 40.154399 ], [ -75.222967, 40.154083 ], [ -75.223792, 40.153746 ], [ -75.224513, 40.153473 ], [ -75.224877, 40.154024 ], [ -75.224886, 40.154061 ], [ -75.224887, 40.154098 ], [ -75.224876, 40.154126 ], [ -75.224463, 40.154289 ], [ -75.22434, 40.154275 ], [ -75.224832, 40.1548 ], [ -75.225349, 40.155319 ], [ -75.226055, 40.156027 ], [ -75.226557, 40.156532 ], [ -75.226385, 40.157466 ], [ -75.226308, 40.15786 ], [ -75.226823, 40.158168 ], [ -75.227165, 40.158373 ], [ -75.227887, 40.158798 ], [ -75.228611, 40.159225 ], [ -75.229011, 40.159464 ], [ -75.229407, 40.159698 ], [ -75.2295, 40.159751 ], [ -75.229571, 40.159804 ], [ -75.229644, 40.159864 ], [ -75.229683, 40.159903 ], [ -75.229755, 40.159993 ], [ -75.229856, 40.160129 ], [ -75.230312, 40.160553 ], [ -75.230445, 40.160675 ], [ -75.230515, 40.160729 ], [ -75.230734, 40.160875 ], [ -75.231006, 40.161047 ], [ -75.231515, 40.161425 ], [ -75.231878, 40.161702 ], [ -75.233139, 40.162668 ], [ -75.233494, 40.162932 ], [ -75.233575, 40.162997 ], [ -75.233614, 40.163044 ], [ -75.233651, 40.163098 ], [ -75.233668, 40.16315 ], [ -75.233674, 40.163197 ], [ -75.233685, 40.163253 ], [ -75.233705, 40.163415 ], [ -75.233747, 40.163478 ], [ -75.233785, 40.163518 ], [ -75.233825, 40.163557 ], [ -75.233881, 40.163602 ], [ -75.233983, 40.163666 ], [ -75.234192, 40.163795 ], [ -75.234336, 40.163879 ], [ -75.234506, 40.163979 ], [ -75.234698, 40.164083 ], [ -75.23527, 40.164415 ], [ -75.235858, 40.164753 ], [ -75.236539, 40.165146 ], [ -75.237175, 40.165527 ], [ -75.237659, 40.165802 ], [ -75.238844, 40.166475 ], [ -75.240484, 40.167414 ], [ -75.241501, 40.168002 ], [ -75.241914, 40.168244 ], [ -75.242176, 40.1684 ], [ -75.242524, 40.1686 ], [ -75.242733, 40.168728 ], [ -75.242905, 40.168838 ], [ -75.242984, 40.168897 ], [ -75.243059, 40.168959 ], [ -75.243136, 40.169031 ], [ -75.243226, 40.169126 ], [ -75.24331, 40.169214 ], [ -75.243415, 40.169334 ], [ -75.243484, 40.169419 ], [ -75.243529, 40.169478 ], [ -75.243558, 40.169525 ], [ -75.243578, 40.169556 ], [ -75.243583, 40.169578 ], [ -75.243582, 40.169604 ], [ -75.243567, 40.169635 ], [ -75.243534, 40.169672 ], [ -75.243214, 40.169947 ], [ -75.24381, 40.1703 ], [ -75.243952, 40.17039 ], [ -75.244067, 40.170465 ], [ -75.2442, 40.170564 ], [ -75.244284, 40.170632 ], [ -75.244401, 40.17073 ], [ -75.244586, 40.170891 ], [ -75.244855, 40.170756 ], [ -75.245445, 40.170454 ], [ -75.246225, 40.170071 ], [ -75.246659, 40.169851 ], [ -75.24685, 40.169754 ], [ -75.247162, 40.169596 ], [ -75.247219, 40.169567 ], [ -75.247276, 40.169537 ], [ -75.247335, 40.169509 ], [ -75.247393, 40.169485 ], [ -75.247464, 40.169457 ], [ -75.247525, 40.169433 ], [ -75.247587, 40.169413 ], [ -75.247649, 40.169391 ], [ -75.247699, 40.169377 ], [ -75.247754, 40.169367 ], [ -75.247798, 40.16936 ], [ -75.247919, 40.169346 ], [ -75.248055, 40.169334 ], [ -75.248136, 40.169326 ], [ -75.248224, 40.169318 ], [ -75.248319, 40.169309 ], [ -75.24841, 40.1693 ], [ -75.248489, 40.169292 ], [ -75.248562, 40.169287 ], [ -75.248631, 40.169284 ], [ -75.248747, 40.169281 ], [ -75.248856, 40.169284 ], [ -75.249488, 40.169328 ], [ -75.24958, 40.169331 ], [ -75.249659, 40.169335 ], [ -75.249747, 40.169337 ], [ -75.249842, 40.169339 ], [ -75.249946, 40.169339 ], [ -75.250029, 40.169333 ], [ -75.250098, 40.169326 ], [ -75.250166, 40.169315 ], [ -75.250226, 40.169301 ], [ -75.250323, 40.16928 ], [ -75.250383, 40.169261 ], [ -75.250523, 40.169216 ], [ -75.250951, 40.169072 ], [ -75.251365, 40.168934 ], [ -75.251596, 40.168851 ], [ -75.251921, 40.168732 ], [ -75.252001, 40.168697 ], [ -75.252102, 40.168645 ], [ -75.252186, 40.168596 ], [ -75.252256, 40.168546 ], [ -75.252357, 40.168459 ], [ -75.25249, 40.168332 ], [ -75.252663, 40.168158 ], [ -75.253134, 40.167683 ], [ -75.253588, 40.167198 ], [ -75.253727, 40.167048 ], [ -75.253962, 40.166802 ], [ -75.25425, 40.166499 ], [ -75.254784, 40.165945 ], [ -75.255528, 40.165177 ], [ -75.255929, 40.16477 ], [ -75.256433, 40.164251 ], [ -75.256926, 40.163731 ], [ -75.257066, 40.163575 ], [ -75.257149, 40.163468 ], [ -75.25719, 40.163402 ], [ -75.257241, 40.163295 ], [ -75.257277, 40.163197 ], [ -75.257364, 40.162918 ], [ -75.257458, 40.162583 ], [ -75.257506, 40.162617 ], [ -75.258527, 40.163257 ], [ -75.260044, 40.164204 ], [ -75.26149, 40.165095 ], [ -75.262276, 40.165583 ], [ -75.262903, 40.165983 ], [ -75.264263, 40.166821 ], [ -75.264462, 40.166951 ], [ -75.265698, 40.167626 ], [ -75.266537, 40.168098 ], [ -75.266719, 40.168198 ], [ -75.266814, 40.168259 ], [ -75.266863, 40.168299 ], [ -75.266896, 40.168338 ], [ -75.266942, 40.168391 ], [ -75.267022, 40.168509 ], [ -75.267202, 40.168802 ], [ -75.267327, 40.169003 ], [ -75.267615, 40.169466 ], [ -75.268217, 40.170417 ], [ -75.268626, 40.171059 ], [ -75.269103, 40.171833 ], [ -75.269429, 40.172354 ], [ -75.269427, 40.172393 ], [ -75.270243, 40.173781 ], [ -75.270411, 40.174057 ], [ -75.270455, 40.174113 ], [ -75.270613, 40.174318 ], [ -75.270735, 40.174475 ], [ -75.270904, 40.174685 ], [ -75.271096, 40.174898 ], [ -75.271217, 40.175022 ], [ -75.271363, 40.175176 ], [ -75.271461, 40.175277 ], [ -75.271509, 40.175323 ], [ -75.27156, 40.175339 ], [ -75.272018, 40.17579 ], [ -75.272381, 40.176149 ], [ -75.272583, 40.176353 ], [ -75.273025, 40.176072 ], [ -75.273672, 40.176786 ], [ -75.274158, 40.177119 ], [ -75.274472, 40.17729 ], [ -75.2749, 40.177623 ], [ -75.275751, 40.178111 ], [ -75.27584, 40.178117 ], [ -75.2759, 40.178057 ], [ -75.276019, 40.177635 ], [ -75.275947, 40.177528 ], [ -75.275114, 40.177433 ], [ -75.2749, 40.177623 ], [ -75.274472, 40.17729 ], [ -75.274158, 40.177119 ], [ -75.273672, 40.176786 ], [ -75.273025, 40.176072 ], [ -75.272583, 40.176353 ], [ -75.272715, 40.176487 ], [ -75.272958, 40.176732 ], [ -75.273089, 40.176874 ], [ -75.27317, 40.176953 ], [ -75.273266, 40.177047 ], [ -75.273381, 40.177154 ], [ -75.273505, 40.177262 ], [ -75.273623, 40.177349 ], [ -75.273738, 40.177425 ], [ -75.273915, 40.177537 ], [ -75.274115, 40.177658 ], [ -75.274971, 40.178156 ], [ -75.27559, 40.178514 ], [ -75.275722, 40.178588 ], [ -75.275894, 40.17868 ], [ -75.276045, 40.178754 ], [ -75.276215, 40.178833 ], [ -75.276468, 40.178951 ], [ -75.276573, 40.179001 ], [ -75.276755, 40.179086 ], [ -75.276889, 40.179148 ], [ -75.277031, 40.179209 ], [ -75.277237, 40.179288 ], [ -75.277484, 40.179383 ], [ -75.27769, 40.179463 ], [ -75.277749, 40.179488 ], [ -75.277912, 40.179548 ], [ -75.278007, 40.179581 ], [ -75.278076, 40.179611 ], [ -75.278134, 40.179639 ], [ -75.278294, 40.179731 ], [ -75.279636, 40.180504 ], [ -75.279789, 40.1806 ], [ -75.280126, 40.180793 ], [ -75.280766, 40.18118 ], [ -75.281283, 40.181481 ], [ -75.281902, 40.181836 ], [ -75.282958, 40.182468 ], [ -75.285442, 40.18393 ], [ -75.286861, 40.184749 ], [ -75.28781, 40.185324 ], [ -75.288045, 40.185459 ], [ -75.289109, 40.186076 ], [ -75.289264, 40.186153 ], [ -75.28947, 40.186251 ], [ -75.28956, 40.1863 ], [ -75.289662, 40.186356 ], [ -75.290446, 40.18681 ], [ -75.291181, 40.187241 ], [ -75.291381, 40.187359 ], [ -75.291648, 40.187539 ], [ -75.291817, 40.187663 ], [ -75.291885, 40.187719 ], [ -75.291984, 40.187813 ], [ -75.292217, 40.188047 ], [ -75.292392, 40.188261 ], [ -75.292523, 40.188452 ], [ -75.292594, 40.188565 ], [ -75.292728, 40.188807 ], [ -75.293, 40.18938 ], [ -75.293304, 40.190014 ], [ -75.293517, 40.190456 ], [ -75.293611, 40.190639 ], [ -75.293602, 40.190684 ], [ -75.293618, 40.190728 ], [ -75.293704, 40.190893 ], [ -75.293812, 40.191091 ], [ -75.293877, 40.191227 ], [ -75.294043, 40.191571 ], [ -75.294071, 40.191626 ], [ -75.294132, 40.191756 ], [ -75.294158, 40.1918 ], [ -75.294206, 40.191829 ], [ -75.294275, 40.191967 ], [ -75.29451, 40.192606 ], [ -75.294727, 40.193149 ], [ -75.294861, 40.193421 ], [ -75.294902, 40.193503 ], [ -75.294966, 40.193611 ], [ -75.295039, 40.193723 ], [ -75.295088, 40.193795 ], [ -75.295144, 40.19387 ], [ -75.295234, 40.193982 ], [ -75.29534, 40.194102 ], [ -75.295417, 40.194176 ], [ -75.295487, 40.194249 ], [ -75.295583, 40.194336 ], [ -75.295644, 40.194388 ], [ -75.29579, 40.1945 ], [ -75.295906, 40.194586 ], [ -75.295994, 40.194648 ], [ -75.296061, 40.194691 ], [ -75.296145, 40.194738 ], [ -75.29633, 40.194857 ], [ -75.296473, 40.194936 ], [ -75.296493, 40.194968 ], [ -75.297365, 40.195508 ], [ -75.297666, 40.19569 ], [ -75.297729, 40.195697 ], [ -75.297981, 40.195847 ], [ -75.298092, 40.195913 ], [ -75.298322, 40.196044 ], [ -75.298729, 40.196282 ], [ -75.29923, 40.196556 ], [ -75.299688, 40.196807 ], [ -75.300123, 40.197045 ], [ -75.300551, 40.19728 ], [ -75.300798, 40.197415 ], [ -75.301173, 40.197621 ], [ -75.301367, 40.197727 ], [ -75.301798, 40.197957 ], [ -75.302079, 40.198108 ], [ -75.302329, 40.198241 ], [ -75.30259, 40.198381 ], [ -75.302968, 40.198583 ], [ -75.303235, 40.198726 ], [ -75.30357, 40.198906 ], [ -75.303637, 40.198938 ], [ -75.30368, 40.199007 ], [ -75.304039, 40.199206 ], [ -75.304347, 40.199376 ], [ -75.304366, 40.199383 ], [ -75.304508, 40.199408 ], [ -75.304539, 40.199428 ], [ -75.305159, 40.199788 ], [ -75.304425, 40.200573 ], [ -75.304358, 40.200596 ], [ -75.304177, 40.200783 ], [ -75.30411, 40.200851 ], [ -75.303906, 40.201074 ], [ -75.303752, 40.201242 ], [ -75.303741, 40.20129 ], [ -75.303099, 40.201974 ], [ -75.302731, 40.202352 ], [ -75.302037, 40.203078 ], [ -75.301873, 40.203254 ], [ -75.301583, 40.203562 ], [ -75.300846, 40.20433 ], [ -75.299917, 40.20531 ], [ -75.299351, 40.205904 ], [ -75.298907, 40.206413 ], [ -75.298284, 40.20708 ], [ -75.298127, 40.207234 ], [ -75.29748, 40.207918 ], [ -75.297206, 40.208217 ], [ -75.297114, 40.208323 ], [ -75.296483, 40.208991 ], [ -75.295456, 40.2101 ], [ -75.295189, 40.210395 ], [ -75.294418, 40.211168 ], [ -75.294181, 40.211377 ], [ -75.294072, 40.211484 ], [ -75.293906, 40.211648 ], [ -75.293793, 40.211784 ], [ -75.293737, 40.211853 ], [ -75.293695, 40.211918 ], [ -75.293662, 40.211967 ], [ -75.293626, 40.212038 ], [ -75.293481, 40.212334 ], [ -75.293267, 40.212827 ], [ -75.292891, 40.213667 ], [ -75.292649, 40.21424 ], [ -75.292617, 40.214324 ], [ -75.292584, 40.214415 ], [ -75.292554, 40.21452 ], [ -75.292549, 40.214559 ], [ -75.292554, 40.2146 ], [ -75.292519, 40.214668 ], [ -75.292529, 40.214728 ], [ -75.292546, 40.214806 ], [ -75.292575, 40.214939 ], [ -75.292627, 40.215121 ], [ -75.292682, 40.215171 ], [ -75.292735, 40.21541 ], [ -75.292746, 40.215534 ], [ -75.292741, 40.215647 ], [ -75.292723, 40.215758 ], [ -75.29269, 40.215866 ], [ -75.292638, 40.215972 ], [ -75.292579, 40.216075 ], [ -75.292538, 40.216133 ], [ -75.292285, 40.216556 ], [ -75.291968, 40.217016 ], [ -75.291951, 40.217042 ], [ -75.291682, 40.217415 ], [ -75.291475, 40.217704 ], [ -75.291288, 40.217963 ], [ -75.291007, 40.218354 ], [ -75.290475, 40.219175 ], [ -75.289992, 40.21988 ], [ -75.289819, 40.220135 ], [ -75.289273, 40.220942 ], [ -75.289071, 40.221232 ], [ -75.288491, 40.222074 ], [ -75.287983, 40.222806 ], [ -75.287832, 40.223022 ], [ -75.287696, 40.223194 ], [ -75.287206, 40.223786 ], [ -75.286959, 40.224109 ], [ -75.286866, 40.224227 ], [ -75.286318, 40.224872 ], [ -75.286123, 40.225128 ], [ -75.285682, 40.225694 ], [ -75.285226, 40.226417 ], [ -75.285176, 40.226473 ], [ -75.285122, 40.226534 ], [ -75.285068, 40.226597 ], [ -75.285011, 40.226658 ], [ -75.284931, 40.22676 ], [ -75.284774, 40.226949 ], [ -75.284418, 40.227357 ], [ -75.284264, 40.227515 ], [ -75.284106, 40.227669 ], [ -75.283937, 40.227816 ], [ -75.283658, 40.228041 ], [ -75.283586, 40.228099 ], [ -75.28264, 40.228822 ], [ -75.282406, 40.229003 ], [ -75.28229, 40.229094 ], [ -75.282193, 40.22917 ], [ -75.281752, 40.22952 ], [ -75.281593, 40.229647 ], [ -75.281117, 40.230008 ], [ -75.280878, 40.230208 ], [ -75.280759, 40.230309 ], [ -75.280662, 40.230405 ], [ -75.280194, 40.23091 ], [ -75.27976, 40.231376 ], [ -75.279316, 40.231857 ], [ -75.278821, 40.232352 ], [ -75.278397, 40.232813 ], [ -75.278067, 40.233156 ], [ -75.277483, 40.233773 ], [ -75.27702, 40.234271 ], [ -75.276572, 40.234749 ], [ -75.276352, 40.234967 ], [ -75.275999, 40.235355 ], [ -75.275686, 40.235695 ], [ -75.275056, 40.236379 ], [ -75.274769, 40.236216 ], [ -75.274696, 40.236171 ], [ -75.274531, 40.23607 ], [ -75.274213, 40.235878 ], [ -75.273708, 40.235595 ], [ -75.273313, 40.235359 ], [ -75.272955, 40.235146 ], [ -75.272376, 40.234803 ], [ -75.271984, 40.234573 ], [ -75.271492, 40.234271 ], [ -75.271211, 40.234106 ], [ -75.271177, 40.234045 ], [ -75.270444, 40.233601 ], [ -75.270305, 40.233518 ], [ -75.26977, 40.233194 ], [ -75.268879, 40.232645 ], [ -75.26864, 40.232516 ], [ -75.268543, 40.23247 ], [ -75.268467, 40.232459 ], [ -75.268266, 40.232338 ], [ -75.26811, 40.232254 ], [ -75.267538, 40.231911 ], [ -75.266969, 40.231569 ], [ -75.266541, 40.231314 ], [ -75.26616, 40.231086 ], [ -75.265324, 40.230588 ], [ -75.26499, 40.230388 ], [ -75.264665, 40.230191 ], [ -75.263583, 40.229555 ], [ -75.26316, 40.229292 ], [ -75.262475, 40.228884 ], [ -75.262171, 40.229256 ], [ -75.261892, 40.229608 ], [ -75.261308, 40.230274 ], [ -75.261007, 40.230602 ], [ -75.260879, 40.230743 ], [ -75.260849, 40.230771 ], [ -75.260817, 40.2308 ], [ -75.260772, 40.230826 ], [ -75.260646, 40.230885 ], [ -75.259277, 40.231373 ], [ -75.257717, 40.231952 ], [ -75.256581, 40.232375 ], [ -75.255113, 40.233008 ], [ -75.254849, 40.233126 ], [ -75.254663, 40.233211 ], [ -75.25453, 40.233278 ], [ -75.2544, 40.233343 ], [ -75.254299, 40.233397 ], [ -75.254098, 40.233565 ], [ -75.253526, 40.234031 ], [ -75.252733, 40.234677 ], [ -75.252068, 40.23523 ], [ -75.251793, 40.235479 ], [ -75.250766, 40.23634 ], [ -75.250569, 40.236495 ], [ -75.250455, 40.236573 ], [ -75.250372, 40.236619 ], [ -75.250323, 40.236622 ], [ -75.250211, 40.236667 ], [ -75.250114, 40.236726 ], [ -75.249358, 40.237183 ], [ -75.248849, 40.236711 ], [ -75.248742, 40.2366 ], [ -75.248624, 40.236495 ], [ -75.248528, 40.236424 ], [ -75.248453, 40.236382 ], [ -75.248383, 40.236356 ], [ -75.2483, 40.236341 ], [ -75.248122, 40.236333 ], [ -75.248122, 40.236256 ], [ -75.248108, 40.23607 ], [ -75.248072, 40.235956 ], [ -75.248051, 40.23589 ], [ -75.248006, 40.235795 ], [ -75.247979, 40.235739 ], [ -75.247906, 40.235615 ], [ -75.247887, 40.235583 ], [ -75.247706, 40.235324 ], [ -75.247704, 40.235318 ], [ -75.247639, 40.235134 ], [ -75.247623, 40.235075 ], [ -75.247603, 40.235007 ], [ -75.247603, 40.234883 ], [ -75.247603, 40.23487 ], [ -75.247649, 40.234744 ], [ -75.247668, 40.23472 ], [ -75.247722, 40.234649 ], [ -75.247793, 40.234582 ], [ -75.247484, 40.234444 ], [ -75.247244, 40.234334 ], [ -75.247178, 40.234401 ], [ -75.247137, 40.23446 ], [ -75.247113, 40.234486 ], [ -75.247064, 40.234523 ], [ -75.24702, 40.234541 ], [ -75.246949, 40.234559 ], [ -75.246904, 40.234565 ], [ -75.246582, 40.234632 ], [ -75.246431, 40.234661 ], [ -75.246267, 40.234695 ], [ -75.245955, 40.234756 ], [ -75.245801, 40.234792 ], [ -75.245757, 40.234806 ], [ -75.245684, 40.234851 ], [ -75.245619, 40.234906 ], [ -75.24558, 40.234983 ], [ -75.245575, 40.234995 ], [ -75.245552, 40.235051 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307235", "route_id": "94" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.208287, 40.077763 ], [ -75.208237, 40.077762 ], [ -75.208094, 40.077752 ], [ -75.208085, 40.077915 ], [ -75.208064, 40.078137 ], [ -75.208036, 40.078358 ], [ -75.208011, 40.078534 ], [ -75.207945, 40.079004 ], [ -75.207869, 40.079564 ], [ -75.207865, 40.07962 ], [ -75.20787, 40.079673 ], [ -75.207878, 40.079729 ], [ -75.207894, 40.079786 ], [ -75.207931, 40.079961 ], [ -75.208057, 40.080529 ], [ -75.20809, 40.080709 ], [ -75.208114, 40.08081 ], [ -75.208145, 40.080901 ], [ -75.208181, 40.081008 ], [ -75.208278, 40.081271 ], [ -75.20834, 40.081441 ], [ -75.208385, 40.081562 ], [ -75.208435, 40.081663 ], [ -75.2086, 40.081953 ], [ -75.208721, 40.082173 ], [ -75.208951, 40.082583 ], [ -75.209373, 40.083354 ], [ -75.209871, 40.084253 ], [ -75.209898, 40.084302 ], [ -75.209886, 40.084393 ], [ -75.209966, 40.084551 ], [ -75.210054, 40.084711 ], [ -75.210189, 40.084924 ], [ -75.210356, 40.085208 ], [ -75.21037, 40.085231 ], [ -75.210408, 40.085293 ], [ -75.210422, 40.085315 ], [ -75.210523, 40.085482 ], [ -75.210935, 40.085659 ], [ -75.211271, 40.085807 ], [ -75.211523, 40.085913 ], [ -75.211862, 40.086119 ], [ -75.212037, 40.08622 ], [ -75.212149, 40.086294 ], [ -75.212228, 40.08634 ], [ -75.212289, 40.086383 ], [ -75.212378, 40.086462 ], [ -75.212454, 40.08653 ], [ -75.212588, 40.08665 ], [ -75.212657, 40.086714 ], [ -75.212745, 40.086795 ], [ -75.21285, 40.086914 ], [ -75.212909, 40.086991 ], [ -75.213004, 40.087117 ], [ -75.213109, 40.087278 ], [ -75.213219, 40.087511 ], [ -75.213293, 40.087671 ], [ -75.213301, 40.087684 ], [ -75.213382, 40.087735 ], [ -75.213394, 40.087765 ], [ -75.213495, 40.088044 ], [ -75.213528, 40.088145 ], [ -75.213571, 40.08826 ], [ -75.213629, 40.088438 ], [ -75.213808, 40.088982 ], [ -75.213849, 40.089099 ], [ -75.213889, 40.089214 ], [ -75.213948, 40.089349 ], [ -75.21401, 40.089479 ], [ -75.214181, 40.089773 ], [ -75.214272, 40.089916 ], [ -75.214412, 40.090134 ], [ -75.214565, 40.090385 ], [ -75.214671, 40.090543 ], [ -75.214734, 40.09065 ], [ -75.214759, 40.090711 ], [ -75.214772, 40.090757 ], [ -75.214779, 40.090814 ], [ -75.214773, 40.090874 ], [ -75.214768, 40.090928 ], [ -75.21476, 40.090978 ], [ -75.214731, 40.091063 ], [ -75.2147, 40.091153 ], [ -75.214501, 40.091666 ], [ -75.214452, 40.0918 ], [ -75.21432, 40.092174 ], [ -75.21423, 40.092403 ], [ -75.214145, 40.092622 ], [ -75.213777, 40.093638 ], [ -75.213473, 40.094471 ], [ -75.213397, 40.094699 ], [ -75.213368, 40.09482 ], [ -75.213343, 40.094955 ], [ -75.213239, 40.095867 ], [ -75.212983, 40.097722 ], [ -75.212968, 40.097854 ], [ -75.212867, 40.098517 ], [ -75.212829, 40.098796 ], [ -75.212763, 40.099268 ], [ -75.212721, 40.099568 ], [ -75.212696, 40.099815 ], [ -75.212696, 40.099931 ], [ -75.212722, 40.100345 ], [ -75.212735, 40.100552 ], [ -75.212763, 40.100821 ], [ -75.212797, 40.1012 ], [ -75.212829, 40.101608 ], [ -75.212888, 40.102238 ], [ -75.212915, 40.10252 ], [ -75.212965, 40.102879 ], [ -75.21318, 40.104389 ], [ -75.21322, 40.104667 ], [ -75.213259, 40.104918 ], [ -75.213306, 40.105258 ], [ -75.213372, 40.10572 ], [ -75.21346, 40.106386 ], [ -75.213603, 40.107427 ], [ -75.213644, 40.107724 ], [ -75.213666, 40.107859 ], [ -75.213685, 40.10798 ], [ -75.213698, 40.108058 ], [ -75.213726, 40.108312 ], [ -75.213745, 40.108424 ], [ -75.213827, 40.108985 ], [ -75.213984, 40.110087 ], [ -75.214018, 40.110322 ], [ -75.214079, 40.110742 ], [ -75.214108, 40.110933 ], [ -75.214146, 40.111195 ], [ -75.214169, 40.111348 ], [ -75.214212, 40.111651 ], [ -75.214275, 40.112083 ], [ -75.214366, 40.112569 ], [ -75.214413, 40.11282 ], [ -75.214448, 40.113011 ], [ -75.214512, 40.113367 ], [ -75.214559, 40.113623 ], [ -75.214604, 40.113876 ], [ -75.214688, 40.114405 ], [ -75.214726, 40.114644 ], [ -75.214779, 40.115038 ], [ -75.214795, 40.115158 ], [ -75.214819, 40.115288 ], [ -75.214875, 40.11559 ], [ -75.215018, 40.11642 ], [ -75.215319, 40.118012 ], [ -75.215353, 40.118164 ], [ -75.215331, 40.11827 ], [ -75.215365, 40.11845 ], [ -75.215389, 40.118586 ], [ -75.215452, 40.118925 ], [ -75.215465, 40.118998 ], [ -75.215492, 40.119144 ], [ -75.215517, 40.119284 ], [ -75.215557, 40.119481 ], [ -75.215612, 40.119535 ], [ -75.215637, 40.119642 ], [ -75.215663, 40.119752 ], [ -75.215691, 40.119828 ], [ -75.215712, 40.119875 ], [ -75.215739, 40.119938 ], [ -75.215785, 40.120016 ], [ -75.215823, 40.120076 ], [ -75.215888, 40.120148 ], [ -75.215957, 40.120205 ], [ -75.216017, 40.120256 ], [ -75.216084, 40.120306 ], [ -75.216156, 40.120349 ], [ -75.216229, 40.120393 ], [ -75.216342, 40.120453 ], [ -75.216464, 40.120531 ], [ -75.216605, 40.120613 ], [ -75.216619, 40.120624 ], [ -75.216678, 40.120667 ], [ -75.216763, 40.120742 ], [ -75.216815, 40.120794 ], [ -75.216882, 40.120868 ], [ -75.21691, 40.120905 ], [ -75.216946, 40.120953 ], [ -75.217001, 40.12104 ], [ -75.217042, 40.121131 ], [ -75.217078, 40.121237 ], [ -75.217102, 40.121358 ], [ -75.21712, 40.121497 ], [ -75.217146, 40.121736 ], [ -75.217202, 40.122232 ], [ -75.217259, 40.12256 ], [ -75.217309, 40.122957 ], [ -75.217334, 40.123196 ], [ -75.217418, 40.123999 ], [ -75.217429, 40.12412 ], [ -75.217435, 40.124175 ], [ -75.217464, 40.12442 ], [ -75.217755, 40.127014 ], [ -75.217796, 40.127389 ], [ -75.217812, 40.127547 ], [ -75.217834, 40.127673 ], [ -75.217844, 40.12775 ], [ -75.217844, 40.127817 ], [ -75.217852, 40.128024 ], [ -75.217852, 40.128116 ], [ -75.217841, 40.128209 ], [ -75.217832, 40.128259 ], [ -75.217815, 40.12834 ], [ -75.217775, 40.128468 ], [ -75.217715, 40.12862 ], [ -75.217686, 40.128693 ], [ -75.217613, 40.128893 ], [ -75.217525, 40.129093 ], [ -75.217434, 40.129298 ], [ -75.217398, 40.129382 ], [ -75.217295, 40.129616 ], [ -75.21721, 40.12977 ], [ -75.217165, 40.129861 ], [ -75.217098, 40.129965 ], [ -75.216469, 40.130901 ], [ -75.216267, 40.131176 ], [ -75.216141, 40.131335 ], [ -75.216043, 40.131453 ], [ -75.215938, 40.13156 ], [ -75.215831, 40.131662 ], [ -75.215657, 40.131826 ], [ -75.215457, 40.132007 ], [ -75.214671, 40.132729 ], [ -75.214294, 40.133074 ], [ -75.2142, 40.133176 ], [ -75.214139, 40.133252 ], [ -75.214066, 40.133358 ], [ -75.213998, 40.13346 ], [ -75.213906, 40.133618 ], [ -75.21383, 40.133753 ], [ -75.213807, 40.133807 ], [ -75.213777, 40.133877 ], [ -75.21374, 40.133997 ], [ -75.213735, 40.134015 ], [ -75.21367, 40.134243 ], [ -75.213642, 40.134371 ], [ -75.213591, 40.134595 ], [ -75.213523, 40.134917 ], [ -75.21347, 40.135169 ], [ -75.21344, 40.135337 ], [ -75.213397, 40.135582 ], [ -75.213315, 40.136024 ], [ -75.213247, 40.136251 ], [ -75.213217, 40.136345 ], [ -75.213191, 40.136418 ], [ -75.213163, 40.136496 ], [ -75.213051, 40.136707 ], [ -75.212859, 40.137035 ], [ -75.212689, 40.137309 ], [ -75.212631, 40.137404 ], [ -75.212468, 40.137634 ], [ -75.212325, 40.137813 ], [ -75.212297, 40.137886 ], [ -75.212284, 40.137937 ], [ -75.212266, 40.13804 ], [ -75.212257, 40.138096 ], [ -75.212252, 40.138169 ], [ -75.212253, 40.1382 ], [ -75.212255, 40.138251 ], [ -75.212257, 40.138323 ], [ -75.212268, 40.138401 ], [ -75.212272, 40.138422 ], [ -75.212296, 40.138517 ], [ -75.212311, 40.138574 ], [ -75.212336, 40.138669 ], [ -75.212362, 40.138765 ], [ -75.212426, 40.138985 ], [ -75.212657, 40.139838 ], [ -75.212691, 40.139976 ], [ -75.212716, 40.140133 ], [ -75.212726, 40.140246 ], [ -75.212756, 40.140485 ], [ -75.212775, 40.14074 ], [ -75.2128, 40.141207 ], [ -75.212854, 40.141929 ], [ -75.212854, 40.142072 ], [ -75.212794, 40.142894 ], [ -75.212736, 40.143876 ], [ -75.212684, 40.144779 ], [ -75.212629, 40.145758 ], [ -75.212615, 40.146111 ], [ -75.212603, 40.146445 ], [ -75.212569, 40.147335 ], [ -75.212507, 40.148143 ], [ -75.212488, 40.148666 ], [ -75.212488, 40.14874 ], [ -75.212498, 40.148826 ], [ -75.212505, 40.148919 ], [ -75.212519, 40.149004 ], [ -75.212549, 40.149176 ], [ -75.212589, 40.149403 ], [ -75.212669, 40.149855 ], [ -75.212695, 40.15 ], [ -75.212729, 40.150167 ], [ -75.212805, 40.150529 ], [ -75.212908, 40.151122 ], [ -75.212933, 40.151266 ], [ -75.212943, 40.151322 ], [ -75.213073, 40.152068 ], [ -75.213137, 40.152395 ], [ -75.213185, 40.15262 ], [ -75.213236, 40.152803 ], [ -75.213319, 40.153023 ], [ -75.213397, 40.153253 ], [ -75.213461, 40.153433 ], [ -75.213742, 40.154266 ], [ -75.213771, 40.154361 ], [ -75.213793, 40.154452 ], [ -75.213815, 40.154533 ], [ -75.213844, 40.154678 ], [ -75.213892, 40.15497 ], [ -75.213923, 40.155263 ], [ -75.213935, 40.155455 ], [ -75.214751, 40.155501 ], [ -75.215508, 40.155532 ], [ -75.21714, 40.155604 ], [ -75.217886, 40.155642 ], [ -75.218852, 40.155671 ], [ -75.219209, 40.155685 ], [ -75.219315, 40.155698 ], [ -75.219389, 40.15571 ], [ -75.220957, 40.154925 ], [ -75.22153, 40.154674 ], [ -75.222134, 40.154399 ], [ -75.222967, 40.154083 ], [ -75.223792, 40.153746 ], [ -75.224513, 40.153473 ], [ -75.224877, 40.154024 ], [ -75.224886, 40.154061 ], [ -75.224887, 40.154098 ], [ -75.224876, 40.154126 ], [ -75.224463, 40.154289 ], [ -75.22434, 40.154275 ], [ -75.224832, 40.1548 ], [ -75.225349, 40.155319 ], [ -75.226055, 40.156027 ], [ -75.226557, 40.156532 ], [ -75.226385, 40.157466 ], [ -75.226308, 40.15786 ], [ -75.226823, 40.158168 ], [ -75.227165, 40.158373 ], [ -75.227887, 40.158798 ], [ -75.228611, 40.159225 ], [ -75.229011, 40.159464 ], [ -75.229407, 40.159698 ], [ -75.2295, 40.159751 ], [ -75.229571, 40.159804 ], [ -75.229644, 40.159864 ], [ -75.229683, 40.159903 ], [ -75.229755, 40.159993 ], [ -75.229856, 40.160129 ], [ -75.230312, 40.160553 ], [ -75.230445, 40.160675 ], [ -75.230515, 40.160729 ], [ -75.230734, 40.160875 ], [ -75.231006, 40.161047 ], [ -75.231515, 40.161425 ], [ -75.231878, 40.161702 ], [ -75.233139, 40.162668 ], [ -75.233494, 40.162932 ], [ -75.233575, 40.162997 ], [ -75.233614, 40.163044 ], [ -75.233651, 40.163098 ], [ -75.233668, 40.16315 ], [ -75.233674, 40.163197 ], [ -75.233685, 40.163253 ], [ -75.233705, 40.163415 ], [ -75.233747, 40.163478 ], [ -75.233785, 40.163518 ], [ -75.233825, 40.163557 ], [ -75.233881, 40.163602 ], [ -75.233983, 40.163666 ], [ -75.234192, 40.163795 ], [ -75.234336, 40.163879 ], [ -75.234506, 40.163979 ], [ -75.234698, 40.164083 ], [ -75.23527, 40.164415 ], [ -75.235858, 40.164753 ], [ -75.236539, 40.165146 ], [ -75.237175, 40.165527 ], [ -75.237659, 40.165802 ], [ -75.238844, 40.166475 ], [ -75.240484, 40.167414 ], [ -75.241501, 40.168002 ], [ -75.241914, 40.168244 ], [ -75.242176, 40.1684 ], [ -75.242524, 40.1686 ], [ -75.242733, 40.168728 ], [ -75.242905, 40.168838 ], [ -75.242984, 40.168897 ], [ -75.243059, 40.168959 ], [ -75.243136, 40.169031 ], [ -75.243226, 40.169126 ], [ -75.24331, 40.169214 ], [ -75.243415, 40.169334 ], [ -75.243484, 40.169419 ], [ -75.243529, 40.169478 ], [ -75.243558, 40.169525 ], [ -75.243578, 40.169556 ], [ -75.243583, 40.169578 ], [ -75.243582, 40.169604 ], [ -75.243567, 40.169635 ], [ -75.243534, 40.169672 ], [ -75.243214, 40.169947 ], [ -75.24381, 40.1703 ], [ -75.243952, 40.17039 ], [ -75.244067, 40.170465 ], [ -75.2442, 40.170564 ], [ -75.244284, 40.170632 ], [ -75.244401, 40.17073 ], [ -75.244586, 40.170891 ], [ -75.244855, 40.170756 ], [ -75.245445, 40.170454 ], [ -75.246225, 40.170071 ], [ -75.246659, 40.169851 ], [ -75.24685, 40.169754 ], [ -75.247162, 40.169596 ], [ -75.247219, 40.169567 ], [ -75.247276, 40.169537 ], [ -75.247335, 40.169509 ], [ -75.247393, 40.169485 ], [ -75.247464, 40.169457 ], [ -75.247525, 40.169433 ], [ -75.247587, 40.169413 ], [ -75.247649, 40.169391 ], [ -75.247699, 40.169377 ], [ -75.247754, 40.169367 ], [ -75.247798, 40.16936 ], [ -75.247919, 40.169346 ], [ -75.248055, 40.169334 ], [ -75.248136, 40.169326 ], [ -75.248224, 40.169318 ], [ -75.248319, 40.169309 ], [ -75.24841, 40.1693 ], [ -75.248489, 40.169292 ], [ -75.248562, 40.169287 ], [ -75.248631, 40.169284 ], [ -75.248747, 40.169281 ], [ -75.248856, 40.169284 ], [ -75.249488, 40.169328 ], [ -75.24958, 40.169331 ], [ -75.249659, 40.169335 ], [ -75.249747, 40.169337 ], [ -75.249842, 40.169339 ], [ -75.249946, 40.169339 ], [ -75.250029, 40.169333 ], [ -75.250098, 40.169326 ], [ -75.250166, 40.169315 ], [ -75.250226, 40.169301 ], [ -75.250323, 40.16928 ], [ -75.250383, 40.169261 ], [ -75.250523, 40.169216 ], [ -75.250951, 40.169072 ], [ -75.251365, 40.168934 ], [ -75.251596, 40.168851 ], [ -75.251921, 40.168732 ], [ -75.252001, 40.168697 ], [ -75.252102, 40.168645 ], [ -75.252186, 40.168596 ], [ -75.252256, 40.168546 ], [ -75.252357, 40.168459 ], [ -75.25249, 40.168332 ], [ -75.252663, 40.168158 ], [ -75.253134, 40.167683 ], [ -75.253588, 40.167198 ], [ -75.253727, 40.167048 ], [ -75.253962, 40.166802 ], [ -75.25425, 40.166499 ], [ -75.254784, 40.165945 ], [ -75.255528, 40.165177 ], [ -75.255929, 40.16477 ], [ -75.256433, 40.164251 ], [ -75.256926, 40.163731 ], [ -75.257066, 40.163575 ], [ -75.257149, 40.163468 ], [ -75.25719, 40.163402 ], [ -75.257241, 40.163295 ], [ -75.257277, 40.163197 ], [ -75.257364, 40.162918 ], [ -75.257458, 40.162583 ], [ -75.257506, 40.162617 ], [ -75.258527, 40.163257 ], [ -75.260044, 40.164204 ], [ -75.26149, 40.165095 ], [ -75.262276, 40.165583 ], [ -75.262903, 40.165983 ], [ -75.264263, 40.166821 ], [ -75.264462, 40.166951 ], [ -75.265698, 40.167626 ], [ -75.266537, 40.168098 ], [ -75.266719, 40.168198 ], [ -75.266814, 40.168259 ], [ -75.266863, 40.168299 ], [ -75.266896, 40.168338 ], [ -75.266942, 40.168391 ], [ -75.267022, 40.168509 ], [ -75.267202, 40.168802 ], [ -75.267327, 40.169003 ], [ -75.267615, 40.169466 ], [ -75.268217, 40.170417 ], [ -75.268626, 40.171059 ], [ -75.269103, 40.171833 ], [ -75.269429, 40.172354 ], [ -75.269427, 40.172393 ], [ -75.270243, 40.173781 ], [ -75.270411, 40.174057 ], [ -75.270455, 40.174113 ], [ -75.270613, 40.174318 ], [ -75.270735, 40.174475 ], [ -75.270904, 40.174685 ], [ -75.271096, 40.174898 ], [ -75.271217, 40.175022 ], [ -75.271363, 40.175176 ], [ -75.271461, 40.175277 ], [ -75.271509, 40.175323 ], [ -75.27156, 40.175339 ], [ -75.272018, 40.17579 ], [ -75.272381, 40.176149 ], [ -75.272583, 40.176353 ], [ -75.273025, 40.176072 ], [ -75.273672, 40.176786 ], [ -75.274158, 40.177119 ], [ -75.274472, 40.17729 ], [ -75.2749, 40.177623 ], [ -75.275751, 40.178111 ], [ -75.27584, 40.178117 ], [ -75.2759, 40.178057 ], [ -75.276019, 40.177635 ], [ -75.275947, 40.177528 ], [ -75.275114, 40.177433 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307236", "route_id": "94" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.245552, 40.235051 ], [ -75.245552, 40.235078 ], [ -75.245568, 40.235126 ], [ -75.245593, 40.235179 ], [ -75.245611, 40.235201 ], [ -75.245647, 40.235228 ], [ -75.245696, 40.235254 ], [ -75.246068, 40.235412 ], [ -75.246144, 40.235453 ], [ -75.246184, 40.235486 ], [ -75.246212, 40.235537 ], [ -75.246271, 40.235711 ], [ -75.246352, 40.235945 ], [ -75.24639, 40.236044 ], [ -75.246394, 40.236074 ], [ -75.246386, 40.236106 ], [ -75.246366, 40.236128 ], [ -75.24633, 40.236147 ], [ -75.245966, 40.236225 ], [ -75.245954, 40.23623 ], [ -75.245935, 40.236247 ], [ -75.245925, 40.236257 ], [ -75.245903, 40.236288 ], [ -75.245897, 40.236297 ], [ -75.245894, 40.236303 ], [ -75.245887, 40.236328 ], [ -75.245887, 40.236338 ], [ -75.245914, 40.236414 ], [ -75.245915, 40.236419 ], [ -75.245979, 40.236579 ], [ -75.246038, 40.23673 ], [ -75.246056, 40.23677 ], [ -75.246117, 40.236857 ], [ -75.246157, 40.236909 ], [ -75.246273, 40.23706 ], [ -75.246397, 40.237222 ], [ -75.246475, 40.237323 ], [ -75.246543, 40.237421 ], [ -75.246614, 40.237376 ], [ -75.246877, 40.237212 ], [ -75.247227, 40.236994 ], [ -75.247281, 40.236967 ], [ -75.247382, 40.236915 ], [ -75.247706, 40.236816 ], [ -75.247859, 40.236721 ], [ -75.24794, 40.236663 ], [ -75.248021, 40.236565 ], [ -75.248053, 40.236527 ], [ -75.248114, 40.236398 ], [ -75.248122, 40.236333 ], [ -75.2483, 40.236341 ], [ -75.248383, 40.236356 ], [ -75.248452, 40.236381 ], [ -75.248528, 40.236424 ], [ -75.248624, 40.236495 ], [ -75.248742, 40.2366 ], [ -75.248849, 40.236711 ], [ -75.249358, 40.237183 ], [ -75.249412, 40.237235 ], [ -75.250166, 40.236779 ], [ -75.25034, 40.236672 ], [ -75.250372, 40.236619 ], [ -75.250455, 40.236573 ], [ -75.250569, 40.236495 ], [ -75.250766, 40.23634 ], [ -75.251793, 40.235479 ], [ -75.252068, 40.23523 ], [ -75.252733, 40.234677 ], [ -75.253526, 40.234031 ], [ -75.254098, 40.233565 ], [ -75.254299, 40.233397 ], [ -75.2544, 40.233343 ], [ -75.25453, 40.233278 ], [ -75.254663, 40.233211 ], [ -75.254849, 40.233126 ], [ -75.255113, 40.233008 ], [ -75.256581, 40.232375 ], [ -75.257717, 40.231952 ], [ -75.259277, 40.231373 ], [ -75.260646, 40.230885 ], [ -75.260772, 40.230826 ], [ -75.260817, 40.2308 ], [ -75.260849, 40.230771 ], [ -75.260879, 40.230743 ], [ -75.261007, 40.230602 ], [ -75.261308, 40.230274 ], [ -75.261892, 40.229608 ], [ -75.262171, 40.229256 ], [ -75.262475, 40.228884 ], [ -75.26316, 40.229292 ], [ -75.263583, 40.229555 ], [ -75.264665, 40.230191 ], [ -75.26499, 40.230388 ], [ -75.265324, 40.230588 ], [ -75.26616, 40.231086 ], [ -75.266541, 40.231314 ], [ -75.266969, 40.231569 ], [ -75.267538, 40.231911 ], [ -75.26811, 40.232254 ], [ -75.268266, 40.232338 ], [ -75.268467, 40.232459 ], [ -75.268508, 40.232528 ], [ -75.268615, 40.232592 ], [ -75.268906, 40.232762 ], [ -75.269188, 40.232932 ], [ -75.269325, 40.233014 ], [ -75.269449, 40.233094 ], [ -75.269461, 40.233101 ], [ -75.269708, 40.233256 ], [ -75.270309, 40.233601 ], [ -75.271065, 40.23406 ], [ -75.271136, 40.234096 ], [ -75.271211, 40.234106 ], [ -75.271492, 40.234271 ], [ -75.271984, 40.234573 ], [ -75.272376, 40.234803 ], [ -75.272955, 40.235146 ], [ -75.273313, 40.235359 ], [ -75.273708, 40.235595 ], [ -75.274213, 40.235878 ], [ -75.274531, 40.23607 ], [ -75.274696, 40.236171 ], [ -75.274769, 40.236216 ], [ -75.275056, 40.236379 ], [ -75.275686, 40.235695 ], [ -75.275999, 40.235355 ], [ -75.276352, 40.234967 ], [ -75.276572, 40.234749 ], [ -75.27702, 40.234271 ], [ -75.277483, 40.233773 ], [ -75.278067, 40.233156 ], [ -75.278397, 40.232813 ], [ -75.278821, 40.232352 ], [ -75.279316, 40.231857 ], [ -75.27976, 40.231376 ], [ -75.280194, 40.23091 ], [ -75.280662, 40.230405 ], [ -75.280759, 40.230309 ], [ -75.280878, 40.230208 ], [ -75.281117, 40.230008 ], [ -75.281593, 40.229647 ], [ -75.281752, 40.22952 ], [ -75.282193, 40.22917 ], [ -75.28229, 40.229094 ], [ -75.282406, 40.229003 ], [ -75.28264, 40.228822 ], [ -75.283586, 40.228099 ], [ -75.283658, 40.228041 ], [ -75.283937, 40.227816 ], [ -75.284106, 40.227669 ], [ -75.284264, 40.227515 ], [ -75.284418, 40.227357 ], [ -75.284774, 40.226949 ], [ -75.284931, 40.22676 ], [ -75.285011, 40.226658 ], [ -75.285068, 40.226597 ], [ -75.285122, 40.226534 ], [ -75.285176, 40.226473 ], [ -75.285226, 40.226417 ], [ -75.285682, 40.225694 ], [ -75.286123, 40.225128 ], [ -75.286318, 40.224872 ], [ -75.286866, 40.224227 ], [ -75.286959, 40.224109 ], [ -75.287206, 40.223786 ], [ -75.287696, 40.223194 ], [ -75.287832, 40.223022 ], [ -75.287983, 40.222806 ], [ -75.288491, 40.222074 ], [ -75.289071, 40.221232 ], [ -75.289273, 40.220942 ], [ -75.289819, 40.220135 ], [ -75.289992, 40.21988 ], [ -75.290475, 40.219175 ], [ -75.291007, 40.218354 ], [ -75.291288, 40.217963 ], [ -75.291475, 40.217704 ], [ -75.291682, 40.217415 ], [ -75.291951, 40.217042 ], [ -75.291968, 40.217016 ], [ -75.292285, 40.216556 ], [ -75.292538, 40.216133 ], [ -75.292579, 40.216075 ], [ -75.292638, 40.215972 ], [ -75.29269, 40.215866 ], [ -75.292723, 40.215758 ], [ -75.292741, 40.215647 ], [ -75.292746, 40.215534 ], [ -75.292735, 40.21541 ], [ -75.292682, 40.215171 ], [ -75.292709, 40.215103 ], [ -75.292671, 40.214915 ], [ -75.292649, 40.214806 ], [ -75.292625, 40.214708 ], [ -75.292612, 40.214657 ], [ -75.292554, 40.2146 ], [ -75.292549, 40.214559 ], [ -75.292554, 40.21452 ], [ -75.292584, 40.214415 ], [ -75.292617, 40.214324 ], [ -75.292649, 40.21424 ], [ -75.292891, 40.213667 ], [ -75.293267, 40.212827 ], [ -75.293481, 40.212334 ], [ -75.293626, 40.212038 ], [ -75.293662, 40.211967 ], [ -75.293695, 40.211918 ], [ -75.293737, 40.211853 ], [ -75.293793, 40.211784 ], [ -75.293906, 40.211648 ], [ -75.294072, 40.211484 ], [ -75.294181, 40.211377 ], [ -75.294418, 40.211168 ], [ -75.295189, 40.210395 ], [ -75.295456, 40.2101 ], [ -75.296483, 40.208991 ], [ -75.297114, 40.208323 ], [ -75.297206, 40.208217 ], [ -75.29748, 40.207918 ], [ -75.298127, 40.207234 ], [ -75.298284, 40.20708 ], [ -75.298907, 40.206413 ], [ -75.299351, 40.205904 ], [ -75.299917, 40.20531 ], [ -75.300846, 40.20433 ], [ -75.301583, 40.203562 ], [ -75.301873, 40.203254 ], [ -75.302037, 40.203078 ], [ -75.302731, 40.202352 ], [ -75.303099, 40.201974 ], [ -75.303741, 40.20129 ], [ -75.303793, 40.201271 ], [ -75.303978, 40.20108 ], [ -75.304119, 40.200944 ], [ -75.304203, 40.200856 ], [ -75.304251, 40.200807 ], [ -75.304414, 40.200635 ], [ -75.304425, 40.200573 ], [ -75.305159, 40.199788 ], [ -75.304539, 40.199428 ], [ -75.304508, 40.199408 ], [ -75.304484, 40.199357 ], [ -75.304474, 40.199347 ], [ -75.304018, 40.199107 ], [ -75.303779, 40.198976 ], [ -75.303725, 40.198947 ], [ -75.303637, 40.198938 ], [ -75.30357, 40.198906 ], [ -75.303235, 40.198726 ], [ -75.302968, 40.198583 ], [ -75.30259, 40.198381 ], [ -75.302329, 40.198241 ], [ -75.302079, 40.198108 ], [ -75.301798, 40.197957 ], [ -75.301367, 40.197727 ], [ -75.301173, 40.197621 ], [ -75.300798, 40.197415 ], [ -75.300551, 40.19728 ], [ -75.300123, 40.197045 ], [ -75.299688, 40.196807 ], [ -75.29923, 40.196556 ], [ -75.298729, 40.196282 ], [ -75.298322, 40.196044 ], [ -75.298092, 40.195913 ], [ -75.297981, 40.195847 ], [ -75.297729, 40.195697 ], [ -75.297697, 40.195641 ], [ -75.297526, 40.195527 ], [ -75.297457, 40.195484 ], [ -75.297314, 40.195401 ], [ -75.296506, 40.194939 ], [ -75.296473, 40.194936 ], [ -75.29633, 40.194857 ], [ -75.296145, 40.194738 ], [ -75.296061, 40.194691 ], [ -75.295994, 40.194648 ], [ -75.295906, 40.194586 ], [ -75.29579, 40.1945 ], [ -75.295644, 40.194388 ], [ -75.295583, 40.194336 ], [ -75.295487, 40.194249 ], [ -75.295417, 40.194176 ], [ -75.29534, 40.194102 ], [ -75.295234, 40.193982 ], [ -75.295144, 40.19387 ], [ -75.295088, 40.193795 ], [ -75.295039, 40.193723 ], [ -75.294966, 40.193611 ], [ -75.294902, 40.193503 ], [ -75.294861, 40.193421 ], [ -75.294727, 40.193149 ], [ -75.29451, 40.192606 ], [ -75.294275, 40.191967 ], [ -75.294206, 40.191829 ], [ -75.294215, 40.191782 ], [ -75.294099, 40.191532 ], [ -75.293988, 40.191294 ], [ -75.293855, 40.191027 ], [ -75.293814, 40.190944 ], [ -75.293773, 40.190863 ], [ -75.29366, 40.19067 ], [ -75.293611, 40.190639 ], [ -75.293517, 40.190456 ], [ -75.293304, 40.190014 ], [ -75.293, 40.18938 ], [ -75.292728, 40.188807 ], [ -75.292594, 40.188565 ], [ -75.292523, 40.188452 ], [ -75.292392, 40.188261 ], [ -75.292217, 40.188047 ], [ -75.291984, 40.187813 ], [ -75.291885, 40.187719 ], [ -75.291817, 40.187663 ], [ -75.291648, 40.187539 ], [ -75.291381, 40.187359 ], [ -75.291181, 40.187241 ], [ -75.290446, 40.18681 ], [ -75.289662, 40.186356 ], [ -75.28956, 40.1863 ], [ -75.28947, 40.186251 ], [ -75.289264, 40.186153 ], [ -75.289109, 40.186076 ], [ -75.288045, 40.185459 ], [ -75.28781, 40.185324 ], [ -75.286861, 40.184749 ], [ -75.285442, 40.18393 ], [ -75.282958, 40.182468 ], [ -75.281902, 40.181836 ], [ -75.281283, 40.181481 ], [ -75.280766, 40.18118 ], [ -75.280126, 40.180793 ], [ -75.279789, 40.1806 ], [ -75.279636, 40.180504 ], [ -75.278294, 40.179731 ], [ -75.278134, 40.179639 ], [ -75.278076, 40.179611 ], [ -75.278007, 40.179581 ], [ -75.277912, 40.179548 ], [ -75.277749, 40.179488 ], [ -75.27769, 40.179463 ], [ -75.277484, 40.179383 ], [ -75.277237, 40.179288 ], [ -75.277031, 40.179209 ], [ -75.276889, 40.179148 ], [ -75.276755, 40.179086 ], [ -75.276573, 40.179001 ], [ -75.276468, 40.178951 ], [ -75.276215, 40.178833 ], [ -75.276045, 40.178754 ], [ -75.275894, 40.17868 ], [ -75.275722, 40.178588 ], [ -75.27559, 40.178514 ], [ -75.274971, 40.178156 ], [ -75.274115, 40.177658 ], [ -75.273915, 40.177537 ], [ -75.273738, 40.177425 ], [ -75.273623, 40.177349 ], [ -75.273505, 40.177262 ], [ -75.273381, 40.177154 ], [ -75.273266, 40.177047 ], [ -75.27317, 40.176953 ], [ -75.273089, 40.176874 ], [ -75.272958, 40.176732 ], [ -75.272715, 40.176487 ], [ -75.272583, 40.176353 ], [ -75.272381, 40.176149 ], [ -75.272018, 40.17579 ], [ -75.271561, 40.175339 ], [ -75.271554, 40.175298 ], [ -75.271118, 40.174835 ], [ -75.27093, 40.174616 ], [ -75.270652, 40.174264 ], [ -75.270524, 40.174084 ], [ -75.270477, 40.174016 ], [ -75.270333, 40.173787 ], [ -75.269674, 40.172699 ], [ -75.269567, 40.172519 ], [ -75.269507, 40.172414 ], [ -75.269475, 40.172374 ], [ -75.269429, 40.172354 ], [ -75.269103, 40.171833 ], [ -75.268626, 40.171059 ], [ -75.268217, 40.170417 ], [ -75.267615, 40.169466 ], [ -75.267327, 40.169003 ], [ -75.267202, 40.168802 ], [ -75.267022, 40.168509 ], [ -75.266942, 40.168391 ], [ -75.266896, 40.168338 ], [ -75.266863, 40.168299 ], [ -75.266814, 40.168259 ], [ -75.266719, 40.168198 ], [ -75.266537, 40.168098 ], [ -75.265698, 40.167626 ], [ -75.264462, 40.166951 ], [ -75.264263, 40.166821 ], [ -75.262903, 40.165983 ], [ -75.262276, 40.165583 ], [ -75.26149, 40.165095 ], [ -75.260044, 40.164204 ], [ -75.258527, 40.163257 ], [ -75.257506, 40.162617 ], [ -75.257458, 40.162583 ], [ -75.257364, 40.162918 ], [ -75.257277, 40.163197 ], [ -75.257241, 40.163295 ], [ -75.25719, 40.163402 ], [ -75.257149, 40.163468 ], [ -75.257066, 40.163575 ], [ -75.256926, 40.163731 ], [ -75.256433, 40.164251 ], [ -75.255929, 40.16477 ], [ -75.255528, 40.165177 ], [ -75.254784, 40.165945 ], [ -75.25425, 40.166499 ], [ -75.253962, 40.166802 ], [ -75.253727, 40.167048 ], [ -75.253588, 40.167198 ], [ -75.253134, 40.167683 ], [ -75.252663, 40.168158 ], [ -75.25249, 40.168332 ], [ -75.252357, 40.168459 ], [ -75.252256, 40.168546 ], [ -75.252186, 40.168596 ], [ -75.252102, 40.168645 ], [ -75.252001, 40.168697 ], [ -75.251921, 40.168732 ], [ -75.251596, 40.168851 ], [ -75.251365, 40.168934 ], [ -75.250951, 40.169072 ], [ -75.250523, 40.169216 ], [ -75.250383, 40.169261 ], [ -75.250323, 40.16928 ], [ -75.250226, 40.169301 ], [ -75.250166, 40.169315 ], [ -75.250098, 40.169326 ], [ -75.250029, 40.169333 ], [ -75.249946, 40.169339 ], [ -75.249842, 40.169339 ], [ -75.249747, 40.169337 ], [ -75.249659, 40.169335 ], [ -75.24958, 40.169331 ], [ -75.249488, 40.169328 ], [ -75.248856, 40.169284 ], [ -75.248747, 40.169281 ], [ -75.248631, 40.169284 ], [ -75.248562, 40.169287 ], [ -75.248489, 40.169292 ], [ -75.24841, 40.1693 ], [ -75.248319, 40.169309 ], [ -75.248224, 40.169318 ], [ -75.248136, 40.169326 ], [ -75.248055, 40.169334 ], [ -75.247919, 40.169346 ], [ -75.247798, 40.16936 ], [ -75.247754, 40.169367 ], [ -75.247699, 40.169377 ], [ -75.247649, 40.169391 ], [ -75.247587, 40.169413 ], [ -75.247525, 40.169433 ], [ -75.247464, 40.169457 ], [ -75.247393, 40.169485 ], [ -75.247335, 40.169509 ], [ -75.247276, 40.169537 ], [ -75.247219, 40.169567 ], [ -75.247162, 40.169596 ], [ -75.24685, 40.169754 ], [ -75.246659, 40.169851 ], [ -75.246225, 40.170071 ], [ -75.245445, 40.170454 ], [ -75.244855, 40.170756 ], [ -75.244586, 40.170891 ], [ -75.244401, 40.17073 ], [ -75.244284, 40.170632 ], [ -75.2442, 40.170564 ], [ -75.244067, 40.170465 ], [ -75.243952, 40.17039 ], [ -75.24381, 40.1703 ], [ -75.243214, 40.169947 ], [ -75.243534, 40.169672 ], [ -75.243567, 40.169635 ], [ -75.243582, 40.169604 ], [ -75.243583, 40.169578 ], [ -75.243578, 40.169556 ], [ -75.243558, 40.169525 ], [ -75.243529, 40.169478 ], [ -75.243484, 40.169419 ], [ -75.243415, 40.169334 ], [ -75.24331, 40.169214 ], [ -75.243226, 40.169126 ], [ -75.243136, 40.169031 ], [ -75.243059, 40.168959 ], [ -75.242984, 40.168897 ], [ -75.242905, 40.168838 ], [ -75.242733, 40.168728 ], [ -75.242524, 40.1686 ], [ -75.242176, 40.1684 ], [ -75.241914, 40.168244 ], [ -75.241501, 40.168002 ], [ -75.240484, 40.167414 ], [ -75.238844, 40.166475 ], [ -75.237659, 40.165802 ], [ -75.237175, 40.165527 ], [ -75.236539, 40.165146 ], [ -75.235858, 40.164753 ], [ -75.23527, 40.164415 ], [ -75.234698, 40.164083 ], [ -75.234506, 40.163979 ], [ -75.234336, 40.163879 ], [ -75.234192, 40.163795 ], [ -75.233983, 40.163666 ], [ -75.233881, 40.163602 ], [ -75.233825, 40.163557 ], [ -75.233785, 40.163518 ], [ -75.233747, 40.163478 ], [ -75.233705, 40.163415 ], [ -75.233685, 40.163253 ], [ -75.233674, 40.163197 ], [ -75.233668, 40.16315 ], [ -75.233651, 40.163098 ], [ -75.233614, 40.163044 ], [ -75.233575, 40.162997 ], [ -75.233494, 40.162932 ], [ -75.233139, 40.162668 ], [ -75.231878, 40.161702 ], [ -75.231515, 40.161425 ], [ -75.231006, 40.161047 ], [ -75.230734, 40.160875 ], [ -75.230515, 40.160729 ], [ -75.230445, 40.160675 ], [ -75.230312, 40.160553 ], [ -75.229856, 40.160129 ], [ -75.229755, 40.159993 ], [ -75.229683, 40.159903 ], [ -75.229644, 40.159864 ], [ -75.229571, 40.159804 ], [ -75.2295, 40.159751 ], [ -75.229407, 40.159698 ], [ -75.229011, 40.159464 ], [ -75.228611, 40.159225 ], [ -75.227887, 40.158798 ], [ -75.227165, 40.158373 ], [ -75.226823, 40.158168 ], [ -75.226308, 40.15786 ], [ -75.226385, 40.157466 ], [ -75.226557, 40.156532 ], [ -75.226055, 40.156027 ], [ -75.225349, 40.155319 ], [ -75.224832, 40.1548 ], [ -75.22434, 40.154275 ], [ -75.223919, 40.153868 ], [ -75.223792, 40.153746 ], [ -75.222967, 40.154083 ], [ -75.222134, 40.154399 ], [ -75.22153, 40.154674 ], [ -75.220957, 40.154925 ], [ -75.219389, 40.15571 ], [ -75.219315, 40.155698 ], [ -75.219209, 40.155685 ], [ -75.218852, 40.155671 ], [ -75.217886, 40.155642 ], [ -75.21714, 40.155604 ], [ -75.215508, 40.155532 ], [ -75.214751, 40.155501 ], [ -75.213935, 40.155455 ], [ -75.213923, 40.155263 ], [ -75.213892, 40.15497 ], [ -75.213844, 40.154678 ], [ -75.213815, 40.154533 ], [ -75.213793, 40.154452 ], [ -75.213771, 40.154361 ], [ -75.213742, 40.154266 ], [ -75.213461, 40.153433 ], [ -75.213397, 40.153253 ], [ -75.213319, 40.153023 ], [ -75.213236, 40.152803 ], [ -75.213185, 40.15262 ], [ -75.213137, 40.152395 ], [ -75.213073, 40.152068 ], [ -75.212943, 40.151322 ], [ -75.212933, 40.151266 ], [ -75.212908, 40.151122 ], [ -75.212805, 40.150529 ], [ -75.212729, 40.150167 ], [ -75.212695, 40.15 ], [ -75.212669, 40.149855 ], [ -75.212589, 40.149403 ], [ -75.212549, 40.149176 ], [ -75.212519, 40.149004 ], [ -75.212505, 40.148919 ], [ -75.212498, 40.148826 ], [ -75.212488, 40.14874 ], [ -75.212488, 40.148666 ], [ -75.212507, 40.148143 ], [ -75.212569, 40.147335 ], [ -75.212603, 40.146445 ], [ -75.212615, 40.146111 ], [ -75.212629, 40.145758 ], [ -75.212684, 40.144779 ], [ -75.212736, 40.143876 ], [ -75.212794, 40.142894 ], [ -75.212854, 40.142072 ], [ -75.212854, 40.141929 ], [ -75.2128, 40.141207 ], [ -75.212775, 40.14074 ], [ -75.212756, 40.140485 ], [ -75.212726, 40.140246 ], [ -75.212716, 40.140133 ], [ -75.212691, 40.139976 ], [ -75.212657, 40.139838 ], [ -75.212426, 40.138985 ], [ -75.212362, 40.138765 ], [ -75.212336, 40.138669 ], [ -75.212311, 40.138574 ], [ -75.212296, 40.138517 ], [ -75.212272, 40.138422 ], [ -75.212268, 40.138401 ], [ -75.212257, 40.138323 ], [ -75.212255, 40.138251 ], [ -75.212253, 40.1382 ], [ -75.212252, 40.138169 ], [ -75.212257, 40.138096 ], [ -75.212266, 40.13804 ], [ -75.212284, 40.137937 ], [ -75.212297, 40.137886 ], [ -75.212325, 40.137813 ], [ -75.212468, 40.137634 ], [ -75.212631, 40.137404 ], [ -75.212689, 40.137309 ], [ -75.212859, 40.137035 ], [ -75.213051, 40.136707 ], [ -75.213163, 40.136496 ], [ -75.213191, 40.136418 ], [ -75.213217, 40.136345 ], [ -75.213247, 40.136251 ], [ -75.213315, 40.136024 ], [ -75.213397, 40.135582 ], [ -75.21344, 40.135337 ], [ -75.21347, 40.135169 ], [ -75.213523, 40.134917 ], [ -75.213591, 40.134595 ], [ -75.213642, 40.134371 ], [ -75.21367, 40.134243 ], [ -75.213735, 40.134015 ], [ -75.21374, 40.133997 ], [ -75.213777, 40.133877 ], [ -75.213807, 40.133807 ], [ -75.21383, 40.133753 ], [ -75.213906, 40.133618 ], [ -75.213998, 40.13346 ], [ -75.214066, 40.133358 ], [ -75.214139, 40.133252 ], [ -75.2142, 40.133176 ], [ -75.214294, 40.133074 ], [ -75.214671, 40.132729 ], [ -75.215457, 40.132007 ], [ -75.215657, 40.131826 ], [ -75.215831, 40.131662 ], [ -75.215938, 40.13156 ], [ -75.216043, 40.131453 ], [ -75.216141, 40.131335 ], [ -75.216267, 40.131176 ], [ -75.216469, 40.130901 ], [ -75.217098, 40.129965 ], [ -75.217165, 40.129861 ], [ -75.21721, 40.12977 ], [ -75.217295, 40.129616 ], [ -75.217398, 40.129382 ], [ -75.217434, 40.129298 ], [ -75.217525, 40.129093 ], [ -75.217613, 40.128893 ], [ -75.217686, 40.128693 ], [ -75.217715, 40.12862 ], [ -75.217775, 40.128468 ], [ -75.217815, 40.12834 ], [ -75.217832, 40.128259 ], [ -75.217841, 40.128209 ], [ -75.217852, 40.128116 ], [ -75.217852, 40.128024 ], [ -75.217844, 40.127817 ], [ -75.217844, 40.12775 ], [ -75.217834, 40.127673 ], [ -75.217812, 40.127547 ], [ -75.217796, 40.127389 ], [ -75.217755, 40.127014 ], [ -75.217464, 40.12442 ], [ -75.217435, 40.124175 ], [ -75.217429, 40.12412 ], [ -75.217418, 40.123999 ], [ -75.217334, 40.123196 ], [ -75.217309, 40.122957 ], [ -75.217259, 40.12256 ], [ -75.217202, 40.122232 ], [ -75.217146, 40.121736 ], [ -75.21712, 40.121497 ], [ -75.217102, 40.121358 ], [ -75.217078, 40.121237 ], [ -75.217042, 40.121131 ], [ -75.217001, 40.12104 ], [ -75.216946, 40.120953 ], [ -75.21691, 40.120905 ], [ -75.216882, 40.120868 ], [ -75.216815, 40.120794 ], [ -75.216763, 40.120742 ], [ -75.216678, 40.120667 ], [ -75.216619, 40.120624 ], [ -75.216605, 40.120613 ], [ -75.216464, 40.120531 ], [ -75.216342, 40.120453 ], [ -75.216229, 40.120393 ], [ -75.216156, 40.120349 ], [ -75.216084, 40.120306 ], [ -75.216017, 40.120256 ], [ -75.215957, 40.120205 ], [ -75.215888, 40.120148 ], [ -75.215823, 40.120076 ], [ -75.215785, 40.120016 ], [ -75.215739, 40.119938 ], [ -75.215712, 40.119875 ], [ -75.215691, 40.119828 ], [ -75.215663, 40.119752 ], [ -75.215637, 40.119642 ], [ -75.215612, 40.119535 ], [ -75.215644, 40.119467 ], [ -75.215552, 40.118836 ], [ -75.215444, 40.118339 ], [ -75.21542, 40.118244 ], [ -75.215353, 40.118164 ], [ -75.215319, 40.118012 ], [ -75.215018, 40.11642 ], [ -75.214875, 40.11559 ], [ -75.214819, 40.115288 ], [ -75.214795, 40.115158 ], [ -75.214779, 40.115038 ], [ -75.214726, 40.114644 ], [ -75.214688, 40.114405 ], [ -75.214604, 40.113876 ], [ -75.214559, 40.113623 ], [ -75.214512, 40.113367 ], [ -75.214448, 40.113011 ], [ -75.214413, 40.11282 ], [ -75.214366, 40.112569 ], [ -75.214275, 40.112083 ], [ -75.214212, 40.111651 ], [ -75.214169, 40.111348 ], [ -75.214146, 40.111195 ], [ -75.214108, 40.110933 ], [ -75.214079, 40.110742 ], [ -75.214018, 40.110322 ], [ -75.213984, 40.110087 ], [ -75.213827, 40.108985 ], [ -75.213745, 40.108424 ], [ -75.213726, 40.108312 ], [ -75.213698, 40.108058 ], [ -75.213685, 40.10798 ], [ -75.213666, 40.107859 ], [ -75.213644, 40.107724 ], [ -75.213603, 40.107427 ], [ -75.21346, 40.106386 ], [ -75.213372, 40.10572 ], [ -75.213306, 40.105258 ], [ -75.213259, 40.104918 ], [ -75.21322, 40.104667 ], [ -75.21318, 40.104389 ], [ -75.212965, 40.102879 ], [ -75.212915, 40.10252 ], [ -75.212888, 40.102238 ], [ -75.212829, 40.101608 ], [ -75.212797, 40.1012 ], [ -75.212763, 40.100821 ], [ -75.212735, 40.100552 ], [ -75.212722, 40.100345 ], [ -75.212696, 40.099931 ], [ -75.212696, 40.099815 ], [ -75.212721, 40.099568 ], [ -75.212763, 40.099268 ], [ -75.212829, 40.098796 ], [ -75.212867, 40.098517 ], [ -75.212968, 40.097854 ], [ -75.212983, 40.097722 ], [ -75.213239, 40.095867 ], [ -75.213343, 40.094955 ], [ -75.213368, 40.09482 ], [ -75.213397, 40.094699 ], [ -75.213473, 40.094471 ], [ -75.213777, 40.093638 ], [ -75.214145, 40.092622 ], [ -75.21423, 40.092403 ], [ -75.21432, 40.092174 ], [ -75.214452, 40.0918 ], [ -75.214501, 40.091666 ], [ -75.2147, 40.091153 ], [ -75.214731, 40.091063 ], [ -75.21476, 40.090978 ], [ -75.214768, 40.090928 ], [ -75.214773, 40.090874 ], [ -75.214779, 40.090814 ], [ -75.214772, 40.090757 ], [ -75.214759, 40.090711 ], [ -75.214734, 40.09065 ], [ -75.214671, 40.090543 ], [ -75.214565, 40.090385 ], [ -75.214412, 40.090134 ], [ -75.214272, 40.089916 ], [ -75.214181, 40.089773 ], [ -75.21401, 40.089479 ], [ -75.213948, 40.089349 ], [ -75.213889, 40.089214 ], [ -75.213849, 40.089099 ], [ -75.213808, 40.088982 ], [ -75.213629, 40.088438 ], [ -75.213571, 40.08826 ], [ -75.213528, 40.088145 ], [ -75.213495, 40.088044 ], [ -75.213394, 40.087765 ], [ -75.213382, 40.087735 ], [ -75.213403, 40.087652 ], [ -75.213221, 40.087243 ], [ -75.212983, 40.086876 ], [ -75.212935, 40.086816 ], [ -75.212846, 40.086715 ], [ -75.212648, 40.086532 ], [ -75.212452, 40.086375 ], [ -75.212251, 40.086225 ], [ -75.211939, 40.086034 ], [ -75.211755, 40.085912 ], [ -75.211565, 40.085826 ], [ -75.211264, 40.085689 ], [ -75.211056, 40.085476 ], [ -75.210905, 40.085336 ], [ -75.210692, 40.08512 ], [ -75.210365, 40.084841 ], [ -75.210289, 40.08477 ], [ -75.210234, 40.084713 ], [ -75.210162, 40.084632 ], [ -75.210112, 40.084564 ], [ -75.210059, 40.084484 ], [ -75.209983, 40.084352 ], [ -75.209898, 40.084302 ], [ -75.209871, 40.084253 ], [ -75.209373, 40.083354 ], [ -75.208951, 40.082583 ], [ -75.208721, 40.082173 ], [ -75.2086, 40.081953 ], [ -75.208435, 40.081663 ], [ -75.208385, 40.081562 ], [ -75.20834, 40.081441 ], [ -75.208278, 40.081271 ], [ -75.208181, 40.081008 ], [ -75.208145, 40.080901 ], [ -75.208114, 40.08081 ], [ -75.20809, 40.080709 ], [ -75.208057, 40.080529 ], [ -75.207931, 40.079961 ], [ -75.207894, 40.079786 ], [ -75.207878, 40.079729 ], [ -75.20787, 40.079673 ], [ -75.207865, 40.07962 ], [ -75.207869, 40.079564 ], [ -75.207945, 40.079004 ], [ -75.208011, 40.078534 ], [ -75.208036, 40.078358 ], [ -75.208064, 40.078137 ], [ -75.208085, 40.077915 ], [ -75.208094, 40.077752 ], [ -75.20817, 40.077017 ], [ -75.208936, 40.077311 ], [ -75.208759, 40.077557 ], [ -75.208689, 40.077655 ], [ -75.208637, 40.077708 ], [ -75.208609, 40.077728 ], [ -75.208558, 40.077749 ], [ -75.208491, 40.077762 ], [ -75.208407, 40.077768 ], [ -75.208287, 40.077763 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307237", "route_id": "94" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.245552, 40.235051 ], [ -75.245552, 40.235078 ], [ -75.245568, 40.235126 ], [ -75.245593, 40.235179 ], [ -75.245611, 40.235201 ], [ -75.245647, 40.235228 ], [ -75.245696, 40.235254 ], [ -75.246068, 40.235412 ], [ -75.246144, 40.235453 ], [ -75.246184, 40.235486 ], [ -75.246212, 40.235537 ], [ -75.246271, 40.235711 ], [ -75.246352, 40.235945 ], [ -75.24639, 40.236044 ], [ -75.246394, 40.236074 ], [ -75.246386, 40.236106 ], [ -75.246366, 40.236128 ], [ -75.24633, 40.236147 ], [ -75.245966, 40.236225 ], [ -75.245954, 40.23623 ], [ -75.245935, 40.236247 ], [ -75.245925, 40.236257 ], [ -75.245903, 40.236288 ], [ -75.245897, 40.236297 ], [ -75.245894, 40.236303 ], [ -75.245887, 40.236328 ], [ -75.245887, 40.236338 ], [ -75.245914, 40.236414 ], [ -75.245915, 40.236419 ], [ -75.245979, 40.236579 ], [ -75.246038, 40.23673 ], [ -75.246056, 40.23677 ], [ -75.246117, 40.236857 ], [ -75.246157, 40.236909 ], [ -75.246273, 40.23706 ], [ -75.246397, 40.237222 ], [ -75.246475, 40.237323 ], [ -75.246543, 40.237421 ], [ -75.246614, 40.237376 ], [ -75.246877, 40.237212 ], [ -75.247227, 40.236994 ], [ -75.247281, 40.236967 ], [ -75.247382, 40.236915 ], [ -75.247706, 40.236816 ], [ -75.247859, 40.236721 ], [ -75.24794, 40.236663 ], [ -75.248021, 40.236565 ], [ -75.248053, 40.236527 ], [ -75.248114, 40.236398 ], [ -75.248122, 40.236333 ], [ -75.2483, 40.236341 ], [ -75.248383, 40.236356 ], [ -75.248452, 40.236381 ], [ -75.248528, 40.236424 ], [ -75.248624, 40.236495 ], [ -75.248742, 40.2366 ], [ -75.248849, 40.236711 ], [ -75.249358, 40.237183 ], [ -75.249412, 40.237235 ], [ -75.250166, 40.236779 ], [ -75.25034, 40.236672 ], [ -75.250372, 40.236619 ], [ -75.250455, 40.236573 ], [ -75.250569, 40.236495 ], [ -75.250766, 40.23634 ], [ -75.251793, 40.235479 ], [ -75.252068, 40.23523 ], [ -75.252733, 40.234677 ], [ -75.253526, 40.234031 ], [ -75.254098, 40.233565 ], [ -75.254299, 40.233397 ], [ -75.2544, 40.233343 ], [ -75.25453, 40.233278 ], [ -75.254663, 40.233211 ], [ -75.254849, 40.233126 ], [ -75.255113, 40.233008 ], [ -75.256581, 40.232375 ], [ -75.257717, 40.231952 ], [ -75.259277, 40.231373 ], [ -75.260646, 40.230885 ], [ -75.260772, 40.230826 ], [ -75.260817, 40.2308 ], [ -75.260849, 40.230771 ], [ -75.260879, 40.230743 ], [ -75.261007, 40.230602 ], [ -75.261308, 40.230274 ], [ -75.261892, 40.229608 ], [ -75.262171, 40.229256 ], [ -75.262475, 40.228884 ], [ -75.26316, 40.229292 ], [ -75.263583, 40.229555 ], [ -75.264665, 40.230191 ], [ -75.26499, 40.230388 ], [ -75.265324, 40.230588 ], [ -75.26616, 40.231086 ], [ -75.266541, 40.231314 ], [ -75.266969, 40.231569 ], [ -75.267538, 40.231911 ], [ -75.26811, 40.232254 ], [ -75.268266, 40.232338 ], [ -75.268467, 40.232459 ], [ -75.268508, 40.232528 ], [ -75.268615, 40.232592 ], [ -75.268906, 40.232762 ], [ -75.269188, 40.232932 ], [ -75.269325, 40.233014 ], [ -75.269449, 40.233094 ], [ -75.269461, 40.233101 ], [ -75.269708, 40.233256 ], [ -75.270309, 40.233601 ], [ -75.271065, 40.23406 ], [ -75.271136, 40.234096 ], [ -75.271211, 40.234106 ], [ -75.271492, 40.234271 ], [ -75.271984, 40.234573 ], [ -75.272376, 40.234803 ], [ -75.272955, 40.235146 ], [ -75.273313, 40.235359 ], [ -75.273708, 40.235595 ], [ -75.274213, 40.235878 ], [ -75.274531, 40.23607 ], [ -75.274696, 40.236171 ], [ -75.274769, 40.236216 ], [ -75.275056, 40.236379 ], [ -75.275686, 40.235695 ], [ -75.275999, 40.235355 ], [ -75.276352, 40.234967 ], [ -75.276572, 40.234749 ], [ -75.27702, 40.234271 ], [ -75.277483, 40.233773 ], [ -75.278067, 40.233156 ], [ -75.278397, 40.232813 ], [ -75.278821, 40.232352 ], [ -75.279316, 40.231857 ], [ -75.27976, 40.231376 ], [ -75.280194, 40.23091 ], [ -75.280662, 40.230405 ], [ -75.280759, 40.230309 ], [ -75.280878, 40.230208 ], [ -75.281117, 40.230008 ], [ -75.281593, 40.229647 ], [ -75.281752, 40.22952 ], [ -75.282193, 40.22917 ], [ -75.28229, 40.229094 ], [ -75.282406, 40.229003 ], [ -75.28264, 40.228822 ], [ -75.283586, 40.228099 ], [ -75.283658, 40.228041 ], [ -75.283937, 40.227816 ], [ -75.284106, 40.227669 ], [ -75.284264, 40.227515 ], [ -75.284418, 40.227357 ], [ -75.284774, 40.226949 ], [ -75.284931, 40.22676 ], [ -75.285011, 40.226658 ], [ -75.285068, 40.226597 ], [ -75.285122, 40.226534 ], [ -75.285176, 40.226473 ], [ -75.285226, 40.226417 ], [ -75.285682, 40.225694 ], [ -75.286123, 40.225128 ], [ -75.286318, 40.224872 ], [ -75.286866, 40.224227 ], [ -75.286959, 40.224109 ], [ -75.287206, 40.223786 ], [ -75.287696, 40.223194 ], [ -75.287832, 40.223022 ], [ -75.287983, 40.222806 ], [ -75.288491, 40.222074 ], [ -75.289071, 40.221232 ], [ -75.289273, 40.220942 ], [ -75.289819, 40.220135 ], [ -75.289992, 40.21988 ], [ -75.290475, 40.219175 ], [ -75.291007, 40.218354 ], [ -75.291288, 40.217963 ], [ -75.291475, 40.217704 ], [ -75.291682, 40.217415 ], [ -75.291951, 40.217042 ], [ -75.291968, 40.217016 ], [ -75.292285, 40.216556 ], [ -75.292538, 40.216133 ], [ -75.292579, 40.216075 ], [ -75.292638, 40.215972 ], [ -75.29269, 40.215866 ], [ -75.292723, 40.215758 ], [ -75.292741, 40.215647 ], [ -75.292746, 40.215534 ], [ -75.292735, 40.21541 ], [ -75.292682, 40.215171 ], [ -75.292709, 40.215103 ], [ -75.292671, 40.214915 ], [ -75.292649, 40.214806 ], [ -75.292625, 40.214708 ], [ -75.292612, 40.214657 ], [ -75.292554, 40.2146 ], [ -75.292549, 40.214559 ], [ -75.292554, 40.21452 ], [ -75.292584, 40.214415 ], [ -75.292617, 40.214324 ], [ -75.292649, 40.21424 ], [ -75.292891, 40.213667 ], [ -75.293267, 40.212827 ], [ -75.293481, 40.212334 ], [ -75.293626, 40.212038 ], [ -75.293662, 40.211967 ], [ -75.293695, 40.211918 ], [ -75.293737, 40.211853 ], [ -75.293793, 40.211784 ], [ -75.293906, 40.211648 ], [ -75.294072, 40.211484 ], [ -75.294181, 40.211377 ], [ -75.294418, 40.211168 ], [ -75.295189, 40.210395 ], [ -75.295456, 40.2101 ], [ -75.296483, 40.208991 ], [ -75.297114, 40.208323 ], [ -75.297206, 40.208217 ], [ -75.29748, 40.207918 ], [ -75.298127, 40.207234 ], [ -75.298284, 40.20708 ], [ -75.298907, 40.206413 ], [ -75.299351, 40.205904 ], [ -75.299917, 40.20531 ], [ -75.300846, 40.20433 ], [ -75.301583, 40.203562 ], [ -75.301873, 40.203254 ], [ -75.302037, 40.203078 ], [ -75.302731, 40.202352 ], [ -75.303099, 40.201974 ], [ -75.303741, 40.20129 ], [ -75.303793, 40.201271 ], [ -75.303978, 40.20108 ], [ -75.304119, 40.200944 ], [ -75.304203, 40.200856 ], [ -75.304251, 40.200807 ], [ -75.304414, 40.200635 ], [ -75.304425, 40.200573 ], [ -75.305159, 40.199788 ], [ -75.304539, 40.199428 ], [ -75.304508, 40.199408 ], [ -75.304484, 40.199357 ], [ -75.304474, 40.199347 ], [ -75.304018, 40.199107 ], [ -75.303779, 40.198976 ], [ -75.303725, 40.198947 ], [ -75.303637, 40.198938 ], [ -75.30357, 40.198906 ], [ -75.303235, 40.198726 ], [ -75.302968, 40.198583 ], [ -75.30259, 40.198381 ], [ -75.302329, 40.198241 ], [ -75.302079, 40.198108 ], [ -75.301798, 40.197957 ], [ -75.301367, 40.197727 ], [ -75.301173, 40.197621 ], [ -75.300798, 40.197415 ], [ -75.300551, 40.19728 ], [ -75.300123, 40.197045 ], [ -75.299688, 40.196807 ], [ -75.29923, 40.196556 ], [ -75.298729, 40.196282 ], [ -75.298322, 40.196044 ], [ -75.298092, 40.195913 ], [ -75.297981, 40.195847 ], [ -75.297729, 40.195697 ], [ -75.297697, 40.195641 ], [ -75.297526, 40.195527 ], [ -75.297457, 40.195484 ], [ -75.297314, 40.195401 ], [ -75.296506, 40.194939 ], [ -75.296473, 40.194936 ], [ -75.29633, 40.194857 ], [ -75.296145, 40.194738 ], [ -75.296061, 40.194691 ], [ -75.295994, 40.194648 ], [ -75.295906, 40.194586 ], [ -75.29579, 40.1945 ], [ -75.295644, 40.194388 ], [ -75.295583, 40.194336 ], [ -75.295487, 40.194249 ], [ -75.295417, 40.194176 ], [ -75.29534, 40.194102 ], [ -75.295234, 40.193982 ], [ -75.295144, 40.19387 ], [ -75.295088, 40.193795 ], [ -75.295039, 40.193723 ], [ -75.294966, 40.193611 ], [ -75.294902, 40.193503 ], [ -75.294861, 40.193421 ], [ -75.294727, 40.193149 ], [ -75.29451, 40.192606 ], [ -75.294275, 40.191967 ], [ -75.294206, 40.191829 ], [ -75.294215, 40.191782 ], [ -75.294099, 40.191532 ], [ -75.293988, 40.191294 ], [ -75.293855, 40.191027 ], [ -75.293814, 40.190944 ], [ -75.293773, 40.190863 ], [ -75.29366, 40.19067 ], [ -75.293611, 40.190639 ], [ -75.293517, 40.190456 ], [ -75.293304, 40.190014 ], [ -75.293, 40.18938 ], [ -75.292728, 40.188807 ], [ -75.292594, 40.188565 ], [ -75.292523, 40.188452 ], [ -75.292392, 40.188261 ], [ -75.292217, 40.188047 ], [ -75.291984, 40.187813 ], [ -75.291885, 40.187719 ], [ -75.291817, 40.187663 ], [ -75.291648, 40.187539 ], [ -75.291381, 40.187359 ], [ -75.291181, 40.187241 ], [ -75.290446, 40.18681 ], [ -75.289662, 40.186356 ], [ -75.28956, 40.1863 ], [ -75.28947, 40.186251 ], [ -75.289264, 40.186153 ], [ -75.289109, 40.186076 ], [ -75.288045, 40.185459 ], [ -75.28781, 40.185324 ], [ -75.286861, 40.184749 ], [ -75.285442, 40.18393 ], [ -75.282958, 40.182468 ], [ -75.281902, 40.181836 ], [ -75.281283, 40.181481 ], [ -75.280766, 40.18118 ], [ -75.280126, 40.180793 ], [ -75.279789, 40.1806 ], [ -75.279636, 40.180504 ], [ -75.278294, 40.179731 ], [ -75.278134, 40.179639 ], [ -75.278076, 40.179611 ], [ -75.278007, 40.179581 ], [ -75.277912, 40.179548 ], [ -75.277749, 40.179488 ], [ -75.27769, 40.179463 ], [ -75.277484, 40.179383 ], [ -75.277237, 40.179288 ], [ -75.277031, 40.179209 ], [ -75.276889, 40.179148 ], [ -75.276755, 40.179086 ], [ -75.276573, 40.179001 ], [ -75.276468, 40.178951 ], [ -75.276215, 40.178833 ], [ -75.276045, 40.178754 ], [ -75.275894, 40.17868 ], [ -75.275722, 40.178588 ], [ -75.27559, 40.178514 ], [ -75.274971, 40.178156 ], [ -75.274115, 40.177658 ], [ -75.273915, 40.177537 ], [ -75.273738, 40.177425 ], [ -75.273623, 40.177349 ], [ -75.273505, 40.177262 ], [ -75.273381, 40.177154 ], [ -75.273266, 40.177047 ], [ -75.27317, 40.176953 ], [ -75.273089, 40.176874 ], [ -75.272958, 40.176732 ], [ -75.272715, 40.176487 ], [ -75.272583, 40.176353 ], [ -75.273025, 40.176072 ], [ -75.273672, 40.176786 ], [ -75.274158, 40.177119 ], [ -75.274472, 40.17729 ], [ -75.2749, 40.177623 ], [ -75.275751, 40.178111 ], [ -75.27584, 40.178117 ], [ -75.2759, 40.178057 ], [ -75.276019, 40.177635 ], [ -75.275947, 40.177528 ], [ -75.275114, 40.177433 ], [ -75.2749, 40.177623 ], [ -75.274472, 40.17729 ], [ -75.274158, 40.177119 ], [ -75.273672, 40.176786 ], [ -75.273025, 40.176072 ], [ -75.272583, 40.176353 ], [ -75.272381, 40.176149 ], [ -75.272018, 40.17579 ], [ -75.271561, 40.175339 ], [ -75.271554, 40.175298 ], [ -75.271118, 40.174835 ], [ -75.27093, 40.174616 ], [ -75.270652, 40.174264 ], [ -75.270524, 40.174084 ], [ -75.270477, 40.174016 ], [ -75.270333, 40.173787 ], [ -75.269674, 40.172699 ], [ -75.269567, 40.172519 ], [ -75.269507, 40.172414 ], [ -75.269475, 40.172374 ], [ -75.269429, 40.172354 ], [ -75.269103, 40.171833 ], [ -75.268626, 40.171059 ], [ -75.268217, 40.170417 ], [ -75.267615, 40.169466 ], [ -75.267327, 40.169003 ], [ -75.267202, 40.168802 ], [ -75.267022, 40.168509 ], [ -75.266942, 40.168391 ], [ -75.266896, 40.168338 ], [ -75.266863, 40.168299 ], [ -75.266814, 40.168259 ], [ -75.266719, 40.168198 ], [ -75.266537, 40.168098 ], [ -75.265698, 40.167626 ], [ -75.264462, 40.166951 ], [ -75.264263, 40.166821 ], [ -75.262903, 40.165983 ], [ -75.262276, 40.165583 ], [ -75.26149, 40.165095 ], [ -75.260044, 40.164204 ], [ -75.258527, 40.163257 ], [ -75.257506, 40.162617 ], [ -75.257458, 40.162583 ], [ -75.257364, 40.162918 ], [ -75.257277, 40.163197 ], [ -75.257241, 40.163295 ], [ -75.25719, 40.163402 ], [ -75.257149, 40.163468 ], [ -75.257066, 40.163575 ], [ -75.256926, 40.163731 ], [ -75.256433, 40.164251 ], [ -75.255929, 40.16477 ], [ -75.255528, 40.165177 ], [ -75.254784, 40.165945 ], [ -75.25425, 40.166499 ], [ -75.253962, 40.166802 ], [ -75.253727, 40.167048 ], [ -75.253588, 40.167198 ], [ -75.253134, 40.167683 ], [ -75.252663, 40.168158 ], [ -75.25249, 40.168332 ], [ -75.252357, 40.168459 ], [ -75.252256, 40.168546 ], [ -75.252186, 40.168596 ], [ -75.252102, 40.168645 ], [ -75.252001, 40.168697 ], [ -75.251921, 40.168732 ], [ -75.251596, 40.168851 ], [ -75.251365, 40.168934 ], [ -75.250951, 40.169072 ], [ -75.250523, 40.169216 ], [ -75.250383, 40.169261 ], [ -75.250323, 40.16928 ], [ -75.250226, 40.169301 ], [ -75.250166, 40.169315 ], [ -75.250098, 40.169326 ], [ -75.250029, 40.169333 ], [ -75.249946, 40.169339 ], [ -75.249842, 40.169339 ], [ -75.249747, 40.169337 ], [ -75.249659, 40.169335 ], [ -75.24958, 40.169331 ], [ -75.249488, 40.169328 ], [ -75.248856, 40.169284 ], [ -75.248747, 40.169281 ], [ -75.248631, 40.169284 ], [ -75.248562, 40.169287 ], [ -75.248489, 40.169292 ], [ -75.24841, 40.1693 ], [ -75.248319, 40.169309 ], [ -75.248224, 40.169318 ], [ -75.248136, 40.169326 ], [ -75.248055, 40.169334 ], [ -75.247919, 40.169346 ], [ -75.247798, 40.16936 ], [ -75.247754, 40.169367 ], [ -75.247699, 40.169377 ], [ -75.247649, 40.169391 ], [ -75.247587, 40.169413 ], [ -75.247525, 40.169433 ], [ -75.247464, 40.169457 ], [ -75.247393, 40.169485 ], [ -75.247335, 40.169509 ], [ -75.247276, 40.169537 ], [ -75.247219, 40.169567 ], [ -75.247162, 40.169596 ], [ -75.24685, 40.169754 ], [ -75.246659, 40.169851 ], [ -75.246225, 40.170071 ], [ -75.245445, 40.170454 ], [ -75.244855, 40.170756 ], [ -75.244586, 40.170891 ], [ -75.244401, 40.17073 ], [ -75.244284, 40.170632 ], [ -75.2442, 40.170564 ], [ -75.244067, 40.170465 ], [ -75.243952, 40.17039 ], [ -75.24381, 40.1703 ], [ -75.243214, 40.169947 ], [ -75.243534, 40.169672 ], [ -75.243567, 40.169635 ], [ -75.243582, 40.169604 ], [ -75.243583, 40.169578 ], [ -75.243578, 40.169556 ], [ -75.243558, 40.169525 ], [ -75.243529, 40.169478 ], [ -75.243484, 40.169419 ], [ -75.243415, 40.169334 ], [ -75.24331, 40.169214 ], [ -75.243226, 40.169126 ], [ -75.243136, 40.169031 ], [ -75.243059, 40.168959 ], [ -75.242984, 40.168897 ], [ -75.242905, 40.168838 ], [ -75.242733, 40.168728 ], [ -75.242524, 40.1686 ], [ -75.242176, 40.1684 ], [ -75.241914, 40.168244 ], [ -75.241501, 40.168002 ], [ -75.240484, 40.167414 ], [ -75.238844, 40.166475 ], [ -75.237659, 40.165802 ], [ -75.237175, 40.165527 ], [ -75.236539, 40.165146 ], [ -75.235858, 40.164753 ], [ -75.23527, 40.164415 ], [ -75.234698, 40.164083 ], [ -75.234506, 40.163979 ], [ -75.234336, 40.163879 ], [ -75.234192, 40.163795 ], [ -75.233983, 40.163666 ], [ -75.233881, 40.163602 ], [ -75.233825, 40.163557 ], [ -75.233785, 40.163518 ], [ -75.233747, 40.163478 ], [ -75.233705, 40.163415 ], [ -75.233685, 40.163253 ], [ -75.233674, 40.163197 ], [ -75.233668, 40.16315 ], [ -75.233651, 40.163098 ], [ -75.233614, 40.163044 ], [ -75.233575, 40.162997 ], [ -75.233494, 40.162932 ], [ -75.233139, 40.162668 ], [ -75.231878, 40.161702 ], [ -75.231515, 40.161425 ], [ -75.231006, 40.161047 ], [ -75.230734, 40.160875 ], [ -75.230515, 40.160729 ], [ -75.230445, 40.160675 ], [ -75.230312, 40.160553 ], [ -75.229856, 40.160129 ], [ -75.229755, 40.159993 ], [ -75.229683, 40.159903 ], [ -75.229644, 40.159864 ], [ -75.229571, 40.159804 ], [ -75.2295, 40.159751 ], [ -75.229407, 40.159698 ], [ -75.229011, 40.159464 ], [ -75.228611, 40.159225 ], [ -75.227887, 40.158798 ], [ -75.227165, 40.158373 ], [ -75.226823, 40.158168 ], [ -75.226308, 40.15786 ], [ -75.226385, 40.157466 ], [ -75.226557, 40.156532 ], [ -75.226055, 40.156027 ], [ -75.225349, 40.155319 ], [ -75.224832, 40.1548 ], [ -75.22434, 40.154275 ], [ -75.223919, 40.153868 ], [ -75.223792, 40.153746 ], [ -75.222967, 40.154083 ], [ -75.222134, 40.154399 ], [ -75.22153, 40.154674 ], [ -75.220957, 40.154925 ], [ -75.219389, 40.15571 ], [ -75.219315, 40.155698 ], [ -75.219209, 40.155685 ], [ -75.218852, 40.155671 ], [ -75.217886, 40.155642 ], [ -75.21714, 40.155604 ], [ -75.215508, 40.155532 ], [ -75.214751, 40.155501 ], [ -75.213935, 40.155455 ], [ -75.213923, 40.155263 ], [ -75.213892, 40.15497 ], [ -75.213844, 40.154678 ], [ -75.213815, 40.154533 ], [ -75.213793, 40.154452 ], [ -75.213771, 40.154361 ], [ -75.213742, 40.154266 ], [ -75.213461, 40.153433 ], [ -75.213397, 40.153253 ], [ -75.213319, 40.153023 ], [ -75.213236, 40.152803 ], [ -75.213185, 40.15262 ], [ -75.213137, 40.152395 ], [ -75.213073, 40.152068 ], [ -75.212943, 40.151322 ], [ -75.212933, 40.151266 ], [ -75.212908, 40.151122 ], [ -75.212805, 40.150529 ], [ -75.212729, 40.150167 ], [ -75.212695, 40.15 ], [ -75.212669, 40.149855 ], [ -75.212589, 40.149403 ], [ -75.212549, 40.149176 ], [ -75.212519, 40.149004 ], [ -75.212505, 40.148919 ], [ -75.212498, 40.148826 ], [ -75.212488, 40.14874 ], [ -75.212488, 40.148666 ], [ -75.212507, 40.148143 ], [ -75.212569, 40.147335 ], [ -75.212603, 40.146445 ], [ -75.212615, 40.146111 ], [ -75.212629, 40.145758 ], [ -75.212684, 40.144779 ], [ -75.212736, 40.143876 ], [ -75.212794, 40.142894 ], [ -75.212854, 40.142072 ], [ -75.212854, 40.141929 ], [ -75.2128, 40.141207 ], [ -75.212775, 40.14074 ], [ -75.212756, 40.140485 ], [ -75.212726, 40.140246 ], [ -75.212716, 40.140133 ], [ -75.212691, 40.139976 ], [ -75.212657, 40.139838 ], [ -75.212426, 40.138985 ], [ -75.212362, 40.138765 ], [ -75.212336, 40.138669 ], [ -75.212311, 40.138574 ], [ -75.212296, 40.138517 ], [ -75.212272, 40.138422 ], [ -75.212268, 40.138401 ], [ -75.212257, 40.138323 ], [ -75.212255, 40.138251 ], [ -75.212253, 40.1382 ], [ -75.212252, 40.138169 ], [ -75.212257, 40.138096 ], [ -75.212266, 40.13804 ], [ -75.212284, 40.137937 ], [ -75.212297, 40.137886 ], [ -75.212325, 40.137813 ], [ -75.212468, 40.137634 ], [ -75.212631, 40.137404 ], [ -75.212689, 40.137309 ], [ -75.212859, 40.137035 ], [ -75.213051, 40.136707 ], [ -75.213163, 40.136496 ], [ -75.213191, 40.136418 ], [ -75.213217, 40.136345 ], [ -75.213247, 40.136251 ], [ -75.213315, 40.136024 ], [ -75.213397, 40.135582 ], [ -75.21344, 40.135337 ], [ -75.21347, 40.135169 ], [ -75.213523, 40.134917 ], [ -75.213591, 40.134595 ], [ -75.213642, 40.134371 ], [ -75.21367, 40.134243 ], [ -75.213735, 40.134015 ], [ -75.21374, 40.133997 ], [ -75.213777, 40.133877 ], [ -75.213807, 40.133807 ], [ -75.21383, 40.133753 ], [ -75.213906, 40.133618 ], [ -75.213998, 40.13346 ], [ -75.214066, 40.133358 ], [ -75.214139, 40.133252 ], [ -75.2142, 40.133176 ], [ -75.214294, 40.133074 ], [ -75.214671, 40.132729 ], [ -75.215457, 40.132007 ], [ -75.215657, 40.131826 ], [ -75.215831, 40.131662 ], [ -75.215938, 40.13156 ], [ -75.216043, 40.131453 ], [ -75.216141, 40.131335 ], [ -75.216267, 40.131176 ], [ -75.216469, 40.130901 ], [ -75.217098, 40.129965 ], [ -75.217165, 40.129861 ], [ -75.21721, 40.12977 ], [ -75.217295, 40.129616 ], [ -75.217398, 40.129382 ], [ -75.217434, 40.129298 ], [ -75.217525, 40.129093 ], [ -75.217613, 40.128893 ], [ -75.217686, 40.128693 ], [ -75.217715, 40.12862 ], [ -75.217775, 40.128468 ], [ -75.217815, 40.12834 ], [ -75.217832, 40.128259 ], [ -75.217841, 40.128209 ], [ -75.217852, 40.128116 ], [ -75.217852, 40.128024 ], [ -75.217844, 40.127817 ], [ -75.217844, 40.12775 ], [ -75.217834, 40.127673 ], [ -75.217812, 40.127547 ], [ -75.217796, 40.127389 ], [ -75.217755, 40.127014 ], [ -75.217464, 40.12442 ], [ -75.217435, 40.124175 ], [ -75.217429, 40.12412 ], [ -75.217418, 40.123999 ], [ -75.217334, 40.123196 ], [ -75.217309, 40.122957 ], [ -75.217259, 40.12256 ], [ -75.217202, 40.122232 ], [ -75.217146, 40.121736 ], [ -75.21712, 40.121497 ], [ -75.217102, 40.121358 ], [ -75.217078, 40.121237 ], [ -75.217042, 40.121131 ], [ -75.217001, 40.12104 ], [ -75.216946, 40.120953 ], [ -75.21691, 40.120905 ], [ -75.216882, 40.120868 ], [ -75.216815, 40.120794 ], [ -75.216763, 40.120742 ], [ -75.216678, 40.120667 ], [ -75.216619, 40.120624 ], [ -75.216605, 40.120613 ], [ -75.216464, 40.120531 ], [ -75.216342, 40.120453 ], [ -75.216229, 40.120393 ], [ -75.216156, 40.120349 ], [ -75.216084, 40.120306 ], [ -75.216017, 40.120256 ], [ -75.215957, 40.120205 ], [ -75.215888, 40.120148 ], [ -75.215823, 40.120076 ], [ -75.215785, 40.120016 ], [ -75.215739, 40.119938 ], [ -75.215712, 40.119875 ], [ -75.215691, 40.119828 ], [ -75.215663, 40.119752 ], [ -75.215637, 40.119642 ], [ -75.215612, 40.119535 ], [ -75.215644, 40.119467 ], [ -75.215552, 40.118836 ], [ -75.215444, 40.118339 ], [ -75.21542, 40.118244 ], [ -75.215353, 40.118164 ], [ -75.215319, 40.118012 ], [ -75.215018, 40.11642 ], [ -75.214875, 40.11559 ], [ -75.214819, 40.115288 ], [ -75.214795, 40.115158 ], [ -75.214779, 40.115038 ], [ -75.214726, 40.114644 ], [ -75.214688, 40.114405 ], [ -75.214604, 40.113876 ], [ -75.214559, 40.113623 ], [ -75.214512, 40.113367 ], [ -75.214448, 40.113011 ], [ -75.214413, 40.11282 ], [ -75.214366, 40.112569 ], [ -75.214275, 40.112083 ], [ -75.214212, 40.111651 ], [ -75.214169, 40.111348 ], [ -75.214146, 40.111195 ], [ -75.214108, 40.110933 ], [ -75.214079, 40.110742 ], [ -75.214018, 40.110322 ], [ -75.213984, 40.110087 ], [ -75.213827, 40.108985 ], [ -75.213745, 40.108424 ], [ -75.213726, 40.108312 ], [ -75.213698, 40.108058 ], [ -75.213685, 40.10798 ], [ -75.213666, 40.107859 ], [ -75.213644, 40.107724 ], [ -75.213603, 40.107427 ], [ -75.21346, 40.106386 ], [ -75.213372, 40.10572 ], [ -75.213306, 40.105258 ], [ -75.213259, 40.104918 ], [ -75.21322, 40.104667 ], [ -75.21318, 40.104389 ], [ -75.212965, 40.102879 ], [ -75.212915, 40.10252 ], [ -75.212888, 40.102238 ], [ -75.212829, 40.101608 ], [ -75.212797, 40.1012 ], [ -75.212763, 40.100821 ], [ -75.212735, 40.100552 ], [ -75.212722, 40.100345 ], [ -75.212696, 40.099931 ], [ -75.212696, 40.099815 ], [ -75.212721, 40.099568 ], [ -75.212763, 40.099268 ], [ -75.212829, 40.098796 ], [ -75.212867, 40.098517 ], [ -75.212968, 40.097854 ], [ -75.212983, 40.097722 ], [ -75.213239, 40.095867 ], [ -75.213343, 40.094955 ], [ -75.213368, 40.09482 ], [ -75.213397, 40.094699 ], [ -75.213473, 40.094471 ], [ -75.213777, 40.093638 ], [ -75.214145, 40.092622 ], [ -75.21423, 40.092403 ], [ -75.21432, 40.092174 ], [ -75.214452, 40.0918 ], [ -75.214501, 40.091666 ], [ -75.2147, 40.091153 ], [ -75.214731, 40.091063 ], [ -75.21476, 40.090978 ], [ -75.214768, 40.090928 ], [ -75.214773, 40.090874 ], [ -75.214779, 40.090814 ], [ -75.214772, 40.090757 ], [ -75.214759, 40.090711 ], [ -75.214734, 40.09065 ], [ -75.214671, 40.090543 ], [ -75.214565, 40.090385 ], [ -75.214412, 40.090134 ], [ -75.214272, 40.089916 ], [ -75.214181, 40.089773 ], [ -75.21401, 40.089479 ], [ -75.213948, 40.089349 ], [ -75.213889, 40.089214 ], [ -75.213849, 40.089099 ], [ -75.213808, 40.088982 ], [ -75.213629, 40.088438 ], [ -75.213571, 40.08826 ], [ -75.213528, 40.088145 ], [ -75.213495, 40.088044 ], [ -75.213394, 40.087765 ], [ -75.213382, 40.087735 ], [ -75.213403, 40.087652 ], [ -75.213221, 40.087243 ], [ -75.212983, 40.086876 ], [ -75.212935, 40.086816 ], [ -75.212846, 40.086715 ], [ -75.212648, 40.086532 ], [ -75.212452, 40.086375 ], [ -75.212251, 40.086225 ], [ -75.211939, 40.086034 ], [ -75.211755, 40.085912 ], [ -75.211565, 40.085826 ], [ -75.211264, 40.085689 ], [ -75.211056, 40.085476 ], [ -75.210905, 40.085336 ], [ -75.210692, 40.08512 ], [ -75.210365, 40.084841 ], [ -75.210289, 40.08477 ], [ -75.210234, 40.084713 ], [ -75.210162, 40.084632 ], [ -75.210112, 40.084564 ], [ -75.210059, 40.084484 ], [ -75.209983, 40.084352 ], [ -75.209898, 40.084302 ], [ -75.209871, 40.084253 ], [ -75.209373, 40.083354 ], [ -75.208951, 40.082583 ], [ -75.208721, 40.082173 ], [ -75.2086, 40.081953 ], [ -75.208435, 40.081663 ], [ -75.208385, 40.081562 ], [ -75.20834, 40.081441 ], [ -75.208278, 40.081271 ], [ -75.208181, 40.081008 ], [ -75.208145, 40.080901 ], [ -75.208114, 40.08081 ], [ -75.20809, 40.080709 ], [ -75.208057, 40.080529 ], [ -75.207931, 40.079961 ], [ -75.207894, 40.079786 ], [ -75.207878, 40.079729 ], [ -75.20787, 40.079673 ], [ -75.207865, 40.07962 ], [ -75.207869, 40.079564 ], [ -75.207945, 40.079004 ], [ -75.208011, 40.078534 ], [ -75.208036, 40.078358 ], [ -75.208064, 40.078137 ], [ -75.208085, 40.077915 ], [ -75.208094, 40.077752 ], [ -75.20817, 40.077017 ], [ -75.208936, 40.077311 ], [ -75.208759, 40.077557 ], [ -75.208689, 40.077655 ], [ -75.208637, 40.077708 ], [ -75.208609, 40.077728 ], [ -75.208558, 40.077749 ], [ -75.208491, 40.077762 ], [ -75.208407, 40.077768 ], [ -75.208287, 40.077763 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307238", "route_id": "94" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.275114, 40.177433 ], [ -75.2749, 40.177623 ], [ -75.274472, 40.17729 ], [ -75.274158, 40.177119 ], [ -75.273672, 40.176786 ], [ -75.273025, 40.176072 ], [ -75.272583, 40.176353 ], [ -75.272381, 40.176149 ], [ -75.272018, 40.17579 ], [ -75.271561, 40.175339 ], [ -75.271554, 40.175298 ], [ -75.271118, 40.174835 ], [ -75.27093, 40.174616 ], [ -75.270652, 40.174264 ], [ -75.270524, 40.174084 ], [ -75.270477, 40.174016 ], [ -75.270333, 40.173787 ], [ -75.269674, 40.172699 ], [ -75.269567, 40.172519 ], [ -75.269507, 40.172414 ], [ -75.269475, 40.172374 ], [ -75.269429, 40.172354 ], [ -75.269103, 40.171833 ], [ -75.268626, 40.171059 ], [ -75.268217, 40.170417 ], [ -75.267615, 40.169466 ], [ -75.267327, 40.169003 ], [ -75.267202, 40.168802 ], [ -75.267022, 40.168509 ], [ -75.266942, 40.168391 ], [ -75.266896, 40.168338 ], [ -75.266863, 40.168299 ], [ -75.266814, 40.168259 ], [ -75.266719, 40.168198 ], [ -75.266537, 40.168098 ], [ -75.265698, 40.167626 ], [ -75.264462, 40.166951 ], [ -75.264263, 40.166821 ], [ -75.262903, 40.165983 ], [ -75.262276, 40.165583 ], [ -75.26149, 40.165095 ], [ -75.260044, 40.164204 ], [ -75.258527, 40.163257 ], [ -75.257506, 40.162617 ], [ -75.257458, 40.162583 ], [ -75.257364, 40.162918 ], [ -75.257277, 40.163197 ], [ -75.257241, 40.163295 ], [ -75.25719, 40.163402 ], [ -75.257149, 40.163468 ], [ -75.257066, 40.163575 ], [ -75.256926, 40.163731 ], [ -75.256433, 40.164251 ], [ -75.255929, 40.16477 ], [ -75.255528, 40.165177 ], [ -75.254784, 40.165945 ], [ -75.25425, 40.166499 ], [ -75.253962, 40.166802 ], [ -75.253727, 40.167048 ], [ -75.253588, 40.167198 ], [ -75.253134, 40.167683 ], [ -75.252663, 40.168158 ], [ -75.25249, 40.168332 ], [ -75.252357, 40.168459 ], [ -75.252256, 40.168546 ], [ -75.252186, 40.168596 ], [ -75.252102, 40.168645 ], [ -75.252001, 40.168697 ], [ -75.251921, 40.168732 ], [ -75.251596, 40.168851 ], [ -75.251365, 40.168934 ], [ -75.250951, 40.169072 ], [ -75.250523, 40.169216 ], [ -75.250383, 40.169261 ], [ -75.250323, 40.16928 ], [ -75.250226, 40.169301 ], [ -75.250166, 40.169315 ], [ -75.250098, 40.169326 ], [ -75.250029, 40.169333 ], [ -75.249946, 40.169339 ], [ -75.249842, 40.169339 ], [ -75.249747, 40.169337 ], [ -75.249659, 40.169335 ], [ -75.24958, 40.169331 ], [ -75.249488, 40.169328 ], [ -75.248856, 40.169284 ], [ -75.248747, 40.169281 ], [ -75.248631, 40.169284 ], [ -75.248562, 40.169287 ], [ -75.248489, 40.169292 ], [ -75.24841, 40.1693 ], [ -75.248319, 40.169309 ], [ -75.248224, 40.169318 ], [ -75.248136, 40.169326 ], [ -75.248055, 40.169334 ], [ -75.247919, 40.169346 ], [ -75.247798, 40.16936 ], [ -75.247754, 40.169367 ], [ -75.247699, 40.169377 ], [ -75.247649, 40.169391 ], [ -75.247587, 40.169413 ], [ -75.247525, 40.169433 ], [ -75.247464, 40.169457 ], [ -75.247393, 40.169485 ], [ -75.247335, 40.169509 ], [ -75.247276, 40.169537 ], [ -75.247219, 40.169567 ], [ -75.247162, 40.169596 ], [ -75.24685, 40.169754 ], [ -75.246659, 40.169851 ], [ -75.246225, 40.170071 ], [ -75.245445, 40.170454 ], [ -75.244855, 40.170756 ], [ -75.244586, 40.170891 ], [ -75.244401, 40.17073 ], [ -75.244284, 40.170632 ], [ -75.2442, 40.170564 ], [ -75.244067, 40.170465 ], [ -75.243952, 40.17039 ], [ -75.24381, 40.1703 ], [ -75.243214, 40.169947 ], [ -75.243534, 40.169672 ], [ -75.243567, 40.169635 ], [ -75.243582, 40.169604 ], [ -75.243583, 40.169578 ], [ -75.243578, 40.169556 ], [ -75.243558, 40.169525 ], [ -75.243529, 40.169478 ], [ -75.243484, 40.169419 ], [ -75.243415, 40.169334 ], [ -75.24331, 40.169214 ], [ -75.243226, 40.169126 ], [ -75.243136, 40.169031 ], [ -75.243059, 40.168959 ], [ -75.242984, 40.168897 ], [ -75.242905, 40.168838 ], [ -75.242733, 40.168728 ], [ -75.242524, 40.1686 ], [ -75.242176, 40.1684 ], [ -75.241914, 40.168244 ], [ -75.241501, 40.168002 ], [ -75.240484, 40.167414 ], [ -75.238844, 40.166475 ], [ -75.237659, 40.165802 ], [ -75.237175, 40.165527 ], [ -75.236539, 40.165146 ], [ -75.235858, 40.164753 ], [ -75.23527, 40.164415 ], [ -75.234698, 40.164083 ], [ -75.234506, 40.163979 ], [ -75.234336, 40.163879 ], [ -75.234192, 40.163795 ], [ -75.233983, 40.163666 ], [ -75.233881, 40.163602 ], [ -75.233825, 40.163557 ], [ -75.233785, 40.163518 ], [ -75.233747, 40.163478 ], [ -75.233705, 40.163415 ], [ -75.233685, 40.163253 ], [ -75.233674, 40.163197 ], [ -75.233668, 40.16315 ], [ -75.233651, 40.163098 ], [ -75.233614, 40.163044 ], [ -75.233575, 40.162997 ], [ -75.233494, 40.162932 ], [ -75.233139, 40.162668 ], [ -75.231878, 40.161702 ], [ -75.231515, 40.161425 ], [ -75.231006, 40.161047 ], [ -75.230734, 40.160875 ], [ -75.230515, 40.160729 ], [ -75.230445, 40.160675 ], [ -75.230312, 40.160553 ], [ -75.229856, 40.160129 ], [ -75.229755, 40.159993 ], [ -75.229683, 40.159903 ], [ -75.229644, 40.159864 ], [ -75.229571, 40.159804 ], [ -75.2295, 40.159751 ], [ -75.229407, 40.159698 ], [ -75.229011, 40.159464 ], [ -75.228611, 40.159225 ], [ -75.227887, 40.158798 ], [ -75.227165, 40.158373 ], [ -75.226823, 40.158168 ], [ -75.226308, 40.15786 ], [ -75.226385, 40.157466 ], [ -75.226557, 40.156532 ], [ -75.226055, 40.156027 ], [ -75.225349, 40.155319 ], [ -75.224832, 40.1548 ], [ -75.22434, 40.154275 ], [ -75.223919, 40.153868 ], [ -75.223792, 40.153746 ], [ -75.222967, 40.154083 ], [ -75.222134, 40.154399 ], [ -75.22153, 40.154674 ], [ -75.220957, 40.154925 ], [ -75.219389, 40.15571 ], [ -75.219315, 40.155698 ], [ -75.219209, 40.155685 ], [ -75.218852, 40.155671 ], [ -75.217886, 40.155642 ], [ -75.21714, 40.155604 ], [ -75.215508, 40.155532 ], [ -75.214751, 40.155501 ], [ -75.213935, 40.155455 ], [ -75.213923, 40.155263 ], [ -75.213892, 40.15497 ], [ -75.213844, 40.154678 ], [ -75.213815, 40.154533 ], [ -75.213793, 40.154452 ], [ -75.213771, 40.154361 ], [ -75.213742, 40.154266 ], [ -75.213461, 40.153433 ], [ -75.213397, 40.153253 ], [ -75.213319, 40.153023 ], [ -75.213236, 40.152803 ], [ -75.213185, 40.15262 ], [ -75.213137, 40.152395 ], [ -75.213073, 40.152068 ], [ -75.212943, 40.151322 ], [ -75.212933, 40.151266 ], [ -75.212908, 40.151122 ], [ -75.212805, 40.150529 ], [ -75.212729, 40.150167 ], [ -75.212695, 40.15 ], [ -75.212669, 40.149855 ], [ -75.212589, 40.149403 ], [ -75.212549, 40.149176 ], [ -75.212519, 40.149004 ], [ -75.212505, 40.148919 ], [ -75.212498, 40.148826 ], [ -75.212488, 40.14874 ], [ -75.212488, 40.148666 ], [ -75.212507, 40.148143 ], [ -75.212569, 40.147335 ], [ -75.212603, 40.146445 ], [ -75.212615, 40.146111 ], [ -75.212629, 40.145758 ], [ -75.212684, 40.144779 ], [ -75.212736, 40.143876 ], [ -75.212794, 40.142894 ], [ -75.212854, 40.142072 ], [ -75.212854, 40.141929 ], [ -75.2128, 40.141207 ], [ -75.212775, 40.14074 ], [ -75.212756, 40.140485 ], [ -75.212726, 40.140246 ], [ -75.212716, 40.140133 ], [ -75.212691, 40.139976 ], [ -75.212657, 40.139838 ], [ -75.212426, 40.138985 ], [ -75.212362, 40.138765 ], [ -75.212336, 40.138669 ], [ -75.212311, 40.138574 ], [ -75.212296, 40.138517 ], [ -75.212272, 40.138422 ], [ -75.212268, 40.138401 ], [ -75.212257, 40.138323 ], [ -75.212255, 40.138251 ], [ -75.212253, 40.1382 ], [ -75.212252, 40.138169 ], [ -75.212257, 40.138096 ], [ -75.212266, 40.13804 ], [ -75.212284, 40.137937 ], [ -75.212297, 40.137886 ], [ -75.212325, 40.137813 ], [ -75.212468, 40.137634 ], [ -75.212631, 40.137404 ], [ -75.212689, 40.137309 ], [ -75.212859, 40.137035 ], [ -75.213051, 40.136707 ], [ -75.213163, 40.136496 ], [ -75.213191, 40.136418 ], [ -75.213217, 40.136345 ], [ -75.213247, 40.136251 ], [ -75.213315, 40.136024 ], [ -75.213397, 40.135582 ], [ -75.21344, 40.135337 ], [ -75.21347, 40.135169 ], [ -75.213523, 40.134917 ], [ -75.213591, 40.134595 ], [ -75.213642, 40.134371 ], [ -75.21367, 40.134243 ], [ -75.213735, 40.134015 ], [ -75.21374, 40.133997 ], [ -75.213777, 40.133877 ], [ -75.213807, 40.133807 ], [ -75.21383, 40.133753 ], [ -75.213906, 40.133618 ], [ -75.213998, 40.13346 ], [ -75.214066, 40.133358 ], [ -75.214139, 40.133252 ], [ -75.2142, 40.133176 ], [ -75.214294, 40.133074 ], [ -75.214671, 40.132729 ], [ -75.215457, 40.132007 ], [ -75.215657, 40.131826 ], [ -75.215831, 40.131662 ], [ -75.215938, 40.13156 ], [ -75.216043, 40.131453 ], [ -75.216141, 40.131335 ], [ -75.216267, 40.131176 ], [ -75.216469, 40.130901 ], [ -75.217098, 40.129965 ], [ -75.217165, 40.129861 ], [ -75.21721, 40.12977 ], [ -75.217295, 40.129616 ], [ -75.217398, 40.129382 ], [ -75.217434, 40.129298 ], [ -75.217525, 40.129093 ], [ -75.217613, 40.128893 ], [ -75.217686, 40.128693 ], [ -75.217715, 40.12862 ], [ -75.217775, 40.128468 ], [ -75.217815, 40.12834 ], [ -75.217832, 40.128259 ], [ -75.217841, 40.128209 ], [ -75.217852, 40.128116 ], [ -75.217852, 40.128024 ], [ -75.217844, 40.127817 ], [ -75.217844, 40.12775 ], [ -75.217834, 40.127673 ], [ -75.217812, 40.127547 ], [ -75.217796, 40.127389 ], [ -75.217755, 40.127014 ], [ -75.217464, 40.12442 ], [ -75.217435, 40.124175 ], [ -75.217429, 40.12412 ], [ -75.217418, 40.123999 ], [ -75.217334, 40.123196 ], [ -75.217309, 40.122957 ], [ -75.217259, 40.12256 ], [ -75.217202, 40.122232 ], [ -75.217146, 40.121736 ], [ -75.21712, 40.121497 ], [ -75.217102, 40.121358 ], [ -75.217078, 40.121237 ], [ -75.217042, 40.121131 ], [ -75.217001, 40.12104 ], [ -75.216946, 40.120953 ], [ -75.21691, 40.120905 ], [ -75.216882, 40.120868 ], [ -75.216815, 40.120794 ], [ -75.216763, 40.120742 ], [ -75.216678, 40.120667 ], [ -75.216619, 40.120624 ], [ -75.216605, 40.120613 ], [ -75.216464, 40.120531 ], [ -75.216342, 40.120453 ], [ -75.216229, 40.120393 ], [ -75.216156, 40.120349 ], [ -75.216084, 40.120306 ], [ -75.216017, 40.120256 ], [ -75.215957, 40.120205 ], [ -75.215888, 40.120148 ], [ -75.215823, 40.120076 ], [ -75.215785, 40.120016 ], [ -75.215739, 40.119938 ], [ -75.215712, 40.119875 ], [ -75.215691, 40.119828 ], [ -75.215663, 40.119752 ], [ -75.215637, 40.119642 ], [ -75.215612, 40.119535 ], [ -75.215644, 40.119467 ], [ -75.215552, 40.118836 ], [ -75.215444, 40.118339 ], [ -75.21542, 40.118244 ], [ -75.215353, 40.118164 ], [ -75.215319, 40.118012 ], [ -75.215018, 40.11642 ], [ -75.214875, 40.11559 ], [ -75.214819, 40.115288 ], [ -75.214795, 40.115158 ], [ -75.214779, 40.115038 ], [ -75.214726, 40.114644 ], [ -75.214688, 40.114405 ], [ -75.214604, 40.113876 ], [ -75.214559, 40.113623 ], [ -75.214512, 40.113367 ], [ -75.214448, 40.113011 ], [ -75.214413, 40.11282 ], [ -75.214366, 40.112569 ], [ -75.214275, 40.112083 ], [ -75.214212, 40.111651 ], [ -75.214169, 40.111348 ], [ -75.214146, 40.111195 ], [ -75.214108, 40.110933 ], [ -75.214079, 40.110742 ], [ -75.214018, 40.110322 ], [ -75.213984, 40.110087 ], [ -75.213827, 40.108985 ], [ -75.213745, 40.108424 ], [ -75.213726, 40.108312 ], [ -75.213698, 40.108058 ], [ -75.213685, 40.10798 ], [ -75.213666, 40.107859 ], [ -75.213644, 40.107724 ], [ -75.213603, 40.107427 ], [ -75.21346, 40.106386 ], [ -75.213372, 40.10572 ], [ -75.213306, 40.105258 ], [ -75.213259, 40.104918 ], [ -75.21322, 40.104667 ], [ -75.21318, 40.104389 ], [ -75.212965, 40.102879 ], [ -75.212915, 40.10252 ], [ -75.212888, 40.102238 ], [ -75.212829, 40.101608 ], [ -75.212797, 40.1012 ], [ -75.212763, 40.100821 ], [ -75.212735, 40.100552 ], [ -75.212722, 40.100345 ], [ -75.212696, 40.099931 ], [ -75.212696, 40.099815 ], [ -75.212721, 40.099568 ], [ -75.212763, 40.099268 ], [ -75.212829, 40.098796 ], [ -75.212867, 40.098517 ], [ -75.212968, 40.097854 ], [ -75.212983, 40.097722 ], [ -75.213239, 40.095867 ], [ -75.213343, 40.094955 ], [ -75.213368, 40.09482 ], [ -75.213397, 40.094699 ], [ -75.213473, 40.094471 ], [ -75.213777, 40.093638 ], [ -75.214145, 40.092622 ], [ -75.21423, 40.092403 ], [ -75.21432, 40.092174 ], [ -75.214452, 40.0918 ], [ -75.214501, 40.091666 ], [ -75.2147, 40.091153 ], [ -75.214731, 40.091063 ], [ -75.21476, 40.090978 ], [ -75.214768, 40.090928 ], [ -75.214773, 40.090874 ], [ -75.214779, 40.090814 ], [ -75.214772, 40.090757 ], [ -75.214759, 40.090711 ], [ -75.214734, 40.09065 ], [ -75.214671, 40.090543 ], [ -75.214565, 40.090385 ], [ -75.214412, 40.090134 ], [ -75.214272, 40.089916 ], [ -75.214181, 40.089773 ], [ -75.21401, 40.089479 ], [ -75.213948, 40.089349 ], [ -75.213889, 40.089214 ], [ -75.213849, 40.089099 ], [ -75.213808, 40.088982 ], [ -75.213629, 40.088438 ], [ -75.213571, 40.08826 ], [ -75.213528, 40.088145 ], [ -75.213495, 40.088044 ], [ -75.213394, 40.087765 ], [ -75.213382, 40.087735 ], [ -75.213403, 40.087652 ], [ -75.213221, 40.087243 ], [ -75.212983, 40.086876 ], [ -75.212935, 40.086816 ], [ -75.212846, 40.086715 ], [ -75.212648, 40.086532 ], [ -75.212452, 40.086375 ], [ -75.212251, 40.086225 ], [ -75.211939, 40.086034 ], [ -75.211755, 40.085912 ], [ -75.211565, 40.085826 ], [ -75.211264, 40.085689 ], [ -75.211056, 40.085476 ], [ -75.210905, 40.085336 ], [ -75.210692, 40.08512 ], [ -75.210365, 40.084841 ], [ -75.210289, 40.08477 ], [ -75.210234, 40.084713 ], [ -75.210162, 40.084632 ], [ -75.210112, 40.084564 ], [ -75.210059, 40.084484 ], [ -75.209983, 40.084352 ], [ -75.209898, 40.084302 ], [ -75.209871, 40.084253 ], [ -75.209373, 40.083354 ], [ -75.208951, 40.082583 ], [ -75.208721, 40.082173 ], [ -75.2086, 40.081953 ], [ -75.208435, 40.081663 ], [ -75.208385, 40.081562 ], [ -75.20834, 40.081441 ], [ -75.208278, 40.081271 ], [ -75.208181, 40.081008 ], [ -75.208145, 40.080901 ], [ -75.208114, 40.08081 ], [ -75.20809, 40.080709 ], [ -75.208057, 40.080529 ], [ -75.207931, 40.079961 ], [ -75.207894, 40.079786 ], [ -75.207878, 40.079729 ], [ -75.20787, 40.079673 ], [ -75.207865, 40.07962 ], [ -75.207869, 40.079564 ], [ -75.207945, 40.079004 ], [ -75.208011, 40.078534 ], [ -75.208036, 40.078358 ], [ -75.208064, 40.078137 ], [ -75.208085, 40.077915 ], [ -75.208094, 40.077752 ], [ -75.20817, 40.077017 ], [ -75.208936, 40.077311 ], [ -75.208759, 40.077557 ], [ -75.208689, 40.077655 ], [ -75.208637, 40.077708 ], [ -75.208609, 40.077728 ], [ -75.208558, 40.077749 ], [ -75.208491, 40.077762 ], [ -75.208407, 40.077768 ], [ -75.208287, 40.077763 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307239", "route_id": "94" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.223919, 40.153868 ], [ -75.223792, 40.153746 ], [ -75.222967, 40.154083 ], [ -75.222134, 40.154399 ], [ -75.22153, 40.154674 ], [ -75.220957, 40.154925 ], [ -75.219389, 40.15571 ], [ -75.219315, 40.155698 ], [ -75.219209, 40.155685 ], [ -75.218852, 40.155671 ], [ -75.217886, 40.155642 ], [ -75.21714, 40.155604 ], [ -75.215508, 40.155532 ], [ -75.214751, 40.155501 ], [ -75.213935, 40.155455 ], [ -75.213923, 40.155263 ], [ -75.213892, 40.15497 ], [ -75.213844, 40.154678 ], [ -75.213815, 40.154533 ], [ -75.213793, 40.154452 ], [ -75.213771, 40.154361 ], [ -75.213742, 40.154266 ], [ -75.213461, 40.153433 ], [ -75.213397, 40.153253 ], [ -75.213319, 40.153023 ], [ -75.213236, 40.152803 ], [ -75.213185, 40.15262 ], [ -75.213137, 40.152395 ], [ -75.213073, 40.152068 ], [ -75.212943, 40.151322 ], [ -75.212933, 40.151266 ], [ -75.212908, 40.151122 ], [ -75.212805, 40.150529 ], [ -75.212729, 40.150167 ], [ -75.212695, 40.15 ], [ -75.212669, 40.149855 ], [ -75.212589, 40.149403 ], [ -75.212549, 40.149176 ], [ -75.212519, 40.149004 ], [ -75.212505, 40.148919 ], [ -75.212498, 40.148826 ], [ -75.212488, 40.14874 ], [ -75.212488, 40.148666 ], [ -75.212507, 40.148143 ], [ -75.212569, 40.147335 ], [ -75.212603, 40.146445 ], [ -75.212615, 40.146111 ], [ -75.212629, 40.145758 ], [ -75.212684, 40.144779 ], [ -75.212736, 40.143876 ], [ -75.212794, 40.142894 ], [ -75.212854, 40.142072 ], [ -75.212854, 40.141929 ], [ -75.2128, 40.141207 ], [ -75.212775, 40.14074 ], [ -75.212756, 40.140485 ], [ -75.212726, 40.140246 ], [ -75.212716, 40.140133 ], [ -75.212691, 40.139976 ], [ -75.212657, 40.139838 ], [ -75.212426, 40.138985 ], [ -75.212362, 40.138765 ], [ -75.212336, 40.138669 ], [ -75.212311, 40.138574 ], [ -75.212296, 40.138517 ], [ -75.212272, 40.138422 ], [ -75.212268, 40.138401 ], [ -75.212257, 40.138323 ], [ -75.212255, 40.138251 ], [ -75.212253, 40.1382 ], [ -75.212252, 40.138169 ], [ -75.212257, 40.138096 ], [ -75.212266, 40.13804 ], [ -75.212284, 40.137937 ], [ -75.212297, 40.137886 ], [ -75.212325, 40.137813 ], [ -75.212468, 40.137634 ], [ -75.212631, 40.137404 ], [ -75.212689, 40.137309 ], [ -75.212859, 40.137035 ], [ -75.213051, 40.136707 ], [ -75.213163, 40.136496 ], [ -75.213191, 40.136418 ], [ -75.213217, 40.136345 ], [ -75.213247, 40.136251 ], [ -75.213315, 40.136024 ], [ -75.213397, 40.135582 ], [ -75.21344, 40.135337 ], [ -75.21347, 40.135169 ], [ -75.213523, 40.134917 ], [ -75.213591, 40.134595 ], [ -75.213642, 40.134371 ], [ -75.21367, 40.134243 ], [ -75.213735, 40.134015 ], [ -75.21374, 40.133997 ], [ -75.213777, 40.133877 ], [ -75.213807, 40.133807 ], [ -75.21383, 40.133753 ], [ -75.213906, 40.133618 ], [ -75.213998, 40.13346 ], [ -75.214066, 40.133358 ], [ -75.214139, 40.133252 ], [ -75.2142, 40.133176 ], [ -75.214294, 40.133074 ], [ -75.214671, 40.132729 ], [ -75.215457, 40.132007 ], [ -75.215657, 40.131826 ], [ -75.215831, 40.131662 ], [ -75.215938, 40.13156 ], [ -75.216043, 40.131453 ], [ -75.216141, 40.131335 ], [ -75.216267, 40.131176 ], [ -75.216469, 40.130901 ], [ -75.217098, 40.129965 ], [ -75.217165, 40.129861 ], [ -75.21721, 40.12977 ], [ -75.217295, 40.129616 ], [ -75.217398, 40.129382 ], [ -75.217434, 40.129298 ], [ -75.217525, 40.129093 ], [ -75.217613, 40.128893 ], [ -75.217686, 40.128693 ], [ -75.217715, 40.12862 ], [ -75.217775, 40.128468 ], [ -75.217815, 40.12834 ], [ -75.217832, 40.128259 ], [ -75.217841, 40.128209 ], [ -75.217852, 40.128116 ], [ -75.217852, 40.128024 ], [ -75.217844, 40.127817 ], [ -75.217844, 40.12775 ], [ -75.217834, 40.127673 ], [ -75.217812, 40.127547 ], [ -75.217796, 40.127389 ], [ -75.217755, 40.127014 ], [ -75.217464, 40.12442 ], [ -75.217435, 40.124175 ], [ -75.217429, 40.12412 ], [ -75.217418, 40.123999 ], [ -75.217334, 40.123196 ], [ -75.217309, 40.122957 ], [ -75.217259, 40.12256 ], [ -75.217202, 40.122232 ], [ -75.217146, 40.121736 ], [ -75.21712, 40.121497 ], [ -75.217102, 40.121358 ], [ -75.217078, 40.121237 ], [ -75.217042, 40.121131 ], [ -75.217001, 40.12104 ], [ -75.216946, 40.120953 ], [ -75.21691, 40.120905 ], [ -75.216882, 40.120868 ], [ -75.216815, 40.120794 ], [ -75.216763, 40.120742 ], [ -75.216678, 40.120667 ], [ -75.216619, 40.120624 ], [ -75.216605, 40.120613 ], [ -75.216464, 40.120531 ], [ -75.216342, 40.120453 ], [ -75.216229, 40.120393 ], [ -75.216156, 40.120349 ], [ -75.216084, 40.120306 ], [ -75.216017, 40.120256 ], [ -75.215957, 40.120205 ], [ -75.215888, 40.120148 ], [ -75.215823, 40.120076 ], [ -75.215785, 40.120016 ], [ -75.215739, 40.119938 ], [ -75.215712, 40.119875 ], [ -75.215691, 40.119828 ], [ -75.215663, 40.119752 ], [ -75.215637, 40.119642 ], [ -75.215612, 40.119535 ], [ -75.215644, 40.119467 ], [ -75.215552, 40.118836 ], [ -75.215444, 40.118339 ], [ -75.21542, 40.118244 ], [ -75.215353, 40.118164 ], [ -75.215319, 40.118012 ], [ -75.215018, 40.11642 ], [ -75.214875, 40.11559 ], [ -75.214819, 40.115288 ], [ -75.214795, 40.115158 ], [ -75.214779, 40.115038 ], [ -75.214726, 40.114644 ], [ -75.214688, 40.114405 ], [ -75.214604, 40.113876 ], [ -75.214559, 40.113623 ], [ -75.214512, 40.113367 ], [ -75.214448, 40.113011 ], [ -75.214413, 40.11282 ], [ -75.214366, 40.112569 ], [ -75.214275, 40.112083 ], [ -75.214212, 40.111651 ], [ -75.214169, 40.111348 ], [ -75.214146, 40.111195 ], [ -75.214108, 40.110933 ], [ -75.214079, 40.110742 ], [ -75.214018, 40.110322 ], [ -75.213984, 40.110087 ], [ -75.213827, 40.108985 ], [ -75.213745, 40.108424 ], [ -75.213726, 40.108312 ], [ -75.213698, 40.108058 ], [ -75.213685, 40.10798 ], [ -75.213666, 40.107859 ], [ -75.213644, 40.107724 ], [ -75.213603, 40.107427 ], [ -75.21346, 40.106386 ], [ -75.213372, 40.10572 ], [ -75.213306, 40.105258 ], [ -75.213259, 40.104918 ], [ -75.21322, 40.104667 ], [ -75.21318, 40.104389 ], [ -75.212965, 40.102879 ], [ -75.212915, 40.10252 ], [ -75.212888, 40.102238 ], [ -75.212829, 40.101608 ], [ -75.212797, 40.1012 ], [ -75.212763, 40.100821 ], [ -75.212735, 40.100552 ], [ -75.212722, 40.100345 ], [ -75.212696, 40.099931 ], [ -75.212696, 40.099815 ], [ -75.212721, 40.099568 ], [ -75.212763, 40.099268 ], [ -75.212829, 40.098796 ], [ -75.212867, 40.098517 ], [ -75.212968, 40.097854 ], [ -75.212983, 40.097722 ], [ -75.213239, 40.095867 ], [ -75.213343, 40.094955 ], [ -75.213368, 40.09482 ], [ -75.213397, 40.094699 ], [ -75.213473, 40.094471 ], [ -75.213777, 40.093638 ], [ -75.214145, 40.092622 ], [ -75.21423, 40.092403 ], [ -75.21432, 40.092174 ], [ -75.214452, 40.0918 ], [ -75.214501, 40.091666 ], [ -75.2147, 40.091153 ], [ -75.214731, 40.091063 ], [ -75.21476, 40.090978 ], [ -75.214768, 40.090928 ], [ -75.214773, 40.090874 ], [ -75.214779, 40.090814 ], [ -75.214772, 40.090757 ], [ -75.214759, 40.090711 ], [ -75.214734, 40.09065 ], [ -75.214671, 40.090543 ], [ -75.214565, 40.090385 ], [ -75.214412, 40.090134 ], [ -75.214272, 40.089916 ], [ -75.214181, 40.089773 ], [ -75.21401, 40.089479 ], [ -75.213948, 40.089349 ], [ -75.213889, 40.089214 ], [ -75.213849, 40.089099 ], [ -75.213808, 40.088982 ], [ -75.213629, 40.088438 ], [ -75.213571, 40.08826 ], [ -75.213528, 40.088145 ], [ -75.213495, 40.088044 ], [ -75.213394, 40.087765 ], [ -75.213382, 40.087735 ], [ -75.213403, 40.087652 ], [ -75.213221, 40.087243 ], [ -75.212983, 40.086876 ], [ -75.212935, 40.086816 ], [ -75.212846, 40.086715 ], [ -75.212648, 40.086532 ], [ -75.212452, 40.086375 ], [ -75.212251, 40.086225 ], [ -75.211939, 40.086034 ], [ -75.211755, 40.085912 ], [ -75.211565, 40.085826 ], [ -75.211264, 40.085689 ], [ -75.211056, 40.085476 ], [ -75.210905, 40.085336 ], [ -75.210692, 40.08512 ], [ -75.210365, 40.084841 ], [ -75.210289, 40.08477 ], [ -75.210234, 40.084713 ], [ -75.210162, 40.084632 ], [ -75.210112, 40.084564 ], [ -75.210059, 40.084484 ], [ -75.209983, 40.084352 ], [ -75.209898, 40.084302 ], [ -75.209871, 40.084253 ], [ -75.209373, 40.083354 ], [ -75.208951, 40.082583 ], [ -75.208721, 40.082173 ], [ -75.2086, 40.081953 ], [ -75.208435, 40.081663 ], [ -75.208385, 40.081562 ], [ -75.20834, 40.081441 ], [ -75.208278, 40.081271 ], [ -75.208181, 40.081008 ], [ -75.208145, 40.080901 ], [ -75.208114, 40.08081 ], [ -75.20809, 40.080709 ], [ -75.208057, 40.080529 ], [ -75.207931, 40.079961 ], [ -75.207894, 40.079786 ], [ -75.207878, 40.079729 ], [ -75.20787, 40.079673 ], [ -75.207865, 40.07962 ], [ -75.207869, 40.079564 ], [ -75.207945, 40.079004 ], [ -75.208011, 40.078534 ], [ -75.208036, 40.078358 ], [ -75.208064, 40.078137 ], [ -75.208085, 40.077915 ], [ -75.208094, 40.077752 ], [ -75.20817, 40.077017 ], [ -75.208936, 40.077311 ], [ -75.208759, 40.077557 ], [ -75.208689, 40.077655 ], [ -75.208637, 40.077708 ], [ -75.208609, 40.077728 ], [ -75.208558, 40.077749 ], [ -75.208491, 40.077762 ], [ -75.208407, 40.077768 ], [ -75.208287, 40.077763 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307250", "route_id": "96" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.34396, 40.113415 ], [ -75.343321, 40.113154 ], [ -75.343079, 40.113076 ], [ -75.342821, 40.112992 ], [ -75.342655, 40.113259 ], [ -75.342547, 40.113434 ], [ -75.342375, 40.113716 ], [ -75.342344, 40.113759 ], [ -75.342165, 40.114033 ], [ -75.342029, 40.114242 ], [ -75.341872, 40.114481 ], [ -75.341736, 40.114697 ], [ -75.341381, 40.115254 ], [ -75.341624, 40.115352 ], [ -75.34191, 40.115499 ], [ -75.342525, 40.115725 ], [ -75.343161, 40.115959 ], [ -75.343682, 40.116154 ], [ -75.342873, 40.117427 ], [ -75.342328, 40.11828 ], [ -75.341856, 40.11899 ], [ -75.341444, 40.119613 ], [ -75.341151, 40.120083 ], [ -75.340677, 40.120805 ], [ -75.340509, 40.121663 ], [ -75.340358, 40.122332 ], [ -75.340262, 40.122808 ], [ -75.340071, 40.12366 ], [ -75.340041, 40.123805 ], [ -75.340004, 40.123968 ], [ -75.339311, 40.124434 ], [ -75.339176, 40.124525 ], [ -75.338691, 40.124852 ], [ -75.338267, 40.12518 ], [ -75.337548, 40.125647 ], [ -75.337077, 40.12599 ], [ -75.336596, 40.126327 ], [ -75.335895, 40.126819 ], [ -75.335438, 40.127139 ], [ -75.335015, 40.127441 ], [ -75.334339, 40.127917 ], [ -75.333827, 40.128282 ], [ -75.333336, 40.128627 ], [ -75.33222, 40.129424 ], [ -75.330609, 40.130562 ], [ -75.329679, 40.13119 ], [ -75.32857, 40.131949 ], [ -75.327973, 40.13158 ], [ -75.327666, 40.1314 ], [ -75.327524, 40.131318 ], [ -75.32725, 40.131147 ], [ -75.32652, 40.13071 ], [ -75.326338, 40.130595 ], [ -75.32598, 40.130376 ], [ -75.325446, 40.130029 ], [ -75.32524, 40.1299 ], [ -75.324995, 40.129748 ], [ -75.324822, 40.12965 ], [ -75.324646, 40.129549 ], [ -75.324368, 40.129782 ], [ -75.324202, 40.12994 ], [ -75.324107, 40.130032 ], [ -75.32403, 40.130103 ], [ -75.323563, 40.130559 ], [ -75.323456, 40.130663 ], [ -75.323, 40.131099 ], [ -75.322649, 40.131439 ], [ -75.322225, 40.13185 ], [ -75.321711, 40.132352 ], [ -75.321467, 40.132602 ], [ -75.320906, 40.133174 ], [ -75.320532, 40.133561 ], [ -75.320264, 40.133831 ], [ -75.319358, 40.134774 ], [ -75.319255, 40.134881 ], [ -75.319014, 40.13513 ], [ -75.3188, 40.135354 ], [ -75.318696, 40.135462 ], [ -75.31858, 40.13558 ], [ -75.318497, 40.13567 ], [ -75.318435, 40.135729 ], [ -75.318379, 40.135787 ], [ -75.318079, 40.136088 ], [ -75.317909, 40.136264 ], [ -75.317827, 40.136348 ], [ -75.317556, 40.136627 ], [ -75.317163, 40.137032 ], [ -75.316959, 40.137249 ], [ -75.316315, 40.137902 ], [ -75.31626, 40.137958 ], [ -75.316199, 40.13802 ], [ -75.315908, 40.138324 ], [ -75.31581, 40.138427 ], [ -75.315512, 40.138731 ], [ -75.315024, 40.139232 ], [ -75.314917, 40.139344 ], [ -75.314803, 40.139461 ], [ -75.314683, 40.1395 ], [ -75.314605, 40.139571 ], [ -75.314528, 40.139661 ], [ -75.31436, 40.139835 ], [ -75.314109, 40.140096 ], [ -75.313977, 40.140229 ], [ -75.313842, 40.140369 ], [ -75.31361, 40.140606 ], [ -75.313504, 40.140713 ], [ -75.313306, 40.140915 ], [ -75.313142, 40.141075 ], [ -75.312868, 40.141355 ], [ -75.312563, 40.141679 ], [ -75.31249, 40.141766 ], [ -75.312086, 40.142286 ], [ -75.311713, 40.142801 ], [ -75.311641, 40.142913 ], [ -75.311477, 40.143148 ], [ -75.311255, 40.143464 ], [ -75.311026, 40.143763 ], [ -75.310952, 40.143871 ], [ -75.310954, 40.143918 ], [ -75.310752, 40.144214 ], [ -75.31072, 40.144262 ], [ -75.310251, 40.144936 ], [ -75.310166, 40.145061 ], [ -75.309454, 40.146052 ], [ -75.309271, 40.146314 ], [ -75.308934, 40.146786 ], [ -75.308888, 40.146808 ], [ -75.308782, 40.146944 ], [ -75.308728, 40.147014 ], [ -75.308666, 40.1471 ], [ -75.308646, 40.147138 ], [ -75.308647, 40.147186 ], [ -75.308281, 40.147718 ], [ -75.308156, 40.147901 ], [ -75.308033, 40.148077 ], [ -75.30762, 40.148641 ], [ -75.307364, 40.148989 ], [ -75.307298, 40.149083 ], [ -75.307223, 40.14919 ], [ -75.307103, 40.14936 ], [ -75.30696, 40.149563 ], [ -75.306878, 40.149679 ], [ -75.306519, 40.150181 ], [ -75.306293, 40.150504 ], [ -75.305855, 40.151117 ], [ -75.305735, 40.151286 ], [ -75.305379, 40.151785 ], [ -75.305287, 40.151905 ], [ -75.305205, 40.152013 ], [ -75.305127, 40.152111 ], [ -75.305025, 40.152243 ], [ -75.304919, 40.152366 ], [ -75.304879, 40.152414 ], [ -75.304777, 40.152533 ], [ -75.304693, 40.152629 ], [ -75.304555, 40.152772 ], [ -75.304434, 40.152888 ], [ -75.304276, 40.153051 ], [ -75.304065, 40.153262 ], [ -75.303736, 40.153591 ], [ -75.303468, 40.153853 ], [ -75.303005, 40.154308 ], [ -75.302573, 40.154731 ], [ -75.302196, 40.1551 ], [ -75.302059, 40.155235 ], [ -75.301997, 40.155308 ], [ -75.301966, 40.155342 ], [ -75.301445, 40.155873 ], [ -75.300433, 40.156859 ], [ -75.299962, 40.157326 ], [ -75.299916, 40.15734 ], [ -75.29957, 40.157655 ], [ -75.299213, 40.158021 ], [ -75.298859, 40.158381 ], [ -75.298529, 40.158715 ], [ -75.298352, 40.15888 ], [ -75.298213, 40.159012 ], [ -75.298188, 40.159042 ], [ -75.298183, 40.159081 ], [ -75.298109, 40.159163 ], [ -75.297991, 40.159288 ], [ -75.297953, 40.159324 ], [ -75.297923, 40.159352 ], [ -75.297749, 40.159526 ], [ -75.297451, 40.159822 ], [ -75.297045, 40.160243 ], [ -75.2964, 40.160878 ], [ -75.295969, 40.161303 ], [ -75.295555, 40.161711 ], [ -75.295322, 40.161941 ], [ -75.294789, 40.162476 ], [ -75.294415, 40.162853 ], [ -75.294305, 40.162965 ], [ -75.293978, 40.163295 ], [ -75.293613, 40.163633 ], [ -75.293334, 40.163914 ], [ -75.292915, 40.164345 ], [ -75.29229, 40.164986 ], [ -75.291811, 40.165493 ], [ -75.2916, 40.165726 ], [ -75.291508, 40.165825 ], [ -75.291376, 40.165968 ], [ -75.29124, 40.166108 ], [ -75.291176, 40.166168 ], [ -75.290958, 40.166368 ], [ -75.290948, 40.166378 ], [ -75.290872, 40.16645 ], [ -75.290778, 40.16654 ], [ -75.290542, 40.166768 ], [ -75.290279, 40.167021 ], [ -75.289982, 40.167297 ], [ -75.28983, 40.167432 ], [ -75.289553, 40.16768 ], [ -75.289428, 40.167792 ], [ -75.289234, 40.167964 ], [ -75.289169, 40.168023 ], [ -75.289033, 40.16815 ], [ -75.28898, 40.168195 ], [ -75.288761, 40.168406 ], [ -75.288665, 40.168499 ], [ -75.287634, 40.169491 ], [ -75.287576, 40.169508 ], [ -75.287528, 40.169546 ], [ -75.287373, 40.169707 ], [ -75.287199, 40.169889 ], [ -75.287013, 40.170082 ], [ -75.286811, 40.17028 ], [ -75.286158, 40.170981 ], [ -75.285834, 40.171327 ], [ -75.285562, 40.171614 ], [ -75.285168, 40.172025 ], [ -75.285001, 40.172196 ], [ -75.284937, 40.172261 ], [ -75.284658, 40.17255 ], [ -75.284556, 40.172653 ], [ -75.284199, 40.173032 ], [ -75.283913, 40.173323 ], [ -75.283498, 40.173756 ], [ -75.283301, 40.173953 ], [ -75.282747, 40.174512 ], [ -75.282523, 40.174727 ], [ -75.282283, 40.174952 ], [ -75.282152, 40.175075 ], [ -75.28204, 40.175179 ], [ -75.281843, 40.175381 ], [ -75.281584, 40.17566 ], [ -75.281461, 40.175799 ], [ -75.281378, 40.175884 ], [ -75.280957, 40.176321 ], [ -75.280717, 40.176573 ], [ -75.279797, 40.177473 ], [ -75.27881, 40.178399 ], [ -75.278438, 40.178779 ], [ -75.277749, 40.179488 ], [ -75.276382, 40.180976 ], [ -75.276305, 40.181062 ], [ -75.275687, 40.181771 ], [ -75.275495, 40.181987 ], [ -75.275466, 40.18203 ], [ -75.275463, 40.182078 ], [ -75.274554, 40.183029 ], [ -75.274272, 40.183324 ], [ -75.274199, 40.183401 ], [ -75.274107, 40.183485 ], [ -75.273988, 40.183602 ], [ -75.273893, 40.183696 ], [ -75.273789, 40.183786 ], [ -75.273673, 40.183883 ], [ -75.273584, 40.183962 ], [ -75.273484, 40.184037 ], [ -75.2731, 40.184303 ], [ -75.272784, 40.184525 ], [ -75.272623, 40.184646 ], [ -75.272416, 40.184801 ], [ -75.272204, 40.184965 ], [ -75.271903, 40.185182 ], [ -75.271332, 40.185579 ], [ -75.271245, 40.185643 ], [ -75.271169, 40.185702 ], [ -75.27111, 40.185748 ], [ -75.270789, 40.185966 ], [ -75.269802, 40.186639 ], [ -75.269131, 40.187104 ], [ -75.269033, 40.187171 ], [ -75.268964, 40.187214 ], [ -75.268896, 40.187263 ], [ -75.268822, 40.187318 ], [ -75.268697, 40.187427 ], [ -75.26849, 40.187633 ], [ -75.268266, 40.187886 ], [ -75.268007, 40.188128 ], [ -75.267785, 40.188359 ], [ -75.267734, 40.188378 ], [ -75.267708, 40.188401 ], [ -75.266907, 40.189232 ], [ -75.266708, 40.18945 ], [ -75.266179, 40.189938 ], [ -75.265928, 40.190137 ], [ -75.265044, 40.190657 ], [ -75.264654, 40.190878 ], [ -75.264077, 40.191167 ], [ -75.263944, 40.191234 ], [ -75.262926, 40.191742 ], [ -75.262262, 40.192074 ], [ -75.261912, 40.192263 ], [ -75.261614, 40.192437 ], [ -75.261482, 40.192526 ], [ -75.261291, 40.19267 ], [ -75.261046, 40.19285 ], [ -75.260964, 40.19292 ], [ -75.26092, 40.192963 ], [ -75.260823, 40.193051 ], [ -75.260755, 40.193121 ], [ -75.260742, 40.193134 ], [ -75.260572, 40.193318 ], [ -75.260357, 40.193565 ], [ -75.259822, 40.194323 ], [ -75.259576, 40.194654 ], [ -75.259256, 40.195152 ], [ -75.257982, 40.196985 ], [ -75.257583, 40.197561 ], [ -75.257066, 40.198304 ], [ -75.256864, 40.198597 ], [ -75.256779, 40.198729 ], [ -75.256725, 40.1988 ], [ -75.256608, 40.198983 ], [ -75.256405, 40.199363 ], [ -75.256222, 40.199795 ], [ -75.256042, 40.200254 ], [ -75.255789, 40.200877 ], [ -75.255704, 40.201091 ], [ -75.255562, 40.201481 ], [ -75.255513, 40.201617 ], [ -75.25535, 40.202042 ], [ -75.255456, 40.202101 ], [ -75.25603, 40.202361 ], [ -75.256068, 40.202409 ], [ -75.256869, 40.202773 ], [ -75.256924, 40.20278 ], [ -75.257657, 40.203118 ], [ -75.258391, 40.203458 ], [ -75.259247, 40.203834 ], [ -75.260249, 40.204231 ], [ -75.26052, 40.204333 ], [ -75.260956, 40.2045 ], [ -75.261168, 40.204573 ], [ -75.261648, 40.204727 ], [ -75.262422, 40.204961 ], [ -75.263159, 40.205177 ], [ -75.265194, 40.205728 ], [ -75.265667, 40.205853 ], [ -75.266147, 40.205985 ], [ -75.266651, 40.206123 ], [ -75.266983, 40.206219 ], [ -75.267114, 40.206261 ], [ -75.267428, 40.206356 ], [ -75.2677, 40.206437 ], [ -75.26787, 40.206496 ], [ -75.268005, 40.206545 ], [ -75.268196, 40.206613 ], [ -75.268369, 40.206669 ], [ -75.268644, 40.20677 ], [ -75.268915, 40.206879 ], [ -75.269179, 40.206998 ], [ -75.269401, 40.20711 ], [ -75.269585, 40.207218 ], [ -75.269662, 40.207267 ], [ -75.269736, 40.207314 ], [ -75.26993, 40.207444 ], [ -75.270409, 40.207768 ], [ -75.27062, 40.207907 ], [ -75.270918, 40.2081 ], [ -75.271245, 40.208315 ], [ -75.271389, 40.208397 ], [ -75.27147, 40.208442 ], [ -75.271587, 40.208503 ], [ -75.271661, 40.208546 ], [ -75.271849, 40.208634 ], [ -75.271915, 40.208665 ], [ -75.271969, 40.20869 ], [ -75.272035, 40.208718 ], [ -75.272103, 40.208746 ], [ -75.272196, 40.208784 ], [ -75.272286, 40.208816 ], [ -75.272509, 40.208898 ], [ -75.272994, 40.209074 ], [ -75.273152, 40.209135 ], [ -75.273461, 40.209246 ], [ -75.274144, 40.209492 ], [ -75.274868, 40.209758 ], [ -75.275837, 40.2101 ], [ -75.276065, 40.210179 ], [ -75.276136, 40.210207 ], [ -75.276817, 40.210457 ], [ -75.277067, 40.210546 ], [ -75.277169, 40.21058 ], [ -75.2776, 40.210712 ], [ -75.278285, 40.210901 ], [ -75.278081, 40.211184 ], [ -75.278067, 40.211209 ], [ -75.278011, 40.211307 ], [ -75.277982, 40.211365 ], [ -75.277948, 40.211441 ], [ -75.27792, 40.2115 ], [ -75.277632, 40.212095 ], [ -75.277352, 40.212669 ], [ -75.277132, 40.213107 ], [ -75.277093, 40.213186 ], [ -75.277062, 40.213252 ], [ -75.27703, 40.213338 ], [ -75.276995, 40.213449 ], [ -75.276958, 40.213543 ], [ -75.27689, 40.213746 ], [ -75.276681, 40.214306 ], [ -75.276388, 40.215043 ], [ -75.276211, 40.215506 ], [ -75.276112, 40.215776 ], [ -75.27608, 40.21584 ], [ -75.276024, 40.215911 ], [ -75.275962, 40.215978 ], [ -75.275669, 40.216316 ], [ -75.275564, 40.21644 ], [ -75.275432, 40.216625 ], [ -75.275292, 40.216795 ], [ -75.275223, 40.216871 ], [ -75.275095, 40.217009 ], [ -75.27496, 40.217155 ], [ -75.274531, 40.217603 ], [ -75.274397, 40.217746 ], [ -75.27408, 40.218081 ], [ -75.273695, 40.218478 ], [ -75.273541, 40.218641 ], [ -75.272954, 40.219245 ], [ -75.272499, 40.219704 ], [ -75.272378, 40.219826 ], [ -75.272036, 40.220177 ], [ -75.271859, 40.220349 ], [ -75.271543, 40.220676 ], [ -75.271502, 40.220718 ], [ -75.271136, 40.221087 ], [ -75.270972, 40.221242 ], [ -75.270794, 40.221413 ], [ -75.270713, 40.221489 ], [ -75.270611, 40.221571 ], [ -75.270482, 40.221664 ], [ -75.269632, 40.222212 ], [ -75.269286, 40.222435 ], [ -75.269089, 40.222547 ], [ -75.268901, 40.222661 ], [ -75.268841, 40.222698 ], [ -75.268605, 40.222849 ], [ -75.268453, 40.222957 ], [ -75.268423, 40.222978 ], [ -75.268262, 40.223093 ], [ -75.267964, 40.223329 ], [ -75.267703, 40.223582 ], [ -75.267478, 40.223811 ], [ -75.267103, 40.224194 ], [ -75.264972, 40.226372 ], [ -75.264006, 40.227367 ], [ -75.263317, 40.22806 ], [ -75.263148, 40.228229 ], [ -75.263136, 40.228242 ], [ -75.263007, 40.228368 ], [ -75.262819, 40.228555 ], [ -75.262475, 40.228884 ], [ -75.262171, 40.229256 ], [ -75.261892, 40.229608 ], [ -75.261308, 40.230274 ], [ -75.261007, 40.230602 ], [ -75.260879, 40.230743 ], [ -75.260849, 40.230771 ], [ -75.260817, 40.2308 ], [ -75.260772, 40.230826 ], [ -75.260646, 40.230885 ], [ -75.259277, 40.231373 ], [ -75.257717, 40.231952 ], [ -75.256581, 40.232375 ], [ -75.255113, 40.233008 ], [ -75.254849, 40.233126 ], [ -75.254663, 40.233211 ], [ -75.25453, 40.233278 ], [ -75.2544, 40.233343 ], [ -75.254299, 40.233397 ], [ -75.254098, 40.233565 ], [ -75.253526, 40.234031 ], [ -75.252733, 40.234677 ], [ -75.252068, 40.23523 ], [ -75.251793, 40.235479 ], [ -75.250766, 40.23634 ], [ -75.250569, 40.236495 ], [ -75.250455, 40.236573 ], [ -75.250372, 40.236619 ], [ -75.250323, 40.236622 ], [ -75.250211, 40.236667 ], [ -75.250114, 40.236726 ], [ -75.249358, 40.237183 ], [ -75.248849, 40.236711 ], [ -75.248742, 40.2366 ], [ -75.248624, 40.236495 ], [ -75.248528, 40.236424 ], [ -75.248453, 40.236382 ], [ -75.248383, 40.236356 ], [ -75.2483, 40.236341 ], [ -75.248122, 40.236333 ], [ -75.248122, 40.236256 ], [ -75.248108, 40.23607 ], [ -75.248072, 40.235956 ], [ -75.248051, 40.23589 ], [ -75.248006, 40.235795 ], [ -75.247979, 40.235739 ], [ -75.247906, 40.235615 ], [ -75.247887, 40.235583 ], [ -75.247706, 40.235324 ], [ -75.247704, 40.235318 ], [ -75.247639, 40.235134 ], [ -75.247623, 40.235075 ], [ -75.247603, 40.235007 ], [ -75.247603, 40.234883 ], [ -75.247603, 40.23487 ], [ -75.247649, 40.234744 ], [ -75.247668, 40.23472 ], [ -75.247722, 40.234649 ], [ -75.247793, 40.234582 ], [ -75.247484, 40.234444 ], [ -75.247244, 40.234334 ], [ -75.247178, 40.234401 ], [ -75.247137, 40.23446 ], [ -75.247113, 40.234486 ], [ -75.247064, 40.234523 ], [ -75.24702, 40.234541 ], [ -75.246949, 40.234559 ], [ -75.246904, 40.234565 ], [ -75.246582, 40.234632 ], [ -75.246431, 40.234661 ], [ -75.246267, 40.234695 ], [ -75.245955, 40.234756 ], [ -75.245801, 40.234792 ], [ -75.245757, 40.234806 ], [ -75.245684, 40.234851 ], [ -75.245619, 40.234906 ], [ -75.24558, 40.234983 ], [ -75.245575, 40.234995 ], [ -75.245552, 40.235051 ], [ -75.245552, 40.235078 ], [ -75.245568, 40.235126 ], [ -75.245593, 40.235179 ], [ -75.245611, 40.235201 ], [ -75.245647, 40.235228 ], [ -75.245696, 40.235254 ], [ -75.246068, 40.235412 ], [ -75.246144, 40.235453 ], [ -75.246184, 40.235486 ], [ -75.246212, 40.235537 ], [ -75.246271, 40.235711 ], [ -75.246352, 40.235945 ], [ -75.24639, 40.236044 ], [ -75.246394, 40.236074 ], [ -75.246386, 40.236106 ], [ -75.246366, 40.236128 ], [ -75.24633, 40.236147 ], [ -75.245966, 40.236225 ], [ -75.245954, 40.23623 ], [ -75.245935, 40.236247 ], [ -75.245925, 40.236257 ], [ -75.245903, 40.236288 ], [ -75.245897, 40.236297 ], [ -75.245894, 40.236303 ], [ -75.245887, 40.236328 ], [ -75.245887, 40.236338 ], [ -75.245914, 40.236414 ], [ -75.245915, 40.236419 ], [ -75.245979, 40.236579 ], [ -75.246038, 40.23673 ], [ -75.246056, 40.23677 ], [ -75.246117, 40.236857 ], [ -75.246157, 40.236909 ], [ -75.246273, 40.23706 ], [ -75.246397, 40.237222 ], [ -75.246475, 40.237323 ], [ -75.246543, 40.237421 ], [ -75.246614, 40.237376 ], [ -75.246877, 40.237212 ], [ -75.247227, 40.236994 ], [ -75.247281, 40.236967 ], [ -75.247382, 40.236915 ], [ -75.247706, 40.236816 ], [ -75.247859, 40.236721 ], [ -75.24794, 40.236663 ], [ -75.248021, 40.236565 ], [ -75.248053, 40.236527 ], [ -75.248114, 40.236398 ], [ -75.248122, 40.236333 ], [ -75.2483, 40.236341 ], [ -75.248383, 40.236356 ], [ -75.248452, 40.236381 ], [ -75.248528, 40.236424 ], [ -75.248624, 40.236495 ], [ -75.248742, 40.2366 ], [ -75.248849, 40.236711 ], [ -75.249358, 40.237183 ], [ -75.249412, 40.237235 ], [ -75.250166, 40.236779 ], [ -75.25034, 40.236672 ], [ -75.250372, 40.236619 ], [ -75.250455, 40.236573 ], [ -75.250569, 40.236495 ], [ -75.250766, 40.23634 ], [ -75.251793, 40.235479 ], [ -75.252068, 40.23523 ], [ -75.252733, 40.234677 ], [ -75.253526, 40.234031 ], [ -75.254098, 40.233565 ], [ -75.254299, 40.233397 ], [ -75.2544, 40.233343 ], [ -75.25453, 40.233278 ], [ -75.254663, 40.233211 ], [ -75.254849, 40.233126 ], [ -75.255113, 40.233008 ], [ -75.256581, 40.232375 ], [ -75.257717, 40.231952 ], [ -75.259277, 40.231373 ], [ -75.260646, 40.230885 ], [ -75.260772, 40.230826 ], [ -75.260817, 40.2308 ], [ -75.260849, 40.230771 ], [ -75.260879, 40.230743 ], [ -75.261007, 40.230602 ], [ -75.261308, 40.230274 ], [ -75.261892, 40.229608 ], [ -75.262171, 40.229256 ], [ -75.262475, 40.228884 ], [ -75.26316, 40.229292 ], [ -75.263583, 40.229555 ], [ -75.264665, 40.230191 ], [ -75.26499, 40.230388 ], [ -75.265324, 40.230588 ], [ -75.26616, 40.231086 ], [ -75.266541, 40.231314 ], [ -75.266969, 40.231569 ], [ -75.267538, 40.231911 ], [ -75.26811, 40.232254 ], [ -75.268266, 40.232338 ], [ -75.268467, 40.232459 ], [ -75.268508, 40.232528 ], [ -75.268615, 40.232592 ], [ -75.268906, 40.232762 ], [ -75.269188, 40.232932 ], [ -75.269325, 40.233014 ], [ -75.269449, 40.233094 ], [ -75.269461, 40.233101 ], [ -75.269708, 40.233256 ], [ -75.270309, 40.233601 ], [ -75.271065, 40.23406 ], [ -75.271136, 40.234096 ], [ -75.271211, 40.234106 ], [ -75.271492, 40.234271 ], [ -75.271984, 40.234573 ], [ -75.272376, 40.234803 ], [ -75.272955, 40.235146 ], [ -75.273313, 40.235359 ], [ -75.273708, 40.235595 ], [ -75.274213, 40.235878 ], [ -75.274531, 40.23607 ], [ -75.274696, 40.236171 ], [ -75.274769, 40.236216 ], [ -75.275056, 40.236379 ], [ -75.275391, 40.236596 ], [ -75.275663, 40.236755 ], [ -75.275973, 40.236937 ], [ -75.276113, 40.237019 ], [ -75.276552, 40.23728 ], [ -75.276984, 40.237536 ], [ -75.277223, 40.237688 ], [ -75.277311, 40.237744 ], [ -75.278058, 40.238185 ], [ -75.278877, 40.238676 ], [ -75.278883, 40.23868 ], [ -75.279224, 40.238877 ], [ -75.279382, 40.238969 ], [ -75.279749, 40.239187 ], [ -75.280132, 40.239414 ], [ -75.280609, 40.239697 ], [ -75.281274, 40.240089 ], [ -75.281838, 40.240435 ], [ -75.282446, 40.24079 ], [ -75.283131, 40.24118 ], [ -75.283158, 40.241195 ], [ -75.283485, 40.241396 ], [ -75.28374, 40.241561 ], [ -75.284095, 40.241185 ], [ -75.284517, 40.240773 ], [ -75.284683, 40.240608 ], [ -75.284818, 40.240473 ], [ -75.284914, 40.240375 ], [ -75.285725, 40.240797 ], [ -75.285845, 40.240854 ], [ -75.28629, 40.241111 ], [ -75.286476, 40.241209 ], [ -75.287026, 40.241509 ], [ -75.286512, 40.242022 ], [ -75.286253, 40.242292 ], [ -75.286008, 40.242535 ], [ -75.285769, 40.242785 ], [ -75.285459, 40.242603 ], [ -75.285353, 40.24254 ], [ -75.285351, 40.242483 ], [ -75.285343, 40.24242 ], [ -75.285317, 40.242257 ], [ -75.285259, 40.24201 ], [ -75.285167, 40.24165 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307251", "route_id": "96" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.344785, 40.113485 ], [ -75.344648, 40.113432 ], [ -75.344502, 40.113376 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.345123, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.34396, 40.113415 ], [ -75.343321, 40.113154 ], [ -75.343079, 40.113076 ], [ -75.342821, 40.112992 ], [ -75.342655, 40.113259 ], [ -75.342547, 40.113434 ], [ -75.342375, 40.113716 ], [ -75.342344, 40.113759 ], [ -75.342165, 40.114033 ], [ -75.342029, 40.114242 ], [ -75.341872, 40.114481 ], [ -75.341736, 40.114697 ], [ -75.341381, 40.115254 ], [ -75.341624, 40.115352 ], [ -75.34191, 40.115499 ], [ -75.342525, 40.115725 ], [ -75.343161, 40.115959 ], [ -75.343682, 40.116154 ], [ -75.342873, 40.117427 ], [ -75.342328, 40.11828 ], [ -75.341856, 40.11899 ], [ -75.341444, 40.119613 ], [ -75.341151, 40.120083 ], [ -75.340677, 40.120805 ], [ -75.340509, 40.121663 ], [ -75.340358, 40.122332 ], [ -75.340262, 40.122808 ], [ -75.340071, 40.12366 ], [ -75.340041, 40.123805 ], [ -75.340004, 40.123968 ], [ -75.339311, 40.124434 ], [ -75.339176, 40.124525 ], [ -75.338691, 40.124852 ], [ -75.338267, 40.12518 ], [ -75.337548, 40.125647 ], [ -75.337077, 40.12599 ], [ -75.336596, 40.126327 ], [ -75.335895, 40.126819 ], [ -75.335438, 40.127139 ], [ -75.335015, 40.127441 ], [ -75.334339, 40.127917 ], [ -75.333827, 40.128282 ], [ -75.333336, 40.128627 ], [ -75.33222, 40.129424 ], [ -75.330609, 40.130562 ], [ -75.329679, 40.13119 ], [ -75.32857, 40.131949 ], [ -75.327973, 40.13158 ], [ -75.327666, 40.1314 ], [ -75.327524, 40.131318 ], [ -75.32725, 40.131147 ], [ -75.32652, 40.13071 ], [ -75.326338, 40.130595 ], [ -75.32598, 40.130376 ], [ -75.325446, 40.130029 ], [ -75.32524, 40.1299 ], [ -75.324995, 40.129748 ], [ -75.324822, 40.12965 ], [ -75.324646, 40.129549 ], [ -75.324368, 40.129782 ], [ -75.324202, 40.12994 ], [ -75.324107, 40.130032 ], [ -75.32403, 40.130103 ], [ -75.323563, 40.130559 ], [ -75.323456, 40.130663 ], [ -75.323, 40.131099 ], [ -75.322649, 40.131439 ], [ -75.322225, 40.13185 ], [ -75.321711, 40.132352 ], [ -75.321467, 40.132602 ], [ -75.320906, 40.133174 ], [ -75.320532, 40.133561 ], [ -75.320264, 40.133831 ], [ -75.319358, 40.134774 ], [ -75.319255, 40.134881 ], [ -75.319014, 40.13513 ], [ -75.3188, 40.135354 ], [ -75.318696, 40.135462 ], [ -75.31858, 40.13558 ], [ -75.318497, 40.13567 ], [ -75.318435, 40.135729 ], [ -75.318379, 40.135787 ], [ -75.318079, 40.136088 ], [ -75.317909, 40.136264 ], [ -75.317827, 40.136348 ], [ -75.317556, 40.136627 ], [ -75.317163, 40.137032 ], [ -75.316959, 40.137249 ], [ -75.316315, 40.137902 ], [ -75.31626, 40.137958 ], [ -75.316199, 40.13802 ], [ -75.315908, 40.138324 ], [ -75.31581, 40.138427 ], [ -75.315512, 40.138731 ], [ -75.315024, 40.139232 ], [ -75.314917, 40.139344 ], [ -75.314803, 40.139461 ], [ -75.314683, 40.1395 ], [ -75.314605, 40.139571 ], [ -75.314528, 40.139661 ], [ -75.31436, 40.139835 ], [ -75.314109, 40.140096 ], [ -75.313977, 40.140229 ], [ -75.313842, 40.140369 ], [ -75.31361, 40.140606 ], [ -75.313504, 40.140713 ], [ -75.313306, 40.140915 ], [ -75.313142, 40.141075 ], [ -75.312868, 40.141355 ], [ -75.312563, 40.141679 ], [ -75.31249, 40.141766 ], [ -75.312086, 40.142286 ], [ -75.311713, 40.142801 ], [ -75.311641, 40.142913 ], [ -75.311477, 40.143148 ], [ -75.311255, 40.143464 ], [ -75.311026, 40.143763 ], [ -75.310952, 40.143871 ], [ -75.310954, 40.143918 ], [ -75.310752, 40.144214 ], [ -75.31072, 40.144262 ], [ -75.310251, 40.144936 ], [ -75.310166, 40.145061 ], [ -75.309454, 40.146052 ], [ -75.309271, 40.146314 ], [ -75.308934, 40.146786 ], [ -75.308888, 40.146808 ], [ -75.308782, 40.146944 ], [ -75.308728, 40.147014 ], [ -75.308666, 40.1471 ], [ -75.308646, 40.147138 ], [ -75.308647, 40.147186 ], [ -75.308281, 40.147718 ], [ -75.308156, 40.147901 ], [ -75.308033, 40.148077 ], [ -75.30762, 40.148641 ], [ -75.307364, 40.148989 ], [ -75.307298, 40.149083 ], [ -75.307223, 40.14919 ], [ -75.307103, 40.14936 ], [ -75.30696, 40.149563 ], [ -75.306878, 40.149679 ], [ -75.306519, 40.150181 ], [ -75.306293, 40.150504 ], [ -75.305855, 40.151117 ], [ -75.305735, 40.151286 ], [ -75.305379, 40.151785 ], [ -75.305287, 40.151905 ], [ -75.305205, 40.152013 ], [ -75.305127, 40.152111 ], [ -75.305025, 40.152243 ], [ -75.304919, 40.152366 ], [ -75.304879, 40.152414 ], [ -75.304777, 40.152533 ], [ -75.304693, 40.152629 ], [ -75.304555, 40.152772 ], [ -75.304434, 40.152888 ], [ -75.304276, 40.153051 ], [ -75.304065, 40.153262 ], [ -75.303736, 40.153591 ], [ -75.303468, 40.153853 ], [ -75.303005, 40.154308 ], [ -75.302573, 40.154731 ], [ -75.302196, 40.1551 ], [ -75.302059, 40.155235 ], [ -75.301997, 40.155308 ], [ -75.301966, 40.155342 ], [ -75.301445, 40.155873 ], [ -75.300433, 40.156859 ], [ -75.299962, 40.157326 ], [ -75.299916, 40.15734 ], [ -75.29957, 40.157655 ], [ -75.299213, 40.158021 ], [ -75.298859, 40.158381 ], [ -75.298529, 40.158715 ], [ -75.298352, 40.15888 ], [ -75.298213, 40.159012 ], [ -75.298188, 40.159042 ], [ -75.298183, 40.159081 ], [ -75.298109, 40.159163 ], [ -75.297991, 40.159288 ], [ -75.297953, 40.159324 ], [ -75.297923, 40.159352 ], [ -75.297749, 40.159526 ], [ -75.297451, 40.159822 ], [ -75.297045, 40.160243 ], [ -75.2964, 40.160878 ], [ -75.295969, 40.161303 ], [ -75.295555, 40.161711 ], [ -75.295322, 40.161941 ], [ -75.294789, 40.162476 ], [ -75.294415, 40.162853 ], [ -75.294305, 40.162965 ], [ -75.293978, 40.163295 ], [ -75.293613, 40.163633 ], [ -75.293334, 40.163914 ], [ -75.292915, 40.164345 ], [ -75.29229, 40.164986 ], [ -75.291811, 40.165493 ], [ -75.2916, 40.165726 ], [ -75.291508, 40.165825 ], [ -75.291376, 40.165968 ], [ -75.29124, 40.166108 ], [ -75.291176, 40.166168 ], [ -75.290958, 40.166368 ], [ -75.290948, 40.166378 ], [ -75.290872, 40.16645 ], [ -75.290778, 40.16654 ], [ -75.290542, 40.166768 ], [ -75.290279, 40.167021 ], [ -75.289982, 40.167297 ], [ -75.28983, 40.167432 ], [ -75.289553, 40.16768 ], [ -75.289428, 40.167792 ], [ -75.289234, 40.167964 ], [ -75.289169, 40.168023 ], [ -75.289033, 40.16815 ], [ -75.28898, 40.168195 ], [ -75.288761, 40.168406 ], [ -75.288665, 40.168499 ], [ -75.287634, 40.169491 ], [ -75.287576, 40.169508 ], [ -75.287528, 40.169546 ], [ -75.287373, 40.169707 ], [ -75.287199, 40.169889 ], [ -75.287013, 40.170082 ], [ -75.286811, 40.17028 ], [ -75.286158, 40.170981 ], [ -75.285834, 40.171327 ], [ -75.285562, 40.171614 ], [ -75.285168, 40.172025 ], [ -75.285001, 40.172196 ], [ -75.284937, 40.172261 ], [ -75.284658, 40.17255 ], [ -75.284556, 40.172653 ], [ -75.284199, 40.173032 ], [ -75.283913, 40.173323 ], [ -75.283498, 40.173756 ], [ -75.283301, 40.173953 ], [ -75.282747, 40.174512 ], [ -75.282523, 40.174727 ], [ -75.282283, 40.174952 ], [ -75.282152, 40.175075 ], [ -75.28204, 40.175179 ], [ -75.281843, 40.175381 ], [ -75.281584, 40.17566 ], [ -75.281461, 40.175799 ], [ -75.281378, 40.175884 ], [ -75.280957, 40.176321 ], [ -75.280717, 40.176573 ], [ -75.279797, 40.177473 ], [ -75.27881, 40.178399 ], [ -75.278438, 40.178779 ], [ -75.277749, 40.179488 ], [ -75.27769, 40.179463 ], [ -75.277484, 40.179383 ], [ -75.277237, 40.179288 ], [ -75.277031, 40.179209 ], [ -75.276889, 40.179148 ], [ -75.276755, 40.179086 ], [ -75.276573, 40.179001 ], [ -75.276468, 40.178951 ], [ -75.276215, 40.178833 ], [ -75.276045, 40.178754 ], [ -75.275894, 40.17868 ], [ -75.275722, 40.178588 ], [ -75.27559, 40.178514 ], [ -75.274971, 40.178156 ], [ -75.274115, 40.177658 ], [ -75.273915, 40.177537 ], [ -75.273738, 40.177425 ], [ -75.273623, 40.177349 ], [ -75.273505, 40.177262 ], [ -75.273381, 40.177154 ], [ -75.273266, 40.177047 ], [ -75.27317, 40.176953 ], [ -75.273089, 40.176874 ], [ -75.272958, 40.176732 ], [ -75.272715, 40.176487 ], [ -75.272583, 40.176353 ], [ -75.273025, 40.176072 ], [ -75.273672, 40.176786 ], [ -75.274158, 40.177119 ], [ -75.274472, 40.17729 ], [ -75.2749, 40.177623 ], [ -75.275751, 40.178111 ], [ -75.27584, 40.178117 ], [ -75.2759, 40.178057 ], [ -75.276019, 40.177635 ], [ -75.275947, 40.177528 ], [ -75.275114, 40.177433 ], [ -75.2749, 40.177623 ], [ -75.274472, 40.17729 ], [ -75.274158, 40.177119 ], [ -75.273672, 40.176786 ], [ -75.273025, 40.176072 ], [ -75.272583, 40.176353 ], [ -75.272715, 40.176487 ], [ -75.272958, 40.176732 ], [ -75.273089, 40.176874 ], [ -75.27317, 40.176953 ], [ -75.273266, 40.177047 ], [ -75.273381, 40.177154 ], [ -75.273505, 40.177262 ], [ -75.273623, 40.177349 ], [ -75.273738, 40.177425 ], [ -75.273915, 40.177537 ], [ -75.274115, 40.177658 ], [ -75.274971, 40.178156 ], [ -75.27559, 40.178514 ], [ -75.275722, 40.178588 ], [ -75.275894, 40.17868 ], [ -75.276045, 40.178754 ], [ -75.276215, 40.178833 ], [ -75.276468, 40.178951 ], [ -75.276573, 40.179001 ], [ -75.276755, 40.179086 ], [ -75.276889, 40.179148 ], [ -75.277031, 40.179209 ], [ -75.277237, 40.179288 ], [ -75.277484, 40.179383 ], [ -75.27769, 40.179463 ], [ -75.277749, 40.179488 ], [ -75.276382, 40.180976 ], [ -75.276305, 40.181062 ], [ -75.275687, 40.181771 ], [ -75.275495, 40.181987 ], [ -75.275466, 40.18203 ], [ -75.275463, 40.182078 ], [ -75.274554, 40.183029 ], [ -75.274272, 40.183324 ], [ -75.274199, 40.183401 ], [ -75.274107, 40.183485 ], [ -75.273988, 40.183602 ], [ -75.273893, 40.183696 ], [ -75.273789, 40.183786 ], [ -75.273673, 40.183883 ], [ -75.273584, 40.183962 ], [ -75.273484, 40.184037 ], [ -75.2731, 40.184303 ], [ -75.272784, 40.184525 ], [ -75.272623, 40.184646 ], [ -75.272416, 40.184801 ], [ -75.272204, 40.184965 ], [ -75.271903, 40.185182 ], [ -75.271332, 40.185579 ], [ -75.271245, 40.185643 ], [ -75.271169, 40.185702 ], [ -75.27111, 40.185748 ], [ -75.270789, 40.185966 ], [ -75.269802, 40.186639 ], [ -75.269131, 40.187104 ], [ -75.269033, 40.187171 ], [ -75.268964, 40.187214 ], [ -75.268896, 40.187263 ], [ -75.268822, 40.187318 ], [ -75.268697, 40.187427 ], [ -75.26849, 40.187633 ], [ -75.268266, 40.187886 ], [ -75.268007, 40.188128 ], [ -75.267785, 40.188359 ], [ -75.267734, 40.188378 ], [ -75.267708, 40.188401 ], [ -75.266907, 40.189232 ], [ -75.266708, 40.18945 ], [ -75.266179, 40.189938 ], [ -75.265928, 40.190137 ], [ -75.265044, 40.190657 ], [ -75.264654, 40.190878 ], [ -75.264077, 40.191167 ], [ -75.263944, 40.191234 ], [ -75.262926, 40.191742 ], [ -75.262262, 40.192074 ], [ -75.261912, 40.192263 ], [ -75.261614, 40.192437 ], [ -75.261482, 40.192526 ], [ -75.261291, 40.19267 ], [ -75.261046, 40.19285 ], [ -75.260964, 40.19292 ], [ -75.26092, 40.192963 ], [ -75.260823, 40.193051 ], [ -75.260755, 40.193121 ], [ -75.260742, 40.193134 ], [ -75.260572, 40.193318 ], [ -75.260357, 40.193565 ], [ -75.259822, 40.194323 ], [ -75.259576, 40.194654 ], [ -75.259256, 40.195152 ], [ -75.257982, 40.196985 ], [ -75.257583, 40.197561 ], [ -75.257066, 40.198304 ], [ -75.256864, 40.198597 ], [ -75.256779, 40.198729 ], [ -75.256725, 40.1988 ], [ -75.256608, 40.198983 ], [ -75.256405, 40.199363 ], [ -75.256222, 40.199795 ], [ -75.256042, 40.200254 ], [ -75.255789, 40.200877 ], [ -75.255704, 40.201091 ], [ -75.255562, 40.201481 ], [ -75.255513, 40.201617 ], [ -75.25535, 40.202042 ], [ -75.255456, 40.202101 ], [ -75.25603, 40.202361 ], [ -75.256068, 40.202409 ], [ -75.256869, 40.202773 ], [ -75.256924, 40.20278 ], [ -75.257657, 40.203118 ], [ -75.258391, 40.203458 ], [ -75.259247, 40.203834 ], [ -75.260249, 40.204231 ], [ -75.26052, 40.204333 ], [ -75.260956, 40.2045 ], [ -75.261168, 40.204573 ], [ -75.261648, 40.204727 ], [ -75.262422, 40.204961 ], [ -75.263159, 40.205177 ], [ -75.265194, 40.205728 ], [ -75.265667, 40.205853 ], [ -75.266147, 40.205985 ], [ -75.266651, 40.206123 ], [ -75.266983, 40.206219 ], [ -75.267114, 40.206261 ], [ -75.267428, 40.206356 ], [ -75.2677, 40.206437 ], [ -75.26787, 40.206496 ], [ -75.268005, 40.206545 ], [ -75.268196, 40.206613 ], [ -75.268369, 40.206669 ], [ -75.268644, 40.20677 ], [ -75.268915, 40.206879 ], [ -75.269179, 40.206998 ], [ -75.269401, 40.20711 ], [ -75.269585, 40.207218 ], [ -75.269662, 40.207267 ], [ -75.269736, 40.207314 ], [ -75.26993, 40.207444 ], [ -75.270409, 40.207768 ], [ -75.27062, 40.207907 ], [ -75.270918, 40.2081 ], [ -75.271245, 40.208315 ], [ -75.271389, 40.208397 ], [ -75.27147, 40.208442 ], [ -75.271587, 40.208503 ], [ -75.271661, 40.208546 ], [ -75.271849, 40.208634 ], [ -75.271915, 40.208665 ], [ -75.271969, 40.20869 ], [ -75.272035, 40.208718 ], [ -75.272103, 40.208746 ], [ -75.272196, 40.208784 ], [ -75.272286, 40.208816 ], [ -75.272509, 40.208898 ], [ -75.272994, 40.209074 ], [ -75.273152, 40.209135 ], [ -75.273461, 40.209246 ], [ -75.274144, 40.209492 ], [ -75.274868, 40.209758 ], [ -75.275837, 40.2101 ], [ -75.276065, 40.210179 ], [ -75.276136, 40.210207 ], [ -75.276817, 40.210457 ], [ -75.277067, 40.210546 ], [ -75.277169, 40.21058 ], [ -75.2776, 40.210712 ], [ -75.278285, 40.210901 ], [ -75.278081, 40.211184 ], [ -75.278067, 40.211209 ], [ -75.278011, 40.211307 ], [ -75.277982, 40.211365 ], [ -75.277948, 40.211441 ], [ -75.27792, 40.2115 ], [ -75.277632, 40.212095 ], [ -75.277352, 40.212669 ], [ -75.277132, 40.213107 ], [ -75.277093, 40.213186 ], [ -75.277062, 40.213252 ], [ -75.27703, 40.213338 ], [ -75.276995, 40.213449 ], [ -75.276958, 40.213543 ], [ -75.27689, 40.213746 ], [ -75.276681, 40.214306 ], [ -75.276388, 40.215043 ], [ -75.276211, 40.215506 ], [ -75.276112, 40.215776 ], [ -75.27608, 40.21584 ], [ -75.276024, 40.215911 ], [ -75.275962, 40.215978 ], [ -75.275669, 40.216316 ], [ -75.275564, 40.21644 ], [ -75.275432, 40.216625 ], [ -75.275292, 40.216795 ], [ -75.275223, 40.216871 ], [ -75.275095, 40.217009 ], [ -75.27496, 40.217155 ], [ -75.274531, 40.217603 ], [ -75.274397, 40.217746 ], [ -75.27408, 40.218081 ], [ -75.273695, 40.218478 ], [ -75.273541, 40.218641 ], [ -75.272954, 40.219245 ], [ -75.272499, 40.219704 ], [ -75.272378, 40.219826 ], [ -75.272036, 40.220177 ], [ -75.271859, 40.220349 ], [ -75.271543, 40.220676 ], [ -75.271502, 40.220718 ], [ -75.271136, 40.221087 ], [ -75.270972, 40.221242 ], [ -75.270794, 40.221413 ], [ -75.270713, 40.221489 ], [ -75.270611, 40.221571 ], [ -75.270482, 40.221664 ], [ -75.269632, 40.222212 ], [ -75.269286, 40.222435 ], [ -75.269089, 40.222547 ], [ -75.268901, 40.222661 ], [ -75.268841, 40.222698 ], [ -75.268605, 40.222849 ], [ -75.268453, 40.222957 ], [ -75.268423, 40.222978 ], [ -75.268262, 40.223093 ], [ -75.267964, 40.223329 ], [ -75.267703, 40.223582 ], [ -75.267478, 40.223811 ], [ -75.267103, 40.224194 ], [ -75.264972, 40.226372 ], [ -75.264006, 40.227367 ], [ -75.263317, 40.22806 ], [ -75.263148, 40.228229 ], [ -75.263136, 40.228242 ], [ -75.263007, 40.228368 ], [ -75.262819, 40.228555 ], [ -75.262475, 40.228884 ], [ -75.262171, 40.229256 ], [ -75.261892, 40.229608 ], [ -75.261308, 40.230274 ], [ -75.261007, 40.230602 ], [ -75.260879, 40.230743 ], [ -75.260849, 40.230771 ], [ -75.260817, 40.2308 ], [ -75.260772, 40.230826 ], [ -75.260646, 40.230885 ], [ -75.259277, 40.231373 ], [ -75.257717, 40.231952 ], [ -75.256581, 40.232375 ], [ -75.255113, 40.233008 ], [ -75.254849, 40.233126 ], [ -75.254663, 40.233211 ], [ -75.25453, 40.233278 ], [ -75.2544, 40.233343 ], [ -75.254299, 40.233397 ], [ -75.254098, 40.233565 ], [ -75.253526, 40.234031 ], [ -75.252733, 40.234677 ], [ -75.252068, 40.23523 ], [ -75.251793, 40.235479 ], [ -75.250766, 40.23634 ], [ -75.250569, 40.236495 ], [ -75.250455, 40.236573 ], [ -75.250372, 40.236619 ], [ -75.250323, 40.236622 ], [ -75.250211, 40.236667 ], [ -75.250114, 40.236726 ], [ -75.249358, 40.237183 ], [ -75.248849, 40.236711 ], [ -75.248742, 40.2366 ], [ -75.248624, 40.236495 ], [ -75.248528, 40.236424 ], [ -75.248453, 40.236382 ], [ -75.248383, 40.236356 ], [ -75.2483, 40.236341 ], [ -75.248122, 40.236333 ], [ -75.248122, 40.236256 ], [ -75.248108, 40.23607 ], [ -75.248072, 40.235956 ], [ -75.248051, 40.23589 ], [ -75.248006, 40.235795 ], [ -75.247979, 40.235739 ], [ -75.247906, 40.235615 ], [ -75.247887, 40.235583 ], [ -75.247706, 40.235324 ], [ -75.247704, 40.235318 ], [ -75.247639, 40.235134 ], [ -75.247623, 40.235075 ], [ -75.247603, 40.235007 ], [ -75.247603, 40.234883 ], [ -75.247603, 40.23487 ], [ -75.247649, 40.234744 ], [ -75.247668, 40.23472 ], [ -75.247722, 40.234649 ], [ -75.247793, 40.234582 ], [ -75.247484, 40.234444 ], [ -75.247244, 40.234334 ], [ -75.247178, 40.234401 ], [ -75.247137, 40.23446 ], [ -75.247113, 40.234486 ], [ -75.247064, 40.234523 ], [ -75.24702, 40.234541 ], [ -75.246949, 40.234559 ], [ -75.246904, 40.234565 ], [ -75.246582, 40.234632 ], [ -75.246431, 40.234661 ], [ -75.246267, 40.234695 ], [ -75.245955, 40.234756 ], [ -75.245801, 40.234792 ], [ -75.245757, 40.234806 ], [ -75.245684, 40.234851 ], [ -75.245619, 40.234906 ], [ -75.24558, 40.234983 ], [ -75.245575, 40.234995 ], [ -75.245552, 40.235051 ], [ -75.245552, 40.235078 ], [ -75.245568, 40.235126 ], [ -75.245593, 40.235179 ], [ -75.245611, 40.235201 ], [ -75.245647, 40.235228 ], [ -75.245696, 40.235254 ], [ -75.246068, 40.235412 ], [ -75.246144, 40.235453 ], [ -75.246184, 40.235486 ], [ -75.246212, 40.235537 ], [ -75.246271, 40.235711 ], [ -75.246352, 40.235945 ], [ -75.24639, 40.236044 ], [ -75.246394, 40.236074 ], [ -75.246386, 40.236106 ], [ -75.246366, 40.236128 ], [ -75.24633, 40.236147 ], [ -75.245966, 40.236225 ], [ -75.245954, 40.23623 ], [ -75.245935, 40.236247 ], [ -75.245925, 40.236257 ], [ -75.245903, 40.236288 ], [ -75.245897, 40.236297 ], [ -75.245894, 40.236303 ], [ -75.245887, 40.236328 ], [ -75.245887, 40.236338 ], [ -75.245914, 40.236414 ], [ -75.245915, 40.236419 ], [ -75.245979, 40.236579 ], [ -75.246038, 40.23673 ], [ -75.246056, 40.23677 ], [ -75.246117, 40.236857 ], [ -75.246157, 40.236909 ], [ -75.246273, 40.23706 ], [ -75.246397, 40.237222 ], [ -75.246475, 40.237323 ], [ -75.246543, 40.237421 ], [ -75.246614, 40.237376 ], [ -75.246877, 40.237212 ], [ -75.247227, 40.236994 ], [ -75.247281, 40.236967 ], [ -75.247382, 40.236915 ], [ -75.247706, 40.236816 ], [ -75.247859, 40.236721 ], [ -75.24794, 40.236663 ], [ -75.248021, 40.236565 ], [ -75.248053, 40.236527 ], [ -75.248114, 40.236398 ], [ -75.248122, 40.236333 ], [ -75.2483, 40.236341 ], [ -75.248383, 40.236356 ], [ -75.248452, 40.236381 ], [ -75.248528, 40.236424 ], [ -75.248624, 40.236495 ], [ -75.248742, 40.2366 ], [ -75.248849, 40.236711 ], [ -75.249358, 40.237183 ], [ -75.249412, 40.237235 ], [ -75.250166, 40.236779 ], [ -75.25034, 40.236672 ], [ -75.250372, 40.236619 ], [ -75.250455, 40.236573 ], [ -75.250569, 40.236495 ], [ -75.250766, 40.23634 ], [ -75.251793, 40.235479 ], [ -75.252068, 40.23523 ], [ -75.252733, 40.234677 ], [ -75.253526, 40.234031 ], [ -75.254098, 40.233565 ], [ -75.254299, 40.233397 ], [ -75.2544, 40.233343 ], [ -75.25453, 40.233278 ], [ -75.254663, 40.233211 ], [ -75.254849, 40.233126 ], [ -75.255113, 40.233008 ], [ -75.256581, 40.232375 ], [ -75.257717, 40.231952 ], [ -75.259277, 40.231373 ], [ -75.260646, 40.230885 ], [ -75.260772, 40.230826 ], [ -75.260817, 40.2308 ], [ -75.260849, 40.230771 ], [ -75.260879, 40.230743 ], [ -75.261007, 40.230602 ], [ -75.261308, 40.230274 ], [ -75.261892, 40.229608 ], [ -75.262171, 40.229256 ], [ -75.262475, 40.228884 ], [ -75.26316, 40.229292 ], [ -75.263583, 40.229555 ], [ -75.264665, 40.230191 ], [ -75.26499, 40.230388 ], [ -75.265324, 40.230588 ], [ -75.26616, 40.231086 ], [ -75.266541, 40.231314 ], [ -75.266969, 40.231569 ], [ -75.267538, 40.231911 ], [ -75.26811, 40.232254 ], [ -75.268266, 40.232338 ], [ -75.268467, 40.232459 ], [ -75.268508, 40.232528 ], [ -75.268615, 40.232592 ], [ -75.268906, 40.232762 ], [ -75.269188, 40.232932 ], [ -75.269325, 40.233014 ], [ -75.269449, 40.233094 ], [ -75.269461, 40.233101 ], [ -75.269708, 40.233256 ], [ -75.270309, 40.233601 ], [ -75.271065, 40.23406 ], [ -75.271136, 40.234096 ], [ -75.271211, 40.234106 ], [ -75.271492, 40.234271 ], [ -75.271984, 40.234573 ], [ -75.272376, 40.234803 ], [ -75.272955, 40.235146 ], [ -75.273313, 40.235359 ], [ -75.273708, 40.235595 ], [ -75.274213, 40.235878 ], [ -75.274531, 40.23607 ], [ -75.274696, 40.236171 ], [ -75.274769, 40.236216 ], [ -75.275056, 40.236379 ], [ -75.275391, 40.236596 ], [ -75.275663, 40.236755 ], [ -75.275973, 40.236937 ], [ -75.276113, 40.237019 ], [ -75.276552, 40.23728 ], [ -75.276984, 40.237536 ], [ -75.277223, 40.237688 ], [ -75.277311, 40.237744 ], [ -75.278058, 40.238185 ], [ -75.278877, 40.238676 ], [ -75.278883, 40.23868 ], [ -75.279224, 40.238877 ], [ -75.279382, 40.238969 ], [ -75.279749, 40.239187 ], [ -75.280132, 40.239414 ], [ -75.280609, 40.239697 ], [ -75.281274, 40.240089 ], [ -75.281838, 40.240435 ], [ -75.282446, 40.24079 ], [ -75.283131, 40.24118 ], [ -75.283158, 40.241195 ], [ -75.283485, 40.241396 ], [ -75.28374, 40.241561 ], [ -75.284095, 40.241185 ], [ -75.284517, 40.240773 ], [ -75.284683, 40.240608 ], [ -75.284818, 40.240473 ], [ -75.284914, 40.240375 ], [ -75.285725, 40.240797 ], [ -75.285845, 40.240854 ], [ -75.28629, 40.241111 ], [ -75.286476, 40.241209 ], [ -75.287026, 40.241509 ], [ -75.286512, 40.242022 ], [ -75.286253, 40.242292 ], [ -75.286008, 40.242535 ], [ -75.285769, 40.242785 ], [ -75.285459, 40.242603 ], [ -75.285353, 40.24254 ], [ -75.285351, 40.242483 ], [ -75.285343, 40.24242 ], [ -75.285317, 40.242257 ], [ -75.285259, 40.24201 ], [ -75.285167, 40.24165 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307254", "route_id": "96" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.285167, 40.24165 ], [ -75.285067, 40.241393 ], [ -75.285022, 40.241283 ], [ -75.284899, 40.240822 ], [ -75.284869, 40.240685 ], [ -75.284818, 40.240473 ], [ -75.284683, 40.240608 ], [ -75.284517, 40.240773 ], [ -75.284095, 40.241185 ], [ -75.28374, 40.241561 ], [ -75.283485, 40.241396 ], [ -75.283158, 40.241195 ], [ -75.283131, 40.24118 ], [ -75.282446, 40.24079 ], [ -75.281838, 40.240435 ], [ -75.281274, 40.240089 ], [ -75.280609, 40.239697 ], [ -75.280132, 40.239414 ], [ -75.279749, 40.239187 ], [ -75.279382, 40.238969 ], [ -75.279224, 40.238877 ], [ -75.278883, 40.23868 ], [ -75.278877, 40.238676 ], [ -75.278058, 40.238185 ], [ -75.277311, 40.237744 ], [ -75.277223, 40.237688 ], [ -75.276984, 40.237536 ], [ -75.276552, 40.23728 ], [ -75.276113, 40.237019 ], [ -75.275973, 40.236937 ], [ -75.275663, 40.236755 ], [ -75.275391, 40.236596 ], [ -75.275056, 40.236379 ], [ -75.274769, 40.236216 ], [ -75.274696, 40.236171 ], [ -75.274531, 40.23607 ], [ -75.274213, 40.235878 ], [ -75.273708, 40.235595 ], [ -75.273313, 40.235359 ], [ -75.272955, 40.235146 ], [ -75.272376, 40.234803 ], [ -75.271984, 40.234573 ], [ -75.271492, 40.234271 ], [ -75.271211, 40.234106 ], [ -75.271177, 40.234045 ], [ -75.270444, 40.233601 ], [ -75.270305, 40.233518 ], [ -75.26977, 40.233194 ], [ -75.268879, 40.232645 ], [ -75.26864, 40.232516 ], [ -75.268543, 40.23247 ], [ -75.268467, 40.232459 ], [ -75.268266, 40.232338 ], [ -75.26811, 40.232254 ], [ -75.267538, 40.231911 ], [ -75.266969, 40.231569 ], [ -75.266541, 40.231314 ], [ -75.26616, 40.231086 ], [ -75.265324, 40.230588 ], [ -75.26499, 40.230388 ], [ -75.264665, 40.230191 ], [ -75.263583, 40.229555 ], [ -75.26316, 40.229292 ], [ -75.262475, 40.228884 ], [ -75.262171, 40.229256 ], [ -75.261892, 40.229608 ], [ -75.261308, 40.230274 ], [ -75.261007, 40.230602 ], [ -75.260879, 40.230743 ], [ -75.260849, 40.230771 ], [ -75.260817, 40.2308 ], [ -75.260772, 40.230826 ], [ -75.260646, 40.230885 ], [ -75.259277, 40.231373 ], [ -75.257717, 40.231952 ], [ -75.256581, 40.232375 ], [ -75.255113, 40.233008 ], [ -75.254849, 40.233126 ], [ -75.254663, 40.233211 ], [ -75.25453, 40.233278 ], [ -75.2544, 40.233343 ], [ -75.254299, 40.233397 ], [ -75.254098, 40.233565 ], [ -75.253526, 40.234031 ], [ -75.252733, 40.234677 ], [ -75.252068, 40.23523 ], [ -75.251793, 40.235479 ], [ -75.250766, 40.23634 ], [ -75.250569, 40.236495 ], [ -75.250455, 40.236573 ], [ -75.250372, 40.236619 ], [ -75.250323, 40.236622 ], [ -75.250211, 40.236667 ], [ -75.250114, 40.236726 ], [ -75.249358, 40.237183 ], [ -75.248849, 40.236711 ], [ -75.248742, 40.2366 ], [ -75.248624, 40.236495 ], [ -75.248528, 40.236424 ], [ -75.248453, 40.236382 ], [ -75.248383, 40.236356 ], [ -75.2483, 40.236341 ], [ -75.248122, 40.236333 ], [ -75.248122, 40.236256 ], [ -75.248108, 40.23607 ], [ -75.248072, 40.235956 ], [ -75.248051, 40.23589 ], [ -75.248006, 40.235795 ], [ -75.247979, 40.235739 ], [ -75.247906, 40.235615 ], [ -75.247887, 40.235583 ], [ -75.247706, 40.235324 ], [ -75.247704, 40.235318 ], [ -75.247639, 40.235134 ], [ -75.247623, 40.235075 ], [ -75.247603, 40.235007 ], [ -75.247603, 40.234883 ], [ -75.247603, 40.23487 ], [ -75.247649, 40.234744 ], [ -75.247668, 40.23472 ], [ -75.247722, 40.234649 ], [ -75.247793, 40.234582 ], [ -75.247484, 40.234444 ], [ -75.247244, 40.234334 ], [ -75.247178, 40.234401 ], [ -75.247137, 40.23446 ], [ -75.247113, 40.234486 ], [ -75.247064, 40.234523 ], [ -75.24702, 40.234541 ], [ -75.246949, 40.234559 ], [ -75.246904, 40.234565 ], [ -75.246582, 40.234632 ], [ -75.246431, 40.234661 ], [ -75.246267, 40.234695 ], [ -75.245955, 40.234756 ], [ -75.245801, 40.234792 ], [ -75.245757, 40.234806 ], [ -75.245684, 40.234851 ], [ -75.245619, 40.234906 ], [ -75.24558, 40.234983 ], [ -75.245575, 40.234995 ], [ -75.245552, 40.235051 ], [ -75.245552, 40.235078 ], [ -75.245568, 40.235126 ], [ -75.245593, 40.235179 ], [ -75.245611, 40.235201 ], [ -75.245647, 40.235228 ], [ -75.245696, 40.235254 ], [ -75.246068, 40.235412 ], [ -75.246144, 40.235453 ], [ -75.246184, 40.235486 ], [ -75.246212, 40.235537 ], [ -75.246271, 40.235711 ], [ -75.246352, 40.235945 ], [ -75.24639, 40.236044 ], [ -75.246394, 40.236074 ], [ -75.246386, 40.236106 ], [ -75.246366, 40.236128 ], [ -75.24633, 40.236147 ], [ -75.245966, 40.236225 ], [ -75.245954, 40.23623 ], [ -75.245935, 40.236247 ], [ -75.245925, 40.236257 ], [ -75.245903, 40.236288 ], [ -75.245897, 40.236297 ], [ -75.245894, 40.236303 ], [ -75.245887, 40.236328 ], [ -75.245887, 40.236338 ], [ -75.245914, 40.236414 ], [ -75.245915, 40.236419 ], [ -75.245979, 40.236579 ], [ -75.246038, 40.23673 ], [ -75.246056, 40.23677 ], [ -75.246117, 40.236857 ], [ -75.246157, 40.236909 ], [ -75.246273, 40.23706 ], [ -75.246397, 40.237222 ], [ -75.246475, 40.237323 ], [ -75.246543, 40.237421 ], [ -75.246614, 40.237376 ], [ -75.246877, 40.237212 ], [ -75.247227, 40.236994 ], [ -75.247281, 40.236967 ], [ -75.247382, 40.236915 ], [ -75.247706, 40.236816 ], [ -75.247859, 40.236721 ], [ -75.24794, 40.236663 ], [ -75.248021, 40.236565 ], [ -75.248053, 40.236527 ], [ -75.248114, 40.236398 ], [ -75.248122, 40.236333 ], [ -75.2483, 40.236341 ], [ -75.248383, 40.236356 ], [ -75.248452, 40.236381 ], [ -75.248528, 40.236424 ], [ -75.248624, 40.236495 ], [ -75.248742, 40.2366 ], [ -75.248849, 40.236711 ], [ -75.249358, 40.237183 ], [ -75.249412, 40.237235 ], [ -75.250166, 40.236779 ], [ -75.25034, 40.236672 ], [ -75.250372, 40.236619 ], [ -75.250455, 40.236573 ], [ -75.250569, 40.236495 ], [ -75.250766, 40.23634 ], [ -75.251793, 40.235479 ], [ -75.252068, 40.23523 ], [ -75.252733, 40.234677 ], [ -75.253526, 40.234031 ], [ -75.254098, 40.233565 ], [ -75.254299, 40.233397 ], [ -75.2544, 40.233343 ], [ -75.25453, 40.233278 ], [ -75.254663, 40.233211 ], [ -75.254849, 40.233126 ], [ -75.255113, 40.233008 ], [ -75.256581, 40.232375 ], [ -75.257717, 40.231952 ], [ -75.259277, 40.231373 ], [ -75.260646, 40.230885 ], [ -75.260772, 40.230826 ], [ -75.260817, 40.2308 ], [ -75.260849, 40.230771 ], [ -75.260879, 40.230743 ], [ -75.261007, 40.230602 ], [ -75.261308, 40.230274 ], [ -75.261892, 40.229608 ], [ -75.262171, 40.229256 ], [ -75.262475, 40.228884 ], [ -75.262819, 40.228555 ], [ -75.263007, 40.228368 ], [ -75.263136, 40.228242 ], [ -75.263148, 40.228229 ], [ -75.263317, 40.22806 ], [ -75.264006, 40.227367 ], [ -75.264972, 40.226372 ], [ -75.267103, 40.224194 ], [ -75.267478, 40.223811 ], [ -75.267703, 40.223582 ], [ -75.267964, 40.223329 ], [ -75.268262, 40.223093 ], [ -75.268423, 40.222978 ], [ -75.268453, 40.222957 ], [ -75.268605, 40.222849 ], [ -75.268841, 40.222698 ], [ -75.268901, 40.222661 ], [ -75.269089, 40.222547 ], [ -75.269286, 40.222435 ], [ -75.269632, 40.222212 ], [ -75.270482, 40.221664 ], [ -75.270611, 40.221571 ], [ -75.270713, 40.221489 ], [ -75.270794, 40.221413 ], [ -75.270972, 40.221242 ], [ -75.271136, 40.221087 ], [ -75.271502, 40.220718 ], [ -75.271543, 40.220676 ], [ -75.271859, 40.220349 ], [ -75.272036, 40.220177 ], [ -75.272378, 40.219826 ], [ -75.272499, 40.219704 ], [ -75.272954, 40.219245 ], [ -75.273541, 40.218641 ], [ -75.273695, 40.218478 ], [ -75.27408, 40.218081 ], [ -75.274397, 40.217746 ], [ -75.274531, 40.217603 ], [ -75.27496, 40.217155 ], [ -75.275095, 40.217009 ], [ -75.275223, 40.216871 ], [ -75.275292, 40.216795 ], [ -75.275432, 40.216625 ], [ -75.275564, 40.21644 ], [ -75.275669, 40.216316 ], [ -75.275962, 40.215978 ], [ -75.276024, 40.215911 ], [ -75.27608, 40.21584 ], [ -75.276112, 40.215776 ], [ -75.276211, 40.215506 ], [ -75.276388, 40.215043 ], [ -75.276681, 40.214306 ], [ -75.27689, 40.213746 ], [ -75.276958, 40.213543 ], [ -75.276995, 40.213449 ], [ -75.27703, 40.213338 ], [ -75.277062, 40.213252 ], [ -75.277093, 40.213186 ], [ -75.277132, 40.213107 ], [ -75.277352, 40.212669 ], [ -75.277632, 40.212095 ], [ -75.27792, 40.2115 ], [ -75.277948, 40.211441 ], [ -75.277982, 40.211365 ], [ -75.278011, 40.211307 ], [ -75.278067, 40.211209 ], [ -75.278081, 40.211184 ], [ -75.278285, 40.210901 ], [ -75.2776, 40.210712 ], [ -75.277169, 40.21058 ], [ -75.277067, 40.210546 ], [ -75.276817, 40.210457 ], [ -75.276136, 40.210207 ], [ -75.276065, 40.210179 ], [ -75.275837, 40.2101 ], [ -75.274868, 40.209758 ], [ -75.274144, 40.209492 ], [ -75.273461, 40.209246 ], [ -75.273152, 40.209135 ], [ -75.272994, 40.209074 ], [ -75.272509, 40.208898 ], [ -75.272286, 40.208816 ], [ -75.272196, 40.208784 ], [ -75.272103, 40.208746 ], [ -75.272035, 40.208718 ], [ -75.271969, 40.20869 ], [ -75.271915, 40.208665 ], [ -75.271849, 40.208634 ], [ -75.271661, 40.208546 ], [ -75.271587, 40.208503 ], [ -75.27147, 40.208442 ], [ -75.271389, 40.208397 ], [ -75.271245, 40.208315 ], [ -75.270918, 40.2081 ], [ -75.27062, 40.207907 ], [ -75.270409, 40.207768 ], [ -75.26993, 40.207444 ], [ -75.269736, 40.207314 ], [ -75.269662, 40.207267 ], [ -75.269585, 40.207218 ], [ -75.269401, 40.20711 ], [ -75.269179, 40.206998 ], [ -75.268915, 40.206879 ], [ -75.268644, 40.20677 ], [ -75.268369, 40.206669 ], [ -75.268196, 40.206613 ], [ -75.268005, 40.206545 ], [ -75.26787, 40.206496 ], [ -75.2677, 40.206437 ], [ -75.267428, 40.206356 ], [ -75.267114, 40.206261 ], [ -75.266983, 40.206219 ], [ -75.266651, 40.206123 ], [ -75.266147, 40.205985 ], [ -75.265667, 40.205853 ], [ -75.265194, 40.205728 ], [ -75.263159, 40.205177 ], [ -75.262422, 40.204961 ], [ -75.261648, 40.204727 ], [ -75.261168, 40.204573 ], [ -75.260956, 40.2045 ], [ -75.26052, 40.204333 ], [ -75.260249, 40.204231 ], [ -75.259247, 40.203834 ], [ -75.258391, 40.203458 ], [ -75.257657, 40.203118 ], [ -75.256924, 40.20278 ], [ -75.256892, 40.202738 ], [ -75.256644, 40.20261 ], [ -75.256375, 40.202486 ], [ -75.25611, 40.202367 ], [ -75.25603, 40.202361 ], [ -75.255456, 40.202101 ], [ -75.255831, 40.201114 ], [ -75.255967, 40.20077 ], [ -75.256096, 40.200415 ], [ -75.25621, 40.200133 ], [ -75.256362, 40.19972 ], [ -75.25649, 40.199417 ], [ -75.256665, 40.199078 ], [ -75.25676, 40.198921 ], [ -75.256901, 40.198713 ], [ -75.257185, 40.198308 ], [ -75.257477, 40.197894 ], [ -75.257716, 40.197531 ], [ -75.258119, 40.196946 ], [ -75.258515, 40.196359 ], [ -75.259079, 40.195572 ], [ -75.259886, 40.194415 ], [ -75.26023, 40.19392 ], [ -75.260438, 40.193622 ], [ -75.26053, 40.193515 ], [ -75.260813, 40.19319 ], [ -75.26098, 40.193027 ], [ -75.26111, 40.192915 ], [ -75.261263, 40.192797 ], [ -75.261527, 40.192595 ], [ -75.261619, 40.192532 ], [ -75.26172, 40.192468 ], [ -75.261935, 40.192341 ], [ -75.262312, 40.192146 ], [ -75.262496, 40.192054 ], [ -75.262988, 40.191818 ], [ -75.263455, 40.191575 ], [ -75.264136, 40.191241 ], [ -75.264551, 40.191029 ], [ -75.264977, 40.190815 ], [ -75.265363, 40.190605 ], [ -75.265577, 40.190477 ], [ -75.265779, 40.190343 ], [ -75.266074, 40.190132 ], [ -75.266256, 40.18999 ], [ -75.266584, 40.189699 ], [ -75.266731, 40.189555 ], [ -75.266868, 40.189406 ], [ -75.267697, 40.188497 ], [ -75.267743, 40.188448 ], [ -75.267775, 40.188411 ], [ -75.267785, 40.188359 ], [ -75.268007, 40.188128 ], [ -75.268266, 40.187886 ], [ -75.26849, 40.187633 ], [ -75.268697, 40.187427 ], [ -75.268822, 40.187318 ], [ -75.268896, 40.187263 ], [ -75.268964, 40.187214 ], [ -75.269033, 40.187171 ], [ -75.269131, 40.187104 ], [ -75.269802, 40.186639 ], [ -75.270789, 40.185966 ], [ -75.27111, 40.185748 ], [ -75.271169, 40.185702 ], [ -75.271245, 40.185643 ], [ -75.271332, 40.185579 ], [ -75.271903, 40.185182 ], [ -75.272204, 40.184965 ], [ -75.272416, 40.184801 ], [ -75.272623, 40.184646 ], [ -75.272784, 40.184525 ], [ -75.2731, 40.184303 ], [ -75.273484, 40.184037 ], [ -75.273584, 40.183962 ], [ -75.273673, 40.183883 ], [ -75.273789, 40.183786 ], [ -75.273893, 40.183696 ], [ -75.273988, 40.183602 ], [ -75.274107, 40.183485 ], [ -75.274199, 40.183401 ], [ -75.274272, 40.183324 ], [ -75.274554, 40.183029 ], [ -75.275463, 40.182078 ], [ -75.275522, 40.182052 ], [ -75.275896, 40.181647 ], [ -75.276378, 40.181132 ], [ -75.276834, 40.180659 ], [ -75.276963, 40.180524 ], [ -75.277203, 40.180274 ], [ -75.277912, 40.179548 ], [ -75.277749, 40.179488 ], [ -75.27769, 40.179463 ], [ -75.277484, 40.179383 ], [ -75.277237, 40.179288 ], [ -75.277031, 40.179209 ], [ -75.276889, 40.179148 ], [ -75.276755, 40.179086 ], [ -75.276573, 40.179001 ], [ -75.276468, 40.178951 ], [ -75.276215, 40.178833 ], [ -75.276045, 40.178754 ], [ -75.275894, 40.17868 ], [ -75.275722, 40.178588 ], [ -75.27559, 40.178514 ], [ -75.274971, 40.178156 ], [ -75.274115, 40.177658 ], [ -75.273915, 40.177537 ], [ -75.273738, 40.177425 ], [ -75.273623, 40.177349 ], [ -75.273505, 40.177262 ], [ -75.273381, 40.177154 ], [ -75.273266, 40.177047 ], [ -75.27317, 40.176953 ], [ -75.273089, 40.176874 ], [ -75.272958, 40.176732 ], [ -75.272715, 40.176487 ], [ -75.272583, 40.176353 ], [ -75.273025, 40.176072 ], [ -75.273672, 40.176786 ], [ -75.274158, 40.177119 ], [ -75.274472, 40.17729 ], [ -75.2749, 40.177623 ], [ -75.275751, 40.178111 ], [ -75.27584, 40.178117 ], [ -75.2759, 40.178057 ], [ -75.276019, 40.177635 ], [ -75.275947, 40.177528 ], [ -75.275114, 40.177433 ], [ -75.2749, 40.177623 ], [ -75.274472, 40.17729 ], [ -75.274158, 40.177119 ], [ -75.273672, 40.176786 ], [ -75.273025, 40.176072 ], [ -75.272583, 40.176353 ], [ -75.272715, 40.176487 ], [ -75.272958, 40.176732 ], [ -75.273089, 40.176874 ], [ -75.27317, 40.176953 ], [ -75.273266, 40.177047 ], [ -75.273381, 40.177154 ], [ -75.273505, 40.177262 ], [ -75.273623, 40.177349 ], [ -75.273738, 40.177425 ], [ -75.273915, 40.177537 ], [ -75.274115, 40.177658 ], [ -75.274971, 40.178156 ], [ -75.27559, 40.178514 ], [ -75.275722, 40.178588 ], [ -75.275894, 40.17868 ], [ -75.276045, 40.178754 ], [ -75.276215, 40.178833 ], [ -75.276468, 40.178951 ], [ -75.276573, 40.179001 ], [ -75.276755, 40.179086 ], [ -75.276889, 40.179148 ], [ -75.277031, 40.179209 ], [ -75.277237, 40.179288 ], [ -75.277484, 40.179383 ], [ -75.27769, 40.179463 ], [ -75.277749, 40.179488 ], [ -75.277912, 40.179548 ], [ -75.278191, 40.179254 ], [ -75.278544, 40.178883 ], [ -75.279046, 40.178379 ], [ -75.279054, 40.178371 ], [ -75.280389, 40.177054 ], [ -75.280733, 40.176736 ], [ -75.280805, 40.176666 ], [ -75.28097, 40.176503 ], [ -75.2815, 40.175965 ], [ -75.281544, 40.175919 ], [ -75.281583, 40.175877 ], [ -75.281656, 40.175795 ], [ -75.281685, 40.175762 ], [ -75.281711, 40.175734 ], [ -75.281737, 40.175703 ], [ -75.281849, 40.175571 ], [ -75.281982, 40.175422 ], [ -75.28215, 40.175236 ], [ -75.282186, 40.175194 ], [ -75.282384, 40.174997 ], [ -75.282517, 40.174858 ], [ -75.28267, 40.174695 ], [ -75.282788, 40.174564 ], [ -75.282919, 40.174431 ], [ -75.283062, 40.174276 ], [ -75.283189, 40.174144 ], [ -75.283412, 40.173916 ], [ -75.2836, 40.173725 ], [ -75.283737, 40.17358 ], [ -75.283898, 40.173418 ], [ -75.284052, 40.173269 ], [ -75.284258, 40.173062 ], [ -75.284416, 40.172896 ], [ -75.284469, 40.172843 ], [ -75.284623, 40.172689 ], [ -75.284717, 40.172588 ], [ -75.28478, 40.172523 ], [ -75.285013, 40.17227 ], [ -75.285209, 40.172062 ], [ -75.285259, 40.172014 ], [ -75.285354, 40.171909 ], [ -75.28545, 40.171805 ], [ -75.285558, 40.171695 ], [ -75.285761, 40.171493 ], [ -75.28603, 40.171213 ], [ -75.286211, 40.171031 ], [ -75.286315, 40.170922 ], [ -75.286475, 40.170753 ], [ -75.286645, 40.170575 ], [ -75.286878, 40.17032 ], [ -75.286929, 40.170262 ], [ -75.287065, 40.170119 ], [ -75.287219, 40.169959 ], [ -75.287292, 40.169883 ], [ -75.287377, 40.169793 ], [ -75.287429, 40.169745 ], [ -75.287505, 40.169672 ], [ -75.287588, 40.169594 ], [ -75.287624, 40.169543 ], [ -75.287634, 40.169491 ], [ -75.288665, 40.168499 ], [ -75.288761, 40.168406 ], [ -75.28898, 40.168195 ], [ -75.289033, 40.16815 ], [ -75.289169, 40.168023 ], [ -75.289234, 40.167964 ], [ -75.289428, 40.167792 ], [ -75.289553, 40.16768 ], [ -75.28983, 40.167432 ], [ -75.289982, 40.167297 ], [ -75.290279, 40.167021 ], [ -75.290542, 40.166768 ], [ -75.290778, 40.16654 ], [ -75.290872, 40.16645 ], [ -75.290948, 40.166378 ], [ -75.290958, 40.166368 ], [ -75.291176, 40.166168 ], [ -75.29124, 40.166108 ], [ -75.291376, 40.165968 ], [ -75.291508, 40.165825 ], [ -75.2916, 40.165726 ], [ -75.291811, 40.165493 ], [ -75.29229, 40.164986 ], [ -75.292915, 40.164345 ], [ -75.293334, 40.163914 ], [ -75.293613, 40.163633 ], [ -75.293978, 40.163295 ], [ -75.294305, 40.162965 ], [ -75.294415, 40.162853 ], [ -75.294789, 40.162476 ], [ -75.295322, 40.161941 ], [ -75.295555, 40.161711 ], [ -75.295969, 40.161303 ], [ -75.2964, 40.160878 ], [ -75.297045, 40.160243 ], [ -75.297451, 40.159822 ], [ -75.297749, 40.159526 ], [ -75.297923, 40.159352 ], [ -75.297953, 40.159324 ], [ -75.297991, 40.159288 ], [ -75.298109, 40.159163 ], [ -75.298183, 40.159081 ], [ -75.298232, 40.159064 ], [ -75.298897, 40.158432 ], [ -75.299274, 40.158055 ], [ -75.299638, 40.157694 ], [ -75.299956, 40.15736 ], [ -75.299962, 40.157326 ], [ -75.300433, 40.156859 ], [ -75.301445, 40.155873 ], [ -75.301966, 40.155342 ], [ -75.301997, 40.155308 ], [ -75.302059, 40.155235 ], [ -75.302196, 40.1551 ], [ -75.302573, 40.154731 ], [ -75.303005, 40.154308 ], [ -75.303468, 40.153853 ], [ -75.303736, 40.153591 ], [ -75.304065, 40.153262 ], [ -75.304276, 40.153051 ], [ -75.304434, 40.152888 ], [ -75.304555, 40.152772 ], [ -75.304693, 40.152629 ], [ -75.304777, 40.152533 ], [ -75.304879, 40.152414 ], [ -75.304919, 40.152366 ], [ -75.305025, 40.152243 ], [ -75.305127, 40.152111 ], [ -75.305205, 40.152013 ], [ -75.305287, 40.151905 ], [ -75.305379, 40.151785 ], [ -75.305735, 40.151286 ], [ -75.305855, 40.151117 ], [ -75.306293, 40.150504 ], [ -75.306519, 40.150181 ], [ -75.306878, 40.149679 ], [ -75.30696, 40.149563 ], [ -75.307103, 40.14936 ], [ -75.307223, 40.14919 ], [ -75.307298, 40.149083 ], [ -75.307364, 40.148989 ], [ -75.30762, 40.148641 ], [ -75.308033, 40.148077 ], [ -75.308156, 40.147901 ], [ -75.308281, 40.147718 ], [ -75.308647, 40.147186 ], [ -75.308705, 40.147158 ], [ -75.308733, 40.147125 ], [ -75.308791, 40.147033 ], [ -75.308803, 40.147017 ], [ -75.308934, 40.146826 ], [ -75.308934, 40.146786 ], [ -75.309271, 40.146314 ], [ -75.309454, 40.146052 ], [ -75.310166, 40.145061 ], [ -75.310251, 40.144936 ], [ -75.31072, 40.144262 ], [ -75.310752, 40.144214 ], [ -75.310954, 40.143918 ], [ -75.311013, 40.14389 ], [ -75.31109, 40.143802 ], [ -75.311455, 40.143327 ], [ -75.311571, 40.143175 ], [ -75.311585, 40.143156 ], [ -75.311855, 40.142824 ], [ -75.311959, 40.142672 ], [ -75.312067, 40.142523 ], [ -75.312219, 40.142314 ], [ -75.312288, 40.142219 ], [ -75.312384, 40.142089 ], [ -75.312585, 40.141833 ], [ -75.312658, 40.141745 ], [ -75.312835, 40.141562 ], [ -75.313611, 40.140778 ], [ -75.313802, 40.140583 ], [ -75.314225, 40.14015 ], [ -75.314788, 40.139556 ], [ -75.314803, 40.139461 ], [ -75.314917, 40.139344 ], [ -75.315024, 40.139232 ], [ -75.315512, 40.138731 ], [ -75.31581, 40.138427 ], [ -75.315908, 40.138324 ], [ -75.316199, 40.13802 ], [ -75.31626, 40.137958 ], [ -75.316315, 40.137902 ], [ -75.316959, 40.137249 ], [ -75.317163, 40.137032 ], [ -75.317556, 40.136627 ], [ -75.317827, 40.136348 ], [ -75.317909, 40.136264 ], [ -75.318079, 40.136088 ], [ -75.318379, 40.135787 ], [ -75.318435, 40.135729 ], [ -75.318497, 40.13567 ], [ -75.31858, 40.13558 ], [ -75.318696, 40.135462 ], [ -75.3188, 40.135354 ], [ -75.319014, 40.13513 ], [ -75.319255, 40.134881 ], [ -75.319358, 40.134774 ], [ -75.320264, 40.133831 ], [ -75.320532, 40.133561 ], [ -75.320906, 40.133174 ], [ -75.321467, 40.132602 ], [ -75.321711, 40.132352 ], [ -75.322225, 40.13185 ], [ -75.322649, 40.131439 ], [ -75.323, 40.131099 ], [ -75.323456, 40.130663 ], [ -75.323563, 40.130559 ], [ -75.32403, 40.130103 ], [ -75.324154, 40.130057 ], [ -75.324188, 40.130032 ], [ -75.32449, 40.129759 ], [ -75.324518, 40.12974 ], [ -75.324544, 40.129729 ], [ -75.324578, 40.129722 ], [ -75.324627, 40.129711 ], [ -75.324672, 40.129706 ], [ -75.324727, 40.129706 ], [ -75.324807, 40.129715 ], [ -75.324863, 40.129722 ], [ -75.324911, 40.129731 ], [ -75.324995, 40.129748 ], [ -75.32524, 40.1299 ], [ -75.325446, 40.130029 ], [ -75.32598, 40.130376 ], [ -75.326338, 40.130595 ], [ -75.32652, 40.13071 ], [ -75.32725, 40.131147 ], [ -75.327524, 40.131318 ], [ -75.327666, 40.1314 ], [ -75.327973, 40.13158 ], [ -75.32857, 40.131949 ], [ -75.329679, 40.13119 ], [ -75.330609, 40.130562 ], [ -75.33222, 40.129424 ], [ -75.333336, 40.128627 ], [ -75.333827, 40.128282 ], [ -75.334339, 40.127917 ], [ -75.335015, 40.127441 ], [ -75.335438, 40.127139 ], [ -75.335895, 40.126819 ], [ -75.336596, 40.126327 ], [ -75.337077, 40.12599 ], [ -75.337548, 40.125647 ], [ -75.338267, 40.12518 ], [ -75.338691, 40.124852 ], [ -75.339176, 40.124525 ], [ -75.339311, 40.124434 ], [ -75.340004, 40.123968 ], [ -75.340041, 40.123805 ], [ -75.340071, 40.12366 ], [ -75.340262, 40.122808 ], [ -75.340358, 40.122332 ], [ -75.340509, 40.121663 ], [ -75.340677, 40.120805 ], [ -75.341151, 40.120083 ], [ -75.341444, 40.119613 ], [ -75.341856, 40.11899 ], [ -75.342328, 40.11828 ], [ -75.342873, 40.117427 ], [ -75.343682, 40.116154 ], [ -75.344172, 40.115367 ], [ -75.34464, 40.114582 ], [ -75.344821, 40.114298 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307255", "route_id": "96" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.285167, 40.24165 ], [ -75.285067, 40.241393 ], [ -75.285022, 40.241283 ], [ -75.284899, 40.240822 ], [ -75.284869, 40.240685 ], [ -75.284818, 40.240473 ], [ -75.284683, 40.240608 ], [ -75.284517, 40.240773 ], [ -75.284095, 40.241185 ], [ -75.28374, 40.241561 ], [ -75.283485, 40.241396 ], [ -75.283158, 40.241195 ], [ -75.283131, 40.24118 ], [ -75.282446, 40.24079 ], [ -75.281838, 40.240435 ], [ -75.281274, 40.240089 ], [ -75.280609, 40.239697 ], [ -75.280132, 40.239414 ], [ -75.279749, 40.239187 ], [ -75.279382, 40.238969 ], [ -75.279224, 40.238877 ], [ -75.278883, 40.23868 ], [ -75.278877, 40.238676 ], [ -75.278058, 40.238185 ], [ -75.277311, 40.237744 ], [ -75.277223, 40.237688 ], [ -75.276984, 40.237536 ], [ -75.276552, 40.23728 ], [ -75.276113, 40.237019 ], [ -75.275973, 40.236937 ], [ -75.275663, 40.236755 ], [ -75.275391, 40.236596 ], [ -75.275056, 40.236379 ], [ -75.274769, 40.236216 ], [ -75.274696, 40.236171 ], [ -75.274531, 40.23607 ], [ -75.274213, 40.235878 ], [ -75.273708, 40.235595 ], [ -75.273313, 40.235359 ], [ -75.272955, 40.235146 ], [ -75.272376, 40.234803 ], [ -75.271984, 40.234573 ], [ -75.271492, 40.234271 ], [ -75.271211, 40.234106 ], [ -75.271177, 40.234045 ], [ -75.270444, 40.233601 ], [ -75.270305, 40.233518 ], [ -75.26977, 40.233194 ], [ -75.268879, 40.232645 ], [ -75.26864, 40.232516 ], [ -75.268543, 40.23247 ], [ -75.268467, 40.232459 ], [ -75.268266, 40.232338 ], [ -75.26811, 40.232254 ], [ -75.267538, 40.231911 ], [ -75.266969, 40.231569 ], [ -75.266541, 40.231314 ], [ -75.26616, 40.231086 ], [ -75.265324, 40.230588 ], [ -75.26499, 40.230388 ], [ -75.264665, 40.230191 ], [ -75.263583, 40.229555 ], [ -75.26316, 40.229292 ], [ -75.262475, 40.228884 ], [ -75.262171, 40.229256 ], [ -75.261892, 40.229608 ], [ -75.261308, 40.230274 ], [ -75.261007, 40.230602 ], [ -75.260879, 40.230743 ], [ -75.260849, 40.230771 ], [ -75.260817, 40.2308 ], [ -75.260772, 40.230826 ], [ -75.260646, 40.230885 ], [ -75.259277, 40.231373 ], [ -75.257717, 40.231952 ], [ -75.256581, 40.232375 ], [ -75.255113, 40.233008 ], [ -75.254849, 40.233126 ], [ -75.254663, 40.233211 ], [ -75.25453, 40.233278 ], [ -75.2544, 40.233343 ], [ -75.254299, 40.233397 ], [ -75.254098, 40.233565 ], [ -75.253526, 40.234031 ], [ -75.252733, 40.234677 ], [ -75.252068, 40.23523 ], [ -75.251793, 40.235479 ], [ -75.250766, 40.23634 ], [ -75.250569, 40.236495 ], [ -75.250455, 40.236573 ], [ -75.250372, 40.236619 ], [ -75.250323, 40.236622 ], [ -75.250211, 40.236667 ], [ -75.250114, 40.236726 ], [ -75.249358, 40.237183 ], [ -75.248849, 40.236711 ], [ -75.248742, 40.2366 ], [ -75.248624, 40.236495 ], [ -75.248528, 40.236424 ], [ -75.248453, 40.236382 ], [ -75.248383, 40.236356 ], [ -75.2483, 40.236341 ], [ -75.248122, 40.236333 ], [ -75.248122, 40.236256 ], [ -75.248108, 40.23607 ], [ -75.248072, 40.235956 ], [ -75.248051, 40.23589 ], [ -75.248006, 40.235795 ], [ -75.247979, 40.235739 ], [ -75.247906, 40.235615 ], [ -75.247887, 40.235583 ], [ -75.247706, 40.235324 ], [ -75.247704, 40.235318 ], [ -75.247639, 40.235134 ], [ -75.247623, 40.235075 ], [ -75.247603, 40.235007 ], [ -75.247603, 40.234883 ], [ -75.247603, 40.23487 ], [ -75.247649, 40.234744 ], [ -75.247668, 40.23472 ], [ -75.247722, 40.234649 ], [ -75.247793, 40.234582 ], [ -75.247484, 40.234444 ], [ -75.247244, 40.234334 ], [ -75.247178, 40.234401 ], [ -75.247137, 40.23446 ], [ -75.247113, 40.234486 ], [ -75.247064, 40.234523 ], [ -75.24702, 40.234541 ], [ -75.246949, 40.234559 ], [ -75.246904, 40.234565 ], [ -75.246582, 40.234632 ], [ -75.246431, 40.234661 ], [ -75.246267, 40.234695 ], [ -75.245955, 40.234756 ], [ -75.245801, 40.234792 ], [ -75.245757, 40.234806 ], [ -75.245684, 40.234851 ], [ -75.245619, 40.234906 ], [ -75.24558, 40.234983 ], [ -75.245575, 40.234995 ], [ -75.245552, 40.235051 ], [ -75.245552, 40.235078 ], [ -75.245568, 40.235126 ], [ -75.245593, 40.235179 ], [ -75.245611, 40.235201 ], [ -75.245647, 40.235228 ], [ -75.245696, 40.235254 ], [ -75.246068, 40.235412 ], [ -75.246144, 40.235453 ], [ -75.246184, 40.235486 ], [ -75.246212, 40.235537 ], [ -75.246271, 40.235711 ], [ -75.246352, 40.235945 ], [ -75.24639, 40.236044 ], [ -75.246394, 40.236074 ], [ -75.246386, 40.236106 ], [ -75.246366, 40.236128 ], [ -75.24633, 40.236147 ], [ -75.245966, 40.236225 ], [ -75.245954, 40.23623 ], [ -75.245935, 40.236247 ], [ -75.245925, 40.236257 ], [ -75.245903, 40.236288 ], [ -75.245897, 40.236297 ], [ -75.245894, 40.236303 ], [ -75.245887, 40.236328 ], [ -75.245887, 40.236338 ], [ -75.245914, 40.236414 ], [ -75.245915, 40.236419 ], [ -75.245979, 40.236579 ], [ -75.246038, 40.23673 ], [ -75.246056, 40.23677 ], [ -75.246117, 40.236857 ], [ -75.246157, 40.236909 ], [ -75.246273, 40.23706 ], [ -75.246397, 40.237222 ], [ -75.246475, 40.237323 ], [ -75.246543, 40.237421 ], [ -75.246614, 40.237376 ], [ -75.246877, 40.237212 ], [ -75.247227, 40.236994 ], [ -75.247281, 40.236967 ], [ -75.247382, 40.236915 ], [ -75.247706, 40.236816 ], [ -75.247859, 40.236721 ], [ -75.24794, 40.236663 ], [ -75.248021, 40.236565 ], [ -75.248053, 40.236527 ], [ -75.248114, 40.236398 ], [ -75.248122, 40.236333 ], [ -75.2483, 40.236341 ], [ -75.248383, 40.236356 ], [ -75.248452, 40.236381 ], [ -75.248528, 40.236424 ], [ -75.248624, 40.236495 ], [ -75.248742, 40.2366 ], [ -75.248849, 40.236711 ], [ -75.249358, 40.237183 ], [ -75.249412, 40.237235 ], [ -75.250166, 40.236779 ], [ -75.25034, 40.236672 ], [ -75.250372, 40.236619 ], [ -75.250455, 40.236573 ], [ -75.250569, 40.236495 ], [ -75.250766, 40.23634 ], [ -75.251793, 40.235479 ], [ -75.252068, 40.23523 ], [ -75.252733, 40.234677 ], [ -75.253526, 40.234031 ], [ -75.254098, 40.233565 ], [ -75.254299, 40.233397 ], [ -75.2544, 40.233343 ], [ -75.25453, 40.233278 ], [ -75.254663, 40.233211 ], [ -75.254849, 40.233126 ], [ -75.255113, 40.233008 ], [ -75.256581, 40.232375 ], [ -75.257717, 40.231952 ], [ -75.259277, 40.231373 ], [ -75.260646, 40.230885 ], [ -75.260772, 40.230826 ], [ -75.260817, 40.2308 ], [ -75.260849, 40.230771 ], [ -75.260879, 40.230743 ], [ -75.261007, 40.230602 ], [ -75.261308, 40.230274 ], [ -75.261892, 40.229608 ], [ -75.262171, 40.229256 ], [ -75.262475, 40.228884 ], [ -75.262819, 40.228555 ], [ -75.263007, 40.228368 ], [ -75.263136, 40.228242 ], [ -75.263148, 40.228229 ], [ -75.263317, 40.22806 ], [ -75.264006, 40.227367 ], [ -75.264972, 40.226372 ], [ -75.267103, 40.224194 ], [ -75.267478, 40.223811 ], [ -75.267703, 40.223582 ], [ -75.267964, 40.223329 ], [ -75.268262, 40.223093 ], [ -75.268423, 40.222978 ], [ -75.268453, 40.222957 ], [ -75.268605, 40.222849 ], [ -75.268841, 40.222698 ], [ -75.268901, 40.222661 ], [ -75.269089, 40.222547 ], [ -75.269286, 40.222435 ], [ -75.269632, 40.222212 ], [ -75.270482, 40.221664 ], [ -75.270611, 40.221571 ], [ -75.270713, 40.221489 ], [ -75.270794, 40.221413 ], [ -75.270972, 40.221242 ], [ -75.271136, 40.221087 ], [ -75.271502, 40.220718 ], [ -75.271543, 40.220676 ], [ -75.271859, 40.220349 ], [ -75.272036, 40.220177 ], [ -75.272378, 40.219826 ], [ -75.272499, 40.219704 ], [ -75.272954, 40.219245 ], [ -75.273541, 40.218641 ], [ -75.273695, 40.218478 ], [ -75.27408, 40.218081 ], [ -75.274397, 40.217746 ], [ -75.274531, 40.217603 ], [ -75.27496, 40.217155 ], [ -75.275095, 40.217009 ], [ -75.275223, 40.216871 ], [ -75.275292, 40.216795 ], [ -75.275432, 40.216625 ], [ -75.275564, 40.21644 ], [ -75.275669, 40.216316 ], [ -75.275962, 40.215978 ], [ -75.276024, 40.215911 ], [ -75.27608, 40.21584 ], [ -75.276112, 40.215776 ], [ -75.276211, 40.215506 ], [ -75.276388, 40.215043 ], [ -75.276681, 40.214306 ], [ -75.27689, 40.213746 ], [ -75.276958, 40.213543 ], [ -75.276995, 40.213449 ], [ -75.27703, 40.213338 ], [ -75.277062, 40.213252 ], [ -75.277093, 40.213186 ], [ -75.277132, 40.213107 ], [ -75.277352, 40.212669 ], [ -75.277632, 40.212095 ], [ -75.27792, 40.2115 ], [ -75.277948, 40.211441 ], [ -75.277982, 40.211365 ], [ -75.278011, 40.211307 ], [ -75.278067, 40.211209 ], [ -75.278081, 40.211184 ], [ -75.278285, 40.210901 ], [ -75.2776, 40.210712 ], [ -75.277169, 40.21058 ], [ -75.277067, 40.210546 ], [ -75.276817, 40.210457 ], [ -75.276136, 40.210207 ], [ -75.276065, 40.210179 ], [ -75.275837, 40.2101 ], [ -75.274868, 40.209758 ], [ -75.274144, 40.209492 ], [ -75.273461, 40.209246 ], [ -75.273152, 40.209135 ], [ -75.272994, 40.209074 ], [ -75.272509, 40.208898 ], [ -75.272286, 40.208816 ], [ -75.272196, 40.208784 ], [ -75.272103, 40.208746 ], [ -75.272035, 40.208718 ], [ -75.271969, 40.20869 ], [ -75.271915, 40.208665 ], [ -75.271849, 40.208634 ], [ -75.271661, 40.208546 ], [ -75.271587, 40.208503 ], [ -75.27147, 40.208442 ], [ -75.271389, 40.208397 ], [ -75.271245, 40.208315 ], [ -75.270918, 40.2081 ], [ -75.27062, 40.207907 ], [ -75.270409, 40.207768 ], [ -75.26993, 40.207444 ], [ -75.269736, 40.207314 ], [ -75.269662, 40.207267 ], [ -75.269585, 40.207218 ], [ -75.269401, 40.20711 ], [ -75.269179, 40.206998 ], [ -75.268915, 40.206879 ], [ -75.268644, 40.20677 ], [ -75.268369, 40.206669 ], [ -75.268196, 40.206613 ], [ -75.268005, 40.206545 ], [ -75.26787, 40.206496 ], [ -75.2677, 40.206437 ], [ -75.267428, 40.206356 ], [ -75.267114, 40.206261 ], [ -75.266983, 40.206219 ], [ -75.266651, 40.206123 ], [ -75.266147, 40.205985 ], [ -75.265667, 40.205853 ], [ -75.265194, 40.205728 ], [ -75.263159, 40.205177 ], [ -75.262422, 40.204961 ], [ -75.261648, 40.204727 ], [ -75.261168, 40.204573 ], [ -75.260956, 40.2045 ], [ -75.26052, 40.204333 ], [ -75.260249, 40.204231 ], [ -75.259247, 40.203834 ], [ -75.258391, 40.203458 ], [ -75.257657, 40.203118 ], [ -75.256924, 40.20278 ], [ -75.256892, 40.202738 ], [ -75.256644, 40.20261 ], [ -75.256375, 40.202486 ], [ -75.25611, 40.202367 ], [ -75.25603, 40.202361 ], [ -75.255456, 40.202101 ], [ -75.255831, 40.201114 ], [ -75.255967, 40.20077 ], [ -75.256096, 40.200415 ], [ -75.25621, 40.200133 ], [ -75.256362, 40.19972 ], [ -75.25649, 40.199417 ], [ -75.256665, 40.199078 ], [ -75.25676, 40.198921 ], [ -75.256901, 40.198713 ], [ -75.257185, 40.198308 ], [ -75.257477, 40.197894 ], [ -75.257716, 40.197531 ], [ -75.258119, 40.196946 ], [ -75.258515, 40.196359 ], [ -75.259079, 40.195572 ], [ -75.259886, 40.194415 ], [ -75.26023, 40.19392 ], [ -75.260438, 40.193622 ], [ -75.26053, 40.193515 ], [ -75.260813, 40.19319 ], [ -75.26098, 40.193027 ], [ -75.26111, 40.192915 ], [ -75.261263, 40.192797 ], [ -75.261527, 40.192595 ], [ -75.261619, 40.192532 ], [ -75.26172, 40.192468 ], [ -75.261935, 40.192341 ], [ -75.262312, 40.192146 ], [ -75.262496, 40.192054 ], [ -75.262988, 40.191818 ], [ -75.263455, 40.191575 ], [ -75.264136, 40.191241 ], [ -75.264551, 40.191029 ], [ -75.264977, 40.190815 ], [ -75.265363, 40.190605 ], [ -75.265577, 40.190477 ], [ -75.265779, 40.190343 ], [ -75.266074, 40.190132 ], [ -75.266256, 40.18999 ], [ -75.266584, 40.189699 ], [ -75.266731, 40.189555 ], [ -75.266868, 40.189406 ], [ -75.267697, 40.188497 ], [ -75.267743, 40.188448 ], [ -75.267775, 40.188411 ], [ -75.267785, 40.188359 ], [ -75.268007, 40.188128 ], [ -75.268266, 40.187886 ], [ -75.26849, 40.187633 ], [ -75.268697, 40.187427 ], [ -75.268822, 40.187318 ], [ -75.268896, 40.187263 ], [ -75.268964, 40.187214 ], [ -75.269033, 40.187171 ], [ -75.269131, 40.187104 ], [ -75.269802, 40.186639 ], [ -75.270789, 40.185966 ], [ -75.27111, 40.185748 ], [ -75.271169, 40.185702 ], [ -75.271245, 40.185643 ], [ -75.271332, 40.185579 ], [ -75.271903, 40.185182 ], [ -75.272204, 40.184965 ], [ -75.272416, 40.184801 ], [ -75.272623, 40.184646 ], [ -75.272784, 40.184525 ], [ -75.2731, 40.184303 ], [ -75.273484, 40.184037 ], [ -75.273584, 40.183962 ], [ -75.273673, 40.183883 ], [ -75.273789, 40.183786 ], [ -75.273893, 40.183696 ], [ -75.273988, 40.183602 ], [ -75.274107, 40.183485 ], [ -75.274199, 40.183401 ], [ -75.274272, 40.183324 ], [ -75.274554, 40.183029 ], [ -75.275463, 40.182078 ], [ -75.275522, 40.182052 ], [ -75.275896, 40.181647 ], [ -75.276378, 40.181132 ], [ -75.276834, 40.180659 ], [ -75.276963, 40.180524 ], [ -75.277203, 40.180274 ], [ -75.277912, 40.179548 ], [ -75.278191, 40.179254 ], [ -75.278544, 40.178883 ], [ -75.279046, 40.178379 ], [ -75.279054, 40.178371 ], [ -75.280389, 40.177054 ], [ -75.280733, 40.176736 ], [ -75.280805, 40.176666 ], [ -75.28097, 40.176503 ], [ -75.2815, 40.175965 ], [ -75.281544, 40.175919 ], [ -75.281583, 40.175877 ], [ -75.281656, 40.175795 ], [ -75.281685, 40.175762 ], [ -75.281711, 40.175734 ], [ -75.281737, 40.175703 ], [ -75.281849, 40.175571 ], [ -75.281982, 40.175422 ], [ -75.28215, 40.175236 ], [ -75.282186, 40.175194 ], [ -75.282384, 40.174997 ], [ -75.282517, 40.174858 ], [ -75.28267, 40.174695 ], [ -75.282788, 40.174564 ], [ -75.282919, 40.174431 ], [ -75.283062, 40.174276 ], [ -75.283189, 40.174144 ], [ -75.283412, 40.173916 ], [ -75.2836, 40.173725 ], [ -75.283737, 40.17358 ], [ -75.283898, 40.173418 ], [ -75.284052, 40.173269 ], [ -75.284258, 40.173062 ], [ -75.284416, 40.172896 ], [ -75.284469, 40.172843 ], [ -75.284623, 40.172689 ], [ -75.284717, 40.172588 ], [ -75.28478, 40.172523 ], [ -75.285013, 40.17227 ], [ -75.285209, 40.172062 ], [ -75.285259, 40.172014 ], [ -75.285354, 40.171909 ], [ -75.28545, 40.171805 ], [ -75.285558, 40.171695 ], [ -75.285761, 40.171493 ], [ -75.28603, 40.171213 ], [ -75.286211, 40.171031 ], [ -75.286315, 40.170922 ], [ -75.286475, 40.170753 ], [ -75.286645, 40.170575 ], [ -75.286878, 40.17032 ], [ -75.286929, 40.170262 ], [ -75.287065, 40.170119 ], [ -75.287219, 40.169959 ], [ -75.287292, 40.169883 ], [ -75.287377, 40.169793 ], [ -75.287429, 40.169745 ], [ -75.287505, 40.169672 ], [ -75.287588, 40.169594 ], [ -75.287624, 40.169543 ], [ -75.287634, 40.169491 ], [ -75.288665, 40.168499 ], [ -75.288761, 40.168406 ], [ -75.28898, 40.168195 ], [ -75.289033, 40.16815 ], [ -75.289169, 40.168023 ], [ -75.289234, 40.167964 ], [ -75.289428, 40.167792 ], [ -75.289553, 40.16768 ], [ -75.28983, 40.167432 ], [ -75.289982, 40.167297 ], [ -75.290279, 40.167021 ], [ -75.290542, 40.166768 ], [ -75.290778, 40.16654 ], [ -75.290872, 40.16645 ], [ -75.290948, 40.166378 ], [ -75.290958, 40.166368 ], [ -75.291176, 40.166168 ], [ -75.29124, 40.166108 ], [ -75.291376, 40.165968 ], [ -75.291508, 40.165825 ], [ -75.2916, 40.165726 ], [ -75.291811, 40.165493 ], [ -75.29229, 40.164986 ], [ -75.292915, 40.164345 ], [ -75.293334, 40.163914 ], [ -75.293613, 40.163633 ], [ -75.293978, 40.163295 ], [ -75.294305, 40.162965 ], [ -75.294415, 40.162853 ], [ -75.294789, 40.162476 ], [ -75.295322, 40.161941 ], [ -75.295555, 40.161711 ], [ -75.295969, 40.161303 ], [ -75.2964, 40.160878 ], [ -75.297045, 40.160243 ], [ -75.297451, 40.159822 ], [ -75.297749, 40.159526 ], [ -75.297923, 40.159352 ], [ -75.297953, 40.159324 ], [ -75.297991, 40.159288 ], [ -75.298109, 40.159163 ], [ -75.298183, 40.159081 ], [ -75.298232, 40.159064 ], [ -75.298897, 40.158432 ], [ -75.299274, 40.158055 ], [ -75.299638, 40.157694 ], [ -75.299956, 40.15736 ], [ -75.299962, 40.157326 ], [ -75.300433, 40.156859 ], [ -75.301445, 40.155873 ], [ -75.301966, 40.155342 ], [ -75.301997, 40.155308 ], [ -75.302059, 40.155235 ], [ -75.302196, 40.1551 ], [ -75.302573, 40.154731 ], [ -75.303005, 40.154308 ], [ -75.303468, 40.153853 ], [ -75.303736, 40.153591 ], [ -75.304065, 40.153262 ], [ -75.304276, 40.153051 ], [ -75.304434, 40.152888 ], [ -75.304555, 40.152772 ], [ -75.304693, 40.152629 ], [ -75.304777, 40.152533 ], [ -75.304879, 40.152414 ], [ -75.304919, 40.152366 ], [ -75.305025, 40.152243 ], [ -75.305127, 40.152111 ], [ -75.305205, 40.152013 ], [ -75.305287, 40.151905 ], [ -75.305379, 40.151785 ], [ -75.305735, 40.151286 ], [ -75.305855, 40.151117 ], [ -75.306293, 40.150504 ], [ -75.306519, 40.150181 ], [ -75.306878, 40.149679 ], [ -75.30696, 40.149563 ], [ -75.307103, 40.14936 ], [ -75.307223, 40.14919 ], [ -75.307298, 40.149083 ], [ -75.307364, 40.148989 ], [ -75.30762, 40.148641 ], [ -75.308033, 40.148077 ], [ -75.308156, 40.147901 ], [ -75.308281, 40.147718 ], [ -75.308647, 40.147186 ], [ -75.308705, 40.147158 ], [ -75.308733, 40.147125 ], [ -75.308791, 40.147033 ], [ -75.308803, 40.147017 ], [ -75.308934, 40.146826 ], [ -75.308934, 40.146786 ], [ -75.309271, 40.146314 ], [ -75.309454, 40.146052 ], [ -75.310166, 40.145061 ], [ -75.310251, 40.144936 ], [ -75.31072, 40.144262 ], [ -75.310752, 40.144214 ], [ -75.310954, 40.143918 ], [ -75.311013, 40.14389 ], [ -75.31109, 40.143802 ], [ -75.311455, 40.143327 ], [ -75.311571, 40.143175 ], [ -75.311585, 40.143156 ], [ -75.311855, 40.142824 ], [ -75.311959, 40.142672 ], [ -75.312067, 40.142523 ], [ -75.312219, 40.142314 ], [ -75.312288, 40.142219 ], [ -75.312384, 40.142089 ], [ -75.312585, 40.141833 ], [ -75.312658, 40.141745 ], [ -75.312835, 40.141562 ], [ -75.313611, 40.140778 ], [ -75.313802, 40.140583 ], [ -75.314225, 40.14015 ], [ -75.314788, 40.139556 ], [ -75.314803, 40.139461 ], [ -75.314917, 40.139344 ], [ -75.315024, 40.139232 ], [ -75.315512, 40.138731 ], [ -75.31581, 40.138427 ], [ -75.315908, 40.138324 ], [ -75.316199, 40.13802 ], [ -75.31626, 40.137958 ], [ -75.316315, 40.137902 ], [ -75.316959, 40.137249 ], [ -75.317163, 40.137032 ], [ -75.317556, 40.136627 ], [ -75.317827, 40.136348 ], [ -75.317909, 40.136264 ], [ -75.318079, 40.136088 ], [ -75.318379, 40.135787 ], [ -75.318435, 40.135729 ], [ -75.318497, 40.13567 ], [ -75.31858, 40.13558 ], [ -75.318696, 40.135462 ], [ -75.3188, 40.135354 ], [ -75.319014, 40.13513 ], [ -75.319255, 40.134881 ], [ -75.319358, 40.134774 ], [ -75.320264, 40.133831 ], [ -75.320532, 40.133561 ], [ -75.320906, 40.133174 ], [ -75.321467, 40.132602 ], [ -75.321711, 40.132352 ], [ -75.322225, 40.13185 ], [ -75.322649, 40.131439 ], [ -75.323, 40.131099 ], [ -75.323456, 40.130663 ], [ -75.323563, 40.130559 ], [ -75.32403, 40.130103 ], [ -75.324154, 40.130057 ], [ -75.324188, 40.130032 ], [ -75.32449, 40.129759 ], [ -75.324518, 40.12974 ], [ -75.324544, 40.129729 ], [ -75.324578, 40.129722 ], [ -75.324627, 40.129711 ], [ -75.324672, 40.129706 ], [ -75.324727, 40.129706 ], [ -75.324807, 40.129715 ], [ -75.324863, 40.129722 ], [ -75.324911, 40.129731 ], [ -75.324995, 40.129748 ], [ -75.32524, 40.1299 ], [ -75.325446, 40.130029 ], [ -75.32598, 40.130376 ], [ -75.326338, 40.130595 ], [ -75.32652, 40.13071 ], [ -75.32725, 40.131147 ], [ -75.327524, 40.131318 ], [ -75.327666, 40.1314 ], [ -75.327973, 40.13158 ], [ -75.32857, 40.131949 ], [ -75.329679, 40.13119 ], [ -75.330609, 40.130562 ], [ -75.33222, 40.129424 ], [ -75.333336, 40.128627 ], [ -75.333827, 40.128282 ], [ -75.334339, 40.127917 ], [ -75.335015, 40.127441 ], [ -75.335438, 40.127139 ], [ -75.335895, 40.126819 ], [ -75.336596, 40.126327 ], [ -75.337077, 40.12599 ], [ -75.337548, 40.125647 ], [ -75.338267, 40.12518 ], [ -75.338691, 40.124852 ], [ -75.339176, 40.124525 ], [ -75.339311, 40.124434 ], [ -75.340004, 40.123968 ], [ -75.340041, 40.123805 ], [ -75.340071, 40.12366 ], [ -75.340262, 40.122808 ], [ -75.340358, 40.122332 ], [ -75.340509, 40.121663 ], [ -75.340677, 40.120805 ], [ -75.341151, 40.120083 ], [ -75.341444, 40.119613 ], [ -75.341856, 40.11899 ], [ -75.342328, 40.11828 ], [ -75.342873, 40.117427 ], [ -75.343682, 40.116154 ], [ -75.344172, 40.115367 ], [ -75.34464, 40.114582 ], [ -75.344821, 40.114298 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307256", "route_id": "96" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.314225, 40.14015 ], [ -75.314788, 40.139556 ], [ -75.314803, 40.139461 ], [ -75.314917, 40.139344 ], [ -75.315024, 40.139232 ], [ -75.315512, 40.138731 ], [ -75.31581, 40.138427 ], [ -75.315908, 40.138324 ], [ -75.316199, 40.13802 ], [ -75.31626, 40.137958 ], [ -75.316315, 40.137902 ], [ -75.316959, 40.137249 ], [ -75.317163, 40.137032 ], [ -75.317556, 40.136627 ], [ -75.317827, 40.136348 ], [ -75.317909, 40.136264 ], [ -75.318079, 40.136088 ], [ -75.318379, 40.135787 ], [ -75.318435, 40.135729 ], [ -75.318497, 40.13567 ], [ -75.31858, 40.13558 ], [ -75.318696, 40.135462 ], [ -75.3188, 40.135354 ], [ -75.319014, 40.13513 ], [ -75.319255, 40.134881 ], [ -75.319358, 40.134774 ], [ -75.320264, 40.133831 ], [ -75.320532, 40.133561 ], [ -75.320906, 40.133174 ], [ -75.321467, 40.132602 ], [ -75.321711, 40.132352 ], [ -75.322225, 40.13185 ], [ -75.322649, 40.131439 ], [ -75.323, 40.131099 ], [ -75.323456, 40.130663 ], [ -75.323563, 40.130559 ], [ -75.32403, 40.130103 ], [ -75.324154, 40.130057 ], [ -75.324188, 40.130032 ], [ -75.32449, 40.129759 ], [ -75.324518, 40.12974 ], [ -75.324544, 40.129729 ], [ -75.324578, 40.129722 ], [ -75.324627, 40.129711 ], [ -75.324672, 40.129706 ], [ -75.324727, 40.129706 ], [ -75.324807, 40.129715 ], [ -75.324863, 40.129722 ], [ -75.324911, 40.129731 ], [ -75.324995, 40.129748 ], [ -75.32524, 40.1299 ], [ -75.325446, 40.130029 ], [ -75.32598, 40.130376 ], [ -75.326338, 40.130595 ], [ -75.32652, 40.13071 ], [ -75.32725, 40.131147 ], [ -75.327524, 40.131318 ], [ -75.327666, 40.1314 ], [ -75.327973, 40.13158 ], [ -75.32857, 40.131949 ], [ -75.329679, 40.13119 ], [ -75.330609, 40.130562 ], [ -75.33222, 40.129424 ], [ -75.333336, 40.128627 ], [ -75.333827, 40.128282 ], [ -75.334339, 40.127917 ], [ -75.335015, 40.127441 ], [ -75.335438, 40.127139 ], [ -75.335895, 40.126819 ], [ -75.336596, 40.126327 ], [ -75.337077, 40.12599 ], [ -75.337548, 40.125647 ], [ -75.338267, 40.12518 ], [ -75.338691, 40.124852 ], [ -75.339176, 40.124525 ], [ -75.339311, 40.124434 ], [ -75.340004, 40.123968 ], [ -75.340041, 40.123805 ], [ -75.340071, 40.12366 ], [ -75.340262, 40.122808 ], [ -75.340358, 40.122332 ], [ -75.340509, 40.121663 ], [ -75.340677, 40.120805 ], [ -75.341151, 40.120083 ], [ -75.341444, 40.119613 ], [ -75.341856, 40.11899 ], [ -75.342328, 40.11828 ], [ -75.342873, 40.117427 ], [ -75.343682, 40.116154 ], [ -75.344172, 40.115367 ], [ -75.34464, 40.114582 ], [ -75.344821, 40.114298 ], [ -75.345124, 40.113859 ], [ -75.344431, 40.113593 ], [ -75.344272, 40.113533 ], [ -75.344388, 40.113333 ], [ -75.344487, 40.113161 ], [ -75.344577, 40.113108 ], [ -75.344702, 40.113085 ], [ -75.344958, 40.113181 ], [ -75.345229, 40.113283 ], [ -75.345318, 40.113316 ], [ -75.345351, 40.113422 ], [ -75.345292, 40.113521 ], [ -75.345215, 40.11365 ], [ -75.344991, 40.113564 ], [ -75.344785, 40.113485 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307377", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.174064, 40.078933 ], [ -75.1726, 40.078087 ], [ -75.170991, 40.077141 ], [ -75.170288, 40.076741 ], [ -75.170812, 40.076204 ], [ -75.171317, 40.075686 ], [ -75.171815, 40.07517 ], [ -75.172504, 40.07449 ], [ -75.173149, 40.073842 ], [ -75.171758, 40.073063 ], [ -75.170228, 40.072182 ], [ -75.169387, 40.071695 ], [ -75.169018, 40.071476 ], [ -75.166729, 40.07018 ], [ -75.165352, 40.069385 ], [ -75.165067, 40.06922 ], [ -75.164763, 40.069043 ], [ -75.164456, 40.068864 ], [ -75.164116, 40.068667 ], [ -75.164299, 40.06849 ], [ -75.164553, 40.068269 ], [ -75.164639, 40.068205 ], [ -75.164937, 40.067945 ], [ -75.165155, 40.067792 ], [ -75.165305, 40.067692 ], [ -75.165726, 40.067428 ], [ -75.165972, 40.067251 ], [ -75.166078, 40.06716 ], [ -75.16619, 40.067063 ], [ -75.166626, 40.066623 ], [ -75.167593, 40.065683 ], [ -75.168105, 40.065199 ], [ -75.168596, 40.064735 ], [ -75.169035, 40.064301 ], [ -75.169846, 40.063531 ], [ -75.170519, 40.062884 ], [ -75.17081, 40.062598 ], [ -75.171146, 40.0628 ], [ -75.171461, 40.062985 ], [ -75.171813, 40.063188 ], [ -75.172088, 40.063341 ], [ -75.172172, 40.063393 ], [ -75.172412, 40.063533 ], [ -75.172488, 40.063576 ], [ -75.172923, 40.063823 ], [ -75.173746, 40.064299 ], [ -75.174039, 40.064464 ], [ -75.174121, 40.06451 ], [ -75.174467, 40.064712 ], [ -75.1749, 40.06496 ], [ -75.175332, 40.065204 ], [ -75.175354, 40.065217 ], [ -75.175412, 40.065135 ], [ -75.175911, 40.064344 ], [ -75.176243, 40.063839 ], [ -75.176782, 40.06302 ], [ -75.17699, 40.062714 ], [ -75.177118, 40.062504 ], [ -75.177313, 40.06221 ], [ -75.177374, 40.062087 ], [ -75.177422, 40.06198 ], [ -75.177461, 40.061862 ], [ -75.177488, 40.06174 ], [ -75.177521, 40.061478 ], [ -75.177562, 40.060736 ], [ -75.177571, 40.060658 ], [ -75.177578, 40.060587 ], [ -75.17759, 40.06052 ], [ -75.177621, 40.060417 ], [ -75.177666, 40.060314 ], [ -75.177703, 40.06025 ], [ -75.177731, 40.060207 ], [ -75.177768, 40.060164 ], [ -75.177865, 40.060061 ], [ -75.178204, 40.059737 ], [ -75.178269, 40.059672 ], [ -75.178505, 40.059453 ], [ -75.178933, 40.059058 ], [ -75.178468, 40.058743 ], [ -75.178243, 40.058616 ], [ -75.178434, 40.058431 ], [ -75.179043, 40.057837 ], [ -75.179831, 40.057069 ], [ -75.180551, 40.056352 ], [ -75.181294, 40.055608 ], [ -75.181161, 40.055524 ], [ -75.180504, 40.055113 ], [ -75.180391, 40.055043 ], [ -75.180252, 40.054955 ], [ -75.179707, 40.054621 ], [ -75.179602, 40.054556 ], [ -75.179546, 40.054522 ], [ -75.178991, 40.054184 ], [ -75.178905, 40.054141 ], [ -75.178803, 40.054078 ], [ -75.177949, 40.053554 ], [ -75.177638, 40.05336 ], [ -75.177192, 40.053085 ], [ -75.177185, 40.053081 ], [ -75.17716, 40.053066 ], [ -75.1769, 40.052899 ], [ -75.175789, 40.052226 ], [ -75.175231, 40.051879 ], [ -75.17511, 40.051803 ], [ -75.174673, 40.051542 ], [ -75.174061, 40.051138 ], [ -75.173282, 40.050658 ], [ -75.172828, 40.050382 ], [ -75.172525, 40.050196 ], [ -75.17172, 40.049713 ], [ -75.170902, 40.049231 ], [ -75.170779, 40.04916 ], [ -75.170615, 40.049071 ], [ -75.169741, 40.048522 ], [ -75.169282, 40.048218 ], [ -75.16887, 40.047968 ], [ -75.168593, 40.047802 ], [ -75.16769, 40.047247 ], [ -75.166866, 40.046732 ], [ -75.16605, 40.046222 ], [ -75.165583, 40.04594 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150016, 40.038982 ], [ -75.149419, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.144277, 40.038966 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115462, 40.034528 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114026, 40.035484 ], [ -75.113785, 40.035782 ], [ -75.113458, 40.036193 ], [ -75.113153, 40.036558 ], [ -75.112742, 40.037025 ], [ -75.112184, 40.037659 ], [ -75.112088, 40.037769 ], [ -75.112009, 40.037844 ], [ -75.11189, 40.037935 ], [ -75.111718, 40.038046 ], [ -75.111047, 40.038486 ], [ -75.110867, 40.038603 ], [ -75.110715, 40.038702 ], [ -75.110633, 40.038751 ], [ -75.110591, 40.038779 ], [ -75.11001, 40.039166 ], [ -75.109556, 40.03946 ], [ -75.109465, 40.03952 ], [ -75.109087, 40.039765 ], [ -75.108922, 40.039873 ], [ -75.108731, 40.04 ], [ -75.107282, 40.040965 ], [ -75.106732, 40.041328 ], [ -75.105847, 40.041902 ], [ -75.105079, 40.042414 ], [ -75.104333, 40.042907 ], [ -75.103725, 40.04331 ], [ -75.103507, 40.043451 ], [ -75.103214, 40.043641 ], [ -75.102677, 40.043994 ], [ -75.101869, 40.044528 ], [ -75.101095, 40.045033 ], [ -75.099528, 40.046067 ], [ -75.098899, 40.046487 ], [ -75.098529, 40.046735 ], [ -75.098197, 40.046955 ], [ -75.098094, 40.047032 ], [ -75.09801, 40.047104 ], [ -75.097438, 40.047685 ], [ -75.096814, 40.048345 ], [ -75.095621, 40.049575 ], [ -75.094571, 40.050653 ], [ -75.094163, 40.051077 ], [ -75.093631, 40.051612 ], [ -75.093086, 40.052169 ], [ -75.092546, 40.052721 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.091344, 40.053946 ], [ -75.090845, 40.054444 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.083674, 40.061633 ], [ -75.083608, 40.061723 ], [ -75.083554, 40.061817 ], [ -75.083542, 40.061847 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083758, 40.066077 ], [ -75.083901, 40.066514 ], [ -75.083969, 40.066708 ], [ -75.084009, 40.066839 ], [ -75.08428, 40.067594 ], [ -75.084305, 40.067685 ], [ -75.084319, 40.06778 ], [ -75.08433, 40.067855 ], [ -75.084328, 40.068174 ], [ -75.084307, 40.06881 ], [ -75.084265, 40.069789 ], [ -75.084245, 40.070186 ], [ -75.084234, 40.070558 ], [ -75.084234, 40.070743 ], [ -75.084244, 40.07084 ], [ -75.084274, 40.071037 ], [ -75.084449, 40.072005 ], [ -75.084571, 40.072799 ], [ -75.084655, 40.073394 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085156, 40.07668 ], [ -75.085405, 40.076671 ], [ -75.085511, 40.076645 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307379", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.172745, 40.082527 ], [ -75.172858, 40.082543 ], [ -75.172939, 40.082594 ], [ -75.173581, 40.082969 ], [ -75.17415, 40.083306 ], [ -75.174774, 40.083669 ], [ -75.174841, 40.083604 ], [ -75.174961, 40.083487 ], [ -75.176007, 40.082398 ], [ -75.176516, 40.081877 ], [ -75.177, 40.081392 ], [ -75.177515, 40.08087 ], [ -75.176535, 40.080316 ], [ -75.175626, 40.079825 ], [ -75.174064, 40.078933 ], [ -75.1726, 40.078087 ], [ -75.170991, 40.077141 ], [ -75.170288, 40.076741 ], [ -75.170812, 40.076204 ], [ -75.171317, 40.075686 ], [ -75.171815, 40.07517 ], [ -75.172504, 40.07449 ], [ -75.173149, 40.073842 ], [ -75.171758, 40.073063 ], [ -75.170228, 40.072182 ], [ -75.169387, 40.071695 ], [ -75.169018, 40.071476 ], [ -75.166729, 40.07018 ], [ -75.165352, 40.069385 ], [ -75.165067, 40.06922 ], [ -75.164763, 40.069043 ], [ -75.164456, 40.068864 ], [ -75.164116, 40.068667 ], [ -75.164299, 40.06849 ], [ -75.164553, 40.068269 ], [ -75.164639, 40.068205 ], [ -75.164937, 40.067945 ], [ -75.165155, 40.067792 ], [ -75.165305, 40.067692 ], [ -75.165726, 40.067428 ], [ -75.165972, 40.067251 ], [ -75.166078, 40.06716 ], [ -75.16619, 40.067063 ], [ -75.166626, 40.066623 ], [ -75.167593, 40.065683 ], [ -75.168105, 40.065199 ], [ -75.168596, 40.064735 ], [ -75.169035, 40.064301 ], [ -75.169846, 40.063531 ], [ -75.170519, 40.062884 ], [ -75.17081, 40.062598 ], [ -75.17042, 40.062386 ], [ -75.170077, 40.062196 ], [ -75.169735, 40.061991 ], [ -75.169393, 40.061794 ], [ -75.169046, 40.061594 ], [ -75.168812, 40.061465 ], [ -75.168667, 40.061386 ], [ -75.168657, 40.06138 ], [ -75.168488, 40.06128 ], [ -75.168249, 40.061138 ], [ -75.167864, 40.060921 ], [ -75.167572, 40.060759 ], [ -75.167493, 40.060716 ], [ -75.167436, 40.060682 ], [ -75.16702, 40.060435 ], [ -75.166227, 40.059977 ], [ -75.165956, 40.059821 ], [ -75.165469, 40.059543 ], [ -75.165066, 40.059316 ], [ -75.164896, 40.05922 ], [ -75.164605, 40.059064 ], [ -75.164452, 40.058976 ], [ -75.164249, 40.058859 ], [ -75.164071, 40.058758 ], [ -75.163164, 40.058239 ], [ -75.162809, 40.058035 ], [ -75.162655, 40.057947 ], [ -75.162345, 40.05777 ], [ -75.162143, 40.057654 ], [ -75.161869, 40.057497 ], [ -75.161273, 40.057155 ], [ -75.161102, 40.057057 ], [ -75.160697, 40.056825 ], [ -75.16053, 40.056729 ], [ -75.160183, 40.056529 ], [ -75.159446, 40.056101 ], [ -75.159268, 40.055997 ], [ -75.158876, 40.055777 ], [ -75.158491, 40.055562 ], [ -75.158328, 40.055471 ], [ -75.158164, 40.055376 ], [ -75.157733, 40.055127 ], [ -75.157612, 40.055062 ], [ -75.157582, 40.055046 ], [ -75.15757, 40.05504 ], [ -75.15648, 40.054518 ], [ -75.155546, 40.054078 ], [ -75.155221, 40.053927 ], [ -75.154384, 40.053543 ], [ -75.153669, 40.053211 ], [ -75.153312, 40.05305 ], [ -75.152887, 40.052854 ], [ -75.151647, 40.05227 ], [ -75.150656, 40.051814 ], [ -75.150402, 40.051697 ], [ -75.150154, 40.05158 ], [ -75.15026, 40.051084 ], [ -75.150284, 40.050975 ], [ -75.150309, 40.050855 ], [ -75.150366, 40.050592 ], [ -75.150403, 40.050419 ], [ -75.15048, 40.050065 ], [ -75.150623, 40.04942 ], [ -75.150825, 40.048511 ], [ -75.150917, 40.048103 ], [ -75.150984, 40.047808 ], [ -75.15102, 40.047667 ], [ -75.151052, 40.047498 ], [ -75.151071, 40.04736 ], [ -75.151078, 40.047228 ], [ -75.151076, 40.047131 ], [ -75.151061, 40.047041 ], [ -75.15104, 40.046952 ], [ -75.151001, 40.046851 ], [ -75.150943, 40.046729 ], [ -75.150854, 40.046589 ], [ -75.15069, 40.046355 ], [ -75.150533, 40.046155 ], [ -75.150416, 40.046006 ], [ -75.150145, 40.045669 ], [ -75.149887, 40.045325 ], [ -75.149805, 40.045212 ], [ -75.149722, 40.04508 ], [ -75.149672, 40.044981 ], [ -75.149637, 40.044844 ], [ -75.149621, 40.044713 ], [ -75.149617, 40.04457 ], [ -75.149631, 40.044413 ], [ -75.149656, 40.04429 ], [ -75.149709, 40.044044 ], [ -75.149791, 40.043679 ], [ -75.149878, 40.043284 ], [ -75.149956, 40.042933 ], [ -75.149991, 40.042763 ], [ -75.150027, 40.042618 ], [ -75.150046, 40.042549 ], [ -75.150078, 40.042446 ], [ -75.150116, 40.042351 ], [ -75.150172, 40.042254 ], [ -75.150222, 40.042179 ], [ -75.150285, 40.042099 ], [ -75.150351, 40.042024 ], [ -75.150455, 40.041926 ], [ -75.150615, 40.041803 ], [ -75.150853, 40.041633 ], [ -75.150984, 40.041528 ], [ -75.151078, 40.041433 ], [ -75.15113, 40.041368 ], [ -75.151172, 40.041309 ], [ -75.15122, 40.04123 ], [ -75.151247, 40.041174 ], [ -75.151316, 40.041035 ], [ -75.151414, 40.040808 ], [ -75.151494, 40.040634 ], [ -75.1504, 40.039401 ], [ -75.150016, 40.038982 ], [ -75.149419, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.144277, 40.038966 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115462, 40.034528 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114026, 40.035484 ], [ -75.113785, 40.035782 ], [ -75.113458, 40.036193 ], [ -75.113153, 40.036558 ], [ -75.112742, 40.037025 ], [ -75.112184, 40.037659 ], [ -75.112088, 40.037769 ], [ -75.112009, 40.037844 ], [ -75.11189, 40.037935 ], [ -75.111718, 40.038046 ], [ -75.111047, 40.038486 ], [ -75.110867, 40.038603 ], [ -75.110715, 40.038702 ], [ -75.110633, 40.038751 ], [ -75.110591, 40.038779 ], [ -75.11001, 40.039166 ], [ -75.109556, 40.03946 ], [ -75.109465, 40.03952 ], [ -75.109087, 40.039765 ], [ -75.108922, 40.039873 ], [ -75.108731, 40.04 ], [ -75.107282, 40.040965 ], [ -75.106732, 40.041328 ], [ -75.105847, 40.041902 ], [ -75.105079, 40.042414 ], [ -75.104333, 40.042907 ], [ -75.103725, 40.04331 ], [ -75.103507, 40.043451 ], [ -75.103214, 40.043641 ], [ -75.102677, 40.043994 ], [ -75.101869, 40.044528 ], [ -75.101095, 40.045033 ], [ -75.099528, 40.046067 ], [ -75.098899, 40.046487 ], [ -75.098529, 40.046735 ], [ -75.098197, 40.046955 ], [ -75.098094, 40.047032 ], [ -75.09801, 40.047104 ], [ -75.097438, 40.047685 ], [ -75.096814, 40.048345 ], [ -75.095621, 40.049575 ], [ -75.094571, 40.050653 ], [ -75.094163, 40.051077 ], [ -75.093631, 40.051612 ], [ -75.093086, 40.052169 ], [ -75.092546, 40.052721 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.091344, 40.053946 ], [ -75.090845, 40.054444 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.083674, 40.061633 ], [ -75.083608, 40.061723 ], [ -75.083554, 40.061817 ], [ -75.083542, 40.061847 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083758, 40.066077 ], [ -75.083901, 40.066514 ], [ -75.083969, 40.066708 ], [ -75.084009, 40.066839 ], [ -75.08428, 40.067594 ], [ -75.084305, 40.067685 ], [ -75.084319, 40.06778 ], [ -75.08433, 40.067855 ], [ -75.084328, 40.068174 ], [ -75.084307, 40.06881 ], [ -75.084265, 40.069789 ], [ -75.084245, 40.070186 ], [ -75.084234, 40.070558 ], [ -75.084234, 40.070743 ], [ -75.084244, 40.07084 ], [ -75.084274, 40.071037 ], [ -75.084449, 40.072005 ], [ -75.084571, 40.072799 ], [ -75.084655, 40.073394 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085156, 40.07668 ], [ -75.085405, 40.076671 ], [ -75.085511, 40.076645 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307382", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.172745, 40.082527 ], [ -75.172858, 40.082543 ], [ -75.172939, 40.082594 ], [ -75.173581, 40.082969 ], [ -75.17415, 40.083306 ], [ -75.174774, 40.083669 ], [ -75.174841, 40.083604 ], [ -75.174961, 40.083487 ], [ -75.176007, 40.082398 ], [ -75.176516, 40.081877 ], [ -75.177, 40.081392 ], [ -75.177515, 40.08087 ], [ -75.176535, 40.080316 ], [ -75.175626, 40.079825 ], [ -75.174064, 40.078933 ], [ -75.1726, 40.078087 ], [ -75.170991, 40.077141 ], [ -75.170288, 40.076741 ], [ -75.170812, 40.076204 ], [ -75.171317, 40.075686 ], [ -75.171815, 40.07517 ], [ -75.172504, 40.07449 ], [ -75.173149, 40.073842 ], [ -75.171758, 40.073063 ], [ -75.170228, 40.072182 ], [ -75.169387, 40.071695 ], [ -75.169018, 40.071476 ], [ -75.166729, 40.07018 ], [ -75.165352, 40.069385 ], [ -75.165067, 40.06922 ], [ -75.164763, 40.069043 ], [ -75.164456, 40.068864 ], [ -75.164116, 40.068667 ], [ -75.164299, 40.06849 ], [ -75.164553, 40.068269 ], [ -75.164639, 40.068205 ], [ -75.164937, 40.067945 ], [ -75.165155, 40.067792 ], [ -75.165305, 40.067692 ], [ -75.165726, 40.067428 ], [ -75.165972, 40.067251 ], [ -75.166078, 40.06716 ], [ -75.16619, 40.067063 ], [ -75.166626, 40.066623 ], [ -75.167593, 40.065683 ], [ -75.168105, 40.065199 ], [ -75.168596, 40.064735 ], [ -75.169035, 40.064301 ], [ -75.169846, 40.063531 ], [ -75.170519, 40.062884 ], [ -75.17081, 40.062598 ], [ -75.171146, 40.0628 ], [ -75.171461, 40.062985 ], [ -75.171813, 40.063188 ], [ -75.172088, 40.063341 ], [ -75.172172, 40.063393 ], [ -75.172412, 40.063533 ], [ -75.172488, 40.063576 ], [ -75.172923, 40.063823 ], [ -75.173746, 40.064299 ], [ -75.174039, 40.064464 ], [ -75.174121, 40.06451 ], [ -75.174467, 40.064712 ], [ -75.1749, 40.06496 ], [ -75.175332, 40.065204 ], [ -75.175354, 40.065217 ], [ -75.175412, 40.065135 ], [ -75.175911, 40.064344 ], [ -75.176243, 40.063839 ], [ -75.176782, 40.06302 ], [ -75.17699, 40.062714 ], [ -75.177118, 40.062504 ], [ -75.177313, 40.06221 ], [ -75.177374, 40.062087 ], [ -75.177422, 40.06198 ], [ -75.177461, 40.061862 ], [ -75.177488, 40.06174 ], [ -75.177521, 40.061478 ], [ -75.177562, 40.060736 ], [ -75.177571, 40.060658 ], [ -75.177578, 40.060587 ], [ -75.17759, 40.06052 ], [ -75.177621, 40.060417 ], [ -75.177666, 40.060314 ], [ -75.177703, 40.06025 ], [ -75.177731, 40.060207 ], [ -75.177768, 40.060164 ], [ -75.177865, 40.060061 ], [ -75.178204, 40.059737 ], [ -75.178269, 40.059672 ], [ -75.178505, 40.059453 ], [ -75.178933, 40.059058 ], [ -75.178468, 40.058743 ], [ -75.178243, 40.058616 ], [ -75.178434, 40.058431 ], [ -75.179043, 40.057837 ], [ -75.179831, 40.057069 ], [ -75.180551, 40.056352 ], [ -75.181294, 40.055608 ], [ -75.181161, 40.055524 ], [ -75.180504, 40.055113 ], [ -75.180391, 40.055043 ], [ -75.180252, 40.054955 ], [ -75.179707, 40.054621 ], [ -75.179602, 40.054556 ], [ -75.179546, 40.054522 ], [ -75.178991, 40.054184 ], [ -75.178905, 40.054141 ], [ -75.178803, 40.054078 ], [ -75.177949, 40.053554 ], [ -75.177638, 40.05336 ], [ -75.177192, 40.053085 ], [ -75.177185, 40.053081 ], [ -75.17716, 40.053066 ], [ -75.1769, 40.052899 ], [ -75.175789, 40.052226 ], [ -75.175231, 40.051879 ], [ -75.17511, 40.051803 ], [ -75.174673, 40.051542 ], [ -75.174061, 40.051138 ], [ -75.173282, 40.050658 ], [ -75.172828, 40.050382 ], [ -75.172525, 40.050196 ], [ -75.17172, 40.049713 ], [ -75.170902, 40.049231 ], [ -75.170779, 40.04916 ], [ -75.170615, 40.049071 ], [ -75.169741, 40.048522 ], [ -75.169282, 40.048218 ], [ -75.16887, 40.047968 ], [ -75.168593, 40.047802 ], [ -75.16769, 40.047247 ], [ -75.166866, 40.046732 ], [ -75.16605, 40.046222 ], [ -75.165583, 40.04594 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150016, 40.038982 ], [ -75.149419, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.144277, 40.038966 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115462, 40.034528 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114026, 40.035484 ], [ -75.113785, 40.035782 ], [ -75.113458, 40.036193 ], [ -75.113153, 40.036558 ], [ -75.112742, 40.037025 ], [ -75.112184, 40.037659 ], [ -75.112088, 40.037769 ], [ -75.112009, 40.037844 ], [ -75.11189, 40.037935 ], [ -75.111718, 40.038046 ], [ -75.111047, 40.038486 ], [ -75.110867, 40.038603 ], [ -75.110715, 40.038702 ], [ -75.110633, 40.038751 ], [ -75.110591, 40.038779 ], [ -75.11001, 40.039166 ], [ -75.109556, 40.03946 ], [ -75.109465, 40.03952 ], [ -75.109087, 40.039765 ], [ -75.108922, 40.039873 ], [ -75.108731, 40.04 ], [ -75.107282, 40.040965 ], [ -75.106732, 40.041328 ], [ -75.105847, 40.041902 ], [ -75.105079, 40.042414 ], [ -75.104333, 40.042907 ], [ -75.103725, 40.04331 ], [ -75.103507, 40.043451 ], [ -75.103214, 40.043641 ], [ -75.102677, 40.043994 ], [ -75.101869, 40.044528 ], [ -75.101095, 40.045033 ], [ -75.099528, 40.046067 ], [ -75.098899, 40.046487 ], [ -75.098529, 40.046735 ], [ -75.098197, 40.046955 ], [ -75.098094, 40.047032 ], [ -75.09801, 40.047104 ], [ -75.097438, 40.047685 ], [ -75.096814, 40.048345 ], [ -75.095621, 40.049575 ], [ -75.094571, 40.050653 ], [ -75.094163, 40.051077 ], [ -75.093631, 40.051612 ], [ -75.093086, 40.052169 ], [ -75.092546, 40.052721 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.091344, 40.053946 ], [ -75.090845, 40.054444 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.083674, 40.061633 ], [ -75.083608, 40.061723 ], [ -75.083554, 40.061817 ], [ -75.083542, 40.061847 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083758, 40.066077 ], [ -75.083901, 40.066514 ], [ -75.083969, 40.066708 ], [ -75.084009, 40.066839 ], [ -75.08428, 40.067594 ], [ -75.084305, 40.067685 ], [ -75.084319, 40.06778 ], [ -75.08433, 40.067855 ], [ -75.084328, 40.068174 ], [ -75.084307, 40.06881 ], [ -75.084265, 40.069789 ], [ -75.084245, 40.070186 ], [ -75.084234, 40.070558 ], [ -75.084234, 40.070743 ], [ -75.084244, 40.07084 ], [ -75.084274, 40.071037 ], [ -75.084449, 40.072005 ], [ -75.084571, 40.072799 ], [ -75.084655, 40.073394 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085156, 40.07668 ], [ -75.085405, 40.076671 ], [ -75.085511, 40.076645 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307385", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.166024, 40.082881 ], [ -75.166166, 40.082961 ], [ -75.166302, 40.083038 ], [ -75.16658, 40.083202 ], [ -75.167844, 40.083951 ], [ -75.168144, 40.083901 ], [ -75.168722, 40.083387 ], [ -75.169404, 40.083755 ], [ -75.17052, 40.082677 ], [ -75.17076, 40.082818 ], [ -75.170811, 40.082841 ], [ -75.170867, 40.082872 ], [ -75.171149, 40.082582 ], [ -75.171235, 40.082488 ], [ -75.17134, 40.082375 ], [ -75.17155, 40.082169 ], [ -75.171579, 40.082131 ], [ -75.17162, 40.082112 ], [ -75.171656, 40.0821 ], [ -75.171702, 40.082088 ], [ -75.171744, 40.082078 ], [ -75.171781, 40.082072 ], [ -75.171818, 40.082067 ], [ -75.171854, 40.082066 ], [ -75.171885, 40.082066 ], [ -75.171933, 40.08207 ], [ -75.172745, 40.082527 ], [ -75.172858, 40.082543 ], [ -75.172939, 40.082594 ], [ -75.173581, 40.082969 ], [ -75.17415, 40.083306 ], [ -75.174774, 40.083669 ], [ -75.174841, 40.083604 ], [ -75.174961, 40.083487 ], [ -75.176007, 40.082398 ], [ -75.176516, 40.081877 ], [ -75.177, 40.081392 ], [ -75.177515, 40.08087 ], [ -75.176535, 40.080316 ], [ -75.175626, 40.079825 ], [ -75.174064, 40.078933 ], [ -75.1726, 40.078087 ], [ -75.170991, 40.077141 ], [ -75.170288, 40.076741 ], [ -75.170812, 40.076204 ], [ -75.171317, 40.075686 ], [ -75.171815, 40.07517 ], [ -75.172504, 40.07449 ], [ -75.173149, 40.073842 ], [ -75.171758, 40.073063 ], [ -75.170228, 40.072182 ], [ -75.169387, 40.071695 ], [ -75.169018, 40.071476 ], [ -75.166729, 40.07018 ], [ -75.165352, 40.069385 ], [ -75.165067, 40.06922 ], [ -75.164763, 40.069043 ], [ -75.164456, 40.068864 ], [ -75.164116, 40.068667 ], [ -75.164299, 40.06849 ], [ -75.164553, 40.068269 ], [ -75.164639, 40.068205 ], [ -75.164937, 40.067945 ], [ -75.165155, 40.067792 ], [ -75.165305, 40.067692 ], [ -75.165726, 40.067428 ], [ -75.165972, 40.067251 ], [ -75.166078, 40.06716 ], [ -75.16619, 40.067063 ], [ -75.166626, 40.066623 ], [ -75.167593, 40.065683 ], [ -75.168105, 40.065199 ], [ -75.168596, 40.064735 ], [ -75.169035, 40.064301 ], [ -75.169846, 40.063531 ], [ -75.170519, 40.062884 ], [ -75.17081, 40.062598 ], [ -75.171146, 40.0628 ], [ -75.171461, 40.062985 ], [ -75.171813, 40.063188 ], [ -75.172088, 40.063341 ], [ -75.172172, 40.063393 ], [ -75.172412, 40.063533 ], [ -75.172488, 40.063576 ], [ -75.172923, 40.063823 ], [ -75.173746, 40.064299 ], [ -75.174039, 40.064464 ], [ -75.174121, 40.06451 ], [ -75.174467, 40.064712 ], [ -75.1749, 40.06496 ], [ -75.175332, 40.065204 ], [ -75.175354, 40.065217 ], [ -75.175412, 40.065135 ], [ -75.175911, 40.064344 ], [ -75.176243, 40.063839 ], [ -75.176782, 40.06302 ], [ -75.17699, 40.062714 ], [ -75.177118, 40.062504 ], [ -75.177313, 40.06221 ], [ -75.177374, 40.062087 ], [ -75.177422, 40.06198 ], [ -75.177461, 40.061862 ], [ -75.177488, 40.06174 ], [ -75.177521, 40.061478 ], [ -75.177562, 40.060736 ], [ -75.177571, 40.060658 ], [ -75.177578, 40.060587 ], [ -75.17759, 40.06052 ], [ -75.177621, 40.060417 ], [ -75.177666, 40.060314 ], [ -75.177703, 40.06025 ], [ -75.177731, 40.060207 ], [ -75.177768, 40.060164 ], [ -75.177865, 40.060061 ], [ -75.178204, 40.059737 ], [ -75.178269, 40.059672 ], [ -75.178505, 40.059453 ], [ -75.178933, 40.059058 ], [ -75.178468, 40.058743 ], [ -75.178243, 40.058616 ], [ -75.178434, 40.058431 ], [ -75.179043, 40.057837 ], [ -75.179831, 40.057069 ], [ -75.180551, 40.056352 ], [ -75.181294, 40.055608 ], [ -75.181161, 40.055524 ], [ -75.180504, 40.055113 ], [ -75.180391, 40.055043 ], [ -75.180252, 40.054955 ], [ -75.179707, 40.054621 ], [ -75.179602, 40.054556 ], [ -75.179546, 40.054522 ], [ -75.178991, 40.054184 ], [ -75.178905, 40.054141 ], [ -75.178803, 40.054078 ], [ -75.177949, 40.053554 ], [ -75.177638, 40.05336 ], [ -75.177192, 40.053085 ], [ -75.177185, 40.053081 ], [ -75.17716, 40.053066 ], [ -75.1769, 40.052899 ], [ -75.175789, 40.052226 ], [ -75.175231, 40.051879 ], [ -75.17511, 40.051803 ], [ -75.174673, 40.051542 ], [ -75.174061, 40.051138 ], [ -75.173282, 40.050658 ], [ -75.172828, 40.050382 ], [ -75.172525, 40.050196 ], [ -75.17172, 40.049713 ], [ -75.170902, 40.049231 ], [ -75.170779, 40.04916 ], [ -75.170615, 40.049071 ], [ -75.169741, 40.048522 ], [ -75.169282, 40.048218 ], [ -75.16887, 40.047968 ], [ -75.168593, 40.047802 ], [ -75.16769, 40.047247 ], [ -75.166866, 40.046732 ], [ -75.16605, 40.046222 ], [ -75.165583, 40.04594 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150016, 40.038982 ], [ -75.149419, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.144277, 40.038966 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115462, 40.034528 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114026, 40.035484 ], [ -75.113785, 40.035782 ], [ -75.113458, 40.036193 ], [ -75.113153, 40.036558 ], [ -75.112742, 40.037025 ], [ -75.112184, 40.037659 ], [ -75.112088, 40.037769 ], [ -75.112009, 40.037844 ], [ -75.11189, 40.037935 ], [ -75.111718, 40.038046 ], [ -75.111047, 40.038486 ], [ -75.110867, 40.038603 ], [ -75.110715, 40.038702 ], [ -75.110633, 40.038751 ], [ -75.110591, 40.038779 ], [ -75.11001, 40.039166 ], [ -75.109556, 40.03946 ], [ -75.109465, 40.03952 ], [ -75.109087, 40.039765 ], [ -75.108922, 40.039873 ], [ -75.108731, 40.04 ], [ -75.107282, 40.040965 ], [ -75.106732, 40.041328 ], [ -75.105847, 40.041902 ], [ -75.105079, 40.042414 ], [ -75.104333, 40.042907 ], [ -75.103725, 40.04331 ], [ -75.103507, 40.043451 ], [ -75.103214, 40.043641 ], [ -75.102677, 40.043994 ], [ -75.101869, 40.044528 ], [ -75.101095, 40.045033 ], [ -75.099528, 40.046067 ], [ -75.098899, 40.046487 ], [ -75.098529, 40.046735 ], [ -75.098197, 40.046955 ], [ -75.098094, 40.047032 ], [ -75.09801, 40.047104 ], [ -75.097438, 40.047685 ], [ -75.096814, 40.048345 ], [ -75.095621, 40.049575 ], [ -75.094571, 40.050653 ], [ -75.094163, 40.051077 ], [ -75.093631, 40.051612 ], [ -75.093086, 40.052169 ], [ -75.092546, 40.052721 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.091344, 40.053946 ], [ -75.091214, 40.05391 ], [ -75.091084, 40.053882 ], [ -75.0908, 40.0539 ], [ -75.090729, 40.053917 ], [ -75.090622, 40.054006 ], [ -75.090598, 40.054042 ], [ -75.090586, 40.054113 ], [ -75.090598, 40.054185 ], [ -75.090621, 40.054283 ], [ -75.090692, 40.054337 ], [ -75.090845, 40.054444 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307387", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.166024, 40.082881 ], [ -75.166166, 40.082961 ], [ -75.166302, 40.083038 ], [ -75.16658, 40.083202 ], [ -75.167844, 40.083951 ], [ -75.168144, 40.083901 ], [ -75.168722, 40.083387 ], [ -75.169404, 40.083755 ], [ -75.17052, 40.082677 ], [ -75.17076, 40.082818 ], [ -75.170811, 40.082841 ], [ -75.170867, 40.082872 ], [ -75.171149, 40.082582 ], [ -75.171235, 40.082488 ], [ -75.17134, 40.082375 ], [ -75.17155, 40.082169 ], [ -75.171579, 40.082131 ], [ -75.17162, 40.082112 ], [ -75.171656, 40.0821 ], [ -75.171702, 40.082088 ], [ -75.171744, 40.082078 ], [ -75.171781, 40.082072 ], [ -75.171818, 40.082067 ], [ -75.171854, 40.082066 ], [ -75.171885, 40.082066 ], [ -75.171933, 40.08207 ], [ -75.172745, 40.082527 ], [ -75.172858, 40.082543 ], [ -75.172939, 40.082594 ], [ -75.173581, 40.082969 ], [ -75.17415, 40.083306 ], [ -75.174774, 40.083669 ], [ -75.174841, 40.083604 ], [ -75.174961, 40.083487 ], [ -75.176007, 40.082398 ], [ -75.176516, 40.081877 ], [ -75.177, 40.081392 ], [ -75.177515, 40.08087 ], [ -75.176535, 40.080316 ], [ -75.175626, 40.079825 ], [ -75.174064, 40.078933 ], [ -75.1726, 40.078087 ], [ -75.170991, 40.077141 ], [ -75.170288, 40.076741 ], [ -75.170812, 40.076204 ], [ -75.171317, 40.075686 ], [ -75.171815, 40.07517 ], [ -75.172504, 40.07449 ], [ -75.173149, 40.073842 ], [ -75.171758, 40.073063 ], [ -75.170228, 40.072182 ], [ -75.169387, 40.071695 ], [ -75.169018, 40.071476 ], [ -75.166729, 40.07018 ], [ -75.165352, 40.069385 ], [ -75.165067, 40.06922 ], [ -75.164763, 40.069043 ], [ -75.164456, 40.068864 ], [ -75.164116, 40.068667 ], [ -75.164299, 40.06849 ], [ -75.164553, 40.068269 ], [ -75.164639, 40.068205 ], [ -75.164937, 40.067945 ], [ -75.165155, 40.067792 ], [ -75.165305, 40.067692 ], [ -75.165726, 40.067428 ], [ -75.165972, 40.067251 ], [ -75.166078, 40.06716 ], [ -75.16619, 40.067063 ], [ -75.166626, 40.066623 ], [ -75.167593, 40.065683 ], [ -75.168105, 40.065199 ], [ -75.168596, 40.064735 ], [ -75.169035, 40.064301 ], [ -75.169846, 40.063531 ], [ -75.170519, 40.062884 ], [ -75.17081, 40.062598 ], [ -75.171146, 40.0628 ], [ -75.171461, 40.062985 ], [ -75.171813, 40.063188 ], [ -75.172088, 40.063341 ], [ -75.172172, 40.063393 ], [ -75.172412, 40.063533 ], [ -75.172488, 40.063576 ], [ -75.172923, 40.063823 ], [ -75.173746, 40.064299 ], [ -75.174039, 40.064464 ], [ -75.174121, 40.06451 ], [ -75.174467, 40.064712 ], [ -75.1749, 40.06496 ], [ -75.175332, 40.065204 ], [ -75.175354, 40.065217 ], [ -75.175412, 40.065135 ], [ -75.175911, 40.064344 ], [ -75.176243, 40.063839 ], [ -75.176782, 40.06302 ], [ -75.17699, 40.062714 ], [ -75.177118, 40.062504 ], [ -75.177313, 40.06221 ], [ -75.177374, 40.062087 ], [ -75.177422, 40.06198 ], [ -75.177461, 40.061862 ], [ -75.177488, 40.06174 ], [ -75.177521, 40.061478 ], [ -75.177562, 40.060736 ], [ -75.177571, 40.060658 ], [ -75.177578, 40.060587 ], [ -75.17759, 40.06052 ], [ -75.177621, 40.060417 ], [ -75.177666, 40.060314 ], [ -75.177703, 40.06025 ], [ -75.177731, 40.060207 ], [ -75.177768, 40.060164 ], [ -75.177865, 40.060061 ], [ -75.178204, 40.059737 ], [ -75.178269, 40.059672 ], [ -75.178505, 40.059453 ], [ -75.178933, 40.059058 ], [ -75.178468, 40.058743 ], [ -75.178243, 40.058616 ], [ -75.178434, 40.058431 ], [ -75.179043, 40.057837 ], [ -75.179831, 40.057069 ], [ -75.180551, 40.056352 ], [ -75.181294, 40.055608 ], [ -75.181161, 40.055524 ], [ -75.180504, 40.055113 ], [ -75.180391, 40.055043 ], [ -75.180252, 40.054955 ], [ -75.179707, 40.054621 ], [ -75.179602, 40.054556 ], [ -75.179546, 40.054522 ], [ -75.178991, 40.054184 ], [ -75.178905, 40.054141 ], [ -75.178803, 40.054078 ], [ -75.177949, 40.053554 ], [ -75.177638, 40.05336 ], [ -75.177192, 40.053085 ], [ -75.177185, 40.053081 ], [ -75.17716, 40.053066 ], [ -75.1769, 40.052899 ], [ -75.175789, 40.052226 ], [ -75.175231, 40.051879 ], [ -75.17511, 40.051803 ], [ -75.174673, 40.051542 ], [ -75.174061, 40.051138 ], [ -75.173282, 40.050658 ], [ -75.172828, 40.050382 ], [ -75.172525, 40.050196 ], [ -75.17172, 40.049713 ], [ -75.170902, 40.049231 ], [ -75.170779, 40.04916 ], [ -75.170615, 40.049071 ], [ -75.169741, 40.048522 ], [ -75.169282, 40.048218 ], [ -75.16887, 40.047968 ], [ -75.168593, 40.047802 ], [ -75.16769, 40.047247 ], [ -75.166866, 40.046732 ], [ -75.16605, 40.046222 ], [ -75.165583, 40.04594 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150016, 40.038982 ], [ -75.149419, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.144277, 40.038966 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115462, 40.034528 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114026, 40.035484 ], [ -75.113785, 40.035782 ], [ -75.113458, 40.036193 ], [ -75.113153, 40.036558 ], [ -75.112742, 40.037025 ], [ -75.112184, 40.037659 ], [ -75.112088, 40.037769 ], [ -75.112009, 40.037844 ], [ -75.11189, 40.037935 ], [ -75.111718, 40.038046 ], [ -75.111047, 40.038486 ], [ -75.110867, 40.038603 ], [ -75.110715, 40.038702 ], [ -75.110633, 40.038751 ], [ -75.110591, 40.038779 ], [ -75.11001, 40.039166 ], [ -75.109556, 40.03946 ], [ -75.109465, 40.03952 ], [ -75.109087, 40.039765 ], [ -75.108922, 40.039873 ], [ -75.108731, 40.04 ], [ -75.107282, 40.040965 ], [ -75.106732, 40.041328 ], [ -75.105847, 40.041902 ], [ -75.105079, 40.042414 ], [ -75.104333, 40.042907 ], [ -75.103725, 40.04331 ], [ -75.103507, 40.043451 ], [ -75.103214, 40.043641 ], [ -75.102677, 40.043994 ], [ -75.101869, 40.044528 ], [ -75.101095, 40.045033 ], [ -75.099528, 40.046067 ], [ -75.098899, 40.046487 ], [ -75.098529, 40.046735 ], [ -75.098197, 40.046955 ], [ -75.098094, 40.047032 ], [ -75.09801, 40.047104 ], [ -75.097438, 40.047685 ], [ -75.096814, 40.048345 ], [ -75.095621, 40.049575 ], [ -75.094571, 40.050653 ], [ -75.094163, 40.051077 ], [ -75.093631, 40.051612 ], [ -75.093086, 40.052169 ], [ -75.092546, 40.052721 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.091344, 40.053946 ], [ -75.090845, 40.054444 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.083674, 40.061633 ], [ -75.083608, 40.061723 ], [ -75.083554, 40.061817 ], [ -75.083542, 40.061847 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083758, 40.066077 ], [ -75.083901, 40.066514 ], [ -75.083969, 40.066708 ], [ -75.084009, 40.066839 ], [ -75.08428, 40.067594 ], [ -75.084305, 40.067685 ], [ -75.084319, 40.06778 ], [ -75.08433, 40.067855 ], [ -75.084328, 40.068174 ], [ -75.084307, 40.06881 ], [ -75.084265, 40.069789 ], [ -75.084245, 40.070186 ], [ -75.084234, 40.070558 ], [ -75.084234, 40.070743 ], [ -75.084244, 40.07084 ], [ -75.084274, 40.071037 ], [ -75.084449, 40.072005 ], [ -75.084571, 40.072799 ], [ -75.084655, 40.073394 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085156, 40.07668 ], [ -75.085405, 40.076671 ], [ -75.085511, 40.076645 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307392", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.073243, 40.055359 ], [ -75.080508, 40.059521 ], [ -75.082493, 40.057518 ], [ -75.08593, 40.05943 ], [ -75.090797, 40.054515 ], [ -75.092164, 40.053145 ], [ -75.095622, 40.049575 ], [ -75.098019, 40.04712 ], [ -75.101094, 40.045055 ], [ -75.110071, 40.039161 ], [ -75.112111, 40.037783 ], [ -75.114939, 40.034478 ], [ -75.117669, 40.034824 ], [ -75.130525, 40.036462 ], [ -75.136492, 40.037217 ], [ -75.142599, 40.038606 ], [ -75.144631, 40.039065 ], [ -75.150023, 40.039024 ], [ -75.150756, 40.039043 ], [ -75.152044, 40.039225 ], [ -75.154395, 40.039533 ], [ -75.158372, 40.041488 ], [ -75.16481, 40.045509 ], [ -75.17332, 40.050685 ], [ -75.181167, 40.055548 ], [ -75.178117, 40.058549 ], [ -75.178495, 40.058764 ], [ -75.178612, 40.059023 ], [ -75.17854, 40.059434 ], [ -75.177792, 40.060173 ], [ -75.177578, 40.060592 ], [ -75.177539, 40.061565 ], [ -75.177335, 40.062243 ], [ -75.175338, 40.06522 ], [ -75.170817, 40.062631 ], [ -75.16607, 40.067209 ], [ -75.165026, 40.067921 ], [ -75.164136, 40.068678 ], [ -75.173166, 40.073855 ], [ -75.170329, 40.076759 ], [ -75.177506, 40.080915 ], [ -75.174799, 40.083668 ], [ -75.172851, 40.082557 ], [ -75.172816, 40.082432 ], [ -75.171635, 40.081769 ], [ -75.171599, 40.081912 ], [ -75.170804, 40.082803 ], [ -75.169304, 40.081916 ], [ -75.16875, 40.081388 ], [ -75.167747, 40.080797 ], [ -75.166963, 40.081554 ], [ -75.166951, 40.081741 ], [ -75.165942, 40.082694 ], [ -75.166024, 40.0829 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307393", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.090781, 40.054503 ], [ -75.090845, 40.054444 ], [ -75.091344, 40.053946 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.092546, 40.052721 ], [ -75.093086, 40.052169 ], [ -75.093631, 40.051612 ], [ -75.094163, 40.051077 ], [ -75.094571, 40.050653 ], [ -75.095621, 40.049575 ], [ -75.096814, 40.048345 ], [ -75.097438, 40.047685 ], [ -75.09801, 40.047104 ], [ -75.098094, 40.047032 ], [ -75.098197, 40.046955 ], [ -75.098529, 40.046735 ], [ -75.098899, 40.046487 ], [ -75.099528, 40.046067 ], [ -75.101095, 40.045033 ], [ -75.101869, 40.044528 ], [ -75.102677, 40.043994 ], [ -75.103214, 40.043641 ], [ -75.103507, 40.043451 ], [ -75.103725, 40.04331 ], [ -75.104333, 40.042907 ], [ -75.105079, 40.042414 ], [ -75.105847, 40.041902 ], [ -75.106732, 40.041328 ], [ -75.107282, 40.040965 ], [ -75.108731, 40.04 ], [ -75.108922, 40.039873 ], [ -75.109087, 40.039765 ], [ -75.109465, 40.03952 ], [ -75.109556, 40.03946 ], [ -75.11001, 40.039166 ], [ -75.110591, 40.038779 ], [ -75.110633, 40.038751 ], [ -75.110715, 40.038702 ], [ -75.110867, 40.038603 ], [ -75.111047, 40.038486 ], [ -75.111718, 40.038046 ], [ -75.11189, 40.037935 ], [ -75.112009, 40.037844 ], [ -75.112088, 40.037769 ], [ -75.112184, 40.037659 ], [ -75.112742, 40.037025 ], [ -75.113153, 40.036558 ], [ -75.113458, 40.036193 ], [ -75.113785, 40.035782 ], [ -75.114026, 40.035484 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.116151, 40.034614 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.144277, 40.038966 ], [ -75.144629, 40.039038 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150016, 40.038982 ], [ -75.150607, 40.039021 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165583, 40.04594 ], [ -75.16605, 40.046222 ], [ -75.166866, 40.046732 ], [ -75.16769, 40.047247 ], [ -75.168593, 40.047802 ], [ -75.16887, 40.047968 ], [ -75.169282, 40.048218 ], [ -75.169741, 40.048522 ], [ -75.170615, 40.049071 ], [ -75.170779, 40.04916 ], [ -75.170902, 40.049231 ], [ -75.17172, 40.049713 ], [ -75.172525, 40.050196 ], [ -75.172828, 40.050382 ], [ -75.173282, 40.050658 ], [ -75.174061, 40.051138 ], [ -75.174673, 40.051542 ], [ -75.17511, 40.051803 ], [ -75.175231, 40.051879 ], [ -75.175789, 40.052226 ], [ -75.1769, 40.052899 ], [ -75.17716, 40.053066 ], [ -75.177185, 40.053081 ], [ -75.177192, 40.053085 ], [ -75.177638, 40.05336 ], [ -75.177949, 40.053554 ], [ -75.178803, 40.054078 ], [ -75.178905, 40.054141 ], [ -75.178991, 40.054184 ], [ -75.179546, 40.054522 ], [ -75.179602, 40.054556 ], [ -75.179707, 40.054621 ], [ -75.180252, 40.054955 ], [ -75.180391, 40.055043 ], [ -75.180504, 40.055113 ], [ -75.181161, 40.055524 ], [ -75.180414, 40.056269 ], [ -75.179694, 40.056987 ], [ -75.178901, 40.057756 ], [ -75.178097, 40.058535 ], [ -75.178243, 40.058616 ], [ -75.178468, 40.058743 ], [ -75.178508, 40.058802 ], [ -75.17854, 40.058862 ], [ -75.178568, 40.058927 ], [ -75.178583, 40.058976 ], [ -75.178591, 40.059034 ], [ -75.178593, 40.059084 ], [ -75.178587, 40.059141 ], [ -75.178576, 40.059194 ], [ -75.178559, 40.059263 ], [ -75.178541, 40.059323 ], [ -75.178505, 40.059453 ], [ -75.178269, 40.059672 ], [ -75.178204, 40.059737 ], [ -75.177865, 40.060061 ], [ -75.177768, 40.060164 ], [ -75.177731, 40.060207 ], [ -75.177703, 40.06025 ], [ -75.177666, 40.060314 ], [ -75.177621, 40.060417 ], [ -75.17759, 40.06052 ], [ -75.177578, 40.060587 ], [ -75.177571, 40.060658 ], [ -75.177562, 40.060736 ], [ -75.177521, 40.061478 ], [ -75.177488, 40.06174 ], [ -75.177461, 40.061862 ], [ -75.177422, 40.06198 ], [ -75.177374, 40.062087 ], [ -75.177313, 40.06221 ], [ -75.177118, 40.062504 ], [ -75.17699, 40.062714 ], [ -75.176782, 40.06302 ], [ -75.176243, 40.063839 ], [ -75.175911, 40.064344 ], [ -75.175412, 40.065135 ], [ -75.175354, 40.065217 ], [ -75.175332, 40.065204 ], [ -75.1749, 40.06496 ], [ -75.174467, 40.064712 ], [ -75.174121, 40.06451 ], [ -75.174039, 40.064464 ], [ -75.173746, 40.064299 ], [ -75.172923, 40.063823 ], [ -75.172488, 40.063576 ], [ -75.172412, 40.063533 ], [ -75.172172, 40.063393 ], [ -75.172088, 40.063341 ], [ -75.171813, 40.063188 ], [ -75.171461, 40.062985 ], [ -75.171146, 40.0628 ], [ -75.17081, 40.062598 ], [ -75.170519, 40.062884 ], [ -75.169846, 40.063531 ], [ -75.169035, 40.064301 ], [ -75.168596, 40.064735 ], [ -75.168105, 40.065199 ], [ -75.167593, 40.065683 ], [ -75.166626, 40.066623 ], [ -75.16619, 40.067063 ], [ -75.166078, 40.06716 ], [ -75.165972, 40.067251 ], [ -75.165726, 40.067428 ], [ -75.165305, 40.067692 ], [ -75.165155, 40.067792 ], [ -75.164937, 40.067945 ], [ -75.164639, 40.068205 ], [ -75.164553, 40.068269 ], [ -75.164299, 40.06849 ], [ -75.164116, 40.068667 ], [ -75.164456, 40.068864 ], [ -75.164763, 40.069043 ], [ -75.165067, 40.06922 ], [ -75.165352, 40.069385 ], [ -75.166729, 40.07018 ], [ -75.169018, 40.071476 ], [ -75.169387, 40.071695 ], [ -75.170228, 40.072182 ], [ -75.171758, 40.073063 ], [ -75.173149, 40.073842 ], [ -75.172504, 40.07449 ], [ -75.171815, 40.07517 ], [ -75.171317, 40.075686 ], [ -75.170812, 40.076204 ], [ -75.170288, 40.076741 ], [ -75.170991, 40.077141 ], [ -75.1726, 40.078087 ], [ -75.174064, 40.078933 ], [ -75.175626, 40.079825 ], [ -75.176535, 40.080316 ], [ -75.177515, 40.08087 ], [ -75.177, 40.081392 ], [ -75.176516, 40.081877 ], [ -75.176007, 40.082398 ], [ -75.174961, 40.083487 ], [ -75.174841, 40.083604 ], [ -75.174774, 40.083669 ], [ -75.17415, 40.083306 ], [ -75.173581, 40.082969 ], [ -75.172939, 40.082594 ], [ -75.172858, 40.082543 ], [ -75.172801, 40.082431 ], [ -75.172779, 40.082417 ], [ -75.172608, 40.08232 ], [ -75.172303, 40.082145 ], [ -75.172088, 40.082024 ], [ -75.172009, 40.081979 ], [ -75.171716, 40.08181 ], [ -75.171597, 40.081735 ], [ -75.171585, 40.081776 ], [ -75.171577, 40.08189 ], [ -75.171487, 40.082015 ], [ -75.171447, 40.082063 ], [ -75.17141, 40.082108 ], [ -75.171212, 40.082302 ], [ -75.17076, 40.082817 ], [ -75.17052, 40.082677 ], [ -75.169265, 40.081924 ], [ -75.168686, 40.081332 ], [ -75.167723, 40.080768 ], [ -75.166945, 40.081517 ], [ -75.166945, 40.081731 ], [ -75.165924, 40.082674 ], [ -75.166024, 40.082881 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307394", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143935, 40.038582 ], [ -75.144361, 40.038672 ], [ -75.14468, 40.038735 ], [ -75.144663, 40.038822 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144151, 40.041505 ], [ -75.144125, 40.041615 ], [ -75.144076, 40.041818 ], [ -75.144048, 40.041944 ], [ -75.143917, 40.04253 ], [ -75.143883, 40.042685 ], [ -75.14386, 40.042787 ], [ -75.143836, 40.042894 ], [ -75.143794, 40.043095 ], [ -75.143759, 40.043259 ], [ -75.143666, 40.043695 ], [ -75.14359, 40.044052 ], [ -75.143548, 40.044253 ], [ -75.143512, 40.044421 ], [ -75.143489, 40.044526 ], [ -75.143466, 40.044629 ], [ -75.143439, 40.044748 ], [ -75.143269, 40.045512 ], [ -75.143219, 40.045738 ], [ -75.143056, 40.046465 ], [ -75.143033, 40.046572 ], [ -75.143008, 40.046683 ], [ -75.142918, 40.047108 ], [ -75.142837, 40.047489 ], [ -75.142901, 40.047514 ], [ -75.142943, 40.047535 ], [ -75.143256, 40.047716 ], [ -75.143369, 40.047782 ], [ -75.143536, 40.047878 ], [ -75.143776, 40.048013 ], [ -75.143938, 40.048103 ], [ -75.144072, 40.048178 ], [ -75.144516, 40.048425 ], [ -75.14486, 40.048617 ], [ -75.14497, 40.048677 ], [ -75.145477, 40.048963 ], [ -75.145604, 40.049034 ], [ -75.145819, 40.049155 ], [ -75.146023, 40.049269 ], [ -75.14652, 40.049548 ], [ -75.146698, 40.049645 ], [ -75.146908, 40.049763 ], [ -75.147014, 40.049822 ], [ -75.147268, 40.049965 ], [ -75.147495, 40.050092 ], [ -75.148064, 40.05041 ], [ -75.148307, 40.050546 ], [ -75.148714, 40.050771 ], [ -75.149023, 40.050947 ], [ -75.149213, 40.051053 ], [ -75.14935, 40.05113 ], [ -75.149568, 40.051251 ], [ -75.149763, 40.051361 ], [ -75.150072, 40.051534 ], [ -75.150154, 40.05158 ], [ -75.150402, 40.051697 ], [ -75.150656, 40.051814 ], [ -75.151647, 40.05227 ], [ -75.152887, 40.052854 ], [ -75.153312, 40.05305 ], [ -75.153669, 40.053211 ], [ -75.154384, 40.053543 ], [ -75.155221, 40.053927 ], [ -75.155546, 40.054078 ], [ -75.15648, 40.054518 ], [ -75.15757, 40.05504 ], [ -75.157582, 40.055046 ], [ -75.157612, 40.055062 ], [ -75.157733, 40.055127 ], [ -75.158164, 40.055376 ], [ -75.158328, 40.055471 ], [ -75.158491, 40.055562 ], [ -75.158876, 40.055777 ], [ -75.159268, 40.055997 ], [ -75.159446, 40.056101 ], [ -75.160183, 40.056529 ], [ -75.16053, 40.056729 ], [ -75.160697, 40.056825 ], [ -75.161102, 40.057057 ], [ -75.161273, 40.057155 ], [ -75.161869, 40.057497 ], [ -75.162143, 40.057654 ], [ -75.162345, 40.05777 ], [ -75.162655, 40.057947 ], [ -75.162809, 40.058035 ], [ -75.163164, 40.058239 ], [ -75.164071, 40.058758 ], [ -75.164249, 40.058859 ], [ -75.164452, 40.058976 ], [ -75.164605, 40.059064 ], [ -75.164896, 40.05922 ], [ -75.165066, 40.059316 ], [ -75.165469, 40.059543 ], [ -75.165956, 40.059821 ], [ -75.166227, 40.059977 ], [ -75.16702, 40.060435 ], [ -75.167436, 40.060682 ], [ -75.167493, 40.060716 ], [ -75.167572, 40.060759 ], [ -75.167864, 40.060921 ], [ -75.168249, 40.061138 ], [ -75.168488, 40.06128 ], [ -75.168657, 40.06138 ], [ -75.168667, 40.061386 ], [ -75.168812, 40.061465 ], [ -75.169046, 40.061594 ], [ -75.169393, 40.061794 ], [ -75.169735, 40.061991 ], [ -75.170077, 40.062196 ], [ -75.17042, 40.062386 ], [ -75.17081, 40.062598 ], [ -75.170519, 40.062884 ], [ -75.169846, 40.063531 ], [ -75.169035, 40.064301 ], [ -75.168596, 40.064735 ], [ -75.168105, 40.065199 ], [ -75.167593, 40.065683 ], [ -75.166626, 40.066623 ], [ -75.16619, 40.067063 ], [ -75.166078, 40.06716 ], [ -75.165972, 40.067251 ], [ -75.165726, 40.067428 ], [ -75.165305, 40.067692 ], [ -75.165155, 40.067792 ], [ -75.164937, 40.067945 ], [ -75.164639, 40.068205 ], [ -75.164553, 40.068269 ], [ -75.164299, 40.06849 ], [ -75.164116, 40.068667 ], [ -75.164456, 40.068864 ], [ -75.164763, 40.069043 ], [ -75.165067, 40.06922 ], [ -75.165352, 40.069385 ], [ -75.166729, 40.07018 ], [ -75.169018, 40.071476 ], [ -75.169387, 40.071695 ], [ -75.170228, 40.072182 ], [ -75.171758, 40.073063 ], [ -75.173149, 40.073842 ], [ -75.172504, 40.07449 ], [ -75.171815, 40.07517 ], [ -75.171317, 40.075686 ], [ -75.170812, 40.076204 ], [ -75.170288, 40.076741 ], [ -75.170991, 40.077141 ], [ -75.1726, 40.078087 ], [ -75.174064, 40.078933 ], [ -75.175626, 40.079825 ], [ -75.176535, 40.080316 ], [ -75.177515, 40.08087 ], [ -75.177, 40.081392 ], [ -75.176516, 40.081877 ], [ -75.176007, 40.082398 ], [ -75.174961, 40.083487 ], [ -75.174841, 40.083604 ], [ -75.174774, 40.083669 ], [ -75.17415, 40.083306 ], [ -75.173581, 40.082969 ], [ -75.172939, 40.082594 ], [ -75.172858, 40.082543 ], [ -75.172801, 40.082431 ], [ -75.172779, 40.082417 ], [ -75.172608, 40.08232 ], [ -75.172303, 40.082145 ], [ -75.172088, 40.082024 ], [ -75.172009, 40.081979 ], [ -75.171716, 40.08181 ], [ -75.171597, 40.081735 ], [ -75.171585, 40.081776 ], [ -75.171577, 40.08189 ], [ -75.171487, 40.082015 ], [ -75.171447, 40.082063 ], [ -75.17141, 40.082108 ], [ -75.171212, 40.082302 ], [ -75.17076, 40.082817 ], [ -75.17052, 40.082677 ], [ -75.169265, 40.081924 ], [ -75.168686, 40.081332 ], [ -75.167723, 40.080768 ], [ -75.166945, 40.081517 ], [ -75.166945, 40.081731 ], [ -75.165924, 40.082674 ], [ -75.166024, 40.082881 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307396", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.090781, 40.054503 ], [ -75.090845, 40.054444 ], [ -75.091344, 40.053946 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.092546, 40.052721 ], [ -75.093086, 40.052169 ], [ -75.093631, 40.051612 ], [ -75.094163, 40.051077 ], [ -75.094571, 40.050653 ], [ -75.095621, 40.049575 ], [ -75.096814, 40.048345 ], [ -75.097438, 40.047685 ], [ -75.09801, 40.047104 ], [ -75.098094, 40.047032 ], [ -75.098197, 40.046955 ], [ -75.098529, 40.046735 ], [ -75.098899, 40.046487 ], [ -75.099528, 40.046067 ], [ -75.101095, 40.045033 ], [ -75.101869, 40.044528 ], [ -75.102677, 40.043994 ], [ -75.103214, 40.043641 ], [ -75.103507, 40.043451 ], [ -75.103725, 40.04331 ], [ -75.104333, 40.042907 ], [ -75.105079, 40.042414 ], [ -75.105847, 40.041902 ], [ -75.106732, 40.041328 ], [ -75.107282, 40.040965 ], [ -75.108731, 40.04 ], [ -75.108922, 40.039873 ], [ -75.109087, 40.039765 ], [ -75.109465, 40.03952 ], [ -75.109556, 40.03946 ], [ -75.11001, 40.039166 ], [ -75.110591, 40.038779 ], [ -75.110633, 40.038751 ], [ -75.110715, 40.038702 ], [ -75.110867, 40.038603 ], [ -75.111047, 40.038486 ], [ -75.111718, 40.038046 ], [ -75.11189, 40.037935 ], [ -75.112009, 40.037844 ], [ -75.112088, 40.037769 ], [ -75.112184, 40.037659 ], [ -75.112742, 40.037025 ], [ -75.113153, 40.036558 ], [ -75.113458, 40.036193 ], [ -75.113785, 40.035782 ], [ -75.114026, 40.035484 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.116151, 40.034614 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.144277, 40.038966 ], [ -75.144629, 40.039038 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150016, 40.038982 ], [ -75.150607, 40.039021 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165583, 40.04594 ], [ -75.16605, 40.046222 ], [ -75.166866, 40.046732 ], [ -75.16769, 40.047247 ], [ -75.168593, 40.047802 ], [ -75.16887, 40.047968 ], [ -75.169282, 40.048218 ], [ -75.169741, 40.048522 ], [ -75.170615, 40.049071 ], [ -75.170779, 40.04916 ], [ -75.170902, 40.049231 ], [ -75.17172, 40.049713 ], [ -75.172525, 40.050196 ], [ -75.172828, 40.050382 ], [ -75.173282, 40.050658 ], [ -75.174061, 40.051138 ], [ -75.174673, 40.051542 ], [ -75.17511, 40.051803 ], [ -75.175231, 40.051879 ], [ -75.175789, 40.052226 ], [ -75.1769, 40.052899 ], [ -75.17716, 40.053066 ], [ -75.177185, 40.053081 ], [ -75.177192, 40.053085 ], [ -75.177638, 40.05336 ], [ -75.177949, 40.053554 ], [ -75.178803, 40.054078 ], [ -75.178905, 40.054141 ], [ -75.178991, 40.054184 ], [ -75.179546, 40.054522 ], [ -75.179602, 40.054556 ], [ -75.179707, 40.054621 ], [ -75.180252, 40.054955 ], [ -75.180391, 40.055043 ], [ -75.180504, 40.055113 ], [ -75.181161, 40.055524 ], [ -75.180414, 40.056269 ], [ -75.179694, 40.056987 ], [ -75.178901, 40.057756 ], [ -75.178097, 40.058535 ], [ -75.178243, 40.058616 ], [ -75.178468, 40.058743 ], [ -75.178508, 40.058802 ], [ -75.17854, 40.058862 ], [ -75.178568, 40.058927 ], [ -75.178583, 40.058976 ], [ -75.178591, 40.059034 ], [ -75.178593, 40.059084 ], [ -75.178587, 40.059141 ], [ -75.178576, 40.059194 ], [ -75.178559, 40.059263 ], [ -75.178541, 40.059323 ], [ -75.178505, 40.059453 ], [ -75.178269, 40.059672 ], [ -75.178204, 40.059737 ], [ -75.177865, 40.060061 ], [ -75.177768, 40.060164 ], [ -75.177731, 40.060207 ], [ -75.177703, 40.06025 ], [ -75.177666, 40.060314 ], [ -75.177621, 40.060417 ], [ -75.17759, 40.06052 ], [ -75.177578, 40.060587 ], [ -75.177571, 40.060658 ], [ -75.177562, 40.060736 ], [ -75.177521, 40.061478 ], [ -75.177488, 40.06174 ], [ -75.177461, 40.061862 ], [ -75.177422, 40.06198 ], [ -75.177374, 40.062087 ], [ -75.177313, 40.06221 ], [ -75.177118, 40.062504 ], [ -75.17699, 40.062714 ], [ -75.176782, 40.06302 ], [ -75.176243, 40.063839 ], [ -75.175911, 40.064344 ], [ -75.175412, 40.065135 ], [ -75.175354, 40.065217 ], [ -75.175332, 40.065204 ], [ -75.1749, 40.06496 ], [ -75.174467, 40.064712 ], [ -75.174121, 40.06451 ], [ -75.174039, 40.064464 ], [ -75.173746, 40.064299 ], [ -75.172923, 40.063823 ], [ -75.172488, 40.063576 ], [ -75.172412, 40.063533 ], [ -75.172172, 40.063393 ], [ -75.172088, 40.063341 ], [ -75.171813, 40.063188 ], [ -75.171461, 40.062985 ], [ -75.171146, 40.0628 ], [ -75.17081, 40.062598 ], [ -75.170519, 40.062884 ], [ -75.169846, 40.063531 ], [ -75.169035, 40.064301 ], [ -75.168596, 40.064735 ], [ -75.168105, 40.065199 ], [ -75.167593, 40.065683 ], [ -75.166626, 40.066623 ], [ -75.16619, 40.067063 ], [ -75.166078, 40.06716 ], [ -75.165972, 40.067251 ], [ -75.165726, 40.067428 ], [ -75.165305, 40.067692 ], [ -75.165155, 40.067792 ], [ -75.164937, 40.067945 ], [ -75.164639, 40.068205 ], [ -75.164553, 40.068269 ], [ -75.164299, 40.06849 ], [ -75.164116, 40.068667 ], [ -75.164456, 40.068864 ], [ -75.164763, 40.069043 ], [ -75.165067, 40.06922 ], [ -75.165352, 40.069385 ], [ -75.166729, 40.07018 ], [ -75.169018, 40.071476 ], [ -75.169387, 40.071695 ], [ -75.170228, 40.072182 ], [ -75.171758, 40.073063 ], [ -75.173149, 40.073842 ], [ -75.172504, 40.07449 ], [ -75.171815, 40.07517 ], [ -75.171317, 40.075686 ], [ -75.170812, 40.076204 ], [ -75.170288, 40.076741 ], [ -75.170991, 40.077141 ], [ -75.1726, 40.078087 ], [ -75.174064, 40.078933 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307397", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.085511, 40.076645 ], [ -75.085618, 40.076547 ], [ -75.085666, 40.076494 ], [ -75.085713, 40.07644 ], [ -75.085749, 40.076378 ], [ -75.085375, 40.076173 ], [ -75.085045, 40.076029 ], [ -75.084848, 40.074722 ], [ -75.084755, 40.074037 ], [ -75.084735, 40.073902 ], [ -75.084655, 40.073394 ], [ -75.084571, 40.072799 ], [ -75.084449, 40.072005 ], [ -75.084274, 40.071037 ], [ -75.084244, 40.07084 ], [ -75.084234, 40.070743 ], [ -75.084234, 40.070558 ], [ -75.084245, 40.070186 ], [ -75.084265, 40.069789 ], [ -75.084307, 40.06881 ], [ -75.084328, 40.068174 ], [ -75.08433, 40.067855 ], [ -75.084319, 40.06778 ], [ -75.084305, 40.067685 ], [ -75.08428, 40.067594 ], [ -75.084009, 40.066839 ], [ -75.083969, 40.066708 ], [ -75.083901, 40.066514 ], [ -75.083758, 40.066077 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083542, 40.061847 ], [ -75.083554, 40.061817 ], [ -75.083608, 40.061723 ], [ -75.083674, 40.061633 ], [ -75.083822, 40.061477 ], [ -75.085319, 40.060009 ], [ -75.085917, 40.05943 ], [ -75.086558, 40.058794 ], [ -75.087128, 40.058211 ], [ -75.088369, 40.056944 ], [ -75.089078, 40.056222 ], [ -75.08957, 40.055726 ], [ -75.090214, 40.055077 ], [ -75.090781, 40.054503 ], [ -75.090845, 40.054444 ], [ -75.091344, 40.053946 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.092546, 40.052721 ], [ -75.093086, 40.052169 ], [ -75.093631, 40.051612 ], [ -75.094163, 40.051077 ], [ -75.094571, 40.050653 ], [ -75.095621, 40.049575 ], [ -75.096814, 40.048345 ], [ -75.097438, 40.047685 ], [ -75.09801, 40.047104 ], [ -75.098094, 40.047032 ], [ -75.098197, 40.046955 ], [ -75.098529, 40.046735 ], [ -75.098899, 40.046487 ], [ -75.099528, 40.046067 ], [ -75.101095, 40.045033 ], [ -75.101869, 40.044528 ], [ -75.102677, 40.043994 ], [ -75.103214, 40.043641 ], [ -75.103507, 40.043451 ], [ -75.103725, 40.04331 ], [ -75.104333, 40.042907 ], [ -75.105079, 40.042414 ], [ -75.105847, 40.041902 ], [ -75.106732, 40.041328 ], [ -75.107282, 40.040965 ], [ -75.108731, 40.04 ], [ -75.108922, 40.039873 ], [ -75.109087, 40.039765 ], [ -75.109465, 40.03952 ], [ -75.109556, 40.03946 ], [ -75.11001, 40.039166 ], [ -75.110591, 40.038779 ], [ -75.110633, 40.038751 ], [ -75.110715, 40.038702 ], [ -75.110867, 40.038603 ], [ -75.111047, 40.038486 ], [ -75.111718, 40.038046 ], [ -75.11189, 40.037935 ], [ -75.112009, 40.037844 ], [ -75.112088, 40.037769 ], [ -75.112184, 40.037659 ], [ -75.112742, 40.037025 ], [ -75.113153, 40.036558 ], [ -75.113458, 40.036193 ], [ -75.113785, 40.035782 ], [ -75.114026, 40.035484 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.116151, 40.034614 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.144277, 40.038966 ], [ -75.144629, 40.039038 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150016, 40.038982 ], [ -75.150607, 40.039021 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165583, 40.04594 ], [ -75.16605, 40.046222 ], [ -75.166866, 40.046732 ], [ -75.16769, 40.047247 ], [ -75.168593, 40.047802 ], [ -75.16887, 40.047968 ], [ -75.169282, 40.048218 ], [ -75.169741, 40.048522 ], [ -75.170615, 40.049071 ], [ -75.170779, 40.04916 ], [ -75.170902, 40.049231 ], [ -75.17172, 40.049713 ], [ -75.172525, 40.050196 ], [ -75.172828, 40.050382 ], [ -75.173282, 40.050658 ], [ -75.174061, 40.051138 ], [ -75.174673, 40.051542 ], [ -75.17511, 40.051803 ], [ -75.175231, 40.051879 ], [ -75.175789, 40.052226 ], [ -75.1769, 40.052899 ], [ -75.17716, 40.053066 ], [ -75.177185, 40.053081 ], [ -75.177192, 40.053085 ], [ -75.177638, 40.05336 ], [ -75.177949, 40.053554 ], [ -75.178803, 40.054078 ], [ -75.178905, 40.054141 ], [ -75.178991, 40.054184 ], [ -75.179546, 40.054522 ], [ -75.179602, 40.054556 ], [ -75.179707, 40.054621 ], [ -75.180252, 40.054955 ], [ -75.180391, 40.055043 ], [ -75.180504, 40.055113 ], [ -75.181161, 40.055524 ], [ -75.180414, 40.056269 ], [ -75.179694, 40.056987 ], [ -75.178901, 40.057756 ], [ -75.178097, 40.058535 ], [ -75.178243, 40.058616 ], [ -75.178468, 40.058743 ], [ -75.178508, 40.058802 ], [ -75.17854, 40.058862 ], [ -75.178568, 40.058927 ], [ -75.178583, 40.058976 ], [ -75.178591, 40.059034 ], [ -75.178593, 40.059084 ], [ -75.178587, 40.059141 ], [ -75.178576, 40.059194 ], [ -75.178559, 40.059263 ], [ -75.178541, 40.059323 ], [ -75.178505, 40.059453 ], [ -75.178269, 40.059672 ], [ -75.178204, 40.059737 ], [ -75.177865, 40.060061 ], [ -75.177768, 40.060164 ], [ -75.177731, 40.060207 ], [ -75.177703, 40.06025 ], [ -75.177666, 40.060314 ], [ -75.177621, 40.060417 ], [ -75.17759, 40.06052 ], [ -75.177578, 40.060587 ], [ -75.177571, 40.060658 ], [ -75.177562, 40.060736 ], [ -75.177521, 40.061478 ], [ -75.177488, 40.06174 ], [ -75.177461, 40.061862 ], [ -75.177422, 40.06198 ], [ -75.177374, 40.062087 ], [ -75.177313, 40.06221 ], [ -75.177118, 40.062504 ], [ -75.17699, 40.062714 ], [ -75.176782, 40.06302 ], [ -75.176243, 40.063839 ], [ -75.175911, 40.064344 ], [ -75.175412, 40.065135 ], [ -75.175354, 40.065217 ], [ -75.175332, 40.065204 ], [ -75.1749, 40.06496 ], [ -75.174467, 40.064712 ], [ -75.174121, 40.06451 ], [ -75.174039, 40.064464 ], [ -75.173746, 40.064299 ], [ -75.172923, 40.063823 ], [ -75.172488, 40.063576 ], [ -75.172412, 40.063533 ], [ -75.172172, 40.063393 ], [ -75.172088, 40.063341 ], [ -75.171813, 40.063188 ], [ -75.171461, 40.062985 ], [ -75.171146, 40.0628 ], [ -75.17081, 40.062598 ], [ -75.170519, 40.062884 ], [ -75.169846, 40.063531 ], [ -75.169035, 40.064301 ], [ -75.168596, 40.064735 ], [ -75.168105, 40.065199 ], [ -75.167593, 40.065683 ], [ -75.166626, 40.066623 ], [ -75.16619, 40.067063 ], [ -75.166078, 40.06716 ], [ -75.165972, 40.067251 ], [ -75.165726, 40.067428 ], [ -75.165305, 40.067692 ], [ -75.165155, 40.067792 ], [ -75.164937, 40.067945 ], [ -75.164639, 40.068205 ], [ -75.164553, 40.068269 ], [ -75.164299, 40.06849 ], [ -75.164116, 40.068667 ], [ -75.164456, 40.068864 ], [ -75.164763, 40.069043 ], [ -75.165067, 40.06922 ], [ -75.165352, 40.069385 ], [ -75.166729, 40.07018 ], [ -75.169018, 40.071476 ], [ -75.169387, 40.071695 ], [ -75.170228, 40.072182 ], [ -75.171758, 40.073063 ], [ -75.173149, 40.073842 ], [ -75.172504, 40.07449 ], [ -75.171815, 40.07517 ], [ -75.171317, 40.075686 ], [ -75.170812, 40.076204 ], [ -75.170288, 40.076741 ], [ -75.170991, 40.077141 ], [ -75.1726, 40.078087 ], [ -75.174064, 40.078933 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307398", "route_id": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.085511, 40.076645 ], [ -75.085618, 40.076547 ], [ -75.085666, 40.076494 ], [ -75.085713, 40.07644 ], [ -75.085749, 40.076378 ], [ -75.085375, 40.076173 ], [ -75.085045, 40.076029 ], [ -75.084848, 40.074722 ], [ -75.084755, 40.074037 ], [ -75.084735, 40.073902 ], [ -75.084655, 40.073394 ], [ -75.084571, 40.072799 ], [ -75.084449, 40.072005 ], [ -75.084274, 40.071037 ], [ -75.084244, 40.07084 ], [ -75.084234, 40.070743 ], [ -75.084234, 40.070558 ], [ -75.084245, 40.070186 ], [ -75.084265, 40.069789 ], [ -75.084307, 40.06881 ], [ -75.084328, 40.068174 ], [ -75.08433, 40.067855 ], [ -75.084319, 40.06778 ], [ -75.084305, 40.067685 ], [ -75.08428, 40.067594 ], [ -75.084009, 40.066839 ], [ -75.083969, 40.066708 ], [ -75.083901, 40.066514 ], [ -75.083758, 40.066077 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083542, 40.061847 ], [ -75.083554, 40.061817 ], [ -75.083608, 40.061723 ], [ -75.083674, 40.061633 ], [ -75.083822, 40.061477 ], [ -75.085319, 40.060009 ], [ -75.085917, 40.05943 ], [ -75.086558, 40.058794 ], [ -75.087128, 40.058211 ], [ -75.088369, 40.056944 ], [ -75.089078, 40.056222 ], [ -75.08957, 40.055726 ], [ -75.090214, 40.055077 ], [ -75.090781, 40.054503 ], [ -75.090845, 40.054444 ], [ -75.091344, 40.053946 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.092546, 40.052721 ], [ -75.093086, 40.052169 ], [ -75.093631, 40.051612 ], [ -75.094163, 40.051077 ], [ -75.094571, 40.050653 ], [ -75.095621, 40.049575 ], [ -75.096814, 40.048345 ], [ -75.097438, 40.047685 ], [ -75.09801, 40.047104 ], [ -75.098094, 40.047032 ], [ -75.098197, 40.046955 ], [ -75.098529, 40.046735 ], [ -75.098899, 40.046487 ], [ -75.099528, 40.046067 ], [ -75.101095, 40.045033 ], [ -75.101869, 40.044528 ], [ -75.102677, 40.043994 ], [ -75.103214, 40.043641 ], [ -75.103507, 40.043451 ], [ -75.103725, 40.04331 ], [ -75.104333, 40.042907 ], [ -75.105079, 40.042414 ], [ -75.105847, 40.041902 ], [ -75.106732, 40.041328 ], [ -75.107282, 40.040965 ], [ -75.108731, 40.04 ], [ -75.108922, 40.039873 ], [ -75.109087, 40.039765 ], [ -75.109465, 40.03952 ], [ -75.109556, 40.03946 ], [ -75.11001, 40.039166 ], [ -75.110591, 40.038779 ], [ -75.110633, 40.038751 ], [ -75.110715, 40.038702 ], [ -75.110867, 40.038603 ], [ -75.111047, 40.038486 ], [ -75.111718, 40.038046 ], [ -75.11189, 40.037935 ], [ -75.112009, 40.037844 ], [ -75.112088, 40.037769 ], [ -75.112184, 40.037659 ], [ -75.112742, 40.037025 ], [ -75.113153, 40.036558 ], [ -75.113458, 40.036193 ], [ -75.113785, 40.035782 ], [ -75.114026, 40.035484 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.116151, 40.034614 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.144277, 40.038966 ], [ -75.144629, 40.039038 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150016, 40.038982 ], [ -75.150607, 40.039021 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165583, 40.04594 ], [ -75.16605, 40.046222 ], [ -75.166866, 40.046732 ], [ -75.16769, 40.047247 ], [ -75.168593, 40.047802 ], [ -75.16887, 40.047968 ], [ -75.169282, 40.048218 ], [ -75.169741, 40.048522 ], [ -75.170615, 40.049071 ], [ -75.170779, 40.04916 ], [ -75.170902, 40.049231 ], [ -75.17172, 40.049713 ], [ -75.172525, 40.050196 ], [ -75.172828, 40.050382 ], [ -75.173282, 40.050658 ], [ -75.174061, 40.051138 ], [ -75.174673, 40.051542 ], [ -75.17511, 40.051803 ], [ -75.175231, 40.051879 ], [ -75.175789, 40.052226 ], [ -75.1769, 40.052899 ], [ -75.17716, 40.053066 ], [ -75.177185, 40.053081 ], [ -75.177192, 40.053085 ], [ -75.177638, 40.05336 ], [ -75.177949, 40.053554 ], [ -75.178803, 40.054078 ], [ -75.178905, 40.054141 ], [ -75.178991, 40.054184 ], [ -75.179546, 40.054522 ], [ -75.179602, 40.054556 ], [ -75.179707, 40.054621 ], [ -75.180252, 40.054955 ], [ -75.180391, 40.055043 ], [ -75.180504, 40.055113 ], [ -75.181161, 40.055524 ], [ -75.180414, 40.056269 ], [ -75.179694, 40.056987 ], [ -75.178901, 40.057756 ], [ -75.178097, 40.058535 ], [ -75.178243, 40.058616 ], [ -75.178468, 40.058743 ], [ -75.178508, 40.058802 ], [ -75.17854, 40.058862 ], [ -75.178568, 40.058927 ], [ -75.178583, 40.058976 ], [ -75.178591, 40.059034 ], [ -75.178593, 40.059084 ], [ -75.178587, 40.059141 ], [ -75.178576, 40.059194 ], [ -75.178559, 40.059263 ], [ -75.178541, 40.059323 ], [ -75.178505, 40.059453 ], [ -75.178269, 40.059672 ], [ -75.178204, 40.059737 ], [ -75.177865, 40.060061 ], [ -75.177768, 40.060164 ], [ -75.177731, 40.060207 ], [ -75.177703, 40.06025 ], [ -75.177666, 40.060314 ], [ -75.177621, 40.060417 ], [ -75.17759, 40.06052 ], [ -75.177578, 40.060587 ], [ -75.177571, 40.060658 ], [ -75.177562, 40.060736 ], [ -75.177521, 40.061478 ], [ -75.177488, 40.06174 ], [ -75.177461, 40.061862 ], [ -75.177422, 40.06198 ], [ -75.177374, 40.062087 ], [ -75.177313, 40.06221 ], [ -75.177118, 40.062504 ], [ -75.17699, 40.062714 ], [ -75.176782, 40.06302 ], [ -75.176243, 40.063839 ], [ -75.175911, 40.064344 ], [ -75.175412, 40.065135 ], [ -75.175354, 40.065217 ], [ -75.175332, 40.065204 ], [ -75.1749, 40.06496 ], [ -75.174467, 40.064712 ], [ -75.174121, 40.06451 ], [ -75.174039, 40.064464 ], [ -75.173746, 40.064299 ], [ -75.172923, 40.063823 ], [ -75.172488, 40.063576 ], [ -75.172412, 40.063533 ], [ -75.172172, 40.063393 ], [ -75.172088, 40.063341 ], [ -75.171813, 40.063188 ], [ -75.171461, 40.062985 ], [ -75.171146, 40.0628 ], [ -75.17081, 40.062598 ], [ -75.170519, 40.062884 ], [ -75.169846, 40.063531 ], [ -75.169035, 40.064301 ], [ -75.168596, 40.064735 ], [ -75.168105, 40.065199 ], [ -75.167593, 40.065683 ], [ -75.166626, 40.066623 ], [ -75.16619, 40.067063 ], [ -75.166078, 40.06716 ], [ -75.165972, 40.067251 ], [ -75.165726, 40.067428 ], [ -75.165305, 40.067692 ], [ -75.165155, 40.067792 ], [ -75.164937, 40.067945 ], [ -75.164639, 40.068205 ], [ -75.164553, 40.068269 ], [ -75.164299, 40.06849 ], [ -75.164116, 40.068667 ], [ -75.164456, 40.068864 ], [ -75.164763, 40.069043 ], [ -75.165067, 40.06922 ], [ -75.165352, 40.069385 ], [ -75.166729, 40.07018 ], [ -75.169018, 40.071476 ], [ -75.169387, 40.071695 ], [ -75.170228, 40.072182 ], [ -75.171758, 40.073063 ], [ -75.173149, 40.073842 ], [ -75.172504, 40.07449 ], [ -75.171815, 40.07517 ], [ -75.171317, 40.075686 ], [ -75.170812, 40.076204 ], [ -75.170288, 40.076741 ], [ -75.170991, 40.077141 ], [ -75.1726, 40.078087 ], [ -75.174064, 40.078933 ], [ -75.175626, 40.079825 ], [ -75.176535, 40.080316 ], [ -75.177515, 40.08087 ], [ -75.177, 40.081392 ], [ -75.176516, 40.081877 ], [ -75.176007, 40.082398 ], [ -75.174961, 40.083487 ], [ -75.174841, 40.083604 ], [ -75.174774, 40.083669 ], [ -75.17415, 40.083306 ], [ -75.173581, 40.082969 ], [ -75.172939, 40.082594 ], [ -75.172858, 40.082543 ], [ -75.172801, 40.082431 ], [ -75.172779, 40.082417 ], [ -75.172608, 40.08232 ], [ -75.172303, 40.082145 ], [ -75.172088, 40.082024 ], [ -75.172009, 40.081979 ], [ -75.171716, 40.08181 ], [ -75.171597, 40.081735 ], [ -75.171585, 40.081776 ], [ -75.171577, 40.08189 ], [ -75.171487, 40.082015 ], [ -75.171447, 40.082063 ], [ -75.17141, 40.082108 ], [ -75.171212, 40.082302 ], [ -75.17076, 40.082817 ], [ -75.17052, 40.082677 ], [ -75.169265, 40.081924 ], [ -75.168686, 40.081332 ], [ -75.167723, 40.080768 ], [ -75.166945, 40.081517 ], [ -75.166945, 40.081731 ], [ -75.165924, 40.082674 ], [ -75.166024, 40.082881 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307415", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.070305, 40.034814 ], [ -75.069448, 40.035007 ], [ -75.068815, 40.035154 ], [ -75.068208, 40.035292 ], [ -75.067433, 40.035467 ], [ -75.065311, 40.035956 ], [ -75.065054, 40.036016 ], [ -75.064791, 40.036077 ], [ -75.064331, 40.036187 ], [ -75.064205, 40.036215 ], [ -75.063642, 40.03635 ], [ -75.0633, 40.036446 ], [ -75.063111, 40.036508 ], [ -75.062951, 40.036567 ], [ -75.062805, 40.036628 ], [ -75.062642, 40.0367 ], [ -75.062417, 40.036806 ], [ -75.062184, 40.036927 ], [ -75.06208, 40.036988 ], [ -75.06199, 40.037042 ], [ -75.0619, 40.0371 ], [ -75.061787, 40.037178 ], [ -75.061683, 40.037253 ], [ -75.061574, 40.037332 ], [ -75.061481, 40.037409 ], [ -75.061347, 40.037526 ], [ -75.060954, 40.037884 ], [ -75.060108, 40.038678 ], [ -75.059671, 40.039086 ], [ -75.059518, 40.039228 ], [ -75.059024, 40.039684 ], [ -75.05892, 40.03978 ], [ -75.058431, 40.040231 ], [ -75.0576, 40.041003 ], [ -75.056981, 40.041591 ], [ -75.056345, 40.042176 ], [ -75.055843, 40.042648 ], [ -75.055603, 40.042878 ], [ -75.05543, 40.043046 ], [ -75.055003, 40.043459 ], [ -75.05463, 40.043799 ], [ -75.054065, 40.044315 ], [ -75.052729, 40.04555 ], [ -75.052027, 40.046203 ], [ -75.051667, 40.046603 ], [ -75.051554, 40.046746 ], [ -75.051486, 40.046842 ], [ -75.05146, 40.046881 ], [ -75.051367, 40.047024 ], [ -75.051275, 40.047188 ], [ -75.0512, 40.047323 ], [ -75.051109, 40.047508 ], [ -75.051031, 40.04772 ], [ -75.050969, 40.047951 ], [ -75.050889, 40.048456 ], [ -75.050854, 40.049014 ], [ -75.050847, 40.049122 ], [ -75.05083, 40.049337 ], [ -75.050821, 40.049473 ], [ -75.050764, 40.0502 ], [ -75.050759, 40.050258 ], [ -75.050735, 40.050573 ], [ -75.050711, 40.050872 ], [ -75.050673, 40.051254 ], [ -75.050646, 40.051435 ], [ -75.05062, 40.051587 ], [ -75.050583, 40.05175 ], [ -75.050525, 40.05193 ], [ -75.050459, 40.052105 ], [ -75.050393, 40.052251 ], [ -75.05032, 40.052382 ], [ -75.050223, 40.052544 ], [ -75.050146, 40.052654 ], [ -75.050027, 40.052807 ], [ -75.049911, 40.05294 ], [ -75.049813, 40.053047 ], [ -75.049673, 40.053191 ], [ -75.049344, 40.053521 ], [ -75.048878, 40.053992 ], [ -75.047677, 40.055206 ], [ -75.047371, 40.055504 ], [ -75.046855, 40.056021 ], [ -75.046384, 40.056495 ], [ -75.045536, 40.057345 ], [ -75.045247, 40.057638 ], [ -75.045117, 40.057767 ], [ -75.044742, 40.058145 ], [ -75.044476, 40.058414 ], [ -75.044373, 40.05853 ], [ -75.044339, 40.058569 ], [ -75.044255, 40.058675 ], [ -75.044048, 40.058662 ], [ -75.043937, 40.058645 ], [ -75.043857, 40.058619 ], [ -75.043765, 40.058575 ], [ -75.043007, 40.05815 ], [ -75.042823, 40.058043 ], [ -75.042666, 40.057967 ], [ -75.042486, 40.057898 ], [ -75.042281, 40.057835 ], [ -75.04212, 40.057801 ], [ -75.041956, 40.057772 ], [ -75.041755, 40.057752 ], [ -75.041576, 40.057742 ], [ -75.04142, 40.057742 ], [ -75.041258, 40.057767 ], [ -75.041082, 40.057792 ], [ -75.040897, 40.057832 ], [ -75.040722, 40.057884 ], [ -75.040574, 40.057933 ], [ -75.040435, 40.057991 ], [ -75.040207, 40.058105 ], [ -75.040031, 40.058187 ], [ -75.039857, 40.058247 ], [ -75.0397, 40.058292 ], [ -75.039498, 40.058347 ], [ -75.039293, 40.058386 ], [ -75.03902, 40.058419 ], [ -75.038775, 40.058434 ], [ -75.038578, 40.058431 ], [ -75.038286, 40.058409 ], [ -75.038138, 40.058394 ], [ -75.037965, 40.058358 ], [ -75.037781, 40.058305 ], [ -75.037474, 40.058209 ], [ -75.036853, 40.058007 ], [ -75.036427, 40.057853 ], [ -75.036267, 40.057796 ], [ -75.036075, 40.057728 ], [ -75.035682, 40.057582 ], [ -75.035423, 40.057477 ], [ -75.034841, 40.057251 ], [ -75.034816, 40.057241 ], [ -75.034424, 40.057106 ], [ -75.034322, 40.057066 ], [ -75.034129, 40.057001 ], [ -75.033891, 40.05693 ], [ -75.033652, 40.056864 ], [ -75.033436, 40.056819 ], [ -75.033205, 40.05678 ], [ -75.032918, 40.056746 ], [ -75.03279, 40.05673 ], [ -75.031904, 40.056658 ], [ -75.031673, 40.056636 ], [ -75.031508, 40.056621 ], [ -75.031105, 40.056584 ], [ -75.029857, 40.056477 ], [ -75.029579, 40.056453 ], [ -75.029167, 40.056419 ], [ -75.029055, 40.05641 ], [ -75.02902, 40.056334 ], [ -75.028966, 40.05627 ], [ -75.028877, 40.056211 ], [ -75.02878, 40.056176 ], [ -75.028669, 40.056159 ], [ -75.028565, 40.05616 ], [ -75.028483, 40.056188 ], [ -75.028408, 40.056232 ], [ -75.028362, 40.05627 ], [ -75.028319, 40.056328 ], [ -75.028294, 40.056373 ], [ -75.028279, 40.056419 ], [ -75.028267, 40.056475 ], [ -75.028269, 40.056536 ], [ -75.028284, 40.056582 ], [ -75.028306, 40.056622 ], [ -75.028337, 40.056658 ], [ -75.028376, 40.056695 ], [ -75.028416, 40.056723 ], [ -75.027525, 40.057621 ], [ -75.026888, 40.058267 ], [ -75.026376, 40.058776 ], [ -75.025483, 40.059641 ], [ -75.024807, 40.060319 ], [ -75.024745, 40.060385 ], [ -75.02469, 40.060438 ], [ -75.024194, 40.060931 ], [ -75.023907, 40.061198 ], [ -75.023752, 40.061346 ], [ -75.022767, 40.062334 ], [ -75.022476, 40.062614 ], [ -75.021993, 40.063113 ], [ -75.021981, 40.063088 ], [ -75.021806, 40.062754 ], [ -75.021731, 40.062608 ], [ -75.021673, 40.0625 ], [ -75.021467, 40.062115 ], [ -75.021402, 40.061986 ], [ -75.021329, 40.06187 ], [ -75.021258, 40.061772 ], [ -75.021177, 40.061679 ], [ -75.021022, 40.061535 ], [ -75.020901, 40.061448 ], [ -75.020783, 40.061372 ], [ -75.020618, 40.061274 ], [ -75.020176, 40.061008 ], [ -75.020016, 40.060909 ], [ -75.01996, 40.060874 ], [ -75.019803, 40.060786 ], [ -75.019453, 40.060572 ], [ -75.018383, 40.059925 ], [ -75.017716, 40.060545 ], [ -75.017489, 40.060736 ], [ -75.01731, 40.060884 ], [ -75.017113, 40.061025 ], [ -75.016903, 40.061167 ], [ -75.0167, 40.06128 ], [ -75.016463, 40.061395 ], [ -75.016292, 40.061471 ], [ -75.016112, 40.061547 ], [ -75.015951, 40.061611 ], [ -75.015818, 40.061656 ], [ -75.01568, 40.061699 ], [ -75.015541, 40.061735 ], [ -75.015365, 40.061775 ], [ -75.015153, 40.061816 ], [ -75.014946, 40.061854 ], [ -75.013601, 40.06205 ], [ -75.012743, 40.062182 ], [ -75.011868, 40.062312 ], [ -75.011608, 40.062357 ], [ -75.010998, 40.062453 ], [ -75.010607, 40.062511 ], [ -75.010401, 40.062536 ], [ -75.01019, 40.06255 ], [ -75.009557, 40.062556 ], [ -75.009428, 40.062557 ], [ -75.009425, 40.063483 ], [ -75.009425, 40.063798 ], [ -75.009423, 40.064434 ], [ -75.009417, 40.064934 ], [ -75.009415, 40.065132 ], [ -75.009418, 40.065245 ], [ -75.009402, 40.065442 ], [ -75.009379, 40.065655 ], [ -75.009328, 40.065903 ], [ -75.009257, 40.066165 ], [ -75.009215, 40.066306 ], [ -75.009169, 40.066449 ], [ -75.009102, 40.066652 ], [ -75.009017, 40.066871 ], [ -75.008831, 40.067368 ], [ -75.008811, 40.067423 ], [ -75.008779, 40.067501 ], [ -75.008701, 40.067716 ], [ -75.008692, 40.067736 ], [ -75.008645, 40.067855 ], [ -75.008605, 40.067944 ], [ -75.008582, 40.067983 ], [ -75.008551, 40.068041 ], [ -75.008494, 40.068132 ], [ -75.00844, 40.068218 ], [ -75.008393, 40.068286 ], [ -75.008376, 40.068313 ], [ -75.008324, 40.068383 ], [ -75.008248, 40.068472 ], [ -75.008191, 40.068542 ], [ -75.00814, 40.0686 ], [ -75.008085, 40.068653 ], [ -75.008001, 40.068728 ], [ -75.007937, 40.06878 ], [ -75.007852, 40.068839 ], [ -75.007637, 40.06898 ], [ -75.007336, 40.069163 ], [ -75.007314, 40.069176 ], [ -75.007246, 40.069216 ], [ -75.007213, 40.069233 ], [ -75.007184, 40.069248 ], [ -75.007162, 40.069258 ], [ -75.006834, 40.069441 ], [ -75.006366, 40.069705 ], [ -75.005695, 40.070105 ], [ -75.005251, 40.07037 ], [ -75.004883, 40.070586 ], [ -75.004267, 40.070944 ], [ -75.003943, 40.071149 ], [ -75.00374, 40.071292 ], [ -75.003551, 40.071441 ], [ -75.003367, 40.071599 ], [ -75.003204, 40.071754 ], [ -75.00307, 40.071906 ], [ -75.002872, 40.072144 ], [ -75.002796, 40.07225 ], [ -75.002715, 40.072373 ], [ -75.002665, 40.072455 ], [ -75.002606, 40.072548 ], [ -75.002513, 40.072716 ], [ -75.002412, 40.072939 ], [ -75.002371, 40.073054 ], [ -75.002335, 40.073153 ], [ -75.002274, 40.073346 ], [ -75.00226, 40.073398 ], [ -75.002259, 40.073404 ], [ -75.002218, 40.07357 ], [ -75.002152, 40.073856 ], [ -75.002096, 40.074103 ], [ -75.002071, 40.074172 ], [ -75.001975, 40.074394 ], [ -75.001892, 40.074557 ], [ -75.001824, 40.074678 ], [ -75.001742, 40.074804 ], [ -75.001599, 40.075001 ], [ -75.001488, 40.075136 ], [ -75.00092, 40.075821 ], [ -75.000329, 40.076533 ], [ -74.999518, 40.077498 ], [ -74.998792, 40.078356 ], [ -74.998487, 40.078719 ], [ -74.998395, 40.078663 ], [ -74.998305, 40.078614 ], [ -74.997706, 40.078315 ], [ -74.996802, 40.077878 ], [ -74.996524, 40.077743 ], [ -74.996004, 40.077476 ], [ -74.995292, 40.077152 ], [ -74.995111, 40.077098 ], [ -74.994858, 40.077028 ], [ -74.994644, 40.07698 ], [ -74.99444, 40.076941 ], [ -74.994028, 40.076871 ], [ -74.99365, 40.076811 ], [ -74.993267, 40.076749 ], [ -74.992798, 40.076681 ], [ -74.992471, 40.076631 ], [ -74.992212, 40.076589 ], [ -74.99202, 40.07655 ], [ -74.991822, 40.076496 ], [ -74.991633, 40.076442 ], [ -74.991522, 40.076403 ], [ -74.991396, 40.076355 ], [ -74.991261, 40.076294 ], [ -74.991104, 40.076217 ], [ -74.990946, 40.07613 ], [ -74.99077, 40.07602 ], [ -74.990636, 40.075928 ], [ -74.990511, 40.075834 ], [ -74.990343, 40.075685 ], [ -74.98989, 40.075265 ], [ -74.989275, 40.074698 ], [ -74.988439, 40.075232 ], [ -74.987887, 40.075581 ], [ -74.987749, 40.075674 ], [ -74.987653, 40.075744 ], [ -74.987612, 40.075778 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075962 ], [ -74.987004, 40.076312 ], [ -74.986419, 40.076829 ], [ -74.985835, 40.077317 ], [ -74.985325, 40.077746 ], [ -74.984715, 40.078448 ], [ -74.984436, 40.07886 ], [ -74.984372, 40.078951 ], [ -74.984209, 40.079276 ], [ -74.984115, 40.079516 ], [ -74.983977, 40.07991 ], [ -74.983908, 40.080168 ], [ -74.983877, 40.080486 ], [ -74.983886, 40.080997 ], [ -74.983865, 40.081657 ], [ -74.983876, 40.081866 ], [ -74.983892, 40.082324 ], [ -74.984335, 40.082316 ], [ -74.984693, 40.082312 ], [ -74.98514, 40.082316 ], [ -74.985585, 40.082332 ], [ -74.985757, 40.082344 ], [ -74.98597, 40.082361 ], [ -74.98615, 40.08238 ], [ -74.986556, 40.08244 ], [ -74.986792, 40.082481 ], [ -74.987049, 40.082532 ], [ -74.987233, 40.082571 ], [ -74.987402, 40.082609 ], [ -74.987561, 40.08265 ], [ -74.98803, 40.082795 ], [ -74.988306, 40.082882 ], [ -74.988478, 40.082944 ], [ -74.988753, 40.083062 ], [ -74.988961, 40.083165 ], [ -74.989116, 40.083252 ], [ -74.989249, 40.083338 ], [ -74.98939, 40.083442 ], [ -74.989507, 40.083537 ], [ -74.989662, 40.083673 ], [ -74.989813, 40.083824 ], [ -74.989969, 40.083995 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984252, 40.089961 ], [ -74.984275, 40.08998 ], [ -74.984292, 40.089996 ], [ -74.984673, 40.090305 ], [ -74.98481, 40.090413 ], [ -74.985191, 40.090733 ], [ -74.986434, 40.091757 ], [ -74.987409, 40.09256 ], [ -74.988488, 40.093453 ], [ -74.988645, 40.093583 ], [ -74.98912, 40.093976 ], [ -74.989438, 40.094248 ], [ -74.989691, 40.094463 ], [ -74.990287, 40.094964 ], [ -74.990744, 40.095358 ], [ -74.990974, 40.095553 ], [ -74.991252, 40.095789 ], [ -74.991586, 40.096045 ], [ -74.991864, 40.096268 ], [ -74.99205, 40.096416 ], [ -74.992421, 40.096713 ], [ -74.993226, 40.097349 ], [ -74.993803, 40.097818 ], [ -74.994683, 40.098524 ], [ -74.994857, 40.098664 ], [ -74.994954, 40.098749 ], [ -74.995449, 40.099181 ], [ -74.996202, 40.099835 ], [ -74.996841, 40.100398 ], [ -74.997091, 40.100643 ], [ -74.997413, 40.100953 ], [ -74.997706, 40.101217 ], [ -74.997858, 40.101351 ], [ -74.998001, 40.101485 ], [ -74.998145, 40.101614 ], [ -74.998223, 40.101689 ], [ -74.998299, 40.101771 ], [ -74.998387, 40.10187 ], [ -74.998459, 40.101963 ], [ -74.998571, 40.102112 ], [ -74.998672, 40.102242 ], [ -74.998762, 40.102342 ], [ -74.998828, 40.10241 ], [ -74.998896, 40.10248 ], [ -74.998984, 40.102557 ], [ -74.999073, 40.102627 ], [ -74.999183, 40.102716 ], [ -74.99941, 40.1029 ], [ -74.9998, 40.103218 ], [ -74.999882, 40.103285 ], [ -75.000975, 40.104189 ], [ -75.001298, 40.104473 ], [ -75.001398, 40.104552 ], [ -75.001334, 40.104594 ], [ -75.001263, 40.104641 ], [ -75.001179, 40.104698 ], [ -75.000712, 40.105022 ], [ -75.000047, 40.105486 ], [ -74.999532, 40.105838 ], [ -74.998764, 40.10637 ], [ -74.998387, 40.106632 ], [ -74.997593, 40.107178 ], [ -74.997151, 40.107473 ], [ -74.996822, 40.107698 ], [ -74.996715, 40.107769 ], [ -74.996663, 40.107805 ], [ -74.996524, 40.1079 ], [ -74.996492, 40.107919 ], [ -74.996417, 40.107969 ], [ -74.996274, 40.10807 ], [ -74.996175, 40.108138 ], [ -74.995734, 40.108364 ], [ -74.995705, 40.108377 ], [ -74.995587, 40.108424 ], [ -74.995457, 40.108459 ], [ -74.995364, 40.108475 ], [ -74.99526, 40.108481 ], [ -74.995161, 40.108478 ], [ -74.995069, 40.108463 ], [ -74.994981, 40.108436 ], [ -74.994903, 40.1084 ], [ -74.994832, 40.108353 ], [ -74.994773, 40.108298 ], [ -74.994728, 40.108236 ], [ -74.994695, 40.10817 ], [ -74.994676, 40.1081 ], [ -74.994671, 40.108018 ], [ -74.994677, 40.107977 ], [ -74.994681, 40.107938 ], [ -74.994691, 40.107883 ], [ -74.994705, 40.107838 ], [ -74.994739, 40.107749 ], [ -74.994787, 40.107665 ], [ -74.994847, 40.107585 ], [ -74.994917, 40.107513 ], [ -74.994987, 40.107455 ], [ -74.995063, 40.107411 ], [ -74.99514, 40.107378 ], [ -74.995224, 40.107358 ], [ -74.995318, 40.107352 ], [ -74.995417, 40.107355 ], [ -74.995528, 40.107372 ], [ -74.995652, 40.107402 ], [ -74.995774, 40.107441 ], [ -74.995834, 40.107465 ], [ -74.99589, 40.107488 ], [ -74.995995, 40.107544 ], [ -74.996089, 40.107617 ], [ -74.996243, 40.107754 ], [ -74.996326, 40.107811 ], [ -74.996456, 40.107894 ], [ -74.996492, 40.107919 ], [ -74.996558, 40.107951 ], [ -74.996591, 40.107968 ], [ -74.996616, 40.107985 ], [ -74.996648, 40.10801 ], [ -74.996741, 40.108089 ], [ -74.996804, 40.108143 ], [ -74.996901, 40.108224 ], [ -74.996957, 40.108264 ], [ -74.997021, 40.108315 ], [ -74.997148, 40.108416 ], [ -74.997349, 40.108574 ], [ -74.997406, 40.108619 ], [ -74.997541, 40.108736 ], [ -74.998182, 40.109286 ], [ -74.998531, 40.109577 ], [ -74.999287, 40.110199 ], [ -74.999751, 40.110578 ], [ -75.000304, 40.111041 ], [ -75.000655, 40.111326 ], [ -75.000768, 40.111413 ], [ -75.000817, 40.111459 ], [ -75.000871, 40.111433 ], [ -75.000931, 40.111415 ], [ -75.001455, 40.111249 ], [ -75.00218, 40.111039 ], [ -75.002262, 40.111018 ], [ -75.002337, 40.111005 ], [ -75.002411, 40.110994 ], [ -75.00249, 40.110986 ], [ -75.002563, 40.110982 ], [ -75.002642, 40.110979 ], [ -75.002732, 40.110983 ], [ -75.002847, 40.11099 ], [ -75.002926, 40.110987 ], [ -75.003002, 40.110982 ], [ -75.003075, 40.110973 ], [ -75.003157, 40.110957 ], [ -75.003169, 40.110954 ], [ -75.003242, 40.110938 ], [ -75.003352, 40.110914 ], [ -75.00356, 40.110859 ], [ -75.003619, 40.110959 ], [ -75.003606, 40.111024 ], [ -75.003608, 40.111047 ], [ -75.003616, 40.111075 ], [ -75.003885, 40.111658 ], [ -75.004199, 40.11234 ], [ -75.004213, 40.112362 ], [ -75.004232, 40.112376 ], [ -75.004274, 40.112401 ], [ -75.004361, 40.112585 ], [ -75.004491, 40.112865 ], [ -75.005067, 40.114098 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307416", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.070305, 40.034814 ], [ -75.069448, 40.035007 ], [ -75.068815, 40.035154 ], [ -75.068208, 40.035292 ], [ -75.067433, 40.035467 ], [ -75.065311, 40.035956 ], [ -75.065054, 40.036016 ], [ -75.064791, 40.036077 ], [ -75.064331, 40.036187 ], [ -75.064205, 40.036215 ], [ -75.063642, 40.03635 ], [ -75.0633, 40.036446 ], [ -75.063111, 40.036508 ], [ -75.062951, 40.036567 ], [ -75.062805, 40.036628 ], [ -75.062642, 40.0367 ], [ -75.062417, 40.036806 ], [ -75.062184, 40.036927 ], [ -75.06208, 40.036988 ], [ -75.06199, 40.037042 ], [ -75.0619, 40.0371 ], [ -75.061787, 40.037178 ], [ -75.061683, 40.037253 ], [ -75.061574, 40.037332 ], [ -75.061481, 40.037409 ], [ -75.061347, 40.037526 ], [ -75.060954, 40.037884 ], [ -75.060108, 40.038678 ], [ -75.059671, 40.039086 ], [ -75.059518, 40.039228 ], [ -75.059024, 40.039684 ], [ -75.05892, 40.03978 ], [ -75.058431, 40.040231 ], [ -75.0576, 40.041003 ], [ -75.056981, 40.041591 ], [ -75.056345, 40.042176 ], [ -75.055843, 40.042648 ], [ -75.055603, 40.042878 ], [ -75.05543, 40.043046 ], [ -75.055003, 40.043459 ], [ -75.05463, 40.043799 ], [ -75.054065, 40.044315 ], [ -75.052729, 40.04555 ], [ -75.052027, 40.046203 ], [ -75.051667, 40.046603 ], [ -75.051554, 40.046746 ], [ -75.051486, 40.046842 ], [ -75.05146, 40.046881 ], [ -75.051367, 40.047024 ], [ -75.051275, 40.047188 ], [ -75.0512, 40.047323 ], [ -75.051109, 40.047508 ], [ -75.051031, 40.04772 ], [ -75.050969, 40.047951 ], [ -75.050889, 40.048456 ], [ -75.050854, 40.049014 ], [ -75.050847, 40.049122 ], [ -75.05083, 40.049337 ], [ -75.050821, 40.049473 ], [ -75.050764, 40.0502 ], [ -75.050759, 40.050258 ], [ -75.050735, 40.050573 ], [ -75.050711, 40.050872 ], [ -75.050673, 40.051254 ], [ -75.050646, 40.051435 ], [ -75.05062, 40.051587 ], [ -75.050583, 40.05175 ], [ -75.050525, 40.05193 ], [ -75.050459, 40.052105 ], [ -75.050393, 40.052251 ], [ -75.05032, 40.052382 ], [ -75.050223, 40.052544 ], [ -75.050146, 40.052654 ], [ -75.050027, 40.052807 ], [ -75.049911, 40.05294 ], [ -75.049813, 40.053047 ], [ -75.049673, 40.053191 ], [ -75.049344, 40.053521 ], [ -75.048878, 40.053992 ], [ -75.047677, 40.055206 ], [ -75.047371, 40.055504 ], [ -75.046855, 40.056021 ], [ -75.046384, 40.056495 ], [ -75.045536, 40.057345 ], [ -75.045247, 40.057638 ], [ -75.045117, 40.057767 ], [ -75.044742, 40.058145 ], [ -75.044476, 40.058414 ], [ -75.044373, 40.05853 ], [ -75.044339, 40.058569 ], [ -75.044255, 40.058675 ], [ -75.044048, 40.058662 ], [ -75.043937, 40.058645 ], [ -75.043857, 40.058619 ], [ -75.043765, 40.058575 ], [ -75.043007, 40.05815 ], [ -75.042823, 40.058043 ], [ -75.042666, 40.057967 ], [ -75.042486, 40.057898 ], [ -75.042281, 40.057835 ], [ -75.04212, 40.057801 ], [ -75.041956, 40.057772 ], [ -75.041755, 40.057752 ], [ -75.041576, 40.057742 ], [ -75.04142, 40.057742 ], [ -75.041258, 40.057767 ], [ -75.041082, 40.057792 ], [ -75.040897, 40.057832 ], [ -75.040722, 40.057884 ], [ -75.040574, 40.057933 ], [ -75.040435, 40.057991 ], [ -75.040207, 40.058105 ], [ -75.040031, 40.058187 ], [ -75.039857, 40.058247 ], [ -75.0397, 40.058292 ], [ -75.039498, 40.058347 ], [ -75.039293, 40.058386 ], [ -75.03902, 40.058419 ], [ -75.038775, 40.058434 ], [ -75.038578, 40.058431 ], [ -75.038286, 40.058409 ], [ -75.038138, 40.058394 ], [ -75.037965, 40.058358 ], [ -75.037781, 40.058305 ], [ -75.037474, 40.058209 ], [ -75.036853, 40.058007 ], [ -75.036427, 40.057853 ], [ -75.036267, 40.057796 ], [ -75.036075, 40.057728 ], [ -75.035682, 40.057582 ], [ -75.035423, 40.057477 ], [ -75.034841, 40.057251 ], [ -75.034816, 40.057241 ], [ -75.034424, 40.057106 ], [ -75.034322, 40.057066 ], [ -75.034129, 40.057001 ], [ -75.033891, 40.05693 ], [ -75.033652, 40.056864 ], [ -75.033436, 40.056819 ], [ -75.033205, 40.05678 ], [ -75.032918, 40.056746 ], [ -75.03279, 40.05673 ], [ -75.031904, 40.056658 ], [ -75.031673, 40.056636 ], [ -75.031508, 40.056621 ], [ -75.031105, 40.056584 ], [ -75.029857, 40.056477 ], [ -75.029579, 40.056453 ], [ -75.029167, 40.056419 ], [ -75.029055, 40.05641 ], [ -75.02902, 40.056334 ], [ -75.028966, 40.05627 ], [ -75.028877, 40.056211 ], [ -75.02878, 40.056176 ], [ -75.028669, 40.056159 ], [ -75.028565, 40.05616 ], [ -75.028483, 40.056188 ], [ -75.028408, 40.056232 ], [ -75.028362, 40.05627 ], [ -75.028319, 40.056328 ], [ -75.028294, 40.056373 ], [ -75.028279, 40.056419 ], [ -75.028267, 40.056475 ], [ -75.028269, 40.056536 ], [ -75.028284, 40.056582 ], [ -75.028306, 40.056622 ], [ -75.028337, 40.056658 ], [ -75.028376, 40.056695 ], [ -75.028416, 40.056723 ], [ -75.027525, 40.057621 ], [ -75.026888, 40.058267 ], [ -75.026376, 40.058776 ], [ -75.025483, 40.059641 ], [ -75.024807, 40.060319 ], [ -75.024745, 40.060385 ], [ -75.02469, 40.060438 ], [ -75.024194, 40.060931 ], [ -75.023907, 40.061198 ], [ -75.023752, 40.061346 ], [ -75.022767, 40.062334 ], [ -75.022476, 40.062614 ], [ -75.021993, 40.063113 ], [ -75.021981, 40.063088 ], [ -75.021806, 40.062754 ], [ -75.021731, 40.062608 ], [ -75.021673, 40.0625 ], [ -75.021467, 40.062115 ], [ -75.021402, 40.061986 ], [ -75.021329, 40.06187 ], [ -75.021258, 40.061772 ], [ -75.021177, 40.061679 ], [ -75.021022, 40.061535 ], [ -75.020901, 40.061448 ], [ -75.020783, 40.061372 ], [ -75.020618, 40.061274 ], [ -75.020176, 40.061008 ], [ -75.020016, 40.060909 ], [ -75.01996, 40.060874 ], [ -75.019803, 40.060786 ], [ -75.019453, 40.060572 ], [ -75.018383, 40.059925 ], [ -75.017716, 40.060545 ], [ -75.017489, 40.060736 ], [ -75.01731, 40.060884 ], [ -75.017113, 40.061025 ], [ -75.016903, 40.061167 ], [ -75.0167, 40.06128 ], [ -75.016463, 40.061395 ], [ -75.016292, 40.061471 ], [ -75.016112, 40.061547 ], [ -75.015951, 40.061611 ], [ -75.015818, 40.061656 ], [ -75.01568, 40.061699 ], [ -75.015541, 40.061735 ], [ -75.015365, 40.061775 ], [ -75.015153, 40.061816 ], [ -75.014946, 40.061854 ], [ -75.013601, 40.06205 ], [ -75.012743, 40.062182 ], [ -75.011868, 40.062312 ], [ -75.011608, 40.062357 ], [ -75.010998, 40.062453 ], [ -75.010607, 40.062511 ], [ -75.010401, 40.062536 ], [ -75.01019, 40.06255 ], [ -75.009557, 40.062556 ], [ -75.009428, 40.062557 ], [ -75.009425, 40.063483 ], [ -75.009425, 40.063798 ], [ -75.009423, 40.064434 ], [ -75.009417, 40.064934 ], [ -75.009415, 40.065132 ], [ -75.009418, 40.065245 ], [ -75.009402, 40.065442 ], [ -75.009379, 40.065655 ], [ -75.009328, 40.065903 ], [ -75.009257, 40.066165 ], [ -75.009215, 40.066306 ], [ -75.009169, 40.066449 ], [ -75.009102, 40.066652 ], [ -75.009017, 40.066871 ], [ -75.008831, 40.067368 ], [ -75.008811, 40.067423 ], [ -75.008779, 40.067501 ], [ -75.008701, 40.067716 ], [ -75.008692, 40.067736 ], [ -75.008645, 40.067855 ], [ -75.008605, 40.067944 ], [ -75.008582, 40.067983 ], [ -75.008551, 40.068041 ], [ -75.008494, 40.068132 ], [ -75.00844, 40.068218 ], [ -75.008393, 40.068286 ], [ -75.008376, 40.068313 ], [ -75.008324, 40.068383 ], [ -75.008248, 40.068472 ], [ -75.008191, 40.068542 ], [ -75.00814, 40.0686 ], [ -75.008085, 40.068653 ], [ -75.008001, 40.068728 ], [ -75.007937, 40.06878 ], [ -75.007852, 40.068839 ], [ -75.007637, 40.06898 ], [ -75.007336, 40.069163 ], [ -75.007314, 40.069176 ], [ -75.007246, 40.069216 ], [ -75.007213, 40.069233 ], [ -75.007184, 40.069248 ], [ -75.007162, 40.069258 ], [ -75.006834, 40.069441 ], [ -75.006366, 40.069705 ], [ -75.005695, 40.070105 ], [ -75.005251, 40.07037 ], [ -75.004883, 40.070586 ], [ -75.004267, 40.070944 ], [ -75.003943, 40.071149 ], [ -75.00374, 40.071292 ], [ -75.003551, 40.071441 ], [ -75.003367, 40.071599 ], [ -75.003204, 40.071754 ], [ -75.00307, 40.071906 ], [ -75.002872, 40.072144 ], [ -75.002796, 40.07225 ], [ -75.002715, 40.072373 ], [ -75.002665, 40.072455 ], [ -75.002606, 40.072548 ], [ -75.002513, 40.072716 ], [ -75.002412, 40.072939 ], [ -75.002371, 40.073054 ], [ -75.002335, 40.073153 ], [ -75.002274, 40.073346 ], [ -75.00226, 40.073398 ], [ -75.002259, 40.073404 ], [ -75.002218, 40.07357 ], [ -75.002152, 40.073856 ], [ -75.002096, 40.074103 ], [ -75.002071, 40.074172 ], [ -75.001975, 40.074394 ], [ -75.001892, 40.074557 ], [ -75.001824, 40.074678 ], [ -75.001742, 40.074804 ], [ -75.001599, 40.075001 ], [ -75.001488, 40.075136 ], [ -75.00092, 40.075821 ], [ -75.000329, 40.076533 ], [ -74.999518, 40.077498 ], [ -74.998792, 40.078356 ], [ -74.998487, 40.078719 ], [ -74.997909, 40.079411 ], [ -74.997727, 40.079609 ], [ -74.997622, 40.079707 ], [ -74.997581, 40.079746 ], [ -74.997414, 40.079887 ], [ -74.997238, 40.080027 ], [ -74.996783, 40.080292 ], [ -74.996591, 40.080397 ], [ -74.995809, 40.080845 ], [ -74.994875, 40.081389 ], [ -74.994773, 40.081447 ], [ -74.994351, 40.081689 ], [ -74.993917, 40.081945 ], [ -74.993017, 40.082468 ], [ -74.992114, 40.082983 ], [ -74.991665, 40.083234 ], [ -74.991252, 40.083476 ], [ -74.990811, 40.083725 ], [ -74.990538, 40.083871 ], [ -74.99052, 40.083881 ], [ -74.990327, 40.083976 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984034, 40.09007 ], [ -74.983822, 40.090271 ], [ -74.983577, 40.090519 ], [ -74.983069, 40.091066 ], [ -74.98294, 40.091201 ], [ -74.982871, 40.09128 ], [ -74.982662, 40.091488 ], [ -74.982633, 40.091516 ], [ -74.982481, 40.091659 ], [ -74.982385, 40.091744 ], [ -74.982295, 40.091828 ], [ -74.982134, 40.091966 ], [ -74.981855, 40.092183 ], [ -74.981535, 40.092442 ], [ -74.981383, 40.092559 ], [ -74.980593, 40.093191 ], [ -74.98051, 40.093255 ], [ -74.98015, 40.093539 ], [ -74.97997, 40.093682 ], [ -74.979861, 40.093768 ], [ -74.979773, 40.093835 ], [ -74.979672, 40.093907 ], [ -74.979576, 40.093978 ], [ -74.979496, 40.094044 ], [ -74.979316, 40.094184 ], [ -74.979101, 40.094341 ], [ -74.978225, 40.094972 ], [ -74.977487, 40.095506 ], [ -74.977198, 40.095702 ], [ -74.977015, 40.095827 ], [ -74.976878, 40.095914 ], [ -74.97679, 40.09596 ], [ -74.976685, 40.096008 ], [ -74.976449, 40.096112 ], [ -74.976149, 40.096243 ], [ -74.975783, 40.096404 ], [ -74.975811, 40.096446 ], [ -74.975837, 40.096486 ], [ -74.976023, 40.096782 ], [ -74.976051, 40.096841 ], [ -74.976074, 40.096897 ], [ -74.976089, 40.096956 ], [ -74.976103, 40.09702 ], [ -74.976109, 40.097082 ], [ -74.976113, 40.09715 ], [ -74.976108, 40.097217 ], [ -74.976098, 40.097305 ], [ -74.976103, 40.097507 ], [ -74.976008, 40.097767 ], [ -74.975973, 40.097828 ], [ -74.975876, 40.097992 ], [ -74.975653, 40.098237 ], [ -74.975417, 40.098456 ], [ -74.975282, 40.098547 ], [ -74.974755, 40.098903 ], [ -74.974117, 40.099354 ], [ -74.97404, 40.099408 ], [ -74.973559, 40.099696 ], [ -74.973406, 40.099776 ], [ -74.97267, 40.100176 ], [ -74.971908, 40.100483 ], [ -74.971325, 40.100668 ], [ -74.971116, 40.100719 ], [ -74.970855, 40.100784 ], [ -74.970385, 40.100865 ], [ -74.97003, 40.100902 ], [ -74.969849, 40.100921 ], [ -74.968938, 40.100936 ], [ -74.968401, 40.100912 ], [ -74.967537, 40.100814 ], [ -74.966663, 40.100578 ], [ -74.966223, 40.100437 ], [ -74.965773, 40.100228 ], [ -74.965437, 40.099995 ], [ -74.965314, 40.099879 ], [ -74.965207, 40.099779 ], [ -74.964996, 40.099523 ], [ -74.964897, 40.099343 ], [ -74.964792, 40.099067 ], [ -74.964775, 40.098977 ], [ -74.964739, 40.098802 ], [ -74.964709, 40.097797 ], [ -74.9647, 40.097297 ], [ -74.964687, 40.096197 ], [ -74.964686, 40.095886 ], [ -74.9647, 40.095779 ], [ -74.964743, 40.095624 ], [ -74.964955, 40.095327 ], [ -74.96461, 40.095104 ], [ -74.964214, 40.094822 ], [ -74.963973, 40.094654 ], [ -74.963593, 40.094398 ], [ -74.963129, 40.094083 ], [ -74.962923, 40.093941 ], [ -74.962169, 40.093424 ], [ -74.962117, 40.093382 ], [ -74.962075, 40.093343 ], [ -74.961882, 40.09347 ], [ -74.961666, 40.093619 ], [ -74.96146, 40.093776 ], [ -74.961388, 40.093835 ], [ -74.96137, 40.093851 ], [ -74.961137, 40.094061 ], [ -74.96004, 40.095052 ], [ -74.959823, 40.095254 ], [ -74.95971, 40.09536 ], [ -74.959632, 40.095442 ], [ -74.959553, 40.095532 ], [ -74.959481, 40.095624 ], [ -74.959409, 40.09571 ], [ -74.959342, 40.095793 ], [ -74.959273, 40.095891 ], [ -74.959212, 40.095977 ], [ -74.959057, 40.096211 ], [ -74.958705, 40.096748 ], [ -74.958636, 40.096861 ], [ -74.958567, 40.096968 ], [ -74.95845, 40.097149 ], [ -74.958141, 40.097619 ], [ -74.958089, 40.097685 ], [ -74.958029, 40.097761 ], [ -74.957991, 40.097814 ], [ -74.957861, 40.09797 ], [ -74.957758, 40.098092 ], [ -74.957627, 40.098244 ], [ -74.957527, 40.098346 ], [ -74.957389, 40.098487 ], [ -74.957341, 40.098538 ], [ -74.957311, 40.09864 ], [ -74.956971, 40.098954 ], [ -74.956923, 40.098999 ], [ -74.956754, 40.099148 ], [ -74.956485, 40.099385 ], [ -74.956437, 40.099428 ], [ -74.956074, 40.099754 ], [ -74.955618, 40.100138 ], [ -74.955497, 40.100171 ], [ -74.955066, 40.100553 ], [ -74.954861, 40.100728 ], [ -74.954452, 40.101079 ], [ -74.954403, 40.101124 ], [ -74.95432, 40.101202 ], [ -74.954213, 40.101297 ], [ -74.95379, 40.101673 ], [ -74.953172, 40.102243 ], [ -74.952717, 40.102692 ], [ -74.952523, 40.102899 ], [ -74.952212, 40.103226 ], [ -74.951826, 40.103636 ], [ -74.951514, 40.103972 ], [ -74.951383, 40.104132 ], [ -74.951369, 40.10424 ], [ -74.951295, 40.10431 ], [ -74.950977, 40.104636 ], [ -74.950857, 40.104745 ], [ -74.950799, 40.1048 ], [ -74.950694, 40.10491 ], [ -74.950739, 40.105005 ], [ -74.950898, 40.105377 ], [ -74.95103, 40.105642 ], [ -74.951261, 40.106117 ], [ -74.951345, 40.106279 ], [ -74.951681, 40.107003 ], [ -74.95194, 40.107566 ], [ -74.952102, 40.107931 ], [ -74.952286, 40.108348 ], [ -74.952354, 40.108509 ], [ -74.952525, 40.108909 ], [ -74.95268, 40.109271 ], [ -74.952796, 40.109546 ], [ -74.9531, 40.110199 ], [ -74.953132, 40.110267 ], [ -74.953187, 40.110378 ], [ -74.953225, 40.110456 ], [ -74.953274, 40.110554 ], [ -74.953312, 40.110622 ], [ -74.953424, 40.110797 ], [ -74.953484, 40.110886 ], [ -74.953555, 40.110974 ], [ -74.953813, 40.111326 ], [ -74.954018, 40.111584 ], [ -74.954073, 40.111653 ], [ -74.954169, 40.111765 ], [ -74.954281, 40.111898 ], [ -74.954501, 40.112136 ], [ -74.954732, 40.112369 ], [ -74.954973, 40.112595 ], [ -74.955225, 40.112809 ], [ -74.955488, 40.11302 ], [ -74.955562, 40.113076 ], [ -74.956028, 40.11344 ], [ -74.956391, 40.113714 ], [ -74.956454, 40.113763 ], [ -74.956551, 40.113842 ], [ -74.956604, 40.113882 ], [ -74.956722, 40.113979 ], [ -74.956804, 40.114058 ], [ -74.956885, 40.114151 ], [ -74.957166, 40.114387 ], [ -74.957267, 40.114489 ], [ -74.957305, 40.11453 ], [ -74.957355, 40.114586 ], [ -74.957371, 40.114639 ], [ -74.957396, 40.1147 ], [ -74.957498, 40.114857 ], [ -74.957725, 40.115198 ], [ -74.957833, 40.115365 ], [ -74.957761, 40.115397 ], [ -74.957529, 40.115514 ], [ -74.957437, 40.11552 ], [ -74.957418, 40.115529 ], [ -74.957175, 40.11564 ], [ -74.957044, 40.115702 ], [ -74.956974, 40.115744 ], [ -74.956851, 40.115807 ], [ -74.956624, 40.115958 ], [ -74.956234, 40.116206 ], [ -74.956114, 40.116286 ], [ -74.955794, 40.116499 ], [ -74.955749, 40.116527 ], [ -74.9556, 40.11656 ], [ -74.955474, 40.116582 ], [ -74.955293, 40.116606 ], [ -74.955243, 40.1166 ], [ -74.955099, 40.116569 ], [ -74.955023, 40.116543 ], [ -74.954853, 40.116449 ], [ -74.9548, 40.116441 ], [ -74.954728, 40.116431 ], [ -74.954077, 40.116074 ], [ -74.953574, 40.11579 ], [ -74.953024, 40.115494 ], [ -74.952884, 40.115461 ], [ -74.952719, 40.115404 ], [ -74.952591, 40.115411 ], [ -74.952433, 40.115418 ], [ -74.95241, 40.115426 ], [ -74.952283, 40.115468 ], [ -74.952133, 40.115533 ], [ -74.952061, 40.115569 ], [ -74.951882, 40.11574 ], [ -74.951747, 40.115869 ], [ -74.951348, 40.116318 ], [ -74.950711, 40.117018 ], [ -74.952325, 40.117885 ], [ -74.952572, 40.117851 ], [ -74.952844, 40.11759 ], [ -74.953048, 40.117361 ], [ -74.953034, 40.117252 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307417", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.070305, 40.034814 ], [ -75.069448, 40.035007 ], [ -75.068815, 40.035154 ], [ -75.068208, 40.035292 ], [ -75.067433, 40.035467 ], [ -75.065311, 40.035956 ], [ -75.065054, 40.036016 ], [ -75.064791, 40.036077 ], [ -75.064331, 40.036187 ], [ -75.064205, 40.036215 ], [ -75.063642, 40.03635 ], [ -75.0633, 40.036446 ], [ -75.063111, 40.036508 ], [ -75.062951, 40.036567 ], [ -75.062805, 40.036628 ], [ -75.062642, 40.0367 ], [ -75.062417, 40.036806 ], [ -75.062184, 40.036927 ], [ -75.06208, 40.036988 ], [ -75.06199, 40.037042 ], [ -75.0619, 40.0371 ], [ -75.061787, 40.037178 ], [ -75.061683, 40.037253 ], [ -75.061574, 40.037332 ], [ -75.061481, 40.037409 ], [ -75.061347, 40.037526 ], [ -75.060954, 40.037884 ], [ -75.060108, 40.038678 ], [ -75.059671, 40.039086 ], [ -75.059518, 40.039228 ], [ -75.059024, 40.039684 ], [ -75.05892, 40.03978 ], [ -75.058431, 40.040231 ], [ -75.0576, 40.041003 ], [ -75.056981, 40.041591 ], [ -75.056345, 40.042176 ], [ -75.055843, 40.042648 ], [ -75.055603, 40.042878 ], [ -75.05543, 40.043046 ], [ -75.055003, 40.043459 ], [ -75.05463, 40.043799 ], [ -75.054065, 40.044315 ], [ -75.052729, 40.04555 ], [ -75.052027, 40.046203 ], [ -75.051667, 40.046603 ], [ -75.051554, 40.046746 ], [ -75.051486, 40.046842 ], [ -75.05146, 40.046881 ], [ -75.051367, 40.047024 ], [ -75.051275, 40.047188 ], [ -75.0512, 40.047323 ], [ -75.051109, 40.047508 ], [ -75.051031, 40.04772 ], [ -75.050969, 40.047951 ], [ -75.050889, 40.048456 ], [ -75.050854, 40.049014 ], [ -75.050847, 40.049122 ], [ -75.05083, 40.049337 ], [ -75.050821, 40.049473 ], [ -75.050764, 40.0502 ], [ -75.050759, 40.050258 ], [ -75.050735, 40.050573 ], [ -75.050711, 40.050872 ], [ -75.050673, 40.051254 ], [ -75.050646, 40.051435 ], [ -75.05062, 40.051587 ], [ -75.050583, 40.05175 ], [ -75.050525, 40.05193 ], [ -75.050459, 40.052105 ], [ -75.050393, 40.052251 ], [ -75.05032, 40.052382 ], [ -75.050223, 40.052544 ], [ -75.050146, 40.052654 ], [ -75.050027, 40.052807 ], [ -75.049911, 40.05294 ], [ -75.049813, 40.053047 ], [ -75.049673, 40.053191 ], [ -75.049344, 40.053521 ], [ -75.048878, 40.053992 ], [ -75.047677, 40.055206 ], [ -75.047371, 40.055504 ], [ -75.046855, 40.056021 ], [ -75.046384, 40.056495 ], [ -75.045536, 40.057345 ], [ -75.045247, 40.057638 ], [ -75.045117, 40.057767 ], [ -75.044742, 40.058145 ], [ -75.044476, 40.058414 ], [ -75.044373, 40.05853 ], [ -75.044339, 40.058569 ], [ -75.044255, 40.058675 ], [ -75.044048, 40.058662 ], [ -75.043937, 40.058645 ], [ -75.043857, 40.058619 ], [ -75.043765, 40.058575 ], [ -75.043007, 40.05815 ], [ -75.042823, 40.058043 ], [ -75.042666, 40.057967 ], [ -75.042486, 40.057898 ], [ -75.042281, 40.057835 ], [ -75.04212, 40.057801 ], [ -75.041956, 40.057772 ], [ -75.041755, 40.057752 ], [ -75.041576, 40.057742 ], [ -75.04142, 40.057742 ], [ -75.041258, 40.057767 ], [ -75.041082, 40.057792 ], [ -75.040897, 40.057832 ], [ -75.040722, 40.057884 ], [ -75.040574, 40.057933 ], [ -75.040435, 40.057991 ], [ -75.040207, 40.058105 ], [ -75.040031, 40.058187 ], [ -75.039857, 40.058247 ], [ -75.0397, 40.058292 ], [ -75.039498, 40.058347 ], [ -75.039293, 40.058386 ], [ -75.03902, 40.058419 ], [ -75.038775, 40.058434 ], [ -75.038578, 40.058431 ], [ -75.038286, 40.058409 ], [ -75.038138, 40.058394 ], [ -75.037965, 40.058358 ], [ -75.037781, 40.058305 ], [ -75.037474, 40.058209 ], [ -75.036853, 40.058007 ], [ -75.036427, 40.057853 ], [ -75.036267, 40.057796 ], [ -75.036075, 40.057728 ], [ -75.035682, 40.057582 ], [ -75.035423, 40.057477 ], [ -75.034841, 40.057251 ], [ -75.034816, 40.057241 ], [ -75.034424, 40.057106 ], [ -75.034322, 40.057066 ], [ -75.034129, 40.057001 ], [ -75.033891, 40.05693 ], [ -75.033652, 40.056864 ], [ -75.033436, 40.056819 ], [ -75.033205, 40.05678 ], [ -75.032918, 40.056746 ], [ -75.03279, 40.05673 ], [ -75.031904, 40.056658 ], [ -75.031673, 40.056636 ], [ -75.031508, 40.056621 ], [ -75.031105, 40.056584 ], [ -75.029857, 40.056477 ], [ -75.029579, 40.056453 ], [ -75.029167, 40.056419 ], [ -75.029055, 40.05641 ], [ -75.02902, 40.056334 ], [ -75.028966, 40.05627 ], [ -75.028877, 40.056211 ], [ -75.02878, 40.056176 ], [ -75.028669, 40.056159 ], [ -75.028565, 40.05616 ], [ -75.028483, 40.056188 ], [ -75.028408, 40.056232 ], [ -75.028362, 40.05627 ], [ -75.028319, 40.056328 ], [ -75.028294, 40.056373 ], [ -75.028279, 40.056419 ], [ -75.028267, 40.056475 ], [ -75.028269, 40.056536 ], [ -75.028284, 40.056582 ], [ -75.028306, 40.056622 ], [ -75.028337, 40.056658 ], [ -75.028376, 40.056695 ], [ -75.028416, 40.056723 ], [ -75.027525, 40.057621 ], [ -75.026888, 40.058267 ], [ -75.026376, 40.058776 ], [ -75.025483, 40.059641 ], [ -75.024807, 40.060319 ], [ -75.024745, 40.060385 ], [ -75.02469, 40.060438 ], [ -75.024194, 40.060931 ], [ -75.023907, 40.061198 ], [ -75.023752, 40.061346 ], [ -75.022767, 40.062334 ], [ -75.022476, 40.062614 ], [ -75.021993, 40.063113 ], [ -75.021981, 40.063088 ], [ -75.021806, 40.062754 ], [ -75.021731, 40.062608 ], [ -75.021673, 40.0625 ], [ -75.021467, 40.062115 ], [ -75.021402, 40.061986 ], [ -75.021329, 40.06187 ], [ -75.021258, 40.061772 ], [ -75.021177, 40.061679 ], [ -75.021022, 40.061535 ], [ -75.020901, 40.061448 ], [ -75.020783, 40.061372 ], [ -75.020618, 40.061274 ], [ -75.020176, 40.061008 ], [ -75.020016, 40.060909 ], [ -75.01996, 40.060874 ], [ -75.019803, 40.060786 ], [ -75.019453, 40.060572 ], [ -75.018383, 40.059925 ], [ -75.017716, 40.060545 ], [ -75.017489, 40.060736 ], [ -75.01731, 40.060884 ], [ -75.017113, 40.061025 ], [ -75.016903, 40.061167 ], [ -75.0167, 40.06128 ], [ -75.016463, 40.061395 ], [ -75.016292, 40.061471 ], [ -75.016112, 40.061547 ], [ -75.015951, 40.061611 ], [ -75.015818, 40.061656 ], [ -75.01568, 40.061699 ], [ -75.015541, 40.061735 ], [ -75.015365, 40.061775 ], [ -75.015153, 40.061816 ], [ -75.014946, 40.061854 ], [ -75.013601, 40.06205 ], [ -75.012743, 40.062182 ], [ -75.011868, 40.062312 ], [ -75.011608, 40.062357 ], [ -75.010998, 40.062453 ], [ -75.010607, 40.062511 ], [ -75.010401, 40.062536 ], [ -75.01019, 40.06255 ], [ -75.009557, 40.062556 ], [ -75.009428, 40.062557 ], [ -75.009425, 40.063483 ], [ -75.009425, 40.063798 ], [ -75.009423, 40.064434 ], [ -75.009417, 40.064934 ], [ -75.009415, 40.065132 ], [ -75.009418, 40.065245 ], [ -75.009402, 40.065442 ], [ -75.009379, 40.065655 ], [ -75.009328, 40.065903 ], [ -75.009257, 40.066165 ], [ -75.009215, 40.066306 ], [ -75.009169, 40.066449 ], [ -75.009102, 40.066652 ], [ -75.009017, 40.066871 ], [ -75.008831, 40.067368 ], [ -75.008811, 40.067423 ], [ -75.008779, 40.067501 ], [ -75.008701, 40.067716 ], [ -75.008692, 40.067736 ], [ -75.008645, 40.067855 ], [ -75.008605, 40.067944 ], [ -75.008582, 40.067983 ], [ -75.008551, 40.068041 ], [ -75.008494, 40.068132 ], [ -75.00844, 40.068218 ], [ -75.008393, 40.068286 ], [ -75.008376, 40.068313 ], [ -75.008324, 40.068383 ], [ -75.008248, 40.068472 ], [ -75.008191, 40.068542 ], [ -75.00814, 40.0686 ], [ -75.008085, 40.068653 ], [ -75.008001, 40.068728 ], [ -75.007937, 40.06878 ], [ -75.007852, 40.068839 ], [ -75.007637, 40.06898 ], [ -75.007336, 40.069163 ], [ -75.007314, 40.069176 ], [ -75.007246, 40.069216 ], [ -75.007213, 40.069233 ], [ -75.007184, 40.069248 ], [ -75.007162, 40.069258 ], [ -75.006834, 40.069441 ], [ -75.006366, 40.069705 ], [ -75.005695, 40.070105 ], [ -75.005251, 40.07037 ], [ -75.004883, 40.070586 ], [ -75.004267, 40.070944 ], [ -75.003943, 40.071149 ], [ -75.00374, 40.071292 ], [ -75.003551, 40.071441 ], [ -75.003367, 40.071599 ], [ -75.003204, 40.071754 ], [ -75.00307, 40.071906 ], [ -75.002872, 40.072144 ], [ -75.002796, 40.07225 ], [ -75.002715, 40.072373 ], [ -75.002665, 40.072455 ], [ -75.002606, 40.072548 ], [ -75.002513, 40.072716 ], [ -75.002412, 40.072939 ], [ -75.002371, 40.073054 ], [ -75.002335, 40.073153 ], [ -75.002274, 40.073346 ], [ -75.00226, 40.073398 ], [ -75.002259, 40.073404 ], [ -75.002218, 40.07357 ], [ -75.002152, 40.073856 ], [ -75.002096, 40.074103 ], [ -75.002071, 40.074172 ], [ -75.001975, 40.074394 ], [ -75.001892, 40.074557 ], [ -75.001824, 40.074678 ], [ -75.001742, 40.074804 ], [ -75.001599, 40.075001 ], [ -75.001488, 40.075136 ], [ -75.00092, 40.075821 ], [ -75.000329, 40.076533 ], [ -74.999518, 40.077498 ], [ -74.998792, 40.078356 ], [ -74.998487, 40.078719 ], [ -74.998395, 40.078663 ], [ -74.998305, 40.078614 ], [ -74.997706, 40.078315 ], [ -74.996802, 40.077878 ], [ -74.996524, 40.077743 ], [ -74.996004, 40.077476 ], [ -74.995292, 40.077152 ], [ -74.995111, 40.077098 ], [ -74.994858, 40.077028 ], [ -74.994644, 40.07698 ], [ -74.99444, 40.076941 ], [ -74.994028, 40.076871 ], [ -74.99365, 40.076811 ], [ -74.993267, 40.076749 ], [ -74.992798, 40.076681 ], [ -74.992471, 40.076631 ], [ -74.992212, 40.076589 ], [ -74.99202, 40.07655 ], [ -74.991822, 40.076496 ], [ -74.991633, 40.076442 ], [ -74.991522, 40.076403 ], [ -74.991396, 40.076355 ], [ -74.991261, 40.076294 ], [ -74.991104, 40.076217 ], [ -74.990946, 40.07613 ], [ -74.99077, 40.07602 ], [ -74.990636, 40.075928 ], [ -74.990511, 40.075834 ], [ -74.990343, 40.075685 ], [ -74.98989, 40.075265 ], [ -74.989275, 40.074698 ], [ -74.988439, 40.075232 ], [ -74.987887, 40.075581 ], [ -74.987749, 40.075674 ], [ -74.987653, 40.075744 ], [ -74.987612, 40.075778 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075962 ], [ -74.987004, 40.076312 ], [ -74.986419, 40.076829 ], [ -74.985835, 40.077317 ], [ -74.985325, 40.077746 ], [ -74.984715, 40.078448 ], [ -74.984436, 40.07886 ], [ -74.984372, 40.078951 ], [ -74.984209, 40.079276 ], [ -74.984115, 40.079516 ], [ -74.983977, 40.07991 ], [ -74.983908, 40.080168 ], [ -74.983877, 40.080486 ], [ -74.983886, 40.080997 ], [ -74.983865, 40.081657 ], [ -74.983876, 40.081866 ], [ -74.983892, 40.082324 ], [ -74.984335, 40.082316 ], [ -74.984693, 40.082312 ], [ -74.98514, 40.082316 ], [ -74.985585, 40.082332 ], [ -74.985757, 40.082344 ], [ -74.98597, 40.082361 ], [ -74.98615, 40.08238 ], [ -74.986556, 40.08244 ], [ -74.986792, 40.082481 ], [ -74.987049, 40.082532 ], [ -74.987233, 40.082571 ], [ -74.987402, 40.082609 ], [ -74.987561, 40.08265 ], [ -74.98803, 40.082795 ], [ -74.988306, 40.082882 ], [ -74.988478, 40.082944 ], [ -74.988753, 40.083062 ], [ -74.988961, 40.083165 ], [ -74.989116, 40.083252 ], [ -74.989249, 40.083338 ], [ -74.98939, 40.083442 ], [ -74.989507, 40.083537 ], [ -74.989662, 40.083673 ], [ -74.989813, 40.083824 ], [ -74.989969, 40.083995 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984034, 40.09007 ], [ -74.983822, 40.090271 ], [ -74.983577, 40.090519 ], [ -74.983069, 40.091066 ], [ -74.98294, 40.091201 ], [ -74.982871, 40.09128 ], [ -74.982662, 40.091488 ], [ -74.982633, 40.091516 ], [ -74.982481, 40.091659 ], [ -74.982385, 40.091744 ], [ -74.982295, 40.091828 ], [ -74.982134, 40.091966 ], [ -74.981855, 40.092183 ], [ -74.981535, 40.092442 ], [ -74.981383, 40.092559 ], [ -74.980593, 40.093191 ], [ -74.98051, 40.093255 ], [ -74.98015, 40.093539 ], [ -74.97997, 40.093682 ], [ -74.979861, 40.093768 ], [ -74.979773, 40.093835 ], [ -74.979672, 40.093907 ], [ -74.979576, 40.093978 ], [ -74.979496, 40.094044 ], [ -74.979316, 40.094184 ], [ -74.979101, 40.094341 ], [ -74.978225, 40.094972 ], [ -74.977487, 40.095506 ], [ -74.977198, 40.095702 ], [ -74.977015, 40.095827 ], [ -74.976878, 40.095914 ], [ -74.97679, 40.09596 ], [ -74.976685, 40.096008 ], [ -74.976449, 40.096112 ], [ -74.976149, 40.096243 ], [ -74.975783, 40.096404 ], [ -74.975811, 40.096446 ], [ -74.975837, 40.096486 ], [ -74.976023, 40.096782 ], [ -74.976051, 40.096841 ], [ -74.976074, 40.096897 ], [ -74.976089, 40.096956 ], [ -74.976103, 40.09702 ], [ -74.976109, 40.097082 ], [ -74.976113, 40.09715 ], [ -74.976108, 40.097217 ], [ -74.976098, 40.097305 ], [ -74.976103, 40.097507 ], [ -74.976008, 40.097767 ], [ -74.975973, 40.097828 ], [ -74.975876, 40.097992 ], [ -74.975653, 40.098237 ], [ -74.975417, 40.098456 ], [ -74.975282, 40.098547 ], [ -74.974755, 40.098903 ], [ -74.974117, 40.099354 ], [ -74.97404, 40.099408 ], [ -74.973559, 40.099696 ], [ -74.973406, 40.099776 ], [ -74.97267, 40.100176 ], [ -74.971908, 40.100483 ], [ -74.971325, 40.100668 ], [ -74.971116, 40.100719 ], [ -74.970855, 40.100784 ], [ -74.970385, 40.100865 ], [ -74.97003, 40.100902 ], [ -74.969849, 40.100921 ], [ -74.968938, 40.100936 ], [ -74.968401, 40.100912 ], [ -74.967537, 40.100814 ], [ -74.966663, 40.100578 ], [ -74.966223, 40.100437 ], [ -74.965773, 40.100228 ], [ -74.965437, 40.099995 ], [ -74.965314, 40.099879 ], [ -74.965207, 40.099779 ], [ -74.964996, 40.099523 ], [ -74.964897, 40.099343 ], [ -74.964792, 40.099067 ], [ -74.964775, 40.098977 ], [ -74.964739, 40.098802 ], [ -74.964709, 40.097797 ], [ -74.9647, 40.097297 ], [ -74.964687, 40.096197 ], [ -74.964686, 40.095886 ], [ -74.9647, 40.095779 ], [ -74.964743, 40.095624 ], [ -74.964955, 40.095327 ], [ -74.96461, 40.095104 ], [ -74.964214, 40.094822 ], [ -74.963973, 40.094654 ], [ -74.963593, 40.094398 ], [ -74.963129, 40.094083 ], [ -74.962923, 40.093941 ], [ -74.962169, 40.093424 ], [ -74.962519, 40.093219 ], [ -74.96282, 40.093064 ], [ -74.963244, 40.092856 ], [ -74.963675, 40.092659 ], [ -74.964212, 40.092411 ], [ -74.964401, 40.09232 ], [ -74.964608, 40.092227 ], [ -74.964777, 40.092146 ], [ -74.964824, 40.092124 ], [ -74.965176, 40.091947 ], [ -74.965518, 40.091758 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965708, 40.091577 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307418", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.070305, 40.034814 ], [ -75.069448, 40.035007 ], [ -75.068815, 40.035154 ], [ -75.068208, 40.035292 ], [ -75.067433, 40.035467 ], [ -75.065311, 40.035956 ], [ -75.065054, 40.036016 ], [ -75.064791, 40.036077 ], [ -75.064331, 40.036187 ], [ -75.064205, 40.036215 ], [ -75.063642, 40.03635 ], [ -75.0633, 40.036446 ], [ -75.063111, 40.036508 ], [ -75.062951, 40.036567 ], [ -75.062805, 40.036628 ], [ -75.062642, 40.0367 ], [ -75.062417, 40.036806 ], [ -75.062184, 40.036927 ], [ -75.06208, 40.036988 ], [ -75.06199, 40.037042 ], [ -75.0619, 40.0371 ], [ -75.061787, 40.037178 ], [ -75.061683, 40.037253 ], [ -75.061574, 40.037332 ], [ -75.061481, 40.037409 ], [ -75.061347, 40.037526 ], [ -75.060954, 40.037884 ], [ -75.060108, 40.038678 ], [ -75.059671, 40.039086 ], [ -75.059518, 40.039228 ], [ -75.059024, 40.039684 ], [ -75.05892, 40.03978 ], [ -75.058431, 40.040231 ], [ -75.0576, 40.041003 ], [ -75.056981, 40.041591 ], [ -75.056345, 40.042176 ], [ -75.055843, 40.042648 ], [ -75.055603, 40.042878 ], [ -75.05543, 40.043046 ], [ -75.055003, 40.043459 ], [ -75.05463, 40.043799 ], [ -75.054065, 40.044315 ], [ -75.052729, 40.04555 ], [ -75.052027, 40.046203 ], [ -75.051667, 40.046603 ], [ -75.051554, 40.046746 ], [ -75.051486, 40.046842 ], [ -75.05146, 40.046881 ], [ -75.051367, 40.047024 ], [ -75.051275, 40.047188 ], [ -75.0512, 40.047323 ], [ -75.051109, 40.047508 ], [ -75.051031, 40.04772 ], [ -75.050969, 40.047951 ], [ -75.050889, 40.048456 ], [ -75.050854, 40.049014 ], [ -75.050847, 40.049122 ], [ -75.05083, 40.049337 ], [ -75.050821, 40.049473 ], [ -75.050764, 40.0502 ], [ -75.050759, 40.050258 ], [ -75.050735, 40.050573 ], [ -75.050711, 40.050872 ], [ -75.050673, 40.051254 ], [ -75.050646, 40.051435 ], [ -75.05062, 40.051587 ], [ -75.050583, 40.05175 ], [ -75.050525, 40.05193 ], [ -75.050459, 40.052105 ], [ -75.050393, 40.052251 ], [ -75.05032, 40.052382 ], [ -75.050223, 40.052544 ], [ -75.050146, 40.052654 ], [ -75.050027, 40.052807 ], [ -75.049911, 40.05294 ], [ -75.049813, 40.053047 ], [ -75.049673, 40.053191 ], [ -75.049344, 40.053521 ], [ -75.048878, 40.053992 ], [ -75.047677, 40.055206 ], [ -75.047371, 40.055504 ], [ -75.046855, 40.056021 ], [ -75.046384, 40.056495 ], [ -75.045536, 40.057345 ], [ -75.045247, 40.057638 ], [ -75.045117, 40.057767 ], [ -75.044742, 40.058145 ], [ -75.044476, 40.058414 ], [ -75.044373, 40.05853 ], [ -75.044339, 40.058569 ], [ -75.044255, 40.058675 ], [ -75.044048, 40.058662 ], [ -75.043937, 40.058645 ], [ -75.043857, 40.058619 ], [ -75.043765, 40.058575 ], [ -75.043007, 40.05815 ], [ -75.042823, 40.058043 ], [ -75.042666, 40.057967 ], [ -75.042486, 40.057898 ], [ -75.042281, 40.057835 ], [ -75.04212, 40.057801 ], [ -75.041956, 40.057772 ], [ -75.041755, 40.057752 ], [ -75.041576, 40.057742 ], [ -75.04142, 40.057742 ], [ -75.041258, 40.057767 ], [ -75.041082, 40.057792 ], [ -75.040897, 40.057832 ], [ -75.040722, 40.057884 ], [ -75.040574, 40.057933 ], [ -75.040435, 40.057991 ], [ -75.040207, 40.058105 ], [ -75.040031, 40.058187 ], [ -75.039857, 40.058247 ], [ -75.0397, 40.058292 ], [ -75.039498, 40.058347 ], [ -75.039293, 40.058386 ], [ -75.03902, 40.058419 ], [ -75.038775, 40.058434 ], [ -75.038578, 40.058431 ], [ -75.038286, 40.058409 ], [ -75.038138, 40.058394 ], [ -75.037965, 40.058358 ], [ -75.037781, 40.058305 ], [ -75.037474, 40.058209 ], [ -75.036853, 40.058007 ], [ -75.036427, 40.057853 ], [ -75.036267, 40.057796 ], [ -75.036075, 40.057728 ], [ -75.035682, 40.057582 ], [ -75.035423, 40.057477 ], [ -75.034841, 40.057251 ], [ -75.034816, 40.057241 ], [ -75.034424, 40.057106 ], [ -75.034322, 40.057066 ], [ -75.034129, 40.057001 ], [ -75.033891, 40.05693 ], [ -75.033652, 40.056864 ], [ -75.033436, 40.056819 ], [ -75.033205, 40.05678 ], [ -75.032918, 40.056746 ], [ -75.03279, 40.05673 ], [ -75.031904, 40.056658 ], [ -75.031673, 40.056636 ], [ -75.031508, 40.056621 ], [ -75.031105, 40.056584 ], [ -75.029857, 40.056477 ], [ -75.029579, 40.056453 ], [ -75.029167, 40.056419 ], [ -75.029055, 40.05641 ], [ -75.02902, 40.056334 ], [ -75.028966, 40.05627 ], [ -75.028877, 40.056211 ], [ -75.02878, 40.056176 ], [ -75.028669, 40.056159 ], [ -75.028565, 40.05616 ], [ -75.028483, 40.056188 ], [ -75.028408, 40.056232 ], [ -75.028362, 40.05627 ], [ -75.028319, 40.056328 ], [ -75.028294, 40.056373 ], [ -75.028279, 40.056419 ], [ -75.028267, 40.056475 ], [ -75.028269, 40.056536 ], [ -75.028284, 40.056582 ], [ -75.028306, 40.056622 ], [ -75.028337, 40.056658 ], [ -75.028376, 40.056695 ], [ -75.028416, 40.056723 ], [ -75.027525, 40.057621 ], [ -75.026888, 40.058267 ], [ -75.026376, 40.058776 ], [ -75.025483, 40.059641 ], [ -75.024807, 40.060319 ], [ -75.024745, 40.060385 ], [ -75.02469, 40.060438 ], [ -75.024194, 40.060931 ], [ -75.023907, 40.061198 ], [ -75.023752, 40.061346 ], [ -75.022767, 40.062334 ], [ -75.022476, 40.062614 ], [ -75.021993, 40.063113 ], [ -75.021981, 40.063088 ], [ -75.021806, 40.062754 ], [ -75.021731, 40.062608 ], [ -75.021673, 40.0625 ], [ -75.021467, 40.062115 ], [ -75.021402, 40.061986 ], [ -75.021329, 40.06187 ], [ -75.021258, 40.061772 ], [ -75.021177, 40.061679 ], [ -75.021022, 40.061535 ], [ -75.020901, 40.061448 ], [ -75.020783, 40.061372 ], [ -75.020618, 40.061274 ], [ -75.020176, 40.061008 ], [ -75.020016, 40.060909 ], [ -75.01996, 40.060874 ], [ -75.019803, 40.060786 ], [ -75.019453, 40.060572 ], [ -75.018383, 40.059925 ], [ -75.017716, 40.060545 ], [ -75.017489, 40.060736 ], [ -75.01731, 40.060884 ], [ -75.017113, 40.061025 ], [ -75.016903, 40.061167 ], [ -75.0167, 40.06128 ], [ -75.016463, 40.061395 ], [ -75.016292, 40.061471 ], [ -75.016112, 40.061547 ], [ -75.015951, 40.061611 ], [ -75.015818, 40.061656 ], [ -75.01568, 40.061699 ], [ -75.015541, 40.061735 ], [ -75.015365, 40.061775 ], [ -75.015153, 40.061816 ], [ -75.014946, 40.061854 ], [ -75.013601, 40.06205 ], [ -75.012743, 40.062182 ], [ -75.011868, 40.062312 ], [ -75.011608, 40.062357 ], [ -75.010998, 40.062453 ], [ -75.010607, 40.062511 ], [ -75.010401, 40.062536 ], [ -75.01019, 40.06255 ], [ -75.009557, 40.062556 ], [ -75.009428, 40.062557 ], [ -75.009425, 40.063483 ], [ -75.009425, 40.063798 ], [ -75.009423, 40.064434 ], [ -75.009417, 40.064934 ], [ -75.009415, 40.065132 ], [ -75.009418, 40.065245 ], [ -75.009402, 40.065442 ], [ -75.009379, 40.065655 ], [ -75.009328, 40.065903 ], [ -75.009257, 40.066165 ], [ -75.009215, 40.066306 ], [ -75.009169, 40.066449 ], [ -75.009102, 40.066652 ], [ -75.009017, 40.066871 ], [ -75.008831, 40.067368 ], [ -75.008811, 40.067423 ], [ -75.008779, 40.067501 ], [ -75.008701, 40.067716 ], [ -75.008692, 40.067736 ], [ -75.008645, 40.067855 ], [ -75.008605, 40.067944 ], [ -75.008582, 40.067983 ], [ -75.008551, 40.068041 ], [ -75.008494, 40.068132 ], [ -75.00844, 40.068218 ], [ -75.008393, 40.068286 ], [ -75.008376, 40.068313 ], [ -75.008324, 40.068383 ], [ -75.008248, 40.068472 ], [ -75.008191, 40.068542 ], [ -75.00814, 40.0686 ], [ -75.008085, 40.068653 ], [ -75.008001, 40.068728 ], [ -75.007937, 40.06878 ], [ -75.007852, 40.068839 ], [ -75.007637, 40.06898 ], [ -75.007336, 40.069163 ], [ -75.007314, 40.069176 ], [ -75.007246, 40.069216 ], [ -75.007213, 40.069233 ], [ -75.007184, 40.069248 ], [ -75.007162, 40.069258 ], [ -75.006834, 40.069441 ], [ -75.006366, 40.069705 ], [ -75.005695, 40.070105 ], [ -75.005251, 40.07037 ], [ -75.004883, 40.070586 ], [ -75.004267, 40.070944 ], [ -75.003943, 40.071149 ], [ -75.00374, 40.071292 ], [ -75.003551, 40.071441 ], [ -75.003367, 40.071599 ], [ -75.003204, 40.071754 ], [ -75.00307, 40.071906 ], [ -75.002872, 40.072144 ], [ -75.002796, 40.07225 ], [ -75.002715, 40.072373 ], [ -75.002665, 40.072455 ], [ -75.002606, 40.072548 ], [ -75.002513, 40.072716 ], [ -75.002412, 40.072939 ], [ -75.002371, 40.073054 ], [ -75.002335, 40.073153 ], [ -75.002274, 40.073346 ], [ -75.00226, 40.073398 ], [ -75.002259, 40.073404 ], [ -75.002218, 40.07357 ], [ -75.002152, 40.073856 ], [ -75.002096, 40.074103 ], [ -75.002071, 40.074172 ], [ -75.001975, 40.074394 ], [ -75.001892, 40.074557 ], [ -75.001824, 40.074678 ], [ -75.001742, 40.074804 ], [ -75.001599, 40.075001 ], [ -75.001488, 40.075136 ], [ -75.00092, 40.075821 ], [ -75.000329, 40.076533 ], [ -74.999518, 40.077498 ], [ -74.998792, 40.078356 ], [ -74.998487, 40.078719 ], [ -74.997909, 40.079411 ], [ -74.997727, 40.079609 ], [ -74.997622, 40.079707 ], [ -74.997581, 40.079746 ], [ -74.997414, 40.079887 ], [ -74.997238, 40.080027 ], [ -74.996783, 40.080292 ], [ -74.996591, 40.080397 ], [ -74.995809, 40.080845 ], [ -74.994875, 40.081389 ], [ -74.994773, 40.081447 ], [ -74.994351, 40.081689 ], [ -74.993917, 40.081945 ], [ -74.993017, 40.082468 ], [ -74.992114, 40.082983 ], [ -74.991665, 40.083234 ], [ -74.991252, 40.083476 ], [ -74.990811, 40.083725 ], [ -74.990538, 40.083871 ], [ -74.99052, 40.083881 ], [ -74.990327, 40.083976 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984034, 40.09007 ], [ -74.983822, 40.090271 ], [ -74.983577, 40.090519 ], [ -74.983069, 40.091066 ], [ -74.98294, 40.091201 ], [ -74.982871, 40.09128 ], [ -74.982662, 40.091488 ], [ -74.982633, 40.091516 ], [ -74.982481, 40.091659 ], [ -74.982385, 40.091744 ], [ -74.982295, 40.091828 ], [ -74.982134, 40.091966 ], [ -74.981855, 40.092183 ], [ -74.981535, 40.092442 ], [ -74.981383, 40.092559 ], [ -74.980593, 40.093191 ], [ -74.98051, 40.093255 ], [ -74.98015, 40.093539 ], [ -74.97997, 40.093682 ], [ -74.979861, 40.093768 ], [ -74.979773, 40.093835 ], [ -74.979672, 40.093907 ], [ -74.979576, 40.093978 ], [ -74.979496, 40.094044 ], [ -74.979316, 40.094184 ], [ -74.979101, 40.094341 ], [ -74.978225, 40.094972 ], [ -74.977487, 40.095506 ], [ -74.977198, 40.095702 ], [ -74.977015, 40.095827 ], [ -74.976878, 40.095914 ], [ -74.97679, 40.09596 ], [ -74.976685, 40.096008 ], [ -74.976449, 40.096112 ], [ -74.976149, 40.096243 ], [ -74.975783, 40.096404 ], [ -74.975811, 40.096446 ], [ -74.975837, 40.096486 ], [ -74.976023, 40.096782 ], [ -74.976051, 40.096841 ], [ -74.976074, 40.096897 ], [ -74.976089, 40.096956 ], [ -74.976103, 40.09702 ], [ -74.976109, 40.097082 ], [ -74.976113, 40.09715 ], [ -74.976108, 40.097217 ], [ -74.976098, 40.097305 ], [ -74.976103, 40.097507 ], [ -74.976008, 40.097767 ], [ -74.975973, 40.097828 ], [ -74.975876, 40.097992 ], [ -74.975653, 40.098237 ], [ -74.975417, 40.098456 ], [ -74.975282, 40.098547 ], [ -74.974755, 40.098903 ], [ -74.974117, 40.099354 ], [ -74.97404, 40.099408 ], [ -74.973559, 40.099696 ], [ -74.973406, 40.099776 ], [ -74.97267, 40.100176 ], [ -74.971908, 40.100483 ], [ -74.971325, 40.100668 ], [ -74.971116, 40.100719 ], [ -74.970855, 40.100784 ], [ -74.970385, 40.100865 ], [ -74.97003, 40.100902 ], [ -74.969849, 40.100921 ], [ -74.968938, 40.100936 ], [ -74.968401, 40.100912 ], [ -74.967537, 40.100814 ], [ -74.966663, 40.100578 ], [ -74.966223, 40.100437 ], [ -74.965773, 40.100228 ], [ -74.965437, 40.099995 ], [ -74.965314, 40.099879 ], [ -74.965207, 40.099779 ], [ -74.964996, 40.099523 ], [ -74.964897, 40.099343 ], [ -74.964792, 40.099067 ], [ -74.964775, 40.098977 ], [ -74.964739, 40.098802 ], [ -74.964709, 40.097797 ], [ -74.9647, 40.097297 ], [ -74.964687, 40.096197 ], [ -74.964686, 40.095886 ], [ -74.9647, 40.095779 ], [ -74.964743, 40.095624 ], [ -74.964955, 40.095327 ], [ -74.96461, 40.095104 ], [ -74.964214, 40.094822 ], [ -74.963973, 40.094654 ], [ -74.963593, 40.094398 ], [ -74.963129, 40.094083 ], [ -74.962923, 40.093941 ], [ -74.962169, 40.093424 ], [ -74.962519, 40.093219 ], [ -74.96282, 40.093064 ], [ -74.963244, 40.092856 ], [ -74.963675, 40.092659 ], [ -74.964212, 40.092411 ], [ -74.964401, 40.09232 ], [ -74.964608, 40.092227 ], [ -74.964777, 40.092146 ], [ -74.964824, 40.092124 ], [ -74.965176, 40.091947 ], [ -74.965518, 40.091758 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965708, 40.091577 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.964415, 40.088271 ], [ -74.963977, 40.089231 ], [ -74.963877, 40.089456 ], [ -74.96378, 40.089766 ], [ -74.9637, 40.090184 ], [ -74.963675, 40.090382 ], [ -74.963646, 40.090806 ], [ -74.96364, 40.090888 ], [ -74.963585, 40.091179 ], [ -74.963448, 40.091487 ], [ -74.963242, 40.091733 ], [ -74.962676, 40.09216 ], [ -74.962482, 40.092321 ], [ -74.962121, 40.092641 ], [ -74.961883, 40.092831 ], [ -74.961816, 40.092867 ], [ -74.961651, 40.092943 ], [ -74.962075, 40.093343 ], [ -74.961882, 40.09347 ], [ -74.961666, 40.093619 ], [ -74.96146, 40.093776 ], [ -74.961388, 40.093835 ], [ -74.96137, 40.093851 ], [ -74.961137, 40.094061 ], [ -74.96004, 40.095052 ], [ -74.959823, 40.095254 ], [ -74.95971, 40.09536 ], [ -74.959632, 40.095442 ], [ -74.959553, 40.095532 ], [ -74.959481, 40.095624 ], [ -74.959409, 40.09571 ], [ -74.959342, 40.095793 ], [ -74.959273, 40.095891 ], [ -74.959212, 40.095977 ], [ -74.959057, 40.096211 ], [ -74.958705, 40.096748 ], [ -74.958636, 40.096861 ], [ -74.958567, 40.096968 ], [ -74.95845, 40.097149 ], [ -74.958141, 40.097619 ], [ -74.958089, 40.097685 ], [ -74.958029, 40.097761 ], [ -74.957991, 40.097814 ], [ -74.957861, 40.09797 ], [ -74.957758, 40.098092 ], [ -74.957627, 40.098244 ], [ -74.957527, 40.098346 ], [ -74.957389, 40.098487 ], [ -74.957341, 40.098538 ], [ -74.957311, 40.09864 ], [ -74.956971, 40.098954 ], [ -74.956923, 40.098999 ], [ -74.956754, 40.099148 ], [ -74.956485, 40.099385 ], [ -74.956437, 40.099428 ], [ -74.956074, 40.099754 ], [ -74.955618, 40.100138 ], [ -74.955497, 40.100171 ], [ -74.955066, 40.100553 ], [ -74.954861, 40.100728 ], [ -74.954452, 40.101079 ], [ -74.954403, 40.101124 ], [ -74.95432, 40.101202 ], [ -74.954213, 40.101297 ], [ -74.95379, 40.101673 ], [ -74.953172, 40.102243 ], [ -74.952717, 40.102692 ], [ -74.952523, 40.102899 ], [ -74.952212, 40.103226 ], [ -74.951826, 40.103636 ], [ -74.951514, 40.103972 ], [ -74.951383, 40.104132 ], [ -74.951369, 40.10424 ], [ -74.951295, 40.10431 ], [ -74.950977, 40.104636 ], [ -74.950857, 40.104745 ], [ -74.950799, 40.1048 ], [ -74.950694, 40.10491 ], [ -74.950739, 40.105005 ], [ -74.950898, 40.105377 ], [ -74.95103, 40.105642 ], [ -74.951261, 40.106117 ], [ -74.951345, 40.106279 ], [ -74.951681, 40.107003 ], [ -74.95194, 40.107566 ], [ -74.952102, 40.107931 ], [ -74.952286, 40.108348 ], [ -74.952354, 40.108509 ], [ -74.952525, 40.108909 ], [ -74.95268, 40.109271 ], [ -74.952796, 40.109546 ], [ -74.9531, 40.110199 ], [ -74.953132, 40.110267 ], [ -74.953187, 40.110378 ], [ -74.953225, 40.110456 ], [ -74.953274, 40.110554 ], [ -74.953312, 40.110622 ], [ -74.953424, 40.110797 ], [ -74.953484, 40.110886 ], [ -74.953555, 40.110974 ], [ -74.953813, 40.111326 ], [ -74.954018, 40.111584 ], [ -74.954073, 40.111653 ], [ -74.954169, 40.111765 ], [ -74.954281, 40.111898 ], [ -74.954501, 40.112136 ], [ -74.954732, 40.112369 ], [ -74.954973, 40.112595 ], [ -74.955225, 40.112809 ], [ -74.955488, 40.11302 ], [ -74.955562, 40.113076 ], [ -74.956028, 40.11344 ], [ -74.956391, 40.113714 ], [ -74.956454, 40.113763 ], [ -74.956551, 40.113842 ], [ -74.956604, 40.113882 ], [ -74.956722, 40.113979 ], [ -74.956804, 40.114058 ], [ -74.956885, 40.114151 ], [ -74.957166, 40.114387 ], [ -74.957267, 40.114489 ], [ -74.957305, 40.11453 ], [ -74.957355, 40.114586 ], [ -74.957371, 40.114639 ], [ -74.957396, 40.1147 ], [ -74.957498, 40.114857 ], [ -74.957725, 40.115198 ], [ -74.957833, 40.115365 ], [ -74.957761, 40.115397 ], [ -74.957529, 40.115514 ], [ -74.957437, 40.11552 ], [ -74.957418, 40.115529 ], [ -74.957175, 40.11564 ], [ -74.957044, 40.115702 ], [ -74.956974, 40.115744 ], [ -74.956851, 40.115807 ], [ -74.956624, 40.115958 ], [ -74.956234, 40.116206 ], [ -74.956114, 40.116286 ], [ -74.955794, 40.116499 ], [ -74.955749, 40.116527 ], [ -74.9556, 40.11656 ], [ -74.955474, 40.116582 ], [ -74.955293, 40.116606 ], [ -74.955243, 40.1166 ], [ -74.955099, 40.116569 ], [ -74.955023, 40.116543 ], [ -74.954853, 40.116449 ], [ -74.9548, 40.116441 ], [ -74.954728, 40.116431 ], [ -74.954077, 40.116074 ], [ -74.953574, 40.11579 ], [ -74.953024, 40.115494 ], [ -74.952884, 40.115461 ], [ -74.952719, 40.115404 ], [ -74.952591, 40.115411 ], [ -74.952433, 40.115418 ], [ -74.95241, 40.115426 ], [ -74.952283, 40.115468 ], [ -74.952133, 40.115533 ], [ -74.952061, 40.115569 ], [ -74.951882, 40.11574 ], [ -74.951747, 40.115869 ], [ -74.951348, 40.116318 ], [ -74.950711, 40.117018 ], [ -74.952325, 40.117885 ], [ -74.952572, 40.117851 ], [ -74.952844, 40.11759 ], [ -74.953048, 40.117361 ], [ -74.953034, 40.117252 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307419", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.070305, 40.034814 ], [ -75.069448, 40.035007 ], [ -75.068815, 40.035154 ], [ -75.068208, 40.035292 ], [ -75.067433, 40.035467 ], [ -75.065311, 40.035956 ], [ -75.065054, 40.036016 ], [ -75.064791, 40.036077 ], [ -75.064331, 40.036187 ], [ -75.064205, 40.036215 ], [ -75.063642, 40.03635 ], [ -75.0633, 40.036446 ], [ -75.063111, 40.036508 ], [ -75.062951, 40.036567 ], [ -75.062805, 40.036628 ], [ -75.062642, 40.0367 ], [ -75.062417, 40.036806 ], [ -75.062184, 40.036927 ], [ -75.06208, 40.036988 ], [ -75.06199, 40.037042 ], [ -75.0619, 40.0371 ], [ -75.061787, 40.037178 ], [ -75.061683, 40.037253 ], [ -75.061574, 40.037332 ], [ -75.061481, 40.037409 ], [ -75.061347, 40.037526 ], [ -75.060954, 40.037884 ], [ -75.060108, 40.038678 ], [ -75.059671, 40.039086 ], [ -75.059518, 40.039228 ], [ -75.059024, 40.039684 ], [ -75.05892, 40.03978 ], [ -75.058431, 40.040231 ], [ -75.0576, 40.041003 ], [ -75.056981, 40.041591 ], [ -75.056345, 40.042176 ], [ -75.055843, 40.042648 ], [ -75.055603, 40.042878 ], [ -75.05543, 40.043046 ], [ -75.055003, 40.043459 ], [ -75.05463, 40.043799 ], [ -75.054065, 40.044315 ], [ -75.052729, 40.04555 ], [ -75.052027, 40.046203 ], [ -75.051667, 40.046603 ], [ -75.051554, 40.046746 ], [ -75.051486, 40.046842 ], [ -75.05146, 40.046881 ], [ -75.051367, 40.047024 ], [ -75.051275, 40.047188 ], [ -75.0512, 40.047323 ], [ -75.051109, 40.047508 ], [ -75.051031, 40.04772 ], [ -75.050969, 40.047951 ], [ -75.050889, 40.048456 ], [ -75.050854, 40.049014 ], [ -75.050847, 40.049122 ], [ -75.05083, 40.049337 ], [ -75.050821, 40.049473 ], [ -75.050764, 40.0502 ], [ -75.050759, 40.050258 ], [ -75.050735, 40.050573 ], [ -75.050711, 40.050872 ], [ -75.050673, 40.051254 ], [ -75.050646, 40.051435 ], [ -75.05062, 40.051587 ], [ -75.050583, 40.05175 ], [ -75.050525, 40.05193 ], [ -75.050459, 40.052105 ], [ -75.050393, 40.052251 ], [ -75.05032, 40.052382 ], [ -75.050223, 40.052544 ], [ -75.050146, 40.052654 ], [ -75.050027, 40.052807 ], [ -75.049911, 40.05294 ], [ -75.049813, 40.053047 ], [ -75.049673, 40.053191 ], [ -75.049344, 40.053521 ], [ -75.048878, 40.053992 ], [ -75.047677, 40.055206 ], [ -75.047371, 40.055504 ], [ -75.046855, 40.056021 ], [ -75.046384, 40.056495 ], [ -75.045536, 40.057345 ], [ -75.045247, 40.057638 ], [ -75.045117, 40.057767 ], [ -75.044742, 40.058145 ], [ -75.044476, 40.058414 ], [ -75.044373, 40.05853 ], [ -75.044339, 40.058569 ], [ -75.044255, 40.058675 ], [ -75.044048, 40.058662 ], [ -75.043937, 40.058645 ], [ -75.043857, 40.058619 ], [ -75.043765, 40.058575 ], [ -75.043007, 40.05815 ], [ -75.042823, 40.058043 ], [ -75.042666, 40.057967 ], [ -75.042486, 40.057898 ], [ -75.042281, 40.057835 ], [ -75.04212, 40.057801 ], [ -75.041956, 40.057772 ], [ -75.041755, 40.057752 ], [ -75.041576, 40.057742 ], [ -75.04142, 40.057742 ], [ -75.041258, 40.057767 ], [ -75.041082, 40.057792 ], [ -75.040897, 40.057832 ], [ -75.040722, 40.057884 ], [ -75.040574, 40.057933 ], [ -75.040435, 40.057991 ], [ -75.040207, 40.058105 ], [ -75.040031, 40.058187 ], [ -75.039857, 40.058247 ], [ -75.0397, 40.058292 ], [ -75.039498, 40.058347 ], [ -75.039293, 40.058386 ], [ -75.03902, 40.058419 ], [ -75.038775, 40.058434 ], [ -75.038578, 40.058431 ], [ -75.038286, 40.058409 ], [ -75.038138, 40.058394 ], [ -75.037965, 40.058358 ], [ -75.037781, 40.058305 ], [ -75.037474, 40.058209 ], [ -75.036853, 40.058007 ], [ -75.036427, 40.057853 ], [ -75.036267, 40.057796 ], [ -75.036075, 40.057728 ], [ -75.035682, 40.057582 ], [ -75.035423, 40.057477 ], [ -75.034841, 40.057251 ], [ -75.034816, 40.057241 ], [ -75.034424, 40.057106 ], [ -75.034322, 40.057066 ], [ -75.034129, 40.057001 ], [ -75.033891, 40.05693 ], [ -75.033652, 40.056864 ], [ -75.033436, 40.056819 ], [ -75.033205, 40.05678 ], [ -75.032918, 40.056746 ], [ -75.03279, 40.05673 ], [ -75.031904, 40.056658 ], [ -75.031673, 40.056636 ], [ -75.031508, 40.056621 ], [ -75.031105, 40.056584 ], [ -75.029857, 40.056477 ], [ -75.029579, 40.056453 ], [ -75.029167, 40.056419 ], [ -75.029055, 40.05641 ], [ -75.02902, 40.056334 ], [ -75.028966, 40.05627 ], [ -75.028877, 40.056211 ], [ -75.02878, 40.056176 ], [ -75.028669, 40.056159 ], [ -75.028565, 40.05616 ], [ -75.028483, 40.056188 ], [ -75.028408, 40.056232 ], [ -75.028362, 40.05627 ], [ -75.028319, 40.056328 ], [ -75.028294, 40.056373 ], [ -75.028279, 40.056419 ], [ -75.028267, 40.056475 ], [ -75.028269, 40.056536 ], [ -75.028284, 40.056582 ], [ -75.028306, 40.056622 ], [ -75.028337, 40.056658 ], [ -75.028376, 40.056695 ], [ -75.028416, 40.056723 ], [ -75.027525, 40.057621 ], [ -75.026888, 40.058267 ], [ -75.026376, 40.058776 ], [ -75.025483, 40.059641 ], [ -75.024807, 40.060319 ], [ -75.024745, 40.060385 ], [ -75.02469, 40.060438 ], [ -75.024194, 40.060931 ], [ -75.023907, 40.061198 ], [ -75.023752, 40.061346 ], [ -75.022767, 40.062334 ], [ -75.022476, 40.062614 ], [ -75.021993, 40.063113 ], [ -75.021981, 40.063088 ], [ -75.021806, 40.062754 ], [ -75.021731, 40.062608 ], [ -75.021673, 40.0625 ], [ -75.021467, 40.062115 ], [ -75.021402, 40.061986 ], [ -75.021329, 40.06187 ], [ -75.021258, 40.061772 ], [ -75.021177, 40.061679 ], [ -75.021022, 40.061535 ], [ -75.020901, 40.061448 ], [ -75.020783, 40.061372 ], [ -75.020618, 40.061274 ], [ -75.020176, 40.061008 ], [ -75.020016, 40.060909 ], [ -75.01996, 40.060874 ], [ -75.019803, 40.060786 ], [ -75.019453, 40.060572 ], [ -75.018383, 40.059925 ], [ -75.017716, 40.060545 ], [ -75.017489, 40.060736 ], [ -75.01731, 40.060884 ], [ -75.017113, 40.061025 ], [ -75.016903, 40.061167 ], [ -75.0167, 40.06128 ], [ -75.016463, 40.061395 ], [ -75.016292, 40.061471 ], [ -75.016112, 40.061547 ], [ -75.015951, 40.061611 ], [ -75.015818, 40.061656 ], [ -75.01568, 40.061699 ], [ -75.015541, 40.061735 ], [ -75.015365, 40.061775 ], [ -75.015153, 40.061816 ], [ -75.014946, 40.061854 ], [ -75.013601, 40.06205 ], [ -75.012743, 40.062182 ], [ -75.011868, 40.062312 ], [ -75.011608, 40.062357 ], [ -75.010998, 40.062453 ], [ -75.010607, 40.062511 ], [ -75.010401, 40.062536 ], [ -75.01019, 40.06255 ], [ -75.009557, 40.062556 ], [ -75.009428, 40.062557 ], [ -75.009425, 40.063483 ], [ -75.009425, 40.063798 ], [ -75.009423, 40.064434 ], [ -75.009417, 40.064934 ], [ -75.009415, 40.065132 ], [ -75.009418, 40.065245 ], [ -75.009402, 40.065442 ], [ -75.009379, 40.065655 ], [ -75.009328, 40.065903 ], [ -75.009257, 40.066165 ], [ -75.009215, 40.066306 ], [ -75.009169, 40.066449 ], [ -75.009102, 40.066652 ], [ -75.009017, 40.066871 ], [ -75.008831, 40.067368 ], [ -75.008811, 40.067423 ], [ -75.008779, 40.067501 ], [ -75.008701, 40.067716 ], [ -75.008692, 40.067736 ], [ -75.008645, 40.067855 ], [ -75.008605, 40.067944 ], [ -75.008582, 40.067983 ], [ -75.008551, 40.068041 ], [ -75.008494, 40.068132 ], [ -75.00844, 40.068218 ], [ -75.008393, 40.068286 ], [ -75.008376, 40.068313 ], [ -75.008324, 40.068383 ], [ -75.008248, 40.068472 ], [ -75.008191, 40.068542 ], [ -75.00814, 40.0686 ], [ -75.008085, 40.068653 ], [ -75.008001, 40.068728 ], [ -75.007937, 40.06878 ], [ -75.007852, 40.068839 ], [ -75.007637, 40.06898 ], [ -75.007336, 40.069163 ], [ -75.007314, 40.069176 ], [ -75.007246, 40.069216 ], [ -75.007213, 40.069233 ], [ -75.007184, 40.069248 ], [ -75.007162, 40.069258 ], [ -75.006834, 40.069441 ], [ -75.006366, 40.069705 ], [ -75.005695, 40.070105 ], [ -75.005251, 40.07037 ], [ -75.004883, 40.070586 ], [ -75.004267, 40.070944 ], [ -75.003943, 40.071149 ], [ -75.00374, 40.071292 ], [ -75.003551, 40.071441 ], [ -75.003367, 40.071599 ], [ -75.003204, 40.071754 ], [ -75.00307, 40.071906 ], [ -75.002872, 40.072144 ], [ -75.002796, 40.07225 ], [ -75.002715, 40.072373 ], [ -75.002665, 40.072455 ], [ -75.002606, 40.072548 ], [ -75.002513, 40.072716 ], [ -75.002412, 40.072939 ], [ -75.002371, 40.073054 ], [ -75.002335, 40.073153 ], [ -75.002274, 40.073346 ], [ -75.00226, 40.073398 ], [ -75.002259, 40.073404 ], [ -75.002218, 40.07357 ], [ -75.002152, 40.073856 ], [ -75.002096, 40.074103 ], [ -75.002071, 40.074172 ], [ -75.001975, 40.074394 ], [ -75.001892, 40.074557 ], [ -75.001824, 40.074678 ], [ -75.001742, 40.074804 ], [ -75.001599, 40.075001 ], [ -75.001488, 40.075136 ], [ -75.00092, 40.075821 ], [ -75.000329, 40.076533 ], [ -74.999518, 40.077498 ], [ -74.998792, 40.078356 ], [ -74.998487, 40.078719 ], [ -74.997909, 40.079411 ], [ -74.997727, 40.079609 ], [ -74.997622, 40.079707 ], [ -74.997581, 40.079746 ], [ -74.997414, 40.079887 ], [ -74.997238, 40.080027 ], [ -74.997283, 40.080062 ], [ -74.997321, 40.080092 ], [ -74.997621, 40.080327 ], [ -74.998024, 40.080681 ], [ -74.998764, 40.081328 ], [ -75.000013, 40.082347 ], [ -75.000613, 40.082853 ], [ -75.001229, 40.083343 ], [ -75.00246, 40.084329 ], [ -75.002552, 40.084424 ], [ -75.002608, 40.084506 ], [ -75.002633, 40.084561 ], [ -75.002647, 40.084627 ], [ -75.002645, 40.084688 ], [ -75.002628, 40.084738 ], [ -75.002595, 40.084783 ], [ -75.002544, 40.084828 ], [ -74.999721, 40.086735 ], [ -74.996912, 40.088654 ], [ -74.996422, 40.088992 ], [ -74.995629, 40.088311 ], [ -74.995579, 40.088259 ], [ -74.995548, 40.08822 ], [ -74.995514, 40.088163 ], [ -74.995493, 40.088114 ], [ -74.995476, 40.088072 ], [ -74.995462, 40.088004 ], [ -74.995356, 40.087323 ], [ -74.995176, 40.086113 ], [ -74.995043, 40.085222 ], [ -74.994918, 40.084432 ], [ -74.99488, 40.08418 ], [ -74.994873, 40.084106 ], [ -74.994872, 40.084038 ], [ -74.994879, 40.083981 ], [ -74.994892, 40.083926 ], [ -74.994917, 40.083872 ], [ -74.994942, 40.083829 ], [ -74.994987, 40.083759 ], [ -74.995037, 40.083701 ], [ -74.995103, 40.083638 ], [ -74.995217, 40.083566 ], [ -74.995471, 40.083414 ], [ -74.996172, 40.082992 ], [ -74.996412, 40.082848 ], [ -74.996753, 40.082643 ], [ -74.996963, 40.082513 ], [ -74.997738, 40.082043 ], [ -74.997796, 40.082004 ], [ -74.997864, 40.081956 ], [ -74.997942, 40.0819 ], [ -74.998339, 40.081626 ], [ -74.998576, 40.081457 ], [ -74.998764, 40.081328 ], [ -74.998024, 40.080681 ], [ -74.997621, 40.080327 ], [ -74.997321, 40.080092 ], [ -74.997283, 40.080062 ], [ -74.997238, 40.080027 ], [ -74.996783, 40.080292 ], [ -74.996591, 40.080397 ], [ -74.995809, 40.080845 ], [ -74.994875, 40.081389 ], [ -74.994773, 40.081447 ], [ -74.994351, 40.081689 ], [ -74.993917, 40.081945 ], [ -74.993017, 40.082468 ], [ -74.992114, 40.082983 ], [ -74.991665, 40.083234 ], [ -74.991252, 40.083476 ], [ -74.990811, 40.083725 ], [ -74.990538, 40.083871 ], [ -74.99052, 40.083881 ], [ -74.990327, 40.083976 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984034, 40.09007 ], [ -74.983822, 40.090271 ], [ -74.983577, 40.090519 ], [ -74.983069, 40.091066 ], [ -74.98294, 40.091201 ], [ -74.982871, 40.09128 ], [ -74.982662, 40.091488 ], [ -74.982633, 40.091516 ], [ -74.982481, 40.091659 ], [ -74.982385, 40.091744 ], [ -74.982295, 40.091828 ], [ -74.982134, 40.091966 ], [ -74.981855, 40.092183 ], [ -74.981535, 40.092442 ], [ -74.981383, 40.092559 ], [ -74.980593, 40.093191 ], [ -74.98051, 40.093255 ], [ -74.98015, 40.093539 ], [ -74.97997, 40.093682 ], [ -74.979861, 40.093768 ], [ -74.979773, 40.093835 ], [ -74.979672, 40.093907 ], [ -74.979576, 40.093978 ], [ -74.979496, 40.094044 ], [ -74.979316, 40.094184 ], [ -74.979101, 40.094341 ], [ -74.978225, 40.094972 ], [ -74.977487, 40.095506 ], [ -74.977198, 40.095702 ], [ -74.977015, 40.095827 ], [ -74.976878, 40.095914 ], [ -74.97679, 40.09596 ], [ -74.976685, 40.096008 ], [ -74.976449, 40.096112 ], [ -74.976149, 40.096243 ], [ -74.975783, 40.096404 ], [ -74.975811, 40.096446 ], [ -74.975837, 40.096486 ], [ -74.976023, 40.096782 ], [ -74.976051, 40.096841 ], [ -74.976074, 40.096897 ], [ -74.976089, 40.096956 ], [ -74.976103, 40.09702 ], [ -74.976109, 40.097082 ], [ -74.976113, 40.09715 ], [ -74.976108, 40.097217 ], [ -74.976098, 40.097305 ], [ -74.976103, 40.097507 ], [ -74.976008, 40.097767 ], [ -74.975973, 40.097828 ], [ -74.975876, 40.097992 ], [ -74.975653, 40.098237 ], [ -74.975417, 40.098456 ], [ -74.975282, 40.098547 ], [ -74.974755, 40.098903 ], [ -74.974117, 40.099354 ], [ -74.97404, 40.099408 ], [ -74.973559, 40.099696 ], [ -74.973406, 40.099776 ], [ -74.97267, 40.100176 ], [ -74.971908, 40.100483 ], [ -74.971325, 40.100668 ], [ -74.971116, 40.100719 ], [ -74.970855, 40.100784 ], [ -74.970385, 40.100865 ], [ -74.97003, 40.100902 ], [ -74.969849, 40.100921 ], [ -74.968938, 40.100936 ], [ -74.968401, 40.100912 ], [ -74.967537, 40.100814 ], [ -74.966663, 40.100578 ], [ -74.966223, 40.100437 ], [ -74.965773, 40.100228 ], [ -74.965437, 40.099995 ], [ -74.965314, 40.099879 ], [ -74.965207, 40.099779 ], [ -74.964996, 40.099523 ], [ -74.964897, 40.099343 ], [ -74.964792, 40.099067 ], [ -74.964775, 40.098977 ], [ -74.964739, 40.098802 ], [ -74.964709, 40.097797 ], [ -74.9647, 40.097297 ], [ -74.964687, 40.096197 ], [ -74.964686, 40.095886 ], [ -74.9647, 40.095779 ], [ -74.964743, 40.095624 ], [ -74.964955, 40.095327 ], [ -74.96461, 40.095104 ], [ -74.964214, 40.094822 ], [ -74.963973, 40.094654 ], [ -74.963593, 40.094398 ], [ -74.963129, 40.094083 ], [ -74.962923, 40.093941 ], [ -74.962169, 40.093424 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307421", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.070305, 40.034814 ], [ -75.069448, 40.035007 ], [ -75.068815, 40.035154 ], [ -75.068208, 40.035292 ], [ -75.067433, 40.035467 ], [ -75.065311, 40.035956 ], [ -75.065054, 40.036016 ], [ -75.064791, 40.036077 ], [ -75.064331, 40.036187 ], [ -75.064205, 40.036215 ], [ -75.063642, 40.03635 ], [ -75.0633, 40.036446 ], [ -75.063111, 40.036508 ], [ -75.062951, 40.036567 ], [ -75.062805, 40.036628 ], [ -75.062642, 40.0367 ], [ -75.062417, 40.036806 ], [ -75.062184, 40.036927 ], [ -75.06208, 40.036988 ], [ -75.06199, 40.037042 ], [ -75.0619, 40.0371 ], [ -75.061787, 40.037178 ], [ -75.061683, 40.037253 ], [ -75.061574, 40.037332 ], [ -75.061481, 40.037409 ], [ -75.061347, 40.037526 ], [ -75.060954, 40.037884 ], [ -75.060108, 40.038678 ], [ -75.059671, 40.039086 ], [ -75.059518, 40.039228 ], [ -75.059024, 40.039684 ], [ -75.05892, 40.03978 ], [ -75.058431, 40.040231 ], [ -75.0576, 40.041003 ], [ -75.056981, 40.041591 ], [ -75.056345, 40.042176 ], [ -75.055843, 40.042648 ], [ -75.055603, 40.042878 ], [ -75.05543, 40.043046 ], [ -75.055003, 40.043459 ], [ -75.05463, 40.043799 ], [ -75.054065, 40.044315 ], [ -75.052729, 40.04555 ], [ -75.052027, 40.046203 ], [ -75.051667, 40.046603 ], [ -75.051554, 40.046746 ], [ -75.051486, 40.046842 ], [ -75.05146, 40.046881 ], [ -75.051367, 40.047024 ], [ -75.051275, 40.047188 ], [ -75.0512, 40.047323 ], [ -75.051109, 40.047508 ], [ -75.051031, 40.04772 ], [ -75.050969, 40.047951 ], [ -75.050889, 40.048456 ], [ -75.050854, 40.049014 ], [ -75.050847, 40.049122 ], [ -75.05083, 40.049337 ], [ -75.050821, 40.049473 ], [ -75.050764, 40.0502 ], [ -75.050759, 40.050258 ], [ -75.050735, 40.050573 ], [ -75.050711, 40.050872 ], [ -75.050673, 40.051254 ], [ -75.050646, 40.051435 ], [ -75.05062, 40.051587 ], [ -75.050583, 40.05175 ], [ -75.050525, 40.05193 ], [ -75.050459, 40.052105 ], [ -75.050393, 40.052251 ], [ -75.05032, 40.052382 ], [ -75.050223, 40.052544 ], [ -75.050146, 40.052654 ], [ -75.050027, 40.052807 ], [ -75.049911, 40.05294 ], [ -75.049813, 40.053047 ], [ -75.049673, 40.053191 ], [ -75.049344, 40.053521 ], [ -75.048878, 40.053992 ], [ -75.047677, 40.055206 ], [ -75.047371, 40.055504 ], [ -75.046855, 40.056021 ], [ -75.046384, 40.056495 ], [ -75.045536, 40.057345 ], [ -75.045247, 40.057638 ], [ -75.045117, 40.057767 ], [ -75.044742, 40.058145 ], [ -75.044476, 40.058414 ], [ -75.044373, 40.05853 ], [ -75.044339, 40.058569 ], [ -75.044255, 40.058675 ], [ -75.044048, 40.058662 ], [ -75.043937, 40.058645 ], [ -75.043857, 40.058619 ], [ -75.043765, 40.058575 ], [ -75.043007, 40.05815 ], [ -75.042823, 40.058043 ], [ -75.042666, 40.057967 ], [ -75.042486, 40.057898 ], [ -75.042281, 40.057835 ], [ -75.04212, 40.057801 ], [ -75.041956, 40.057772 ], [ -75.041755, 40.057752 ], [ -75.041576, 40.057742 ], [ -75.04142, 40.057742 ], [ -75.041258, 40.057767 ], [ -75.041082, 40.057792 ], [ -75.040897, 40.057832 ], [ -75.040722, 40.057884 ], [ -75.040574, 40.057933 ], [ -75.040435, 40.057991 ], [ -75.040207, 40.058105 ], [ -75.040031, 40.058187 ], [ -75.039857, 40.058247 ], [ -75.0397, 40.058292 ], [ -75.039498, 40.058347 ], [ -75.039293, 40.058386 ], [ -75.03902, 40.058419 ], [ -75.038775, 40.058434 ], [ -75.038578, 40.058431 ], [ -75.038286, 40.058409 ], [ -75.038138, 40.058394 ], [ -75.037965, 40.058358 ], [ -75.037781, 40.058305 ], [ -75.037474, 40.058209 ], [ -75.036853, 40.058007 ], [ -75.036427, 40.057853 ], [ -75.036267, 40.057796 ], [ -75.036075, 40.057728 ], [ -75.035682, 40.057582 ], [ -75.035423, 40.057477 ], [ -75.034841, 40.057251 ], [ -75.034816, 40.057241 ], [ -75.034424, 40.057106 ], [ -75.034322, 40.057066 ], [ -75.034129, 40.057001 ], [ -75.033891, 40.05693 ], [ -75.033652, 40.056864 ], [ -75.033436, 40.056819 ], [ -75.033205, 40.05678 ], [ -75.032918, 40.056746 ], [ -75.03279, 40.05673 ], [ -75.031904, 40.056658 ], [ -75.031673, 40.056636 ], [ -75.031508, 40.056621 ], [ -75.031105, 40.056584 ], [ -75.029857, 40.056477 ], [ -75.029579, 40.056453 ], [ -75.029167, 40.056419 ], [ -75.029055, 40.05641 ], [ -75.02902, 40.056334 ], [ -75.028966, 40.05627 ], [ -75.028877, 40.056211 ], [ -75.02878, 40.056176 ], [ -75.028669, 40.056159 ], [ -75.028565, 40.05616 ], [ -75.028483, 40.056188 ], [ -75.028408, 40.056232 ], [ -75.028362, 40.05627 ], [ -75.028319, 40.056328 ], [ -75.028294, 40.056373 ], [ -75.028279, 40.056419 ], [ -75.028267, 40.056475 ], [ -75.028269, 40.056536 ], [ -75.028284, 40.056582 ], [ -75.028306, 40.056622 ], [ -75.028337, 40.056658 ], [ -75.028376, 40.056695 ], [ -75.028416, 40.056723 ], [ -75.027525, 40.057621 ], [ -75.026888, 40.058267 ], [ -75.026376, 40.058776 ], [ -75.025483, 40.059641 ], [ -75.024807, 40.060319 ], [ -75.024745, 40.060385 ], [ -75.02469, 40.060438 ], [ -75.024194, 40.060931 ], [ -75.023907, 40.061198 ], [ -75.023752, 40.061346 ], [ -75.022767, 40.062334 ], [ -75.022476, 40.062614 ], [ -75.021993, 40.063113 ], [ -75.021981, 40.063088 ], [ -75.021806, 40.062754 ], [ -75.021731, 40.062608 ], [ -75.021673, 40.0625 ], [ -75.021467, 40.062115 ], [ -75.021402, 40.061986 ], [ -75.021329, 40.06187 ], [ -75.021258, 40.061772 ], [ -75.021177, 40.061679 ], [ -75.021022, 40.061535 ], [ -75.020901, 40.061448 ], [ -75.020783, 40.061372 ], [ -75.020618, 40.061274 ], [ -75.020176, 40.061008 ], [ -75.020016, 40.060909 ], [ -75.01996, 40.060874 ], [ -75.019803, 40.060786 ], [ -75.019453, 40.060572 ], [ -75.018383, 40.059925 ], [ -75.017716, 40.060545 ], [ -75.017489, 40.060736 ], [ -75.01731, 40.060884 ], [ -75.017113, 40.061025 ], [ -75.016903, 40.061167 ], [ -75.0167, 40.06128 ], [ -75.016463, 40.061395 ], [ -75.016292, 40.061471 ], [ -75.016112, 40.061547 ], [ -75.015951, 40.061611 ], [ -75.015818, 40.061656 ], [ -75.01568, 40.061699 ], [ -75.015541, 40.061735 ], [ -75.015365, 40.061775 ], [ -75.015153, 40.061816 ], [ -75.014946, 40.061854 ], [ -75.013601, 40.06205 ], [ -75.012743, 40.062182 ], [ -75.011868, 40.062312 ], [ -75.011608, 40.062357 ], [ -75.010998, 40.062453 ], [ -75.010607, 40.062511 ], [ -75.010401, 40.062536 ], [ -75.01019, 40.06255 ], [ -75.009557, 40.062556 ], [ -75.009428, 40.062557 ], [ -75.009425, 40.063483 ], [ -75.009425, 40.063798 ], [ -75.009423, 40.064434 ], [ -75.009417, 40.064934 ], [ -75.009415, 40.065132 ], [ -75.009418, 40.065245 ], [ -75.009402, 40.065442 ], [ -75.009379, 40.065655 ], [ -75.009328, 40.065903 ], [ -75.009257, 40.066165 ], [ -75.009215, 40.066306 ], [ -75.009169, 40.066449 ], [ -75.009102, 40.066652 ], [ -75.009017, 40.066871 ], [ -75.008831, 40.067368 ], [ -75.008811, 40.067423 ], [ -75.008779, 40.067501 ], [ -75.008701, 40.067716 ], [ -75.008692, 40.067736 ], [ -75.008645, 40.067855 ], [ -75.008605, 40.067944 ], [ -75.008582, 40.067983 ], [ -75.008551, 40.068041 ], [ -75.008494, 40.068132 ], [ -75.00844, 40.068218 ], [ -75.008393, 40.068286 ], [ -75.008376, 40.068313 ], [ -75.008324, 40.068383 ], [ -75.008248, 40.068472 ], [ -75.008191, 40.068542 ], [ -75.00814, 40.0686 ], [ -75.008085, 40.068653 ], [ -75.008001, 40.068728 ], [ -75.007937, 40.06878 ], [ -75.007852, 40.068839 ], [ -75.007637, 40.06898 ], [ -75.007336, 40.069163 ], [ -75.007314, 40.069176 ], [ -75.007246, 40.069216 ], [ -75.007213, 40.069233 ], [ -75.007184, 40.069248 ], [ -75.007162, 40.069258 ], [ -75.006834, 40.069441 ], [ -75.006366, 40.069705 ], [ -75.005695, 40.070105 ], [ -75.005251, 40.07037 ], [ -75.004883, 40.070586 ], [ -75.004267, 40.070944 ], [ -75.003943, 40.071149 ], [ -75.00374, 40.071292 ], [ -75.003551, 40.071441 ], [ -75.003367, 40.071599 ], [ -75.003204, 40.071754 ], [ -75.00307, 40.071906 ], [ -75.002872, 40.072144 ], [ -75.002796, 40.07225 ], [ -75.002715, 40.072373 ], [ -75.002665, 40.072455 ], [ -75.002606, 40.072548 ], [ -75.002513, 40.072716 ], [ -75.002412, 40.072939 ], [ -75.002371, 40.073054 ], [ -75.002335, 40.073153 ], [ -75.002274, 40.073346 ], [ -75.00226, 40.073398 ], [ -75.002259, 40.073404 ], [ -75.002218, 40.07357 ], [ -75.002152, 40.073856 ], [ -75.002096, 40.074103 ], [ -75.002071, 40.074172 ], [ -75.001975, 40.074394 ], [ -75.001892, 40.074557 ], [ -75.001824, 40.074678 ], [ -75.001742, 40.074804 ], [ -75.001599, 40.075001 ], [ -75.001488, 40.075136 ], [ -75.00092, 40.075821 ], [ -75.000329, 40.076533 ], [ -74.999518, 40.077498 ], [ -74.998792, 40.078356 ], [ -74.998487, 40.078719 ], [ -74.998395, 40.078663 ], [ -74.998305, 40.078614 ], [ -74.997706, 40.078315 ], [ -74.996802, 40.077878 ], [ -74.996524, 40.077743 ], [ -74.996004, 40.077476 ], [ -74.995292, 40.077152 ], [ -74.995111, 40.077098 ], [ -74.994858, 40.077028 ], [ -74.994644, 40.07698 ], [ -74.99444, 40.076941 ], [ -74.994028, 40.076871 ], [ -74.99365, 40.076811 ], [ -74.993267, 40.076749 ], [ -74.992798, 40.076681 ], [ -74.992471, 40.076631 ], [ -74.992212, 40.076589 ], [ -74.99202, 40.07655 ], [ -74.991822, 40.076496 ], [ -74.991633, 40.076442 ], [ -74.991522, 40.076403 ], [ -74.991396, 40.076355 ], [ -74.991261, 40.076294 ], [ -74.991104, 40.076217 ], [ -74.990946, 40.07613 ], [ -74.99077, 40.07602 ], [ -74.990636, 40.075928 ], [ -74.990511, 40.075834 ], [ -74.990343, 40.075685 ], [ -74.98989, 40.075265 ], [ -74.989275, 40.074698 ], [ -74.988439, 40.075232 ], [ -74.987887, 40.075581 ], [ -74.987749, 40.075674 ], [ -74.987653, 40.075744 ], [ -74.987612, 40.075778 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075962 ], [ -74.987004, 40.076312 ], [ -74.986419, 40.076829 ], [ -74.985835, 40.077317 ], [ -74.985325, 40.077746 ], [ -74.984715, 40.078448 ], [ -74.984436, 40.07886 ], [ -74.984372, 40.078951 ], [ -74.984209, 40.079276 ], [ -74.984115, 40.079516 ], [ -74.983977, 40.07991 ], [ -74.983908, 40.080168 ], [ -74.983877, 40.080486 ], [ -74.983886, 40.080997 ], [ -74.983865, 40.081657 ], [ -74.983876, 40.081866 ], [ -74.983892, 40.082324 ], [ -74.984335, 40.082316 ], [ -74.984693, 40.082312 ], [ -74.98514, 40.082316 ], [ -74.985585, 40.082332 ], [ -74.985757, 40.082344 ], [ -74.98597, 40.082361 ], [ -74.98615, 40.08238 ], [ -74.986556, 40.08244 ], [ -74.986792, 40.082481 ], [ -74.987049, 40.082532 ], [ -74.987233, 40.082571 ], [ -74.987402, 40.082609 ], [ -74.987561, 40.08265 ], [ -74.98803, 40.082795 ], [ -74.988306, 40.082882 ], [ -74.988478, 40.082944 ], [ -74.988753, 40.083062 ], [ -74.988961, 40.083165 ], [ -74.989116, 40.083252 ], [ -74.989249, 40.083338 ], [ -74.98939, 40.083442 ], [ -74.989507, 40.083537 ], [ -74.989662, 40.083673 ], [ -74.989813, 40.083824 ], [ -74.989969, 40.083995 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984034, 40.09007 ], [ -74.983822, 40.090271 ], [ -74.983577, 40.090519 ], [ -74.983069, 40.091066 ], [ -74.98294, 40.091201 ], [ -74.982871, 40.09128 ], [ -74.982662, 40.091488 ], [ -74.982633, 40.091516 ], [ -74.982481, 40.091659 ], [ -74.982385, 40.091744 ], [ -74.982295, 40.091828 ], [ -74.982134, 40.091966 ], [ -74.981855, 40.092183 ], [ -74.981535, 40.092442 ], [ -74.981383, 40.092559 ], [ -74.980593, 40.093191 ], [ -74.98051, 40.093255 ], [ -74.98015, 40.093539 ], [ -74.97997, 40.093682 ], [ -74.979861, 40.093768 ], [ -74.979773, 40.093835 ], [ -74.979672, 40.093907 ], [ -74.979576, 40.093978 ], [ -74.979496, 40.094044 ], [ -74.979316, 40.094184 ], [ -74.979101, 40.094341 ], [ -74.978225, 40.094972 ], [ -74.977487, 40.095506 ], [ -74.977198, 40.095702 ], [ -74.977015, 40.095827 ], [ -74.976878, 40.095914 ], [ -74.97679, 40.09596 ], [ -74.976685, 40.096008 ], [ -74.976449, 40.096112 ], [ -74.976149, 40.096243 ], [ -74.975783, 40.096404 ], [ -74.975811, 40.096446 ], [ -74.975837, 40.096486 ], [ -74.976023, 40.096782 ], [ -74.976051, 40.096841 ], [ -74.976074, 40.096897 ], [ -74.976089, 40.096956 ], [ -74.976103, 40.09702 ], [ -74.976109, 40.097082 ], [ -74.976113, 40.09715 ], [ -74.976108, 40.097217 ], [ -74.976098, 40.097305 ], [ -74.976103, 40.097507 ], [ -74.976008, 40.097767 ], [ -74.975973, 40.097828 ], [ -74.975876, 40.097992 ], [ -74.975653, 40.098237 ], [ -74.975417, 40.098456 ], [ -74.975282, 40.098547 ], [ -74.974755, 40.098903 ], [ -74.974117, 40.099354 ], [ -74.97404, 40.099408 ], [ -74.973559, 40.099696 ], [ -74.973406, 40.099776 ], [ -74.97267, 40.100176 ], [ -74.971908, 40.100483 ], [ -74.971325, 40.100668 ], [ -74.971116, 40.100719 ], [ -74.970855, 40.100784 ], [ -74.970385, 40.100865 ], [ -74.97003, 40.100902 ], [ -74.969849, 40.100921 ], [ -74.968938, 40.100936 ], [ -74.968401, 40.100912 ], [ -74.967537, 40.100814 ], [ -74.966663, 40.100578 ], [ -74.966223, 40.100437 ], [ -74.965773, 40.100228 ], [ -74.965437, 40.099995 ], [ -74.965314, 40.099879 ], [ -74.965207, 40.099779 ], [ -74.964996, 40.099523 ], [ -74.964897, 40.099343 ], [ -74.964792, 40.099067 ], [ -74.964775, 40.098977 ], [ -74.964739, 40.098802 ], [ -74.964709, 40.097797 ], [ -74.9647, 40.097297 ], [ -74.964687, 40.096197 ], [ -74.964686, 40.095886 ], [ -74.9647, 40.095779 ], [ -74.964743, 40.095624 ], [ -74.964955, 40.095327 ], [ -74.96461, 40.095104 ], [ -74.964214, 40.094822 ], [ -74.963973, 40.094654 ], [ -74.963593, 40.094398 ], [ -74.963129, 40.094083 ], [ -74.962923, 40.093941 ], [ -74.962169, 40.093424 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307429", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.964415, 40.088271 ], [ -74.963977, 40.089231 ], [ -74.963877, 40.089456 ], [ -74.96378, 40.089766 ], [ -74.9637, 40.090184 ], [ -74.963675, 40.090382 ], [ -74.963646, 40.090806 ], [ -74.96364, 40.090888 ], [ -74.963585, 40.091179 ], [ -74.963448, 40.091487 ], [ -74.963242, 40.091733 ], [ -74.962676, 40.09216 ], [ -74.962482, 40.092321 ], [ -74.962121, 40.092641 ], [ -74.961883, 40.092831 ], [ -74.961816, 40.092867 ], [ -74.961651, 40.092943 ], [ -74.962075, 40.093343 ], [ -74.962117, 40.093382 ], [ -74.962169, 40.093424 ], [ -74.962923, 40.093941 ], [ -74.963129, 40.094083 ], [ -74.963593, 40.094398 ], [ -74.963973, 40.094654 ], [ -74.964214, 40.094822 ], [ -74.96461, 40.095104 ], [ -74.964955, 40.095327 ], [ -74.964743, 40.095624 ], [ -74.9647, 40.095779 ], [ -74.964686, 40.095886 ], [ -74.964687, 40.096197 ], [ -74.9647, 40.097297 ], [ -74.964709, 40.097797 ], [ -74.964739, 40.098802 ], [ -74.964775, 40.098977 ], [ -74.964792, 40.099067 ], [ -74.964897, 40.099343 ], [ -74.964996, 40.099523 ], [ -74.965207, 40.099779 ], [ -74.965314, 40.099879 ], [ -74.965437, 40.099995 ], [ -74.965773, 40.100228 ], [ -74.966223, 40.100437 ], [ -74.966663, 40.100578 ], [ -74.967537, 40.100814 ], [ -74.968401, 40.100912 ], [ -74.968938, 40.100936 ], [ -74.969849, 40.100921 ], [ -74.97003, 40.100902 ], [ -74.970385, 40.100865 ], [ -74.970855, 40.100784 ], [ -74.971116, 40.100719 ], [ -74.971325, 40.100668 ], [ -74.971908, 40.100483 ], [ -74.97267, 40.100176 ], [ -74.973406, 40.099776 ], [ -74.973559, 40.099696 ], [ -74.97404, 40.099408 ], [ -74.974117, 40.099354 ], [ -74.974755, 40.098903 ], [ -74.975282, 40.098547 ], [ -74.975417, 40.098456 ], [ -74.975653, 40.098237 ], [ -74.975876, 40.097992 ], [ -74.975973, 40.097828 ], [ -74.976008, 40.097767 ], [ -74.976103, 40.097507 ], [ -74.976098, 40.097305 ], [ -74.976108, 40.097217 ], [ -74.976113, 40.09715 ], [ -74.976109, 40.097082 ], [ -74.976103, 40.09702 ], [ -74.976089, 40.096956 ], [ -74.976074, 40.096897 ], [ -74.976051, 40.096841 ], [ -74.976023, 40.096782 ], [ -74.975837, 40.096486 ], [ -74.976358, 40.096254 ], [ -74.976727, 40.096091 ], [ -74.976824, 40.096041 ], [ -74.976908, 40.095997 ], [ -74.977034, 40.095921 ], [ -74.977565, 40.095569 ], [ -74.978306, 40.095042 ], [ -74.978727, 40.094733 ], [ -74.978771, 40.094701 ], [ -74.979405, 40.094246 ], [ -74.979562, 40.094131 ], [ -74.979665, 40.094055 ], [ -74.979767, 40.093983 ], [ -74.979948, 40.093841 ], [ -74.980055, 40.093758 ], [ -74.980241, 40.09361 ], [ -74.980408, 40.093477 ], [ -74.981611, 40.0925 ], [ -74.981933, 40.092245 ], [ -74.982066, 40.092147 ], [ -74.982216, 40.092023 ], [ -74.982353, 40.09191 ], [ -74.982481, 40.091801 ], [ -74.982574, 40.091716 ], [ -74.982677, 40.091621 ], [ -74.982869, 40.091429 ], [ -74.983036, 40.091259 ], [ -74.98316, 40.091127 ], [ -74.98364, 40.09061 ], [ -74.983881, 40.090368 ], [ -74.983936, 40.090316 ], [ -74.984118, 40.090149 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.99006, 40.084095 ], [ -74.989969, 40.083995 ], [ -74.989813, 40.083824 ], [ -74.989662, 40.083673 ], [ -74.989507, 40.083537 ], [ -74.98939, 40.083442 ], [ -74.989249, 40.083338 ], [ -74.989116, 40.083252 ], [ -74.988961, 40.083165 ], [ -74.988753, 40.083062 ], [ -74.988478, 40.082944 ], [ -74.988306, 40.082882 ], [ -74.98803, 40.082795 ], [ -74.987561, 40.08265 ], [ -74.987402, 40.082609 ], [ -74.987233, 40.082571 ], [ -74.987049, 40.082532 ], [ -74.986792, 40.082481 ], [ -74.986556, 40.08244 ], [ -74.98615, 40.08238 ], [ -74.98597, 40.082361 ], [ -74.985757, 40.082344 ], [ -74.985585, 40.082332 ], [ -74.98514, 40.082316 ], [ -74.984693, 40.082312 ], [ -74.984335, 40.082316 ], [ -74.983892, 40.082324 ], [ -74.983876, 40.081866 ], [ -74.983865, 40.081657 ], [ -74.983886, 40.080997 ], [ -74.983877, 40.080486 ], [ -74.983908, 40.080168 ], [ -74.983977, 40.07991 ], [ -74.984115, 40.079516 ], [ -74.984209, 40.079276 ], [ -74.984372, 40.078951 ], [ -74.984436, 40.07886 ], [ -74.984715, 40.078448 ], [ -74.985325, 40.077746 ], [ -74.985835, 40.077317 ], [ -74.986419, 40.076829 ], [ -74.987004, 40.076312 ], [ -74.9874, 40.075962 ], [ -74.987566, 40.075818 ], [ -74.987612, 40.075778 ], [ -74.987653, 40.075744 ], [ -74.987749, 40.075674 ], [ -74.987887, 40.075581 ], [ -74.988439, 40.075232 ], [ -74.989275, 40.074698 ], [ -74.98989, 40.075265 ], [ -74.990343, 40.075685 ], [ -74.990511, 40.075834 ], [ -74.990636, 40.075928 ], [ -74.99077, 40.07602 ], [ -74.990946, 40.07613 ], [ -74.991104, 40.076217 ], [ -74.991261, 40.076294 ], [ -74.991396, 40.076355 ], [ -74.991522, 40.076403 ], [ -74.991633, 40.076442 ], [ -74.991822, 40.076496 ], [ -74.99202, 40.07655 ], [ -74.992212, 40.076589 ], [ -74.992471, 40.076631 ], [ -74.992798, 40.076681 ], [ -74.993267, 40.076749 ], [ -74.99365, 40.076811 ], [ -74.994028, 40.076871 ], [ -74.99444, 40.076941 ], [ -74.994644, 40.07698 ], [ -74.994858, 40.077028 ], [ -74.995111, 40.077098 ], [ -74.995292, 40.077152 ], [ -74.996004, 40.077476 ], [ -74.996524, 40.077743 ], [ -74.996802, 40.077878 ], [ -74.997706, 40.078315 ], [ -74.998305, 40.078614 ], [ -74.998395, 40.078663 ], [ -74.998487, 40.078719 ], [ -74.998599, 40.078787 ], [ -75.000821, 40.076122 ], [ -75.001031, 40.075872 ], [ -75.001336, 40.075497 ], [ -75.001344, 40.075487 ], [ -75.0016, 40.075185 ], [ -75.001748, 40.074988 ], [ -75.001894, 40.074785 ], [ -75.001907, 40.074765 ], [ -75.002003, 40.074598 ], [ -75.002085, 40.074428 ], [ -75.00214, 40.074324 ], [ -75.002213, 40.074115 ], [ -75.002274, 40.073872 ], [ -75.00242, 40.073294 ], [ -75.002521, 40.072992 ], [ -75.002616, 40.072784 ], [ -75.002714, 40.072595 ], [ -75.002907, 40.072289 ], [ -75.003053, 40.072103 ], [ -75.003199, 40.071929 ], [ -75.003367, 40.071754 ], [ -75.003462, 40.071661 ], [ -75.003637, 40.071511 ], [ -75.004047, 40.071202 ], [ -75.004395, 40.070989 ], [ -75.004736, 40.070789 ], [ -75.00496, 40.070659 ], [ -75.005325, 40.070442 ], [ -75.006457, 40.069778 ], [ -75.006546, 40.069725 ], [ -75.006683, 40.069647 ], [ -75.007261, 40.069317 ], [ -75.007356, 40.069263 ], [ -75.007415, 40.069229 ], [ -75.007532, 40.069158 ], [ -75.007679, 40.069061 ], [ -75.007828, 40.068971 ], [ -75.007984, 40.068864 ], [ -75.008108, 40.068766 ], [ -75.008226, 40.068656 ], [ -75.008305, 40.068574 ], [ -75.008405, 40.068456 ], [ -75.008487, 40.068348 ], [ -75.008545, 40.068256 ], [ -75.00862, 40.068126 ], [ -75.008698, 40.06798 ], [ -75.008797, 40.067755 ], [ -75.008856, 40.067623 ], [ -75.008885, 40.067549 ], [ -75.00895, 40.067388 ], [ -75.009111, 40.066929 ], [ -75.009215, 40.066632 ], [ -75.009286, 40.066445 ], [ -75.009373, 40.066161 ], [ -75.00944, 40.065871 ], [ -75.009473, 40.065706 ], [ -75.009505, 40.065412 ], [ -75.009518, 40.065157 ], [ -75.009521, 40.064941 ], [ -75.009521, 40.064935 ], [ -75.009541, 40.063485 ], [ -75.00955, 40.062965 ], [ -75.009557, 40.062556 ], [ -75.01019, 40.06255 ], [ -75.010401, 40.062536 ], [ -75.010607, 40.062511 ], [ -75.010998, 40.062453 ], [ -75.011608, 40.062357 ], [ -75.011868, 40.062312 ], [ -75.012743, 40.062182 ], [ -75.013601, 40.06205 ], [ -75.014946, 40.061854 ], [ -75.015153, 40.061816 ], [ -75.015365, 40.061775 ], [ -75.015541, 40.061735 ], [ -75.01568, 40.061699 ], [ -75.015818, 40.061656 ], [ -75.015951, 40.061611 ], [ -75.016112, 40.061547 ], [ -75.016292, 40.061471 ], [ -75.016463, 40.061395 ], [ -75.0167, 40.06128 ], [ -75.016903, 40.061167 ], [ -75.017113, 40.061025 ], [ -75.01731, 40.060884 ], [ -75.017489, 40.060736 ], [ -75.017716, 40.060545 ], [ -75.018383, 40.059925 ], [ -75.019453, 40.060572 ], [ -75.019803, 40.060786 ], [ -75.01996, 40.060874 ], [ -75.020016, 40.060909 ], [ -75.020176, 40.061008 ], [ -75.020618, 40.061274 ], [ -75.020783, 40.061372 ], [ -75.020901, 40.061448 ], [ -75.021022, 40.061535 ], [ -75.021177, 40.061679 ], [ -75.021258, 40.061772 ], [ -75.021329, 40.06187 ], [ -75.021402, 40.061986 ], [ -75.021467, 40.062115 ], [ -75.021673, 40.0625 ], [ -75.021731, 40.062608 ], [ -75.021806, 40.062754 ], [ -75.021981, 40.063088 ], [ -75.021993, 40.063113 ], [ -75.022476, 40.062614 ], [ -75.022767, 40.062334 ], [ -75.023752, 40.061346 ], [ -75.023907, 40.061198 ], [ -75.024194, 40.060931 ], [ -75.02469, 40.060438 ], [ -75.024745, 40.060385 ], [ -75.024807, 40.060319 ], [ -75.025483, 40.059641 ], [ -75.026376, 40.058776 ], [ -75.026888, 40.058267 ], [ -75.027525, 40.057621 ], [ -75.028416, 40.056723 ], [ -75.028492, 40.056757 ], [ -75.028568, 40.056776 ], [ -75.02866, 40.056787 ], [ -75.028763, 40.056782 ], [ -75.028842, 40.056768 ], [ -75.028917, 40.056734 ], [ -75.028984, 40.056685 ], [ -75.02904, 40.056616 ], [ -75.029142, 40.056622 ], [ -75.029489, 40.05665 ], [ -75.030541, 40.056742 ], [ -75.031097, 40.056792 ], [ -75.031451, 40.056824 ], [ -75.032776, 40.056947 ], [ -75.033029, 40.056968 ], [ -75.033298, 40.057007 ], [ -75.033546, 40.057058 ], [ -75.033742, 40.057113 ], [ -75.033784, 40.057125 ], [ -75.033943, 40.057173 ], [ -75.034185, 40.057244 ], [ -75.034239, 40.05726 ], [ -75.034298, 40.05728 ], [ -75.034689, 40.057418 ], [ -75.034973, 40.057506 ], [ -75.035288, 40.057595 ], [ -75.035726, 40.057717 ], [ -75.03575, 40.057724 ], [ -75.035961, 40.057791 ], [ -75.035993, 40.057802 ], [ -75.03623, 40.057884 ], [ -75.036425, 40.057949 ], [ -75.036943, 40.058136 ], [ -75.037458, 40.058347 ], [ -75.037706, 40.058446 ], [ -75.037876, 40.058501 ], [ -75.038038, 40.058538 ], [ -75.038201, 40.058566 ], [ -75.03837, 40.058583 ], [ -75.038557, 40.0586 ], [ -75.038814, 40.058605 ], [ -75.039091, 40.058592 ], [ -75.039272, 40.058575 ], [ -75.039424, 40.058553 ], [ -75.039648, 40.058504 ], [ -75.039859, 40.058447 ], [ -75.040078, 40.058378 ], [ -75.040292, 40.0583 ], [ -75.040564, 40.05818 ], [ -75.040719, 40.058112 ], [ -75.040854, 40.05806 ], [ -75.041012, 40.058022 ], [ -75.041138, 40.057995 ], [ -75.041269, 40.057978 ], [ -75.041471, 40.057956 ], [ -75.04158, 40.057952 ], [ -75.041737, 40.057958 ], [ -75.04193, 40.057978 ], [ -75.042076, 40.058001 ], [ -75.04224, 40.05804 ], [ -75.042425, 40.0581 ], [ -75.042589, 40.058175 ], [ -75.042861, 40.058316 ], [ -75.043199, 40.058507 ], [ -75.043358, 40.058598 ], [ -75.043498, 40.058692 ], [ -75.043628, 40.058795 ], [ -75.043748, 40.058904 ], [ -75.043797, 40.058963 ], [ -75.043841, 40.059014 ], [ -75.043894, 40.05909 ], [ -75.043967, 40.059217 ], [ -75.04399, 40.059258 ], [ -75.044029, 40.0593 ], [ -75.044056, 40.059318 ], [ -75.044066, 40.059325 ], [ -75.04411, 40.059347 ], [ -75.044217, 40.059373 ], [ -75.0443, 40.059385 ], [ -75.044398, 40.059385 ], [ -75.044485, 40.059377 ], [ -75.04479, 40.059042 ], [ -75.045236, 40.058589 ], [ -75.045841, 40.057973 ], [ -75.046494, 40.057319 ], [ -75.046994, 40.056819 ], [ -75.048268, 40.055534 ], [ -75.048587, 40.05522 ], [ -75.049026, 40.054773 ], [ -75.049484, 40.05431 ], [ -75.050288, 40.053512 ], [ -75.050434, 40.053362 ], [ -75.050547, 40.053241 ], [ -75.05062, 40.053155 ], [ -75.050671, 40.05309 ], [ -75.050765, 40.052966 ], [ -75.050857, 40.052839 ], [ -75.05098, 40.052645 ], [ -75.051047, 40.052529 ], [ -75.051116, 40.052392 ], [ -75.051182, 40.052229 ], [ -75.051242, 40.052062 ], [ -75.051277, 40.051973 ], [ -75.051333, 40.05177 ], [ -75.051377, 40.051598 ], [ -75.051395, 40.051494 ], [ -75.051406, 40.051421 ], [ -75.051418, 40.051288 ], [ -75.051423, 40.051213 ], [ -75.051459, 40.050719 ], [ -75.051481, 40.05047 ], [ -75.051516, 40.05009 ], [ -75.051527, 40.049983 ], [ -75.051592, 40.049064 ], [ -75.051617, 40.048708 ], [ -75.05163, 40.048503 ], [ -75.051649, 40.048337 ], [ -75.051668, 40.048213 ], [ -75.051689, 40.048109 ], [ -75.051705, 40.048024 ], [ -75.051752, 40.047875 ], [ -75.051816, 40.047709 ], [ -75.051895, 40.047526 ], [ -75.051976, 40.047368 ], [ -75.052078, 40.047194 ], [ -75.052176, 40.047046 ], [ -75.05232, 40.046868 ], [ -75.052456, 40.046704 ], [ -75.052647, 40.046521 ], [ -75.053095, 40.046096 ], [ -75.053206, 40.045994 ], [ -75.053232, 40.04597 ], [ -75.054058, 40.045169 ], [ -75.054642, 40.044663 ], [ -75.056448, 40.042972 ], [ -75.056776, 40.04267 ], [ -75.057079, 40.04239 ], [ -75.057397, 40.04209 ], [ -75.057514, 40.041984 ], [ -75.057734, 40.041782 ], [ -75.057887, 40.041633 ], [ -75.058559, 40.041015 ], [ -75.059045, 40.040569 ], [ -75.059669, 40.039958 ], [ -75.060277, 40.039398 ], [ -75.060676, 40.039021 ], [ -75.060774, 40.03893 ], [ -75.060915, 40.038793 ], [ -75.061436, 40.038315 ], [ -75.061546, 40.038214 ], [ -75.061803, 40.037974 ], [ -75.061911, 40.037878 ], [ -75.061994, 40.037811 ], [ -75.062103, 40.037721 ], [ -75.062199, 40.037652 ], [ -75.062299, 40.037585 ], [ -75.062395, 40.03752 ], [ -75.062457, 40.037479 ], [ -75.062468, 40.037473 ], [ -75.062601, 40.037397 ], [ -75.06276, 40.037307 ], [ -75.062946, 40.037214 ], [ -75.063084, 40.037151 ], [ -75.063323, 40.037059 ], [ -75.063538, 40.036983 ], [ -75.063744, 40.036921 ], [ -75.06376, 40.036916 ], [ -75.063872, 40.036888 ], [ -75.064381, 40.036761 ], [ -75.064505, 40.03673 ], [ -75.065428, 40.036519 ], [ -75.066023, 40.036384 ], [ -75.066437, 40.036286 ], [ -75.067278, 40.036094 ], [ -75.067946, 40.035936 ], [ -75.069013, 40.035696 ], [ -75.069681, 40.035546 ], [ -75.07006, 40.035458 ], [ -75.070132, 40.035461 ], [ -75.070163, 40.035461 ], [ -75.070239, 40.035472 ], [ -75.070313, 40.035495 ], [ -75.070381, 40.035526 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307430", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953034, 40.117252 ], [ -74.951348, 40.116318 ], [ -74.950711, 40.117018 ], [ -74.950239, 40.117378 ], [ -74.949055, 40.117705 ], [ -74.948602, 40.117813 ], [ -74.948472, 40.117894 ], [ -74.948413, 40.117953 ], [ -74.948289, 40.118065 ], [ -74.948236, 40.118135 ], [ -74.948207, 40.118212 ], [ -74.948201, 40.118271 ], [ -74.948281, 40.118476 ], [ -74.951537, 40.12027 ], [ -74.95217, 40.120634 ], [ -74.952385, 40.120773 ], [ -74.952524, 40.120918 ], [ -74.952531, 40.120947 ], [ -74.952559, 40.12099 ], [ -74.952746, 40.121341 ], [ -74.952882, 40.121585 ], [ -74.952954, 40.121643 ], [ -74.95299, 40.12165 ], [ -74.953062, 40.121679 ], [ -74.953098, 40.121679 ], [ -74.953334, 40.121614 ], [ -74.953476, 40.121563 ], [ -74.953729, 40.121471 ], [ -74.95421, 40.121291 ], [ -74.954267, 40.12127 ], [ -74.954934, 40.12104 ], [ -74.955781, 40.120739 ], [ -74.95647, 40.120516 ], [ -74.956945, 40.12034 ], [ -74.95704, 40.120345 ], [ -74.957088, 40.120315 ], [ -74.957138, 40.120278 ], [ -74.957245, 40.120143 ], [ -74.957257, 40.120121 ], [ -74.957306, 40.120029 ], [ -74.957311, 40.119978 ], [ -74.957311, 40.119845 ], [ -74.957296, 40.119785 ], [ -74.957184, 40.119551 ], [ -74.957149, 40.119461 ], [ -74.957108, 40.119357 ], [ -74.957067, 40.119205 ], [ -74.957076, 40.119064 ], [ -74.957077, 40.119042 ], [ -74.957092, 40.118956 ], [ -74.957169, 40.118691 ], [ -74.957204, 40.118508 ], [ -74.957219, 40.118346 ], [ -74.957219, 40.118274 ], [ -74.95718, 40.118144 ], [ -74.957267, 40.118108 ], [ -74.957375, 40.11804 ], [ -74.95745, 40.118033 ], [ -74.957899, 40.117859 ], [ -74.957989, 40.117819 ], [ -74.958094, 40.117777 ], [ -74.958297, 40.117697 ], [ -74.958666, 40.117543 ], [ -74.958728, 40.117519 ], [ -74.959011, 40.117398 ], [ -74.959049, 40.117382 ], [ -74.959246, 40.117301 ], [ -74.959215, 40.117255 ], [ -74.959168, 40.117198 ], [ -74.959147, 40.117166 ], [ -74.959112, 40.117121 ], [ -74.958988, 40.116948 ], [ -74.958308, 40.115918 ], [ -74.958213, 40.115777 ], [ -74.957981, 40.115435 ], [ -74.957953, 40.115394 ], [ -74.95791, 40.115332 ], [ -74.957758, 40.115116 ], [ -74.957666, 40.11498 ], [ -74.957606, 40.114899 ], [ -74.957559, 40.114832 ], [ -74.957549, 40.114819 ], [ -74.957509, 40.114767 ], [ -74.957442, 40.114683 ], [ -74.957363, 40.114595 ], [ -74.957355, 40.114586 ], [ -74.957305, 40.11453 ], [ -74.957267, 40.114488 ], [ -74.957166, 40.114388 ], [ -74.956885, 40.114151 ], [ -74.956804, 40.114058 ], [ -74.956721, 40.113979 ], [ -74.956604, 40.113882 ], [ -74.956551, 40.113842 ], [ -74.956454, 40.113763 ], [ -74.956391, 40.113714 ], [ -74.956028, 40.11344 ], [ -74.955562, 40.113076 ], [ -74.955488, 40.11302 ], [ -74.955225, 40.112809 ], [ -74.954973, 40.112595 ], [ -74.954732, 40.112369 ], [ -74.954501, 40.112136 ], [ -74.954281, 40.111898 ], [ -74.954169, 40.111765 ], [ -74.954073, 40.111653 ], [ -74.954018, 40.111584 ], [ -74.953813, 40.111326 ], [ -74.953555, 40.110974 ], [ -74.953484, 40.110886 ], [ -74.953424, 40.110797 ], [ -74.953312, 40.110622 ], [ -74.953274, 40.110554 ], [ -74.953225, 40.110456 ], [ -74.953187, 40.110378 ], [ -74.953132, 40.110267 ], [ -74.9531, 40.110199 ], [ -74.952796, 40.109546 ], [ -74.95268, 40.109271 ], [ -74.952525, 40.108909 ], [ -74.952354, 40.108509 ], [ -74.952286, 40.108348 ], [ -74.952102, 40.107931 ], [ -74.95194, 40.107566 ], [ -74.951681, 40.107003 ], [ -74.951345, 40.106279 ], [ -74.951261, 40.106117 ], [ -74.95103, 40.105642 ], [ -74.950898, 40.105377 ], [ -74.95089, 40.10517 ], [ -74.950892, 40.105078 ], [ -74.950909, 40.10496 ], [ -74.950916, 40.104904 ], [ -74.950933, 40.104856 ], [ -74.950958, 40.104813 ], [ -74.951066, 40.104659 ], [ -74.951225, 40.10449 ], [ -74.951234, 40.104473 ], [ -74.951242, 40.104451 ], [ -74.951295, 40.10431 ], [ -74.951369, 40.10424 ], [ -74.951484, 40.104197 ], [ -74.951588, 40.104082 ], [ -74.952322, 40.103294 ], [ -74.95264, 40.102953 ], [ -74.953279, 40.102315 ], [ -74.953898, 40.101745 ], [ -74.954229, 40.101454 ], [ -74.954441, 40.101268 ], [ -74.954574, 40.101149 ], [ -74.955169, 40.100626 ], [ -74.955467, 40.100362 ], [ -74.955591, 40.100252 ], [ -74.955618, 40.100138 ], [ -74.956074, 40.099754 ], [ -74.956437, 40.099428 ], [ -74.956485, 40.099385 ], [ -74.956754, 40.099148 ], [ -74.956923, 40.098999 ], [ -74.956971, 40.098954 ], [ -74.957311, 40.09864 ], [ -74.957432, 40.098613 ], [ -74.957455, 40.098595 ], [ -74.957506, 40.098551 ], [ -74.95791, 40.098122 ], [ -74.958097, 40.097884 ], [ -74.958151, 40.09782 ], [ -74.958267, 40.097667 ], [ -74.958356, 40.097541 ], [ -74.958565, 40.097212 ], [ -74.958761, 40.096911 ], [ -74.958984, 40.096566 ], [ -74.959372, 40.095971 ], [ -74.959447, 40.095867 ], [ -74.959498, 40.095795 ], [ -74.959561, 40.095723 ], [ -74.959616, 40.095656 ], [ -74.959656, 40.095611 ], [ -74.959744, 40.095513 ], [ -74.959833, 40.09543 ], [ -74.960302, 40.094999 ], [ -74.96125, 40.094135 ], [ -74.96148, 40.093938 ], [ -74.961562, 40.093864 ], [ -74.961639, 40.093801 ], [ -74.961649, 40.093793 ], [ -74.961838, 40.093658 ], [ -74.962169, 40.093424 ], [ -74.962923, 40.093941 ], [ -74.963129, 40.094083 ], [ -74.963593, 40.094398 ], [ -74.963973, 40.094654 ], [ -74.964214, 40.094822 ], [ -74.96461, 40.095104 ], [ -74.964955, 40.095327 ], [ -74.964743, 40.095624 ], [ -74.9647, 40.095779 ], [ -74.964686, 40.095886 ], [ -74.964687, 40.096197 ], [ -74.9647, 40.097297 ], [ -74.964709, 40.097797 ], [ -74.964739, 40.098802 ], [ -74.964775, 40.098977 ], [ -74.964792, 40.099067 ], [ -74.964897, 40.099343 ], [ -74.964996, 40.099523 ], [ -74.965207, 40.099779 ], [ -74.965314, 40.099879 ], [ -74.965437, 40.099995 ], [ -74.965773, 40.100228 ], [ -74.966223, 40.100437 ], [ -74.966663, 40.100578 ], [ -74.967537, 40.100814 ], [ -74.968401, 40.100912 ], [ -74.968938, 40.100936 ], [ -74.969849, 40.100921 ], [ -74.97003, 40.100902 ], [ -74.970385, 40.100865 ], [ -74.970855, 40.100784 ], [ -74.971116, 40.100719 ], [ -74.971325, 40.100668 ], [ -74.971908, 40.100483 ], [ -74.97267, 40.100176 ], [ -74.973406, 40.099776 ], [ -74.973559, 40.099696 ], [ -74.97404, 40.099408 ], [ -74.974117, 40.099354 ], [ -74.974755, 40.098903 ], [ -74.975282, 40.098547 ], [ -74.975417, 40.098456 ], [ -74.975653, 40.098237 ], [ -74.975876, 40.097992 ], [ -74.975973, 40.097828 ], [ -74.976008, 40.097767 ], [ -74.976103, 40.097507 ], [ -74.976098, 40.097305 ], [ -74.976108, 40.097217 ], [ -74.976113, 40.09715 ], [ -74.976109, 40.097082 ], [ -74.976103, 40.09702 ], [ -74.976089, 40.096956 ], [ -74.976074, 40.096897 ], [ -74.976051, 40.096841 ], [ -74.976023, 40.096782 ], [ -74.975837, 40.096486 ], [ -74.976358, 40.096254 ], [ -74.976727, 40.096091 ], [ -74.976824, 40.096041 ], [ -74.976908, 40.095997 ], [ -74.977034, 40.095921 ], [ -74.977565, 40.095569 ], [ -74.978306, 40.095042 ], [ -74.978727, 40.094733 ], [ -74.978771, 40.094701 ], [ -74.979405, 40.094246 ], [ -74.979562, 40.094131 ], [ -74.979665, 40.094055 ], [ -74.979767, 40.093983 ], [ -74.979948, 40.093841 ], [ -74.980055, 40.093758 ], [ -74.980241, 40.09361 ], [ -74.980408, 40.093477 ], [ -74.981611, 40.0925 ], [ -74.981933, 40.092245 ], [ -74.982066, 40.092147 ], [ -74.982216, 40.092023 ], [ -74.982353, 40.09191 ], [ -74.982481, 40.091801 ], [ -74.982574, 40.091716 ], [ -74.982677, 40.091621 ], [ -74.982869, 40.091429 ], [ -74.983036, 40.091259 ], [ -74.98316, 40.091127 ], [ -74.98364, 40.09061 ], [ -74.983881, 40.090368 ], [ -74.983936, 40.090316 ], [ -74.984118, 40.090149 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.995521, 40.081142 ], [ -74.995661, 40.081061 ], [ -74.995902, 40.080926 ], [ -74.996145, 40.08078 ], [ -74.996855, 40.080385 ], [ -74.997242, 40.080154 ], [ -74.997321, 40.080092 ], [ -74.997665, 40.079823 ], [ -74.997934, 40.079564 ], [ -74.998281, 40.079157 ], [ -74.998599, 40.078787 ], [ -75.000821, 40.076122 ], [ -75.001031, 40.075872 ], [ -75.001336, 40.075497 ], [ -75.001344, 40.075487 ], [ -75.0016, 40.075185 ], [ -75.001748, 40.074988 ], [ -75.001894, 40.074785 ], [ -75.001907, 40.074765 ], [ -75.002003, 40.074598 ], [ -75.002085, 40.074428 ], [ -75.00214, 40.074324 ], [ -75.002213, 40.074115 ], [ -75.002274, 40.073872 ], [ -75.00242, 40.073294 ], [ -75.002521, 40.072992 ], [ -75.002616, 40.072784 ], [ -75.002714, 40.072595 ], [ -75.002907, 40.072289 ], [ -75.003053, 40.072103 ], [ -75.003199, 40.071929 ], [ -75.003367, 40.071754 ], [ -75.003462, 40.071661 ], [ -75.003637, 40.071511 ], [ -75.004047, 40.071202 ], [ -75.004395, 40.070989 ], [ -75.004736, 40.070789 ], [ -75.00496, 40.070659 ], [ -75.005325, 40.070442 ], [ -75.006457, 40.069778 ], [ -75.006546, 40.069725 ], [ -75.006683, 40.069647 ], [ -75.007261, 40.069317 ], [ -75.007356, 40.069263 ], [ -75.007415, 40.069229 ], [ -75.007532, 40.069158 ], [ -75.007679, 40.069061 ], [ -75.007828, 40.068971 ], [ -75.007984, 40.068864 ], [ -75.008108, 40.068766 ], [ -75.008226, 40.068656 ], [ -75.008305, 40.068574 ], [ -75.008405, 40.068456 ], [ -75.008487, 40.068348 ], [ -75.008545, 40.068256 ], [ -75.00862, 40.068126 ], [ -75.008698, 40.06798 ], [ -75.008797, 40.067755 ], [ -75.008856, 40.067623 ], [ -75.008885, 40.067549 ], [ -75.00895, 40.067388 ], [ -75.009111, 40.066929 ], [ -75.009215, 40.066632 ], [ -75.009286, 40.066445 ], [ -75.009373, 40.066161 ], [ -75.00944, 40.065871 ], [ -75.009473, 40.065706 ], [ -75.009505, 40.065412 ], [ -75.009518, 40.065157 ], [ -75.009521, 40.064941 ], [ -75.009521, 40.064935 ], [ -75.009541, 40.063485 ], [ -75.00955, 40.062965 ], [ -75.009557, 40.062556 ], [ -75.01019, 40.06255 ], [ -75.010401, 40.062536 ], [ -75.010607, 40.062511 ], [ -75.010998, 40.062453 ], [ -75.011608, 40.062357 ], [ -75.011868, 40.062312 ], [ -75.012743, 40.062182 ], [ -75.013601, 40.06205 ], [ -75.014946, 40.061854 ], [ -75.015153, 40.061816 ], [ -75.015365, 40.061775 ], [ -75.015541, 40.061735 ], [ -75.01568, 40.061699 ], [ -75.015818, 40.061656 ], [ -75.015951, 40.061611 ], [ -75.016112, 40.061547 ], [ -75.016292, 40.061471 ], [ -75.016463, 40.061395 ], [ -75.0167, 40.06128 ], [ -75.016903, 40.061167 ], [ -75.017113, 40.061025 ], [ -75.01731, 40.060884 ], [ -75.017489, 40.060736 ], [ -75.017716, 40.060545 ], [ -75.018383, 40.059925 ], [ -75.019453, 40.060572 ], [ -75.019803, 40.060786 ], [ -75.01996, 40.060874 ], [ -75.020016, 40.060909 ], [ -75.020176, 40.061008 ], [ -75.020618, 40.061274 ], [ -75.020783, 40.061372 ], [ -75.020901, 40.061448 ], [ -75.021022, 40.061535 ], [ -75.021177, 40.061679 ], [ -75.021258, 40.061772 ], [ -75.021329, 40.06187 ], [ -75.021402, 40.061986 ], [ -75.021467, 40.062115 ], [ -75.021673, 40.0625 ], [ -75.021731, 40.062608 ], [ -75.021806, 40.062754 ], [ -75.021981, 40.063088 ], [ -75.021993, 40.063113 ], [ -75.022476, 40.062614 ], [ -75.022767, 40.062334 ], [ -75.023752, 40.061346 ], [ -75.023907, 40.061198 ], [ -75.024194, 40.060931 ], [ -75.02469, 40.060438 ], [ -75.024745, 40.060385 ], [ -75.024807, 40.060319 ], [ -75.025483, 40.059641 ], [ -75.026376, 40.058776 ], [ -75.026888, 40.058267 ], [ -75.027525, 40.057621 ], [ -75.028416, 40.056723 ], [ -75.028492, 40.056757 ], [ -75.028568, 40.056776 ], [ -75.02866, 40.056787 ], [ -75.028763, 40.056782 ], [ -75.028842, 40.056768 ], [ -75.028917, 40.056734 ], [ -75.028984, 40.056685 ], [ -75.02904, 40.056616 ], [ -75.029142, 40.056622 ], [ -75.029489, 40.05665 ], [ -75.030541, 40.056742 ], [ -75.031097, 40.056792 ], [ -75.031451, 40.056824 ], [ -75.032776, 40.056947 ], [ -75.033029, 40.056968 ], [ -75.033298, 40.057007 ], [ -75.033546, 40.057058 ], [ -75.033742, 40.057113 ], [ -75.033784, 40.057125 ], [ -75.033943, 40.057173 ], [ -75.034185, 40.057244 ], [ -75.034239, 40.05726 ], [ -75.034298, 40.05728 ], [ -75.034689, 40.057418 ], [ -75.034973, 40.057506 ], [ -75.035288, 40.057595 ], [ -75.035726, 40.057717 ], [ -75.03575, 40.057724 ], [ -75.035961, 40.057791 ], [ -75.035993, 40.057802 ], [ -75.03623, 40.057884 ], [ -75.036425, 40.057949 ], [ -75.036943, 40.058136 ], [ -75.037458, 40.058347 ], [ -75.037706, 40.058446 ], [ -75.037876, 40.058501 ], [ -75.038038, 40.058538 ], [ -75.038201, 40.058566 ], [ -75.03837, 40.058583 ], [ -75.038557, 40.0586 ], [ -75.038814, 40.058605 ], [ -75.039091, 40.058592 ], [ -75.039272, 40.058575 ], [ -75.039424, 40.058553 ], [ -75.039648, 40.058504 ], [ -75.039859, 40.058447 ], [ -75.040078, 40.058378 ], [ -75.040292, 40.0583 ], [ -75.040564, 40.05818 ], [ -75.040719, 40.058112 ], [ -75.040854, 40.05806 ], [ -75.041012, 40.058022 ], [ -75.041138, 40.057995 ], [ -75.041269, 40.057978 ], [ -75.041471, 40.057956 ], [ -75.04158, 40.057952 ], [ -75.041737, 40.057958 ], [ -75.04193, 40.057978 ], [ -75.042076, 40.058001 ], [ -75.04224, 40.05804 ], [ -75.042425, 40.0581 ], [ -75.042589, 40.058175 ], [ -75.042861, 40.058316 ], [ -75.043199, 40.058507 ], [ -75.043358, 40.058598 ], [ -75.043498, 40.058692 ], [ -75.043628, 40.058795 ], [ -75.043748, 40.058904 ], [ -75.043797, 40.058963 ], [ -75.043841, 40.059014 ], [ -75.043894, 40.05909 ], [ -75.043967, 40.059217 ], [ -75.04399, 40.059258 ], [ -75.044029, 40.0593 ], [ -75.044056, 40.059318 ], [ -75.044066, 40.059325 ], [ -75.04411, 40.059347 ], [ -75.044217, 40.059373 ], [ -75.0443, 40.059385 ], [ -75.044398, 40.059385 ], [ -75.044485, 40.059377 ], [ -75.04479, 40.059042 ], [ -75.045236, 40.058589 ], [ -75.045841, 40.057973 ], [ -75.046494, 40.057319 ], [ -75.046994, 40.056819 ], [ -75.048268, 40.055534 ], [ -75.048587, 40.05522 ], [ -75.049026, 40.054773 ], [ -75.049484, 40.05431 ], [ -75.050288, 40.053512 ], [ -75.050434, 40.053362 ], [ -75.050547, 40.053241 ], [ -75.05062, 40.053155 ], [ -75.050671, 40.05309 ], [ -75.050765, 40.052966 ], [ -75.050857, 40.052839 ], [ -75.05098, 40.052645 ], [ -75.051047, 40.052529 ], [ -75.051116, 40.052392 ], [ -75.051182, 40.052229 ], [ -75.051242, 40.052062 ], [ -75.051277, 40.051973 ], [ -75.051333, 40.05177 ], [ -75.051377, 40.051598 ], [ -75.051395, 40.051494 ], [ -75.051406, 40.051421 ], [ -75.051418, 40.051288 ], [ -75.051423, 40.051213 ], [ -75.051459, 40.050719 ], [ -75.051481, 40.05047 ], [ -75.051516, 40.05009 ], [ -75.051527, 40.049983 ], [ -75.051592, 40.049064 ], [ -75.051617, 40.048708 ], [ -75.05163, 40.048503 ], [ -75.051649, 40.048337 ], [ -75.051668, 40.048213 ], [ -75.051689, 40.048109 ], [ -75.051705, 40.048024 ], [ -75.051752, 40.047875 ], [ -75.051816, 40.047709 ], [ -75.051895, 40.047526 ], [ -75.051976, 40.047368 ], [ -75.052078, 40.047194 ], [ -75.052176, 40.047046 ], [ -75.05232, 40.046868 ], [ -75.052456, 40.046704 ], [ -75.052647, 40.046521 ], [ -75.053095, 40.046096 ], [ -75.053206, 40.045994 ], [ -75.053232, 40.04597 ], [ -75.054058, 40.045169 ], [ -75.054642, 40.044663 ], [ -75.056448, 40.042972 ], [ -75.056776, 40.04267 ], [ -75.057079, 40.04239 ], [ -75.057397, 40.04209 ], [ -75.057514, 40.041984 ], [ -75.057734, 40.041782 ], [ -75.057887, 40.041633 ], [ -75.058559, 40.041015 ], [ -75.059045, 40.040569 ], [ -75.059669, 40.039958 ], [ -75.060277, 40.039398 ], [ -75.060676, 40.039021 ], [ -75.060774, 40.03893 ], [ -75.060915, 40.038793 ], [ -75.061436, 40.038315 ], [ -75.061546, 40.038214 ], [ -75.061803, 40.037974 ], [ -75.061911, 40.037878 ], [ -75.061994, 40.037811 ], [ -75.062103, 40.037721 ], [ -75.062199, 40.037652 ], [ -75.062299, 40.037585 ], [ -75.062395, 40.03752 ], [ -75.062457, 40.037479 ], [ -75.062468, 40.037473 ], [ -75.062601, 40.037397 ], [ -75.06276, 40.037307 ], [ -75.062946, 40.037214 ], [ -75.063084, 40.037151 ], [ -75.063323, 40.037059 ], [ -75.063538, 40.036983 ], [ -75.063744, 40.036921 ], [ -75.06376, 40.036916 ], [ -75.063872, 40.036888 ], [ -75.064381, 40.036761 ], [ -75.064505, 40.03673 ], [ -75.065428, 40.036519 ], [ -75.066023, 40.036384 ], [ -75.066437, 40.036286 ], [ -75.067278, 40.036094 ], [ -75.067946, 40.035936 ], [ -75.069013, 40.035696 ], [ -75.069681, 40.035546 ], [ -75.07006, 40.035458 ], [ -75.070132, 40.035461 ], [ -75.070163, 40.035461 ], [ -75.070239, 40.035472 ], [ -75.070313, 40.035495 ], [ -75.070381, 40.035526 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307431", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953034, 40.117252 ], [ -74.951348, 40.116318 ], [ -74.950711, 40.117018 ], [ -74.950239, 40.117378 ], [ -74.949055, 40.117705 ], [ -74.948602, 40.117813 ], [ -74.948472, 40.117894 ], [ -74.948413, 40.117953 ], [ -74.948289, 40.118065 ], [ -74.948236, 40.118135 ], [ -74.948207, 40.118212 ], [ -74.948201, 40.118271 ], [ -74.948281, 40.118476 ], [ -74.951537, 40.12027 ], [ -74.95217, 40.120634 ], [ -74.952385, 40.120773 ], [ -74.952524, 40.120918 ], [ -74.952531, 40.120947 ], [ -74.952559, 40.12099 ], [ -74.952746, 40.121341 ], [ -74.952882, 40.121585 ], [ -74.952954, 40.121643 ], [ -74.95299, 40.12165 ], [ -74.953062, 40.121679 ], [ -74.953098, 40.121679 ], [ -74.953334, 40.121614 ], [ -74.953476, 40.121563 ], [ -74.953729, 40.121471 ], [ -74.95421, 40.121291 ], [ -74.954267, 40.12127 ], [ -74.954934, 40.12104 ], [ -74.955781, 40.120739 ], [ -74.95647, 40.120516 ], [ -74.956945, 40.12034 ], [ -74.95704, 40.120345 ], [ -74.957088, 40.120315 ], [ -74.957138, 40.120278 ], [ -74.957245, 40.120143 ], [ -74.957257, 40.120121 ], [ -74.957306, 40.120029 ], [ -74.957311, 40.119978 ], [ -74.957311, 40.119845 ], [ -74.957296, 40.119785 ], [ -74.957184, 40.119551 ], [ -74.957149, 40.119461 ], [ -74.957108, 40.119357 ], [ -74.957067, 40.119205 ], [ -74.957076, 40.119064 ], [ -74.957077, 40.119042 ], [ -74.957092, 40.118956 ], [ -74.957169, 40.118691 ], [ -74.957204, 40.118508 ], [ -74.957219, 40.118346 ], [ -74.957219, 40.118274 ], [ -74.95718, 40.118144 ], [ -74.957267, 40.118108 ], [ -74.957375, 40.11804 ], [ -74.95745, 40.118033 ], [ -74.957899, 40.117859 ], [ -74.957989, 40.117819 ], [ -74.958094, 40.117777 ], [ -74.958297, 40.117697 ], [ -74.958666, 40.117543 ], [ -74.958728, 40.117519 ], [ -74.959011, 40.117398 ], [ -74.959049, 40.117382 ], [ -74.959246, 40.117301 ], [ -74.959215, 40.117255 ], [ -74.959168, 40.117198 ], [ -74.959147, 40.117166 ], [ -74.959112, 40.117121 ], [ -74.958988, 40.116948 ], [ -74.958308, 40.115918 ], [ -74.958213, 40.115777 ], [ -74.957981, 40.115435 ], [ -74.957953, 40.115394 ], [ -74.95791, 40.115332 ], [ -74.957758, 40.115116 ], [ -74.957666, 40.11498 ], [ -74.957606, 40.114899 ], [ -74.957559, 40.114832 ], [ -74.957549, 40.114819 ], [ -74.957509, 40.114767 ], [ -74.957442, 40.114683 ], [ -74.957363, 40.114595 ], [ -74.957355, 40.114586 ], [ -74.957305, 40.11453 ], [ -74.957267, 40.114488 ], [ -74.957166, 40.114388 ], [ -74.956885, 40.114151 ], [ -74.956804, 40.114058 ], [ -74.956721, 40.113979 ], [ -74.956604, 40.113882 ], [ -74.956551, 40.113842 ], [ -74.956454, 40.113763 ], [ -74.956391, 40.113714 ], [ -74.956028, 40.11344 ], [ -74.955562, 40.113076 ], [ -74.955488, 40.11302 ], [ -74.955225, 40.112809 ], [ -74.954973, 40.112595 ], [ -74.954732, 40.112369 ], [ -74.954501, 40.112136 ], [ -74.954281, 40.111898 ], [ -74.954169, 40.111765 ], [ -74.954073, 40.111653 ], [ -74.954018, 40.111584 ], [ -74.953813, 40.111326 ], [ -74.953555, 40.110974 ], [ -74.953484, 40.110886 ], [ -74.953424, 40.110797 ], [ -74.953312, 40.110622 ], [ -74.953274, 40.110554 ], [ -74.953225, 40.110456 ], [ -74.953187, 40.110378 ], [ -74.953132, 40.110267 ], [ -74.9531, 40.110199 ], [ -74.952796, 40.109546 ], [ -74.95268, 40.109271 ], [ -74.952525, 40.108909 ], [ -74.952354, 40.108509 ], [ -74.952286, 40.108348 ], [ -74.952102, 40.107931 ], [ -74.95194, 40.107566 ], [ -74.951681, 40.107003 ], [ -74.951345, 40.106279 ], [ -74.951261, 40.106117 ], [ -74.95103, 40.105642 ], [ -74.950898, 40.105377 ], [ -74.95089, 40.10517 ], [ -74.950892, 40.105078 ], [ -74.950909, 40.10496 ], [ -74.950916, 40.104904 ], [ -74.950933, 40.104856 ], [ -74.950958, 40.104813 ], [ -74.951066, 40.104659 ], [ -74.951225, 40.10449 ], [ -74.951234, 40.104473 ], [ -74.951242, 40.104451 ], [ -74.951295, 40.10431 ], [ -74.951369, 40.10424 ], [ -74.951484, 40.104197 ], [ -74.951588, 40.104082 ], [ -74.952322, 40.103294 ], [ -74.95264, 40.102953 ], [ -74.953279, 40.102315 ], [ -74.953898, 40.101745 ], [ -74.954229, 40.101454 ], [ -74.954441, 40.101268 ], [ -74.954574, 40.101149 ], [ -74.955169, 40.100626 ], [ -74.955467, 40.100362 ], [ -74.955591, 40.100252 ], [ -74.955618, 40.100138 ], [ -74.956074, 40.099754 ], [ -74.956437, 40.099428 ], [ -74.956485, 40.099385 ], [ -74.956754, 40.099148 ], [ -74.956923, 40.098999 ], [ -74.956971, 40.098954 ], [ -74.957311, 40.09864 ], [ -74.957432, 40.098613 ], [ -74.957455, 40.098595 ], [ -74.957506, 40.098551 ], [ -74.95791, 40.098122 ], [ -74.958097, 40.097884 ], [ -74.958151, 40.09782 ], [ -74.958267, 40.097667 ], [ -74.958356, 40.097541 ], [ -74.958565, 40.097212 ], [ -74.958761, 40.096911 ], [ -74.958984, 40.096566 ], [ -74.959372, 40.095971 ], [ -74.959447, 40.095867 ], [ -74.959498, 40.095795 ], [ -74.959561, 40.095723 ], [ -74.959616, 40.095656 ], [ -74.959656, 40.095611 ], [ -74.959744, 40.095513 ], [ -74.959833, 40.09543 ], [ -74.960302, 40.094999 ], [ -74.96125, 40.094135 ], [ -74.96148, 40.093938 ], [ -74.961562, 40.093864 ], [ -74.961639, 40.093801 ], [ -74.961649, 40.093793 ], [ -74.961838, 40.093658 ], [ -74.962169, 40.093424 ], [ -74.962519, 40.093219 ], [ -74.96282, 40.093064 ], [ -74.963244, 40.092856 ], [ -74.963675, 40.092659 ], [ -74.964212, 40.092411 ], [ -74.964401, 40.09232 ], [ -74.964608, 40.092227 ], [ -74.964777, 40.092146 ], [ -74.964824, 40.092124 ], [ -74.965176, 40.091947 ], [ -74.965518, 40.091758 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965708, 40.091577 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.964415, 40.088271 ], [ -74.963977, 40.089231 ], [ -74.963877, 40.089456 ], [ -74.96378, 40.089766 ], [ -74.9637, 40.090184 ], [ -74.963675, 40.090382 ], [ -74.963646, 40.090806 ], [ -74.96364, 40.090888 ], [ -74.963585, 40.091179 ], [ -74.963448, 40.091487 ], [ -74.963242, 40.091733 ], [ -74.962676, 40.09216 ], [ -74.962482, 40.092321 ], [ -74.962121, 40.092641 ], [ -74.961883, 40.092831 ], [ -74.961816, 40.092867 ], [ -74.961651, 40.092943 ], [ -74.962075, 40.093343 ], [ -74.962117, 40.093382 ], [ -74.962169, 40.093424 ], [ -74.962923, 40.093941 ], [ -74.963129, 40.094083 ], [ -74.963593, 40.094398 ], [ -74.963973, 40.094654 ], [ -74.964214, 40.094822 ], [ -74.96461, 40.095104 ], [ -74.964955, 40.095327 ], [ -74.964743, 40.095624 ], [ -74.9647, 40.095779 ], [ -74.964686, 40.095886 ], [ -74.964687, 40.096197 ], [ -74.9647, 40.097297 ], [ -74.964709, 40.097797 ], [ -74.964739, 40.098802 ], [ -74.964775, 40.098977 ], [ -74.964792, 40.099067 ], [ -74.964897, 40.099343 ], [ -74.964996, 40.099523 ], [ -74.965207, 40.099779 ], [ -74.965314, 40.099879 ], [ -74.965437, 40.099995 ], [ -74.965773, 40.100228 ], [ -74.966223, 40.100437 ], [ -74.966663, 40.100578 ], [ -74.967537, 40.100814 ], [ -74.968401, 40.100912 ], [ -74.968938, 40.100936 ], [ -74.969849, 40.100921 ], [ -74.97003, 40.100902 ], [ -74.970385, 40.100865 ], [ -74.970855, 40.100784 ], [ -74.971116, 40.100719 ], [ -74.971325, 40.100668 ], [ -74.971908, 40.100483 ], [ -74.97267, 40.100176 ], [ -74.973406, 40.099776 ], [ -74.973559, 40.099696 ], [ -74.97404, 40.099408 ], [ -74.974117, 40.099354 ], [ -74.974755, 40.098903 ], [ -74.975282, 40.098547 ], [ -74.975417, 40.098456 ], [ -74.975653, 40.098237 ], [ -74.975876, 40.097992 ], [ -74.975973, 40.097828 ], [ -74.976008, 40.097767 ], [ -74.976103, 40.097507 ], [ -74.976098, 40.097305 ], [ -74.976108, 40.097217 ], [ -74.976113, 40.09715 ], [ -74.976109, 40.097082 ], [ -74.976103, 40.09702 ], [ -74.976089, 40.096956 ], [ -74.976074, 40.096897 ], [ -74.976051, 40.096841 ], [ -74.976023, 40.096782 ], [ -74.975837, 40.096486 ], [ -74.976358, 40.096254 ], [ -74.976727, 40.096091 ], [ -74.976824, 40.096041 ], [ -74.976908, 40.095997 ], [ -74.977034, 40.095921 ], [ -74.977565, 40.095569 ], [ -74.978306, 40.095042 ], [ -74.978727, 40.094733 ], [ -74.978771, 40.094701 ], [ -74.979405, 40.094246 ], [ -74.979562, 40.094131 ], [ -74.979665, 40.094055 ], [ -74.979767, 40.093983 ], [ -74.979948, 40.093841 ], [ -74.980055, 40.093758 ], [ -74.980241, 40.09361 ], [ -74.980408, 40.093477 ], [ -74.981611, 40.0925 ], [ -74.981933, 40.092245 ], [ -74.982066, 40.092147 ], [ -74.982216, 40.092023 ], [ -74.982353, 40.09191 ], [ -74.982481, 40.091801 ], [ -74.982574, 40.091716 ], [ -74.982677, 40.091621 ], [ -74.982869, 40.091429 ], [ -74.983036, 40.091259 ], [ -74.98316, 40.091127 ], [ -74.98364, 40.09061 ], [ -74.983881, 40.090368 ], [ -74.983936, 40.090316 ], [ -74.984118, 40.090149 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.995521, 40.081142 ], [ -74.995661, 40.081061 ], [ -74.995902, 40.080926 ], [ -74.996145, 40.08078 ], [ -74.996855, 40.080385 ], [ -74.997242, 40.080154 ], [ -74.997321, 40.080092 ], [ -74.997665, 40.079823 ], [ -74.997934, 40.079564 ], [ -74.998281, 40.079157 ], [ -74.998599, 40.078787 ], [ -75.000821, 40.076122 ], [ -75.001031, 40.075872 ], [ -75.001336, 40.075497 ], [ -75.001344, 40.075487 ], [ -75.0016, 40.075185 ], [ -75.001748, 40.074988 ], [ -75.001894, 40.074785 ], [ -75.001907, 40.074765 ], [ -75.002003, 40.074598 ], [ -75.002085, 40.074428 ], [ -75.00214, 40.074324 ], [ -75.002213, 40.074115 ], [ -75.002274, 40.073872 ], [ -75.00242, 40.073294 ], [ -75.002521, 40.072992 ], [ -75.002616, 40.072784 ], [ -75.002714, 40.072595 ], [ -75.002907, 40.072289 ], [ -75.003053, 40.072103 ], [ -75.003199, 40.071929 ], [ -75.003367, 40.071754 ], [ -75.003462, 40.071661 ], [ -75.003637, 40.071511 ], [ -75.004047, 40.071202 ], [ -75.004395, 40.070989 ], [ -75.004736, 40.070789 ], [ -75.00496, 40.070659 ], [ -75.005325, 40.070442 ], [ -75.006457, 40.069778 ], [ -75.006546, 40.069725 ], [ -75.006683, 40.069647 ], [ -75.007261, 40.069317 ], [ -75.007356, 40.069263 ], [ -75.007415, 40.069229 ], [ -75.007532, 40.069158 ], [ -75.007679, 40.069061 ], [ -75.007828, 40.068971 ], [ -75.007984, 40.068864 ], [ -75.008108, 40.068766 ], [ -75.008226, 40.068656 ], [ -75.008305, 40.068574 ], [ -75.008405, 40.068456 ], [ -75.008487, 40.068348 ], [ -75.008545, 40.068256 ], [ -75.00862, 40.068126 ], [ -75.008698, 40.06798 ], [ -75.008797, 40.067755 ], [ -75.008856, 40.067623 ], [ -75.008885, 40.067549 ], [ -75.00895, 40.067388 ], [ -75.009111, 40.066929 ], [ -75.009215, 40.066632 ], [ -75.009286, 40.066445 ], [ -75.009373, 40.066161 ], [ -75.00944, 40.065871 ], [ -75.009473, 40.065706 ], [ -75.009505, 40.065412 ], [ -75.009518, 40.065157 ], [ -75.009521, 40.064941 ], [ -75.009521, 40.064935 ], [ -75.009541, 40.063485 ], [ -75.00955, 40.062965 ], [ -75.009557, 40.062556 ], [ -75.01019, 40.06255 ], [ -75.010401, 40.062536 ], [ -75.010607, 40.062511 ], [ -75.010998, 40.062453 ], [ -75.011608, 40.062357 ], [ -75.011868, 40.062312 ], [ -75.012743, 40.062182 ], [ -75.013601, 40.06205 ], [ -75.014946, 40.061854 ], [ -75.015153, 40.061816 ], [ -75.015365, 40.061775 ], [ -75.015541, 40.061735 ], [ -75.01568, 40.061699 ], [ -75.015818, 40.061656 ], [ -75.015951, 40.061611 ], [ -75.016112, 40.061547 ], [ -75.016292, 40.061471 ], [ -75.016463, 40.061395 ], [ -75.0167, 40.06128 ], [ -75.016903, 40.061167 ], [ -75.017113, 40.061025 ], [ -75.01731, 40.060884 ], [ -75.017489, 40.060736 ], [ -75.017716, 40.060545 ], [ -75.018383, 40.059925 ], [ -75.019453, 40.060572 ], [ -75.019803, 40.060786 ], [ -75.01996, 40.060874 ], [ -75.020016, 40.060909 ], [ -75.020176, 40.061008 ], [ -75.020618, 40.061274 ], [ -75.020783, 40.061372 ], [ -75.020901, 40.061448 ], [ -75.021022, 40.061535 ], [ -75.021177, 40.061679 ], [ -75.021258, 40.061772 ], [ -75.021329, 40.06187 ], [ -75.021402, 40.061986 ], [ -75.021467, 40.062115 ], [ -75.021673, 40.0625 ], [ -75.021731, 40.062608 ], [ -75.021806, 40.062754 ], [ -75.021981, 40.063088 ], [ -75.021993, 40.063113 ], [ -75.022476, 40.062614 ], [ -75.022767, 40.062334 ], [ -75.023752, 40.061346 ], [ -75.023907, 40.061198 ], [ -75.024194, 40.060931 ], [ -75.02469, 40.060438 ], [ -75.024745, 40.060385 ], [ -75.024807, 40.060319 ], [ -75.025483, 40.059641 ], [ -75.026376, 40.058776 ], [ -75.026888, 40.058267 ], [ -75.027525, 40.057621 ], [ -75.028416, 40.056723 ], [ -75.028492, 40.056757 ], [ -75.028568, 40.056776 ], [ -75.02866, 40.056787 ], [ -75.028763, 40.056782 ], [ -75.028842, 40.056768 ], [ -75.028917, 40.056734 ], [ -75.028984, 40.056685 ], [ -75.02904, 40.056616 ], [ -75.029142, 40.056622 ], [ -75.029489, 40.05665 ], [ -75.030541, 40.056742 ], [ -75.031097, 40.056792 ], [ -75.031451, 40.056824 ], [ -75.032776, 40.056947 ], [ -75.033029, 40.056968 ], [ -75.033298, 40.057007 ], [ -75.033546, 40.057058 ], [ -75.033742, 40.057113 ], [ -75.033784, 40.057125 ], [ -75.033943, 40.057173 ], [ -75.034185, 40.057244 ], [ -75.034239, 40.05726 ], [ -75.034298, 40.05728 ], [ -75.034689, 40.057418 ], [ -75.034973, 40.057506 ], [ -75.035288, 40.057595 ], [ -75.035726, 40.057717 ], [ -75.03575, 40.057724 ], [ -75.035961, 40.057791 ], [ -75.035993, 40.057802 ], [ -75.03623, 40.057884 ], [ -75.036425, 40.057949 ], [ -75.036943, 40.058136 ], [ -75.037458, 40.058347 ], [ -75.037706, 40.058446 ], [ -75.037876, 40.058501 ], [ -75.038038, 40.058538 ], [ -75.038201, 40.058566 ], [ -75.03837, 40.058583 ], [ -75.038557, 40.0586 ], [ -75.038814, 40.058605 ], [ -75.039091, 40.058592 ], [ -75.039272, 40.058575 ], [ -75.039424, 40.058553 ], [ -75.039648, 40.058504 ], [ -75.039859, 40.058447 ], [ -75.040078, 40.058378 ], [ -75.040292, 40.0583 ], [ -75.040564, 40.05818 ], [ -75.040719, 40.058112 ], [ -75.040854, 40.05806 ], [ -75.041012, 40.058022 ], [ -75.041138, 40.057995 ], [ -75.041269, 40.057978 ], [ -75.041471, 40.057956 ], [ -75.04158, 40.057952 ], [ -75.041737, 40.057958 ], [ -75.04193, 40.057978 ], [ -75.042076, 40.058001 ], [ -75.04224, 40.05804 ], [ -75.042425, 40.0581 ], [ -75.042589, 40.058175 ], [ -75.042861, 40.058316 ], [ -75.043199, 40.058507 ], [ -75.043358, 40.058598 ], [ -75.043498, 40.058692 ], [ -75.043628, 40.058795 ], [ -75.043748, 40.058904 ], [ -75.043797, 40.058963 ], [ -75.043841, 40.059014 ], [ -75.043894, 40.05909 ], [ -75.043967, 40.059217 ], [ -75.04399, 40.059258 ], [ -75.044029, 40.0593 ], [ -75.044056, 40.059318 ], [ -75.044066, 40.059325 ], [ -75.04411, 40.059347 ], [ -75.044217, 40.059373 ], [ -75.0443, 40.059385 ], [ -75.044398, 40.059385 ], [ -75.044485, 40.059377 ], [ -75.04479, 40.059042 ], [ -75.045236, 40.058589 ], [ -75.045841, 40.057973 ], [ -75.046494, 40.057319 ], [ -75.046994, 40.056819 ], [ -75.048268, 40.055534 ], [ -75.048587, 40.05522 ], [ -75.049026, 40.054773 ], [ -75.049484, 40.05431 ], [ -75.050288, 40.053512 ], [ -75.050434, 40.053362 ], [ -75.050547, 40.053241 ], [ -75.05062, 40.053155 ], [ -75.050671, 40.05309 ], [ -75.050765, 40.052966 ], [ -75.050857, 40.052839 ], [ -75.05098, 40.052645 ], [ -75.051047, 40.052529 ], [ -75.051116, 40.052392 ], [ -75.051182, 40.052229 ], [ -75.051242, 40.052062 ], [ -75.051277, 40.051973 ], [ -75.051333, 40.05177 ], [ -75.051377, 40.051598 ], [ -75.051395, 40.051494 ], [ -75.051406, 40.051421 ], [ -75.051418, 40.051288 ], [ -75.051423, 40.051213 ], [ -75.051459, 40.050719 ], [ -75.051481, 40.05047 ], [ -75.051516, 40.05009 ], [ -75.051527, 40.049983 ], [ -75.051592, 40.049064 ], [ -75.051617, 40.048708 ], [ -75.05163, 40.048503 ], [ -75.051649, 40.048337 ], [ -75.051668, 40.048213 ], [ -75.051689, 40.048109 ], [ -75.051705, 40.048024 ], [ -75.051752, 40.047875 ], [ -75.051816, 40.047709 ], [ -75.051895, 40.047526 ], [ -75.051976, 40.047368 ], [ -75.052078, 40.047194 ], [ -75.052176, 40.047046 ], [ -75.05232, 40.046868 ], [ -75.052456, 40.046704 ], [ -75.052647, 40.046521 ], [ -75.053095, 40.046096 ], [ -75.053206, 40.045994 ], [ -75.053232, 40.04597 ], [ -75.054058, 40.045169 ], [ -75.054642, 40.044663 ], [ -75.056448, 40.042972 ], [ -75.056776, 40.04267 ], [ -75.057079, 40.04239 ], [ -75.057397, 40.04209 ], [ -75.057514, 40.041984 ], [ -75.057734, 40.041782 ], [ -75.057887, 40.041633 ], [ -75.058559, 40.041015 ], [ -75.059045, 40.040569 ], [ -75.059669, 40.039958 ], [ -75.060277, 40.039398 ], [ -75.060676, 40.039021 ], [ -75.060774, 40.03893 ], [ -75.060915, 40.038793 ], [ -75.061436, 40.038315 ], [ -75.061546, 40.038214 ], [ -75.061803, 40.037974 ], [ -75.061911, 40.037878 ], [ -75.061994, 40.037811 ], [ -75.062103, 40.037721 ], [ -75.062199, 40.037652 ], [ -75.062299, 40.037585 ], [ -75.062395, 40.03752 ], [ -75.062457, 40.037479 ], [ -75.062468, 40.037473 ], [ -75.062601, 40.037397 ], [ -75.06276, 40.037307 ], [ -75.062946, 40.037214 ], [ -75.063084, 40.037151 ], [ -75.063323, 40.037059 ], [ -75.063538, 40.036983 ], [ -75.063744, 40.036921 ], [ -75.06376, 40.036916 ], [ -75.063872, 40.036888 ], [ -75.064381, 40.036761 ], [ -75.064505, 40.03673 ], [ -75.065428, 40.036519 ], [ -75.066023, 40.036384 ], [ -75.066437, 40.036286 ], [ -75.067278, 40.036094 ], [ -75.067946, 40.035936 ], [ -75.069013, 40.035696 ], [ -75.069681, 40.035546 ], [ -75.07006, 40.035458 ], [ -75.070132, 40.035461 ], [ -75.070163, 40.035461 ], [ -75.070239, 40.035472 ], [ -75.070313, 40.035495 ], [ -75.070381, 40.035526 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307432", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.965623, 40.091567 ], [ -74.965583, 40.091591 ], [ -74.965468, 40.091654 ], [ -74.965085, 40.091859 ], [ -74.964694, 40.092053 ], [ -74.964521, 40.092133 ], [ -74.964333, 40.09222 ], [ -74.964139, 40.09231 ], [ -74.963195, 40.092746 ], [ -74.962825, 40.092921 ], [ -74.962666, 40.093004 ], [ -74.962655, 40.093009 ], [ -74.962527, 40.093084 ], [ -74.962075, 40.093343 ], [ -74.962117, 40.093382 ], [ -74.962169, 40.093424 ], [ -74.962923, 40.093941 ], [ -74.963129, 40.094083 ], [ -74.963593, 40.094398 ], [ -74.963973, 40.094654 ], [ -74.964214, 40.094822 ], [ -74.96461, 40.095104 ], [ -74.964955, 40.095327 ], [ -74.964743, 40.095624 ], [ -74.9647, 40.095779 ], [ -74.964686, 40.095886 ], [ -74.964687, 40.096197 ], [ -74.9647, 40.097297 ], [ -74.964709, 40.097797 ], [ -74.964739, 40.098802 ], [ -74.964775, 40.098977 ], [ -74.964792, 40.099067 ], [ -74.964897, 40.099343 ], [ -74.964996, 40.099523 ], [ -74.965207, 40.099779 ], [ -74.965314, 40.099879 ], [ -74.965437, 40.099995 ], [ -74.965773, 40.100228 ], [ -74.966223, 40.100437 ], [ -74.966663, 40.100578 ], [ -74.967537, 40.100814 ], [ -74.968401, 40.100912 ], [ -74.968938, 40.100936 ], [ -74.969849, 40.100921 ], [ -74.97003, 40.100902 ], [ -74.970385, 40.100865 ], [ -74.970855, 40.100784 ], [ -74.971116, 40.100719 ], [ -74.971325, 40.100668 ], [ -74.971908, 40.100483 ], [ -74.97267, 40.100176 ], [ -74.973406, 40.099776 ], [ -74.973559, 40.099696 ], [ -74.97404, 40.099408 ], [ -74.974117, 40.099354 ], [ -74.974755, 40.098903 ], [ -74.975282, 40.098547 ], [ -74.975417, 40.098456 ], [ -74.975653, 40.098237 ], [ -74.975876, 40.097992 ], [ -74.975973, 40.097828 ], [ -74.976008, 40.097767 ], [ -74.976103, 40.097507 ], [ -74.976098, 40.097305 ], [ -74.976108, 40.097217 ], [ -74.976113, 40.09715 ], [ -74.976109, 40.097082 ], [ -74.976103, 40.09702 ], [ -74.976089, 40.096956 ], [ -74.976074, 40.096897 ], [ -74.976051, 40.096841 ], [ -74.976023, 40.096782 ], [ -74.975837, 40.096486 ], [ -74.976358, 40.096254 ], [ -74.976727, 40.096091 ], [ -74.976824, 40.096041 ], [ -74.976908, 40.095997 ], [ -74.977034, 40.095921 ], [ -74.977565, 40.095569 ], [ -74.978306, 40.095042 ], [ -74.978727, 40.094733 ], [ -74.978771, 40.094701 ], [ -74.979405, 40.094246 ], [ -74.979562, 40.094131 ], [ -74.979665, 40.094055 ], [ -74.979767, 40.093983 ], [ -74.979948, 40.093841 ], [ -74.980055, 40.093758 ], [ -74.980241, 40.09361 ], [ -74.980408, 40.093477 ], [ -74.981611, 40.0925 ], [ -74.981933, 40.092245 ], [ -74.982066, 40.092147 ], [ -74.982216, 40.092023 ], [ -74.982353, 40.09191 ], [ -74.982481, 40.091801 ], [ -74.982574, 40.091716 ], [ -74.982677, 40.091621 ], [ -74.982869, 40.091429 ], [ -74.983036, 40.091259 ], [ -74.98316, 40.091127 ], [ -74.98364, 40.09061 ], [ -74.983881, 40.090368 ], [ -74.983936, 40.090316 ], [ -74.984118, 40.090149 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.995521, 40.081142 ], [ -74.995661, 40.081061 ], [ -74.995902, 40.080926 ], [ -74.996145, 40.08078 ], [ -74.996855, 40.080385 ], [ -74.997242, 40.080154 ], [ -74.997321, 40.080092 ], [ -74.997665, 40.079823 ], [ -74.997934, 40.079564 ], [ -74.998281, 40.079157 ], [ -74.998599, 40.078787 ], [ -75.000821, 40.076122 ], [ -75.001031, 40.075872 ], [ -75.001336, 40.075497 ], [ -75.001344, 40.075487 ], [ -75.0016, 40.075185 ], [ -75.001748, 40.074988 ], [ -75.001894, 40.074785 ], [ -75.001907, 40.074765 ], [ -75.002003, 40.074598 ], [ -75.002085, 40.074428 ], [ -75.00214, 40.074324 ], [ -75.002213, 40.074115 ], [ -75.002274, 40.073872 ], [ -75.00242, 40.073294 ], [ -75.002521, 40.072992 ], [ -75.002616, 40.072784 ], [ -75.002714, 40.072595 ], [ -75.002907, 40.072289 ], [ -75.003053, 40.072103 ], [ -75.003199, 40.071929 ], [ -75.003367, 40.071754 ], [ -75.003462, 40.071661 ], [ -75.003637, 40.071511 ], [ -75.004047, 40.071202 ], [ -75.004395, 40.070989 ], [ -75.004736, 40.070789 ], [ -75.00496, 40.070659 ], [ -75.005325, 40.070442 ], [ -75.006457, 40.069778 ], [ -75.006546, 40.069725 ], [ -75.006683, 40.069647 ], [ -75.007261, 40.069317 ], [ -75.007356, 40.069263 ], [ -75.007415, 40.069229 ], [ -75.007532, 40.069158 ], [ -75.007679, 40.069061 ], [ -75.007828, 40.068971 ], [ -75.007984, 40.068864 ], [ -75.008108, 40.068766 ], [ -75.008226, 40.068656 ], [ -75.008305, 40.068574 ], [ -75.008405, 40.068456 ], [ -75.008487, 40.068348 ], [ -75.008545, 40.068256 ], [ -75.00862, 40.068126 ], [ -75.008698, 40.06798 ], [ -75.008797, 40.067755 ], [ -75.008856, 40.067623 ], [ -75.008885, 40.067549 ], [ -75.00895, 40.067388 ], [ -75.009111, 40.066929 ], [ -75.009215, 40.066632 ], [ -75.009286, 40.066445 ], [ -75.009373, 40.066161 ], [ -75.00944, 40.065871 ], [ -75.009473, 40.065706 ], [ -75.009505, 40.065412 ], [ -75.009518, 40.065157 ], [ -75.009521, 40.064941 ], [ -75.009521, 40.064935 ], [ -75.009541, 40.063485 ], [ -75.00955, 40.062965 ], [ -75.009557, 40.062556 ], [ -75.01019, 40.06255 ], [ -75.010401, 40.062536 ], [ -75.010607, 40.062511 ], [ -75.010998, 40.062453 ], [ -75.011608, 40.062357 ], [ -75.011868, 40.062312 ], [ -75.012743, 40.062182 ], [ -75.013601, 40.06205 ], [ -75.014946, 40.061854 ], [ -75.015153, 40.061816 ], [ -75.015365, 40.061775 ], [ -75.015541, 40.061735 ], [ -75.01568, 40.061699 ], [ -75.015818, 40.061656 ], [ -75.015951, 40.061611 ], [ -75.016112, 40.061547 ], [ -75.016292, 40.061471 ], [ -75.016463, 40.061395 ], [ -75.0167, 40.06128 ], [ -75.016903, 40.061167 ], [ -75.017113, 40.061025 ], [ -75.01731, 40.060884 ], [ -75.017489, 40.060736 ], [ -75.017716, 40.060545 ], [ -75.018383, 40.059925 ], [ -75.019453, 40.060572 ], [ -75.019803, 40.060786 ], [ -75.01996, 40.060874 ], [ -75.020016, 40.060909 ], [ -75.020176, 40.061008 ], [ -75.020618, 40.061274 ], [ -75.020783, 40.061372 ], [ -75.020901, 40.061448 ], [ -75.021022, 40.061535 ], [ -75.021177, 40.061679 ], [ -75.021258, 40.061772 ], [ -75.021329, 40.06187 ], [ -75.021402, 40.061986 ], [ -75.021467, 40.062115 ], [ -75.021673, 40.0625 ], [ -75.021731, 40.062608 ], [ -75.021806, 40.062754 ], [ -75.021981, 40.063088 ], [ -75.021993, 40.063113 ], [ -75.022476, 40.062614 ], [ -75.022767, 40.062334 ], [ -75.023752, 40.061346 ], [ -75.023907, 40.061198 ], [ -75.024194, 40.060931 ], [ -75.02469, 40.060438 ], [ -75.024745, 40.060385 ], [ -75.024807, 40.060319 ], [ -75.025483, 40.059641 ], [ -75.026376, 40.058776 ], [ -75.026888, 40.058267 ], [ -75.027525, 40.057621 ], [ -75.028416, 40.056723 ], [ -75.028492, 40.056757 ], [ -75.028568, 40.056776 ], [ -75.02866, 40.056787 ], [ -75.028763, 40.056782 ], [ -75.028842, 40.056768 ], [ -75.028917, 40.056734 ], [ -75.028984, 40.056685 ], [ -75.02904, 40.056616 ], [ -75.029142, 40.056622 ], [ -75.029489, 40.05665 ], [ -75.030541, 40.056742 ], [ -75.031097, 40.056792 ], [ -75.031451, 40.056824 ], [ -75.032776, 40.056947 ], [ -75.033029, 40.056968 ], [ -75.033298, 40.057007 ], [ -75.033546, 40.057058 ], [ -75.033742, 40.057113 ], [ -75.033784, 40.057125 ], [ -75.033943, 40.057173 ], [ -75.034185, 40.057244 ], [ -75.034239, 40.05726 ], [ -75.034298, 40.05728 ], [ -75.034689, 40.057418 ], [ -75.034973, 40.057506 ], [ -75.035288, 40.057595 ], [ -75.035726, 40.057717 ], [ -75.03575, 40.057724 ], [ -75.035961, 40.057791 ], [ -75.035993, 40.057802 ], [ -75.03623, 40.057884 ], [ -75.036425, 40.057949 ], [ -75.036943, 40.058136 ], [ -75.037458, 40.058347 ], [ -75.037706, 40.058446 ], [ -75.037876, 40.058501 ], [ -75.038038, 40.058538 ], [ -75.038201, 40.058566 ], [ -75.03837, 40.058583 ], [ -75.038557, 40.0586 ], [ -75.038814, 40.058605 ], [ -75.039091, 40.058592 ], [ -75.039272, 40.058575 ], [ -75.039424, 40.058553 ], [ -75.039648, 40.058504 ], [ -75.039859, 40.058447 ], [ -75.040078, 40.058378 ], [ -75.040292, 40.0583 ], [ -75.040564, 40.05818 ], [ -75.040719, 40.058112 ], [ -75.040854, 40.05806 ], [ -75.041012, 40.058022 ], [ -75.041138, 40.057995 ], [ -75.041269, 40.057978 ], [ -75.041471, 40.057956 ], [ -75.04158, 40.057952 ], [ -75.041737, 40.057958 ], [ -75.04193, 40.057978 ], [ -75.042076, 40.058001 ], [ -75.04224, 40.05804 ], [ -75.042425, 40.0581 ], [ -75.042589, 40.058175 ], [ -75.042861, 40.058316 ], [ -75.043199, 40.058507 ], [ -75.043358, 40.058598 ], [ -75.043498, 40.058692 ], [ -75.043628, 40.058795 ], [ -75.043748, 40.058904 ], [ -75.043797, 40.058963 ], [ -75.043841, 40.059014 ], [ -75.043894, 40.05909 ], [ -75.043967, 40.059217 ], [ -75.04399, 40.059258 ], [ -75.044029, 40.0593 ], [ -75.044056, 40.059318 ], [ -75.044066, 40.059325 ], [ -75.04411, 40.059347 ], [ -75.044217, 40.059373 ], [ -75.0443, 40.059385 ], [ -75.044398, 40.059385 ], [ -75.044485, 40.059377 ], [ -75.04479, 40.059042 ], [ -75.045236, 40.058589 ], [ -75.045841, 40.057973 ], [ -75.046494, 40.057319 ], [ -75.046994, 40.056819 ], [ -75.048268, 40.055534 ], [ -75.048587, 40.05522 ], [ -75.049026, 40.054773 ], [ -75.049484, 40.05431 ], [ -75.050288, 40.053512 ], [ -75.050434, 40.053362 ], [ -75.050547, 40.053241 ], [ -75.05062, 40.053155 ], [ -75.050671, 40.05309 ], [ -75.050765, 40.052966 ], [ -75.050857, 40.052839 ], [ -75.05098, 40.052645 ], [ -75.051047, 40.052529 ], [ -75.051116, 40.052392 ], [ -75.051182, 40.052229 ], [ -75.051242, 40.052062 ], [ -75.051277, 40.051973 ], [ -75.051333, 40.05177 ], [ -75.051377, 40.051598 ], [ -75.051395, 40.051494 ], [ -75.051406, 40.051421 ], [ -75.051418, 40.051288 ], [ -75.051423, 40.051213 ], [ -75.051459, 40.050719 ], [ -75.051481, 40.05047 ], [ -75.051516, 40.05009 ], [ -75.051527, 40.049983 ], [ -75.051592, 40.049064 ], [ -75.051617, 40.048708 ], [ -75.05163, 40.048503 ], [ -75.051649, 40.048337 ], [ -75.051668, 40.048213 ], [ -75.051689, 40.048109 ], [ -75.051705, 40.048024 ], [ -75.051752, 40.047875 ], [ -75.051816, 40.047709 ], [ -75.051895, 40.047526 ], [ -75.051976, 40.047368 ], [ -75.052078, 40.047194 ], [ -75.052176, 40.047046 ], [ -75.05232, 40.046868 ], [ -75.052456, 40.046704 ], [ -75.052647, 40.046521 ], [ -75.053095, 40.046096 ], [ -75.053206, 40.045994 ], [ -75.053232, 40.04597 ], [ -75.054058, 40.045169 ], [ -75.054642, 40.044663 ], [ -75.056448, 40.042972 ], [ -75.056776, 40.04267 ], [ -75.057079, 40.04239 ], [ -75.057397, 40.04209 ], [ -75.057514, 40.041984 ], [ -75.057734, 40.041782 ], [ -75.057887, 40.041633 ], [ -75.058559, 40.041015 ], [ -75.059045, 40.040569 ], [ -75.059669, 40.039958 ], [ -75.060277, 40.039398 ], [ -75.060676, 40.039021 ], [ -75.060774, 40.03893 ], [ -75.060915, 40.038793 ], [ -75.061436, 40.038315 ], [ -75.061546, 40.038214 ], [ -75.061803, 40.037974 ], [ -75.061911, 40.037878 ], [ -75.061994, 40.037811 ], [ -75.062103, 40.037721 ], [ -75.062199, 40.037652 ], [ -75.062299, 40.037585 ], [ -75.062395, 40.03752 ], [ -75.062457, 40.037479 ], [ -75.062468, 40.037473 ], [ -75.062601, 40.037397 ], [ -75.06276, 40.037307 ], [ -75.062946, 40.037214 ], [ -75.063084, 40.037151 ], [ -75.063323, 40.037059 ], [ -75.063538, 40.036983 ], [ -75.063744, 40.036921 ], [ -75.06376, 40.036916 ], [ -75.063872, 40.036888 ], [ -75.064381, 40.036761 ], [ -75.064505, 40.03673 ], [ -75.065428, 40.036519 ], [ -75.066023, 40.036384 ], [ -75.066437, 40.036286 ], [ -75.067278, 40.036094 ], [ -75.067946, 40.035936 ], [ -75.069013, 40.035696 ], [ -75.069681, 40.035546 ], [ -75.07006, 40.035458 ], [ -75.070132, 40.035461 ], [ -75.070163, 40.035461 ], [ -75.070239, 40.035472 ], [ -75.070313, 40.035495 ], [ -75.070381, 40.035526 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307433", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.005067, 40.114098 ], [ -75.004491, 40.112865 ], [ -75.004361, 40.112585 ], [ -75.004274, 40.112401 ], [ -75.004286, 40.11234 ], [ -75.004286, 40.112321 ], [ -75.004281, 40.112303 ], [ -75.004096, 40.111897 ], [ -75.003964, 40.111627 ], [ -75.00392, 40.111526 ], [ -75.003707, 40.111041 ], [ -75.003688, 40.111013 ], [ -75.003663, 40.110987 ], [ -75.003619, 40.110959 ], [ -75.00356, 40.110859 ], [ -75.003352, 40.110914 ], [ -75.003242, 40.110938 ], [ -75.003169, 40.110954 ], [ -75.003157, 40.110957 ], [ -75.003075, 40.110973 ], [ -75.003002, 40.110982 ], [ -75.002926, 40.110987 ], [ -75.002847, 40.11099 ], [ -75.002732, 40.110983 ], [ -75.002642, 40.110979 ], [ -75.002563, 40.110982 ], [ -75.00249, 40.110986 ], [ -75.002411, 40.110994 ], [ -75.002337, 40.111005 ], [ -75.002262, 40.111018 ], [ -75.00218, 40.111039 ], [ -75.001455, 40.111249 ], [ -75.000931, 40.111415 ], [ -75.000753, 40.111263 ], [ -75.000456, 40.111018 ], [ -74.999327, 40.110079 ], [ -74.998618, 40.109485 ], [ -74.997918, 40.108883 ], [ -74.997684, 40.108678 ], [ -74.997278, 40.108339 ], [ -74.997087, 40.10817 ], [ -74.997188, 40.108106 ], [ -74.997366, 40.107985 ], [ -74.997761, 40.107709 ], [ -74.998004, 40.107538 ], [ -74.998756, 40.107028 ], [ -74.998888, 40.106938 ], [ -74.999214, 40.106719 ], [ -74.999346, 40.106628 ], [ -75.000023, 40.106154 ], [ -75.000654, 40.105723 ], [ -75.001257, 40.105298 ], [ -75.001285, 40.105278 ], [ -75.001567, 40.105081 ], [ -75.00169, 40.105 ], [ -75.001747, 40.104963 ], [ -75.001802, 40.104926 ], [ -75.001655, 40.104791 ], [ -75.001517, 40.104664 ], [ -75.001398, 40.104552 ], [ -75.001298, 40.104473 ], [ -75.000975, 40.104189 ], [ -74.999882, 40.103285 ], [ -74.9998, 40.103218 ], [ -74.99941, 40.1029 ], [ -74.999183, 40.102716 ], [ -74.999073, 40.102627 ], [ -74.998984, 40.102557 ], [ -74.998896, 40.10248 ], [ -74.998828, 40.10241 ], [ -74.998762, 40.102342 ], [ -74.998672, 40.102242 ], [ -74.998571, 40.102112 ], [ -74.998459, 40.101963 ], [ -74.998387, 40.10187 ], [ -74.998299, 40.101771 ], [ -74.998223, 40.101689 ], [ -74.998145, 40.101614 ], [ -74.998001, 40.101485 ], [ -74.997858, 40.101351 ], [ -74.997706, 40.101217 ], [ -74.997413, 40.100953 ], [ -74.997091, 40.100643 ], [ -74.996841, 40.100398 ], [ -74.996202, 40.099835 ], [ -74.995449, 40.099181 ], [ -74.994954, 40.098749 ], [ -74.994857, 40.098664 ], [ -74.994683, 40.098524 ], [ -74.993803, 40.097818 ], [ -74.993226, 40.097349 ], [ -74.992421, 40.096713 ], [ -74.99205, 40.096416 ], [ -74.991864, 40.096268 ], [ -74.991586, 40.096045 ], [ -74.991252, 40.095789 ], [ -74.990974, 40.095553 ], [ -74.990744, 40.095358 ], [ -74.990287, 40.094964 ], [ -74.989691, 40.094463 ], [ -74.989438, 40.094248 ], [ -74.98912, 40.093976 ], [ -74.988645, 40.093583 ], [ -74.988488, 40.093453 ], [ -74.987409, 40.09256 ], [ -74.986434, 40.091757 ], [ -74.985191, 40.090733 ], [ -74.98481, 40.090413 ], [ -74.984673, 40.090305 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.99006, 40.084095 ], [ -74.989969, 40.083995 ], [ -74.989813, 40.083824 ], [ -74.989662, 40.083673 ], [ -74.989507, 40.083537 ], [ -74.98939, 40.083442 ], [ -74.989249, 40.083338 ], [ -74.989116, 40.083252 ], [ -74.988961, 40.083165 ], [ -74.988753, 40.083062 ], [ -74.988478, 40.082944 ], [ -74.988306, 40.082882 ], [ -74.98803, 40.082795 ], [ -74.987561, 40.08265 ], [ -74.987402, 40.082609 ], [ -74.987233, 40.082571 ], [ -74.987049, 40.082532 ], [ -74.986792, 40.082481 ], [ -74.986556, 40.08244 ], [ -74.98615, 40.08238 ], [ -74.98597, 40.082361 ], [ -74.985757, 40.082344 ], [ -74.985585, 40.082332 ], [ -74.98514, 40.082316 ], [ -74.984693, 40.082312 ], [ -74.984335, 40.082316 ], [ -74.983892, 40.082324 ], [ -74.983876, 40.081866 ], [ -74.983865, 40.081657 ], [ -74.983886, 40.080997 ], [ -74.983877, 40.080486 ], [ -74.983908, 40.080168 ], [ -74.983977, 40.07991 ], [ -74.984115, 40.079516 ], [ -74.984209, 40.079276 ], [ -74.984372, 40.078951 ], [ -74.984436, 40.07886 ], [ -74.984715, 40.078448 ], [ -74.985325, 40.077746 ], [ -74.985835, 40.077317 ], [ -74.986419, 40.076829 ], [ -74.987004, 40.076312 ], [ -74.9874, 40.075962 ], [ -74.987566, 40.075818 ], [ -74.987612, 40.075778 ], [ -74.987653, 40.075744 ], [ -74.987749, 40.075674 ], [ -74.987887, 40.075581 ], [ -74.988439, 40.075232 ], [ -74.989275, 40.074698 ], [ -74.98989, 40.075265 ], [ -74.990343, 40.075685 ], [ -74.990511, 40.075834 ], [ -74.990636, 40.075928 ], [ -74.99077, 40.07602 ], [ -74.990946, 40.07613 ], [ -74.991104, 40.076217 ], [ -74.991261, 40.076294 ], [ -74.991396, 40.076355 ], [ -74.991522, 40.076403 ], [ -74.991633, 40.076442 ], [ -74.991822, 40.076496 ], [ -74.99202, 40.07655 ], [ -74.992212, 40.076589 ], [ -74.992471, 40.076631 ], [ -74.992798, 40.076681 ], [ -74.993267, 40.076749 ], [ -74.99365, 40.076811 ], [ -74.994028, 40.076871 ], [ -74.99444, 40.076941 ], [ -74.994644, 40.07698 ], [ -74.994858, 40.077028 ], [ -74.995111, 40.077098 ], [ -74.995292, 40.077152 ], [ -74.996004, 40.077476 ], [ -74.996524, 40.077743 ], [ -74.996802, 40.077878 ], [ -74.997706, 40.078315 ], [ -74.998305, 40.078614 ], [ -74.998395, 40.078663 ], [ -74.998487, 40.078719 ], [ -74.998599, 40.078787 ], [ -75.000821, 40.076122 ], [ -75.001031, 40.075872 ], [ -75.001336, 40.075497 ], [ -75.001344, 40.075487 ], [ -75.0016, 40.075185 ], [ -75.001748, 40.074988 ], [ -75.001894, 40.074785 ], [ -75.001907, 40.074765 ], [ -75.002003, 40.074598 ], [ -75.002085, 40.074428 ], [ -75.00214, 40.074324 ], [ -75.002213, 40.074115 ], [ -75.002274, 40.073872 ], [ -75.00242, 40.073294 ], [ -75.002521, 40.072992 ], [ -75.002616, 40.072784 ], [ -75.002714, 40.072595 ], [ -75.002907, 40.072289 ], [ -75.003053, 40.072103 ], [ -75.003199, 40.071929 ], [ -75.003367, 40.071754 ], [ -75.003462, 40.071661 ], [ -75.003637, 40.071511 ], [ -75.004047, 40.071202 ], [ -75.004395, 40.070989 ], [ -75.004736, 40.070789 ], [ -75.00496, 40.070659 ], [ -75.005325, 40.070442 ], [ -75.006457, 40.069778 ], [ -75.006546, 40.069725 ], [ -75.006683, 40.069647 ], [ -75.007261, 40.069317 ], [ -75.007356, 40.069263 ], [ -75.007415, 40.069229 ], [ -75.007532, 40.069158 ], [ -75.007679, 40.069061 ], [ -75.007828, 40.068971 ], [ -75.007984, 40.068864 ], [ -75.008108, 40.068766 ], [ -75.008226, 40.068656 ], [ -75.008305, 40.068574 ], [ -75.008405, 40.068456 ], [ -75.008487, 40.068348 ], [ -75.008545, 40.068256 ], [ -75.00862, 40.068126 ], [ -75.008698, 40.06798 ], [ -75.008797, 40.067755 ], [ -75.008856, 40.067623 ], [ -75.008885, 40.067549 ], [ -75.00895, 40.067388 ], [ -75.009111, 40.066929 ], [ -75.009215, 40.066632 ], [ -75.009286, 40.066445 ], [ -75.009373, 40.066161 ], [ -75.00944, 40.065871 ], [ -75.009473, 40.065706 ], [ -75.009505, 40.065412 ], [ -75.009518, 40.065157 ], [ -75.009521, 40.064941 ], [ -75.009521, 40.064935 ], [ -75.009541, 40.063485 ], [ -75.00955, 40.062965 ], [ -75.009557, 40.062556 ], [ -75.01019, 40.06255 ], [ -75.010401, 40.062536 ], [ -75.010607, 40.062511 ], [ -75.010998, 40.062453 ], [ -75.011608, 40.062357 ], [ -75.011868, 40.062312 ], [ -75.012743, 40.062182 ], [ -75.013601, 40.06205 ], [ -75.014946, 40.061854 ], [ -75.015153, 40.061816 ], [ -75.015365, 40.061775 ], [ -75.015541, 40.061735 ], [ -75.01568, 40.061699 ], [ -75.015818, 40.061656 ], [ -75.015951, 40.061611 ], [ -75.016112, 40.061547 ], [ -75.016292, 40.061471 ], [ -75.016463, 40.061395 ], [ -75.0167, 40.06128 ], [ -75.016903, 40.061167 ], [ -75.017113, 40.061025 ], [ -75.01731, 40.060884 ], [ -75.017489, 40.060736 ], [ -75.017716, 40.060545 ], [ -75.018383, 40.059925 ], [ -75.019453, 40.060572 ], [ -75.019803, 40.060786 ], [ -75.01996, 40.060874 ], [ -75.020016, 40.060909 ], [ -75.020176, 40.061008 ], [ -75.020618, 40.061274 ], [ -75.020783, 40.061372 ], [ -75.020901, 40.061448 ], [ -75.021022, 40.061535 ], [ -75.021177, 40.061679 ], [ -75.021258, 40.061772 ], [ -75.021329, 40.06187 ], [ -75.021402, 40.061986 ], [ -75.021467, 40.062115 ], [ -75.021673, 40.0625 ], [ -75.021731, 40.062608 ], [ -75.021806, 40.062754 ], [ -75.021981, 40.063088 ], [ -75.021993, 40.063113 ], [ -75.022476, 40.062614 ], [ -75.022767, 40.062334 ], [ -75.023752, 40.061346 ], [ -75.023907, 40.061198 ], [ -75.024194, 40.060931 ], [ -75.02469, 40.060438 ], [ -75.024745, 40.060385 ], [ -75.024807, 40.060319 ], [ -75.025483, 40.059641 ], [ -75.026376, 40.058776 ], [ -75.026888, 40.058267 ], [ -75.027525, 40.057621 ], [ -75.028416, 40.056723 ], [ -75.028492, 40.056757 ], [ -75.028568, 40.056776 ], [ -75.02866, 40.056787 ], [ -75.028763, 40.056782 ], [ -75.028842, 40.056768 ], [ -75.028917, 40.056734 ], [ -75.028984, 40.056685 ], [ -75.02904, 40.056616 ], [ -75.029142, 40.056622 ], [ -75.029489, 40.05665 ], [ -75.030541, 40.056742 ], [ -75.031097, 40.056792 ], [ -75.031451, 40.056824 ], [ -75.032776, 40.056947 ], [ -75.033029, 40.056968 ], [ -75.033298, 40.057007 ], [ -75.033546, 40.057058 ], [ -75.033742, 40.057113 ], [ -75.033784, 40.057125 ], [ -75.033943, 40.057173 ], [ -75.034185, 40.057244 ], [ -75.034239, 40.05726 ], [ -75.034298, 40.05728 ], [ -75.034689, 40.057418 ], [ -75.034973, 40.057506 ], [ -75.035288, 40.057595 ], [ -75.035726, 40.057717 ], [ -75.03575, 40.057724 ], [ -75.035961, 40.057791 ], [ -75.035993, 40.057802 ], [ -75.03623, 40.057884 ], [ -75.036425, 40.057949 ], [ -75.036943, 40.058136 ], [ -75.037458, 40.058347 ], [ -75.037706, 40.058446 ], [ -75.037876, 40.058501 ], [ -75.038038, 40.058538 ], [ -75.038201, 40.058566 ], [ -75.03837, 40.058583 ], [ -75.038557, 40.0586 ], [ -75.038814, 40.058605 ], [ -75.039091, 40.058592 ], [ -75.039272, 40.058575 ], [ -75.039424, 40.058553 ], [ -75.039648, 40.058504 ], [ -75.039859, 40.058447 ], [ -75.040078, 40.058378 ], [ -75.040292, 40.0583 ], [ -75.040564, 40.05818 ], [ -75.040719, 40.058112 ], [ -75.040854, 40.05806 ], [ -75.041012, 40.058022 ], [ -75.041138, 40.057995 ], [ -75.041269, 40.057978 ], [ -75.041471, 40.057956 ], [ -75.04158, 40.057952 ], [ -75.041737, 40.057958 ], [ -75.04193, 40.057978 ], [ -75.042076, 40.058001 ], [ -75.04224, 40.05804 ], [ -75.042425, 40.0581 ], [ -75.042589, 40.058175 ], [ -75.042861, 40.058316 ], [ -75.043199, 40.058507 ], [ -75.043358, 40.058598 ], [ -75.043498, 40.058692 ], [ -75.043628, 40.058795 ], [ -75.043748, 40.058904 ], [ -75.043797, 40.058963 ], [ -75.043841, 40.059014 ], [ -75.043894, 40.05909 ], [ -75.043967, 40.059217 ], [ -75.04399, 40.059258 ], [ -75.044029, 40.0593 ], [ -75.044056, 40.059318 ], [ -75.044066, 40.059325 ], [ -75.04411, 40.059347 ], [ -75.044217, 40.059373 ], [ -75.0443, 40.059385 ], [ -75.044398, 40.059385 ], [ -75.044485, 40.059377 ], [ -75.04479, 40.059042 ], [ -75.045236, 40.058589 ], [ -75.045841, 40.057973 ], [ -75.046494, 40.057319 ], [ -75.046994, 40.056819 ], [ -75.048268, 40.055534 ], [ -75.048587, 40.05522 ], [ -75.049026, 40.054773 ], [ -75.049484, 40.05431 ], [ -75.050288, 40.053512 ], [ -75.050434, 40.053362 ], [ -75.050547, 40.053241 ], [ -75.05062, 40.053155 ], [ -75.050671, 40.05309 ], [ -75.050765, 40.052966 ], [ -75.050857, 40.052839 ], [ -75.05098, 40.052645 ], [ -75.051047, 40.052529 ], [ -75.051116, 40.052392 ], [ -75.051182, 40.052229 ], [ -75.051242, 40.052062 ], [ -75.051277, 40.051973 ], [ -75.051333, 40.05177 ], [ -75.051377, 40.051598 ], [ -75.051395, 40.051494 ], [ -75.051406, 40.051421 ], [ -75.051418, 40.051288 ], [ -75.051423, 40.051213 ], [ -75.051459, 40.050719 ], [ -75.051481, 40.05047 ], [ -75.051516, 40.05009 ], [ -75.051527, 40.049983 ], [ -75.051592, 40.049064 ], [ -75.051617, 40.048708 ], [ -75.05163, 40.048503 ], [ -75.051649, 40.048337 ], [ -75.051668, 40.048213 ], [ -75.051689, 40.048109 ], [ -75.051705, 40.048024 ], [ -75.051752, 40.047875 ], [ -75.051816, 40.047709 ], [ -75.051895, 40.047526 ], [ -75.051976, 40.047368 ], [ -75.052078, 40.047194 ], [ -75.052176, 40.047046 ], [ -75.05232, 40.046868 ], [ -75.052456, 40.046704 ], [ -75.052647, 40.046521 ], [ -75.053095, 40.046096 ], [ -75.053206, 40.045994 ], [ -75.053232, 40.04597 ], [ -75.054058, 40.045169 ], [ -75.054642, 40.044663 ], [ -75.056448, 40.042972 ], [ -75.056776, 40.04267 ], [ -75.057079, 40.04239 ], [ -75.057397, 40.04209 ], [ -75.057514, 40.041984 ], [ -75.057734, 40.041782 ], [ -75.057887, 40.041633 ], [ -75.058559, 40.041015 ], [ -75.059045, 40.040569 ], [ -75.059669, 40.039958 ], [ -75.060277, 40.039398 ], [ -75.060676, 40.039021 ], [ -75.060774, 40.03893 ], [ -75.060915, 40.038793 ], [ -75.061436, 40.038315 ], [ -75.061546, 40.038214 ], [ -75.061803, 40.037974 ], [ -75.061911, 40.037878 ], [ -75.061994, 40.037811 ], [ -75.062103, 40.037721 ], [ -75.062199, 40.037652 ], [ -75.062299, 40.037585 ], [ -75.062395, 40.03752 ], [ -75.062457, 40.037479 ], [ -75.062468, 40.037473 ], [ -75.062601, 40.037397 ], [ -75.06276, 40.037307 ], [ -75.062946, 40.037214 ], [ -75.063084, 40.037151 ], [ -75.063323, 40.037059 ], [ -75.063538, 40.036983 ], [ -75.063744, 40.036921 ], [ -75.06376, 40.036916 ], [ -75.063872, 40.036888 ], [ -75.064381, 40.036761 ], [ -75.064505, 40.03673 ], [ -75.065428, 40.036519 ], [ -75.066023, 40.036384 ], [ -75.066437, 40.036286 ], [ -75.067278, 40.036094 ], [ -75.067946, 40.035936 ], [ -75.069013, 40.035696 ], [ -75.069681, 40.035546 ], [ -75.07006, 40.035458 ], [ -75.070132, 40.035461 ], [ -75.070163, 40.035461 ], [ -75.070239, 40.035472 ], [ -75.070313, 40.035495 ], [ -75.070381, 40.035526 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307434", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.995521, 40.081142 ], [ -74.995661, 40.081061 ], [ -74.995902, 40.080926 ], [ -74.996145, 40.08078 ], [ -74.996855, 40.080385 ], [ -74.997242, 40.080154 ], [ -74.997321, 40.080092 ], [ -74.997665, 40.079823 ], [ -74.997934, 40.079564 ], [ -74.998281, 40.079157 ], [ -74.998599, 40.078787 ], [ -75.000821, 40.076122 ], [ -75.001031, 40.075872 ], [ -75.001336, 40.075497 ], [ -75.001344, 40.075487 ], [ -75.0016, 40.075185 ], [ -75.001748, 40.074988 ], [ -75.001894, 40.074785 ], [ -75.001907, 40.074765 ], [ -75.002003, 40.074598 ], [ -75.002085, 40.074428 ], [ -75.00214, 40.074324 ], [ -75.002213, 40.074115 ], [ -75.002274, 40.073872 ], [ -75.00242, 40.073294 ], [ -75.002521, 40.072992 ], [ -75.002616, 40.072784 ], [ -75.002714, 40.072595 ], [ -75.002907, 40.072289 ], [ -75.003053, 40.072103 ], [ -75.003199, 40.071929 ], [ -75.003367, 40.071754 ], [ -75.003462, 40.071661 ], [ -75.003637, 40.071511 ], [ -75.004047, 40.071202 ], [ -75.004395, 40.070989 ], [ -75.004736, 40.070789 ], [ -75.00496, 40.070659 ], [ -75.005325, 40.070442 ], [ -75.006457, 40.069778 ], [ -75.006546, 40.069725 ], [ -75.006683, 40.069647 ], [ -75.007261, 40.069317 ], [ -75.007356, 40.069263 ], [ -75.007415, 40.069229 ], [ -75.007532, 40.069158 ], [ -75.007679, 40.069061 ], [ -75.007828, 40.068971 ], [ -75.007984, 40.068864 ], [ -75.008108, 40.068766 ], [ -75.008226, 40.068656 ], [ -75.008305, 40.068574 ], [ -75.008405, 40.068456 ], [ -75.008487, 40.068348 ], [ -75.008545, 40.068256 ], [ -75.00862, 40.068126 ], [ -75.008698, 40.06798 ], [ -75.008797, 40.067755 ], [ -75.008856, 40.067623 ], [ -75.008885, 40.067549 ], [ -75.00895, 40.067388 ], [ -75.009111, 40.066929 ], [ -75.009215, 40.066632 ], [ -75.009286, 40.066445 ], [ -75.009373, 40.066161 ], [ -75.00944, 40.065871 ], [ -75.009473, 40.065706 ], [ -75.009505, 40.065412 ], [ -75.009518, 40.065157 ], [ -75.009521, 40.064941 ], [ -75.009521, 40.064935 ], [ -75.009541, 40.063485 ], [ -75.00955, 40.062965 ], [ -75.009557, 40.062556 ], [ -75.01019, 40.06255 ], [ -75.010401, 40.062536 ], [ -75.010607, 40.062511 ], [ -75.010998, 40.062453 ], [ -75.011608, 40.062357 ], [ -75.011868, 40.062312 ], [ -75.012743, 40.062182 ], [ -75.013601, 40.06205 ], [ -75.014946, 40.061854 ], [ -75.015153, 40.061816 ], [ -75.015365, 40.061775 ], [ -75.015541, 40.061735 ], [ -75.01568, 40.061699 ], [ -75.015818, 40.061656 ], [ -75.015951, 40.061611 ], [ -75.016112, 40.061547 ], [ -75.016292, 40.061471 ], [ -75.016463, 40.061395 ], [ -75.0167, 40.06128 ], [ -75.016903, 40.061167 ], [ -75.017113, 40.061025 ], [ -75.01731, 40.060884 ], [ -75.017489, 40.060736 ], [ -75.017716, 40.060545 ], [ -75.018383, 40.059925 ], [ -75.019453, 40.060572 ], [ -75.019803, 40.060786 ], [ -75.01996, 40.060874 ], [ -75.020016, 40.060909 ], [ -75.020176, 40.061008 ], [ -75.020618, 40.061274 ], [ -75.020783, 40.061372 ], [ -75.020901, 40.061448 ], [ -75.021022, 40.061535 ], [ -75.021177, 40.061679 ], [ -75.021258, 40.061772 ], [ -75.021329, 40.06187 ], [ -75.021402, 40.061986 ], [ -75.021467, 40.062115 ], [ -75.021673, 40.0625 ], [ -75.021731, 40.062608 ], [ -75.021806, 40.062754 ], [ -75.021981, 40.063088 ], [ -75.021993, 40.063113 ], [ -75.022476, 40.062614 ], [ -75.022767, 40.062334 ], [ -75.023752, 40.061346 ], [ -75.023907, 40.061198 ], [ -75.024194, 40.060931 ], [ -75.02469, 40.060438 ], [ -75.024745, 40.060385 ], [ -75.024807, 40.060319 ], [ -75.025483, 40.059641 ], [ -75.026376, 40.058776 ], [ -75.026888, 40.058267 ], [ -75.027525, 40.057621 ], [ -75.028416, 40.056723 ], [ -75.028492, 40.056757 ], [ -75.028568, 40.056776 ], [ -75.02866, 40.056787 ], [ -75.028763, 40.056782 ], [ -75.028842, 40.056768 ], [ -75.028917, 40.056734 ], [ -75.028984, 40.056685 ], [ -75.02904, 40.056616 ], [ -75.029142, 40.056622 ], [ -75.029489, 40.05665 ], [ -75.030541, 40.056742 ], [ -75.031097, 40.056792 ], [ -75.031451, 40.056824 ], [ -75.032776, 40.056947 ], [ -75.033029, 40.056968 ], [ -75.033298, 40.057007 ], [ -75.033546, 40.057058 ], [ -75.033742, 40.057113 ], [ -75.033784, 40.057125 ], [ -75.033943, 40.057173 ], [ -75.034185, 40.057244 ], [ -75.034239, 40.05726 ], [ -75.034298, 40.05728 ], [ -75.034689, 40.057418 ], [ -75.034973, 40.057506 ], [ -75.035288, 40.057595 ], [ -75.035726, 40.057717 ], [ -75.03575, 40.057724 ], [ -75.035961, 40.057791 ], [ -75.035993, 40.057802 ], [ -75.03623, 40.057884 ], [ -75.036425, 40.057949 ], [ -75.036943, 40.058136 ], [ -75.037458, 40.058347 ], [ -75.037706, 40.058446 ], [ -75.037876, 40.058501 ], [ -75.038038, 40.058538 ], [ -75.038201, 40.058566 ], [ -75.03837, 40.058583 ], [ -75.038557, 40.0586 ], [ -75.038814, 40.058605 ], [ -75.039091, 40.058592 ], [ -75.039272, 40.058575 ], [ -75.039424, 40.058553 ], [ -75.039648, 40.058504 ], [ -75.039859, 40.058447 ], [ -75.040078, 40.058378 ], [ -75.040292, 40.0583 ], [ -75.040564, 40.05818 ], [ -75.040719, 40.058112 ], [ -75.040854, 40.05806 ], [ -75.041012, 40.058022 ], [ -75.041138, 40.057995 ], [ -75.041269, 40.057978 ], [ -75.041471, 40.057956 ], [ -75.04158, 40.057952 ], [ -75.041737, 40.057958 ], [ -75.04193, 40.057978 ], [ -75.042076, 40.058001 ], [ -75.04224, 40.05804 ], [ -75.042425, 40.0581 ], [ -75.042589, 40.058175 ], [ -75.042861, 40.058316 ], [ -75.043199, 40.058507 ], [ -75.043358, 40.058598 ], [ -75.043498, 40.058692 ], [ -75.043628, 40.058795 ], [ -75.043748, 40.058904 ], [ -75.043797, 40.058963 ], [ -75.043841, 40.059014 ], [ -75.043894, 40.05909 ], [ -75.043967, 40.059217 ], [ -75.04399, 40.059258 ], [ -75.044029, 40.0593 ], [ -75.044056, 40.059318 ], [ -75.044066, 40.059325 ], [ -75.04411, 40.059347 ], [ -75.044217, 40.059373 ], [ -75.0443, 40.059385 ], [ -75.044398, 40.059385 ], [ -75.044485, 40.059377 ], [ -75.04479, 40.059042 ], [ -75.045236, 40.058589 ], [ -75.045841, 40.057973 ], [ -75.046494, 40.057319 ], [ -75.046994, 40.056819 ], [ -75.048268, 40.055534 ], [ -75.048587, 40.05522 ], [ -75.049026, 40.054773 ], [ -75.049484, 40.05431 ], [ -75.050288, 40.053512 ], [ -75.050434, 40.053362 ], [ -75.050547, 40.053241 ], [ -75.05062, 40.053155 ], [ -75.050671, 40.05309 ], [ -75.050765, 40.052966 ], [ -75.050857, 40.052839 ], [ -75.05098, 40.052645 ], [ -75.051047, 40.052529 ], [ -75.051116, 40.052392 ], [ -75.051182, 40.052229 ], [ -75.051242, 40.052062 ], [ -75.051277, 40.051973 ], [ -75.051333, 40.05177 ], [ -75.051377, 40.051598 ], [ -75.051395, 40.051494 ], [ -75.051406, 40.051421 ], [ -75.051418, 40.051288 ], [ -75.051423, 40.051213 ], [ -75.051459, 40.050719 ], [ -75.051481, 40.05047 ], [ -75.051516, 40.05009 ], [ -75.051527, 40.049983 ], [ -75.051592, 40.049064 ], [ -75.051617, 40.048708 ], [ -75.05163, 40.048503 ], [ -75.051649, 40.048337 ], [ -75.051668, 40.048213 ], [ -75.051689, 40.048109 ], [ -75.051705, 40.048024 ], [ -75.051752, 40.047875 ], [ -75.051816, 40.047709 ], [ -75.051895, 40.047526 ], [ -75.051976, 40.047368 ], [ -75.052078, 40.047194 ], [ -75.052176, 40.047046 ], [ -75.05232, 40.046868 ], [ -75.052456, 40.046704 ], [ -75.052647, 40.046521 ], [ -75.053095, 40.046096 ], [ -75.053206, 40.045994 ], [ -75.053232, 40.04597 ], [ -75.054058, 40.045169 ], [ -75.054642, 40.044663 ], [ -75.056448, 40.042972 ], [ -75.056776, 40.04267 ], [ -75.057079, 40.04239 ], [ -75.057397, 40.04209 ], [ -75.057514, 40.041984 ], [ -75.057734, 40.041782 ], [ -75.057887, 40.041633 ], [ -75.058559, 40.041015 ], [ -75.059045, 40.040569 ], [ -75.059669, 40.039958 ], [ -75.060277, 40.039398 ], [ -75.060676, 40.039021 ], [ -75.060774, 40.03893 ], [ -75.060915, 40.038793 ], [ -75.061436, 40.038315 ], [ -75.061546, 40.038214 ], [ -75.061803, 40.037974 ], [ -75.061911, 40.037878 ], [ -75.061994, 40.037811 ], [ -75.062103, 40.037721 ], [ -75.062199, 40.037652 ], [ -75.062299, 40.037585 ], [ -75.062395, 40.03752 ], [ -75.062457, 40.037479 ], [ -75.062468, 40.037473 ], [ -75.062601, 40.037397 ], [ -75.06276, 40.037307 ], [ -75.062946, 40.037214 ], [ -75.063084, 40.037151 ], [ -75.063323, 40.037059 ], [ -75.063538, 40.036983 ], [ -75.063744, 40.036921 ], [ -75.06376, 40.036916 ], [ -75.063872, 40.036888 ], [ -75.064381, 40.036761 ], [ -75.064505, 40.03673 ], [ -75.065428, 40.036519 ], [ -75.066023, 40.036384 ], [ -75.066437, 40.036286 ], [ -75.067278, 40.036094 ], [ -75.067946, 40.035936 ], [ -75.069013, 40.035696 ], [ -75.069681, 40.035546 ], [ -75.07006, 40.035458 ], [ -75.070132, 40.035461 ], [ -75.070163, 40.035461 ], [ -75.070239, 40.035472 ], [ -75.070313, 40.035495 ], [ -75.070381, 40.035526 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307436", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.962923, 40.093941 ], [ -74.963129, 40.094083 ], [ -74.963593, 40.094398 ], [ -74.963973, 40.094654 ], [ -74.964214, 40.094822 ], [ -74.96461, 40.095104 ], [ -74.964955, 40.095327 ], [ -74.964743, 40.095624 ], [ -74.9647, 40.095779 ], [ -74.964686, 40.095886 ], [ -74.964687, 40.096197 ], [ -74.9647, 40.097297 ], [ -74.964709, 40.097797 ], [ -74.964739, 40.098802 ], [ -74.964775, 40.098977 ], [ -74.964792, 40.099067 ], [ -74.964897, 40.099343 ], [ -74.964996, 40.099523 ], [ -74.965207, 40.099779 ], [ -74.965314, 40.099879 ], [ -74.965437, 40.099995 ], [ -74.965773, 40.100228 ], [ -74.966223, 40.100437 ], [ -74.966663, 40.100578 ], [ -74.967537, 40.100814 ], [ -74.968401, 40.100912 ], [ -74.968938, 40.100936 ], [ -74.969849, 40.100921 ], [ -74.97003, 40.100902 ], [ -74.970385, 40.100865 ], [ -74.970855, 40.100784 ], [ -74.971116, 40.100719 ], [ -74.971325, 40.100668 ], [ -74.971908, 40.100483 ], [ -74.97267, 40.100176 ], [ -74.973406, 40.099776 ], [ -74.973559, 40.099696 ], [ -74.97404, 40.099408 ], [ -74.974117, 40.099354 ], [ -74.974755, 40.098903 ], [ -74.975282, 40.098547 ], [ -74.975417, 40.098456 ], [ -74.975653, 40.098237 ], [ -74.975876, 40.097992 ], [ -74.975973, 40.097828 ], [ -74.976008, 40.097767 ], [ -74.976103, 40.097507 ], [ -74.976098, 40.097305 ], [ -74.976108, 40.097217 ], [ -74.976113, 40.09715 ], [ -74.976109, 40.097082 ], [ -74.976103, 40.09702 ], [ -74.976089, 40.096956 ], [ -74.976074, 40.096897 ], [ -74.976051, 40.096841 ], [ -74.976023, 40.096782 ], [ -74.975837, 40.096486 ], [ -74.976358, 40.096254 ], [ -74.976727, 40.096091 ], [ -74.976824, 40.096041 ], [ -74.976908, 40.095997 ], [ -74.977034, 40.095921 ], [ -74.977565, 40.095569 ], [ -74.978306, 40.095042 ], [ -74.978727, 40.094733 ], [ -74.978771, 40.094701 ], [ -74.979405, 40.094246 ], [ -74.979562, 40.094131 ], [ -74.979665, 40.094055 ], [ -74.979767, 40.093983 ], [ -74.979948, 40.093841 ], [ -74.980055, 40.093758 ], [ -74.980241, 40.09361 ], [ -74.980408, 40.093477 ], [ -74.981611, 40.0925 ], [ -74.981933, 40.092245 ], [ -74.982066, 40.092147 ], [ -74.982216, 40.092023 ], [ -74.982353, 40.09191 ], [ -74.982481, 40.091801 ], [ -74.982574, 40.091716 ], [ -74.982677, 40.091621 ], [ -74.982869, 40.091429 ], [ -74.983036, 40.091259 ], [ -74.98316, 40.091127 ], [ -74.98364, 40.09061 ], [ -74.983881, 40.090368 ], [ -74.983936, 40.090316 ], [ -74.984118, 40.090149 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.99006, 40.084095 ], [ -74.989969, 40.083995 ], [ -74.989813, 40.083824 ], [ -74.989662, 40.083673 ], [ -74.989507, 40.083537 ], [ -74.98939, 40.083442 ], [ -74.989249, 40.083338 ], [ -74.989116, 40.083252 ], [ -74.988961, 40.083165 ], [ -74.988753, 40.083062 ], [ -74.988478, 40.082944 ], [ -74.988306, 40.082882 ], [ -74.98803, 40.082795 ], [ -74.987561, 40.08265 ], [ -74.987402, 40.082609 ], [ -74.987233, 40.082571 ], [ -74.987049, 40.082532 ], [ -74.986792, 40.082481 ], [ -74.986556, 40.08244 ], [ -74.98615, 40.08238 ], [ -74.98597, 40.082361 ], [ -74.985757, 40.082344 ], [ -74.985585, 40.082332 ], [ -74.98514, 40.082316 ], [ -74.984693, 40.082312 ], [ -74.984335, 40.082316 ], [ -74.983892, 40.082324 ], [ -74.983876, 40.081866 ], [ -74.983865, 40.081657 ], [ -74.983886, 40.080997 ], [ -74.983877, 40.080486 ], [ -74.983908, 40.080168 ], [ -74.983977, 40.07991 ], [ -74.984115, 40.079516 ], [ -74.984209, 40.079276 ], [ -74.984372, 40.078951 ], [ -74.984436, 40.07886 ], [ -74.984715, 40.078448 ], [ -74.985325, 40.077746 ], [ -74.985835, 40.077317 ], [ -74.986419, 40.076829 ], [ -74.987004, 40.076312 ], [ -74.9874, 40.075962 ], [ -74.987566, 40.075818 ], [ -74.987612, 40.075778 ], [ -74.987653, 40.075744 ], [ -74.987749, 40.075674 ], [ -74.987887, 40.075581 ], [ -74.988439, 40.075232 ], [ -74.989275, 40.074698 ], [ -74.98989, 40.075265 ], [ -74.990343, 40.075685 ], [ -74.990511, 40.075834 ], [ -74.990636, 40.075928 ], [ -74.99077, 40.07602 ], [ -74.990946, 40.07613 ], [ -74.991104, 40.076217 ], [ -74.991261, 40.076294 ], [ -74.991396, 40.076355 ], [ -74.991522, 40.076403 ], [ -74.991633, 40.076442 ], [ -74.991822, 40.076496 ], [ -74.99202, 40.07655 ], [ -74.992212, 40.076589 ], [ -74.992471, 40.076631 ], [ -74.992798, 40.076681 ], [ -74.993267, 40.076749 ], [ -74.99365, 40.076811 ], [ -74.994028, 40.076871 ], [ -74.99444, 40.076941 ], [ -74.994644, 40.07698 ], [ -74.994858, 40.077028 ], [ -74.995111, 40.077098 ], [ -74.995292, 40.077152 ], [ -74.996004, 40.077476 ], [ -74.996524, 40.077743 ], [ -74.996802, 40.077878 ], [ -74.997706, 40.078315 ], [ -74.998305, 40.078614 ], [ -74.998395, 40.078663 ], [ -74.998487, 40.078719 ], [ -74.998599, 40.078787 ], [ -75.000821, 40.076122 ], [ -75.001031, 40.075872 ], [ -75.001336, 40.075497 ], [ -75.001344, 40.075487 ], [ -75.0016, 40.075185 ], [ -75.001748, 40.074988 ], [ -75.001894, 40.074785 ], [ -75.001907, 40.074765 ], [ -75.002003, 40.074598 ], [ -75.002085, 40.074428 ], [ -75.00214, 40.074324 ], [ -75.002213, 40.074115 ], [ -75.002274, 40.073872 ], [ -75.00242, 40.073294 ], [ -75.002521, 40.072992 ], [ -75.002616, 40.072784 ], [ -75.002714, 40.072595 ], [ -75.002907, 40.072289 ], [ -75.003053, 40.072103 ], [ -75.003199, 40.071929 ], [ -75.003367, 40.071754 ], [ -75.003462, 40.071661 ], [ -75.003637, 40.071511 ], [ -75.004047, 40.071202 ], [ -75.004395, 40.070989 ], [ -75.004736, 40.070789 ], [ -75.00496, 40.070659 ], [ -75.005325, 40.070442 ], [ -75.006457, 40.069778 ], [ -75.006546, 40.069725 ], [ -75.006683, 40.069647 ], [ -75.007261, 40.069317 ], [ -75.007356, 40.069263 ], [ -75.007415, 40.069229 ], [ -75.007532, 40.069158 ], [ -75.007679, 40.069061 ], [ -75.007828, 40.068971 ], [ -75.007984, 40.068864 ], [ -75.008108, 40.068766 ], [ -75.008226, 40.068656 ], [ -75.008305, 40.068574 ], [ -75.008405, 40.068456 ], [ -75.008487, 40.068348 ], [ -75.008545, 40.068256 ], [ -75.00862, 40.068126 ], [ -75.008698, 40.06798 ], [ -75.008797, 40.067755 ], [ -75.008856, 40.067623 ], [ -75.008885, 40.067549 ], [ -75.00895, 40.067388 ], [ -75.009111, 40.066929 ], [ -75.009215, 40.066632 ], [ -75.009286, 40.066445 ], [ -75.009373, 40.066161 ], [ -75.00944, 40.065871 ], [ -75.009473, 40.065706 ], [ -75.009505, 40.065412 ], [ -75.009518, 40.065157 ], [ -75.009521, 40.064941 ], [ -75.009521, 40.064935 ], [ -75.009541, 40.063485 ], [ -75.00955, 40.062965 ], [ -75.009557, 40.062556 ], [ -75.01019, 40.06255 ], [ -75.010401, 40.062536 ], [ -75.010607, 40.062511 ], [ -75.010998, 40.062453 ], [ -75.011608, 40.062357 ], [ -75.011868, 40.062312 ], [ -75.012743, 40.062182 ], [ -75.013601, 40.06205 ], [ -75.014946, 40.061854 ], [ -75.015153, 40.061816 ], [ -75.015365, 40.061775 ], [ -75.015541, 40.061735 ], [ -75.01568, 40.061699 ], [ -75.015818, 40.061656 ], [ -75.015951, 40.061611 ], [ -75.016112, 40.061547 ], [ -75.016292, 40.061471 ], [ -75.016463, 40.061395 ], [ -75.0167, 40.06128 ], [ -75.016903, 40.061167 ], [ -75.017113, 40.061025 ], [ -75.01731, 40.060884 ], [ -75.017489, 40.060736 ], [ -75.017716, 40.060545 ], [ -75.018383, 40.059925 ], [ -75.019453, 40.060572 ], [ -75.019803, 40.060786 ], [ -75.01996, 40.060874 ], [ -75.020016, 40.060909 ], [ -75.020176, 40.061008 ], [ -75.020618, 40.061274 ], [ -75.020783, 40.061372 ], [ -75.020901, 40.061448 ], [ -75.021022, 40.061535 ], [ -75.021177, 40.061679 ], [ -75.021258, 40.061772 ], [ -75.021329, 40.06187 ], [ -75.021402, 40.061986 ], [ -75.021467, 40.062115 ], [ -75.021673, 40.0625 ], [ -75.021731, 40.062608 ], [ -75.021806, 40.062754 ], [ -75.021981, 40.063088 ], [ -75.021993, 40.063113 ], [ -75.022476, 40.062614 ], [ -75.022767, 40.062334 ], [ -75.023752, 40.061346 ], [ -75.023907, 40.061198 ], [ -75.024194, 40.060931 ], [ -75.02469, 40.060438 ], [ -75.024745, 40.060385 ], [ -75.024807, 40.060319 ], [ -75.025483, 40.059641 ], [ -75.026376, 40.058776 ], [ -75.026888, 40.058267 ], [ -75.027525, 40.057621 ], [ -75.028416, 40.056723 ], [ -75.028492, 40.056757 ], [ -75.028568, 40.056776 ], [ -75.02866, 40.056787 ], [ -75.028763, 40.056782 ], [ -75.028842, 40.056768 ], [ -75.028917, 40.056734 ], [ -75.028984, 40.056685 ], [ -75.02904, 40.056616 ], [ -75.029142, 40.056622 ], [ -75.029489, 40.05665 ], [ -75.030541, 40.056742 ], [ -75.031097, 40.056792 ], [ -75.031451, 40.056824 ], [ -75.032776, 40.056947 ], [ -75.033029, 40.056968 ], [ -75.033298, 40.057007 ], [ -75.033546, 40.057058 ], [ -75.033742, 40.057113 ], [ -75.033784, 40.057125 ], [ -75.033943, 40.057173 ], [ -75.034185, 40.057244 ], [ -75.034239, 40.05726 ], [ -75.034298, 40.05728 ], [ -75.034689, 40.057418 ], [ -75.034973, 40.057506 ], [ -75.035288, 40.057595 ], [ -75.035726, 40.057717 ], [ -75.03575, 40.057724 ], [ -75.035961, 40.057791 ], [ -75.035993, 40.057802 ], [ -75.03623, 40.057884 ], [ -75.036425, 40.057949 ], [ -75.036943, 40.058136 ], [ -75.037458, 40.058347 ], [ -75.037706, 40.058446 ], [ -75.037876, 40.058501 ], [ -75.038038, 40.058538 ], [ -75.038201, 40.058566 ], [ -75.03837, 40.058583 ], [ -75.038557, 40.0586 ], [ -75.038814, 40.058605 ], [ -75.039091, 40.058592 ], [ -75.039272, 40.058575 ], [ -75.039424, 40.058553 ], [ -75.039648, 40.058504 ], [ -75.039859, 40.058447 ], [ -75.040078, 40.058378 ], [ -75.040292, 40.0583 ], [ -75.040564, 40.05818 ], [ -75.040719, 40.058112 ], [ -75.040854, 40.05806 ], [ -75.041012, 40.058022 ], [ -75.041138, 40.057995 ], [ -75.041269, 40.057978 ], [ -75.041471, 40.057956 ], [ -75.04158, 40.057952 ], [ -75.041737, 40.057958 ], [ -75.04193, 40.057978 ], [ -75.042076, 40.058001 ], [ -75.04224, 40.05804 ], [ -75.042425, 40.0581 ], [ -75.042589, 40.058175 ], [ -75.042861, 40.058316 ], [ -75.043199, 40.058507 ], [ -75.043358, 40.058598 ], [ -75.043498, 40.058692 ], [ -75.043628, 40.058795 ], [ -75.043748, 40.058904 ], [ -75.043797, 40.058963 ], [ -75.043841, 40.059014 ], [ -75.043894, 40.05909 ], [ -75.043967, 40.059217 ], [ -75.04399, 40.059258 ], [ -75.044029, 40.0593 ], [ -75.044056, 40.059318 ], [ -75.044066, 40.059325 ], [ -75.04411, 40.059347 ], [ -75.044217, 40.059373 ], [ -75.0443, 40.059385 ], [ -75.044398, 40.059385 ], [ -75.044485, 40.059377 ], [ -75.04479, 40.059042 ], [ -75.045236, 40.058589 ], [ -75.045841, 40.057973 ], [ -75.046494, 40.057319 ], [ -75.046994, 40.056819 ], [ -75.048268, 40.055534 ], [ -75.048587, 40.05522 ], [ -75.049026, 40.054773 ], [ -75.049484, 40.05431 ], [ -75.050288, 40.053512 ], [ -75.050434, 40.053362 ], [ -75.050547, 40.053241 ], [ -75.05062, 40.053155 ], [ -75.050671, 40.05309 ], [ -75.050765, 40.052966 ], [ -75.050857, 40.052839 ], [ -75.05098, 40.052645 ], [ -75.051047, 40.052529 ], [ -75.051116, 40.052392 ], [ -75.051182, 40.052229 ], [ -75.051242, 40.052062 ], [ -75.051277, 40.051973 ], [ -75.051333, 40.05177 ], [ -75.051377, 40.051598 ], [ -75.051395, 40.051494 ], [ -75.051406, 40.051421 ], [ -75.051418, 40.051288 ], [ -75.051423, 40.051213 ], [ -75.051459, 40.050719 ], [ -75.051481, 40.05047 ], [ -75.051516, 40.05009 ], [ -75.051527, 40.049983 ], [ -75.051592, 40.049064 ], [ -75.051617, 40.048708 ], [ -75.05163, 40.048503 ], [ -75.051649, 40.048337 ], [ -75.051668, 40.048213 ], [ -75.051689, 40.048109 ], [ -75.051705, 40.048024 ], [ -75.051752, 40.047875 ], [ -75.051816, 40.047709 ], [ -75.051895, 40.047526 ], [ -75.051976, 40.047368 ], [ -75.052078, 40.047194 ], [ -75.052176, 40.047046 ], [ -75.05232, 40.046868 ], [ -75.052456, 40.046704 ], [ -75.052647, 40.046521 ], [ -75.053095, 40.046096 ], [ -75.053206, 40.045994 ], [ -75.053232, 40.04597 ], [ -75.054058, 40.045169 ], [ -75.054642, 40.044663 ], [ -75.056448, 40.042972 ], [ -75.056776, 40.04267 ], [ -75.057079, 40.04239 ], [ -75.057397, 40.04209 ], [ -75.057514, 40.041984 ], [ -75.057734, 40.041782 ], [ -75.057887, 40.041633 ], [ -75.058559, 40.041015 ], [ -75.059045, 40.040569 ], [ -75.059669, 40.039958 ], [ -75.060277, 40.039398 ], [ -75.060676, 40.039021 ], [ -75.060774, 40.03893 ], [ -75.060915, 40.038793 ], [ -75.061436, 40.038315 ], [ -75.061546, 40.038214 ], [ -75.061803, 40.037974 ], [ -75.061911, 40.037878 ], [ -75.061994, 40.037811 ], [ -75.062103, 40.037721 ], [ -75.062199, 40.037652 ], [ -75.062299, 40.037585 ], [ -75.062395, 40.03752 ], [ -75.062457, 40.037479 ], [ -75.062468, 40.037473 ], [ -75.062601, 40.037397 ], [ -75.06276, 40.037307 ], [ -75.062946, 40.037214 ], [ -75.063084, 40.037151 ], [ -75.063323, 40.037059 ], [ -75.063538, 40.036983 ], [ -75.063744, 40.036921 ], [ -75.06376, 40.036916 ], [ -75.063872, 40.036888 ], [ -75.064381, 40.036761 ], [ -75.064505, 40.03673 ], [ -75.065428, 40.036519 ], [ -75.066023, 40.036384 ], [ -75.066437, 40.036286 ], [ -75.067278, 40.036094 ], [ -75.067946, 40.035936 ], [ -75.069013, 40.035696 ], [ -75.069681, 40.035546 ], [ -75.07006, 40.035458 ], [ -75.070132, 40.035461 ], [ -75.070163, 40.035461 ], [ -75.070239, 40.035472 ], [ -75.070313, 40.035495 ], [ -75.070381, 40.035526 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307438", "route_id": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.258237, 39.962088 ], [ -75.258934, 39.961964 ], [ -75.258979, 39.961749 ], [ -75.258659, 39.96178 ], [ -75.258, 39.96187 ], [ -75.25743, 39.96195 ], [ -75.25719, 39.961989 ], [ -75.256509, 39.962099 ], [ -75.256179, 39.96216 ], [ -75.255869, 39.96221 ], [ -75.25581, 39.96222 ], [ -75.25563, 39.96225 ], [ -75.255389, 39.962289 ], [ -75.255059, 39.96234 ], [ -75.254829, 39.962379 ], [ -75.254709, 39.9624 ], [ -75.254559, 39.96242 ], [ -75.25432, 39.962449 ], [ -75.25392, 39.9625 ], [ -75.253749, 39.96252 ], [ -75.25352, 39.962549 ], [ -75.2531, 39.9626 ], [ -75.252679, 39.962649 ], [ -75.25239, 39.96269 ], [ -75.251909, 39.96276 ], [ -75.25184, 39.96277 ], [ -75.251459, 39.962829 ], [ -75.250959, 39.962899 ], [ -75.250069, 39.96303 ], [ -75.24999, 39.96304 ], [ -75.24987, 39.96305 ], [ -75.24978, 39.96305 ], [ -75.24956, 39.96304 ], [ -75.24945, 39.96303 ], [ -75.2492, 39.963009 ], [ -75.24911, 39.962999 ], [ -75.24902, 39.962989 ], [ -75.24893, 39.962979 ], [ -75.248449, 39.962909 ], [ -75.24802, 39.96285 ], [ -75.247779, 39.962819 ], [ -75.247629, 39.962799 ], [ -75.247459, 39.96278 ], [ -75.24716, 39.96275 ], [ -75.247139, 39.962649 ], [ -75.24713, 39.96261 ], [ -75.24712, 39.96258 ], [ -75.247099, 39.962549 ], [ -75.24707, 39.96252 ], [ -75.247049, 39.9625 ], [ -75.246999, 39.962459 ], [ -75.246829, 39.96234 ], [ -75.24685, 39.96223 ], [ -75.246919, 39.96196 ], [ -75.24698, 39.96167 ], [ -75.24708, 39.96122 ], [ -75.24667, 39.961169 ], [ -75.24604, 39.961089 ], [ -75.24554, 39.961019 ], [ -75.245029, 39.96095 ], [ -75.243489, 39.960759 ], [ -75.243049, 39.96071 ], [ -75.2423, 39.96062 ], [ -75.24159, 39.96053 ], [ -75.241069, 39.960469 ], [ -75.24032, 39.960379 ], [ -75.23975, 39.960299 ], [ -75.239079, 39.96023 ], [ -75.237649, 39.96005 ], [ -75.237109, 39.95998 ], [ -75.236429, 39.9599 ], [ -75.235859, 39.95982 ], [ -75.235179, 39.959739 ], [ -75.234769, 39.95969 ], [ -75.2346, 39.959669 ], [ -75.234189, 39.95962 ], [ -75.233919, 39.959579 ], [ -75.233819, 39.959569 ], [ -75.23316, 39.959489 ], [ -75.23244, 39.959399 ], [ -75.2321, 39.95936 ], [ -75.23195, 39.95934 ], [ -75.23165, 39.959299 ], [ -75.231609, 39.959289 ], [ -75.23142, 39.95927 ], [ -75.2311, 39.959229 ], [ -75.230309, 39.959119 ], [ -75.229639, 39.959029 ], [ -75.22895, 39.958949 ], [ -75.22832, 39.958869 ], [ -75.227789, 39.9588 ], [ -75.227159, 39.95874 ], [ -75.226299, 39.95863 ], [ -75.225679, 39.95855 ], [ -75.22521, 39.958489 ], [ -75.22475, 39.95843 ], [ -75.22371, 39.95829 ], [ -75.22323, 39.958229 ], [ -75.22179, 39.958059 ], [ -75.221229, 39.95799 ], [ -75.22031, 39.957879 ], [ -75.2198, 39.95782 ], [ -75.219289, 39.957759 ], [ -75.21873, 39.957689 ], [ -75.21824, 39.95763 ], [ -75.218039, 39.957599 ], [ -75.217989, 39.957589 ], [ -75.21733, 39.957519 ], [ -75.21702, 39.95748 ], [ -75.215819, 39.957319 ], [ -75.215289, 39.95726 ], [ -75.21477, 39.95719 ], [ -75.21432, 39.957139 ], [ -75.21408, 39.95711 ], [ -75.21373, 39.957059 ], [ -75.21368, 39.957049 ], [ -75.213309, 39.95701 ], [ -75.21323, 39.957 ], [ -75.212629, 39.95692 ], [ -75.211359, 39.956759 ], [ -75.21026, 39.956619 ], [ -75.20973, 39.95656 ], [ -75.20955, 39.95654 ], [ -75.208929, 39.95647 ], [ -75.20846, 39.956409 ], [ -75.20769, 39.956319 ], [ -75.206949, 39.956229 ], [ -75.20631, 39.956149 ], [ -75.206109, 39.95612 ], [ -75.205289, 39.95602 ], [ -75.205059, 39.955989 ], [ -75.20478, 39.955949 ], [ -75.20445, 39.95591 ], [ -75.204029, 39.955859 ], [ -75.203089, 39.95574 ], [ -75.202859, 39.955709 ], [ -75.202269, 39.955629 ], [ -75.201929, 39.955589 ], [ -75.201729, 39.95557 ], [ -75.201019, 39.95549 ], [ -75.20078, 39.95546 ], [ -75.20068, 39.955449 ], [ -75.200169, 39.95539 ], [ -75.199899, 39.955359 ], [ -75.199179, 39.955269 ], [ -75.19905, 39.955249 ], [ -75.19879, 39.95521 ], [ -75.198719, 39.9552 ], [ -75.19838, 39.955159 ], [ -75.19815, 39.95513 ], [ -75.19695, 39.954989 ], [ -75.196419, 39.95493 ], [ -75.195579, 39.954809 ], [ -75.194939, 39.954729 ], [ -75.194459, 39.95467 ], [ -75.19235, 39.95442 ], [ -75.19178, 39.954359 ], [ -75.191389, 39.95431 ], [ -75.19074, 39.95423 ], [ -75.190579, 39.95421 ], [ -75.1902, 39.954169 ], [ -75.189729, 39.95412 ], [ -75.189369, 39.954069 ], [ -75.1878, 39.95386 ], [ -75.18744, 39.953809 ], [ -75.18736, 39.953799 ], [ -75.186, 39.95361 ], [ -75.1856, 39.953559 ], [ -75.18529, 39.95352 ], [ -75.183739, 39.9533 ], [ -75.182759, 39.953189 ], [ -75.182569, 39.953169 ], [ -75.18246, 39.95316 ], [ -75.182339, 39.95315 ], [ -75.18195, 39.953099 ], [ -75.181889, 39.953089 ], [ -75.181839, 39.953089 ], [ -75.1817, 39.953079 ], [ -75.18152, 39.95307 ], [ -75.18097, 39.952999 ], [ -75.18042, 39.952929 ], [ -75.180269, 39.952909 ], [ -75.18011, 39.95289 ], [ -75.17917, 39.95277 ], [ -75.1785, 39.95269 ], [ -75.17818, 39.952639 ], [ -75.177839, 39.9526 ], [ -75.177479, 39.952559 ], [ -75.17702, 39.95251 ], [ -75.176189, 39.9524 ], [ -75.17539, 39.95231 ], [ -75.17507, 39.952269 ], [ -75.173469, 39.95206 ], [ -75.173069, 39.952009 ], [ -75.171909, 39.95186 ], [ -75.17134, 39.95179 ], [ -75.17036, 39.951659 ], [ -75.16877, 39.951469 ], [ -75.167179, 39.95125 ], [ -75.165609, 39.95107 ], [ -75.164889, 39.95098 ], [ -75.16455, 39.950939 ], [ -75.164029, 39.95088 ], [ -75.16395, 39.95087 ], [ -75.163309, 39.95079 ], [ -75.162819, 39.95073 ], [ -75.16176, 39.9506 ], [ -75.160199, 39.950379 ], [ -75.159569, 39.950309 ], [ -75.158619, 39.950209 ], [ -75.15704, 39.950019 ], [ -75.156209, 39.94992 ], [ -75.155469, 39.94982 ], [ -75.1546, 39.94971 ], [ -75.153899, 39.94962 ], [ -75.15288, 39.949479 ], [ -75.15234, 39.949409 ], [ -75.150759, 39.949219 ], [ -75.15059, 39.9492 ], [ -75.15047, 39.94918 ], [ -75.1502, 39.949149 ], [ -75.149589, 39.94907 ], [ -75.14933, 39.949039 ], [ -75.14921, 39.94902 ], [ -75.14888, 39.94898 ], [ -75.148559, 39.948939 ], [ -75.147959, 39.948869 ], [ -75.14759, 39.94883 ], [ -75.14709, 39.948759 ], [ -75.14686, 39.94873 ], [ -75.146789, 39.94872 ], [ -75.146019, 39.94862 ], [ -75.145219, 39.948519 ], [ -75.14496, 39.948489 ], [ -75.144669, 39.94845 ], [ -75.144049, 39.94837 ], [ -75.144189, 39.94791 ], [ -75.144219, 39.94764 ], [ -75.14424, 39.947529 ], [ -75.14425, 39.94745 ], [ -75.14429, 39.947239 ], [ -75.144399, 39.94685 ], [ -75.14442, 39.94676 ], [ -75.14447, 39.94655 ], [ -75.144489, 39.94647 ], [ -75.144399, 39.94646 ], [ -75.144319, 39.946429 ], [ -75.14424, 39.94638 ], [ -75.14416, 39.94629 ], [ -75.144099, 39.94619 ], [ -75.14398, 39.94601 ], [ -75.14389, 39.945819 ], [ -75.14385, 39.945709 ], [ -75.14384, 39.94559 ], [ -75.143829, 39.94547 ], [ -75.143829, 39.945339 ], [ -75.1439, 39.945069 ], [ -75.143909, 39.94496 ], [ -75.14397, 39.944619 ], [ -75.14402, 39.94439 ], [ -75.14385, 39.944369 ], [ -75.14334, 39.944289 ], [ -75.14321, 39.944269 ], [ -75.14304, 39.94425 ], [ -75.14285, 39.94422 ], [ -75.142749, 39.94421 ], [ -75.14258, 39.944189 ], [ -75.142429, 39.944169 ], [ -75.14235, 39.94416 ], [ -75.142249, 39.94415 ], [ -75.14208, 39.94413 ], [ -75.141979, 39.94412 ], [ -75.14196, 39.94422 ], [ -75.14192, 39.944459 ], [ -75.14187, 39.944709 ], [ -75.14182, 39.945009 ], [ -75.141809, 39.945089 ], [ -75.141929, 39.945099 ], [ -75.142069, 39.94512 ], [ -75.14222, 39.94515 ], [ -75.142339, 39.945169 ], [ -75.142689, 39.94522 ], [ -75.142829, 39.94524 ], [ -75.143139, 39.945269 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307439", "route_id": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143139, 39.945269 ], [ -75.143829, 39.945339 ], [ -75.143829, 39.94547 ], [ -75.14384, 39.94559 ], [ -75.14385, 39.945709 ], [ -75.14389, 39.945819 ], [ -75.14398, 39.94601 ], [ -75.144099, 39.94619 ], [ -75.14416, 39.94629 ], [ -75.14424, 39.94638 ], [ -75.144319, 39.946429 ], [ -75.144399, 39.94646 ], [ -75.144489, 39.94647 ], [ -75.144849, 39.946509 ], [ -75.145039, 39.946539 ], [ -75.1451, 39.946629 ], [ -75.145179, 39.94675 ], [ -75.14524, 39.946969 ], [ -75.145349, 39.946979 ], [ -75.146379, 39.94712 ], [ -75.14658, 39.947149 ], [ -75.146749, 39.947159 ], [ -75.1475, 39.947249 ], [ -75.1479, 39.9473 ], [ -75.148559, 39.94737 ], [ -75.148919, 39.947409 ], [ -75.149549, 39.94748 ], [ -75.15028, 39.947579 ], [ -75.1511, 39.947689 ], [ -75.15158, 39.947759 ], [ -75.15267, 39.9479 ], [ -75.15317, 39.947959 ], [ -75.15425, 39.94809 ], [ -75.15505, 39.94819 ], [ -75.15582, 39.94828 ], [ -75.156459, 39.94835 ], [ -75.157379, 39.94846 ], [ -75.157809, 39.948519 ], [ -75.15816, 39.94857 ], [ -75.15833, 39.948599 ], [ -75.158489, 39.94862 ], [ -75.15896, 39.948689 ], [ -75.159759, 39.948789 ], [ -75.16055, 39.948879 ], [ -75.16121, 39.94898 ], [ -75.1613, 39.94899 ], [ -75.161409, 39.949 ], [ -75.162099, 39.94909 ], [ -75.16314, 39.949219 ], [ -75.16369, 39.94928 ], [ -75.16428, 39.94934 ], [ -75.164339, 39.94935 ], [ -75.16518, 39.94946 ], [ -75.16594, 39.94955 ], [ -75.16675, 39.94965 ], [ -75.167539, 39.949749 ], [ -75.167949, 39.9498 ], [ -75.16908, 39.949949 ], [ -75.17066, 39.95015 ], [ -75.17126, 39.950219 ], [ -75.172169, 39.950319 ], [ -75.17224, 39.95033 ], [ -75.172759, 39.950409 ], [ -75.17359, 39.95051 ], [ -75.173789, 39.95054 ], [ -75.175319, 39.950739 ], [ -75.175729, 39.9508 ], [ -75.176529, 39.9509 ], [ -75.177339, 39.951 ], [ -75.177939, 39.95108 ], [ -75.17849, 39.95115 ], [ -75.17885, 39.951189 ], [ -75.1789, 39.951199 ], [ -75.179009, 39.951209 ], [ -75.17949, 39.951269 ], [ -75.18034, 39.951379 ], [ -75.18069, 39.95142 ], [ -75.180989, 39.951459 ], [ -75.181179, 39.951479 ], [ -75.181489, 39.951489 ], [ -75.182079, 39.951569 ], [ -75.182259, 39.95159 ], [ -75.182579, 39.95162 ], [ -75.18268, 39.951629 ], [ -75.18277, 39.951639 ], [ -75.182979, 39.951669 ], [ -75.18309, 39.95168 ], [ -75.18341, 39.951729 ], [ -75.18386, 39.9518 ], [ -75.184059, 39.951829 ], [ -75.184919, 39.951939 ], [ -75.185579, 39.952019 ], [ -75.1857, 39.95204 ], [ -75.185949, 39.95207 ], [ -75.18624, 39.952099 ], [ -75.186619, 39.95215 ], [ -75.18759, 39.952259 ], [ -75.187689, 39.952269 ], [ -75.187739, 39.952279 ], [ -75.18781, 39.952289 ], [ -75.18786, 39.952299 ], [ -75.18789, 39.952299 ], [ -75.18813, 39.95233 ], [ -75.18845, 39.952369 ], [ -75.188689, 39.9524 ], [ -75.190039, 39.952559 ], [ -75.19114, 39.95269 ], [ -75.191569, 39.952739 ], [ -75.191649, 39.952749 ], [ -75.192099, 39.952809 ], [ -75.19241, 39.95285 ], [ -75.193019, 39.952919 ], [ -75.19321, 39.95294 ], [ -75.19367, 39.952989 ], [ -75.19411, 39.95304 ], [ -75.19433, 39.95307 ], [ -75.19448, 39.953089 ], [ -75.19478, 39.95313 ], [ -75.19556, 39.95323 ], [ -75.196029, 39.953289 ], [ -75.196299, 39.95332 ], [ -75.196779, 39.953379 ], [ -75.19758, 39.95348 ], [ -75.197769, 39.9535 ], [ -75.19794, 39.95352 ], [ -75.198139, 39.953549 ], [ -75.198679, 39.953619 ], [ -75.198989, 39.95366 ], [ -75.199709, 39.95375 ], [ -75.200249, 39.95384 ], [ -75.200739, 39.953889 ], [ -75.201689, 39.953989 ], [ -75.202009, 39.95403 ], [ -75.20225, 39.95406 ], [ -75.202599, 39.954099 ], [ -75.203409, 39.95421 ], [ -75.20355, 39.95423 ], [ -75.203889, 39.954269 ], [ -75.204309, 39.95433 ], [ -75.20509, 39.954429 ], [ -75.20537, 39.954459 ], [ -75.20567, 39.9545 ], [ -75.20576, 39.95451 ], [ -75.20591, 39.954529 ], [ -75.20594, 39.954529 ], [ -75.20643, 39.95459 ], [ -75.2068, 39.954639 ], [ -75.206999, 39.95466 ], [ -75.20708, 39.95467 ], [ -75.207219, 39.95469 ], [ -75.20756, 39.954719 ], [ -75.208309, 39.954819 ], [ -75.20878, 39.954879 ], [ -75.20963, 39.954979 ], [ -75.20986, 39.95501 ], [ -75.21005, 39.95503 ], [ -75.21086, 39.95514 ], [ -75.211679, 39.95523 ], [ -75.21275, 39.95538 ], [ -75.212809, 39.95539 ], [ -75.21364, 39.95549 ], [ -75.213939, 39.955519 ], [ -75.21436, 39.95556 ], [ -75.214609, 39.955589 ], [ -75.214869, 39.955619 ], [ -75.21512, 39.95565 ], [ -75.21562, 39.955709 ], [ -75.216849, 39.955869 ], [ -75.21711, 39.955899 ], [ -75.21764, 39.955969 ], [ -75.218609, 39.9561 ], [ -75.219029, 39.956159 ], [ -75.219599, 39.956239 ], [ -75.22084, 39.95638 ], [ -75.2211, 39.956409 ], [ -75.22156, 39.95646 ], [ -75.222759, 39.956609 ], [ -75.223029, 39.95665 ], [ -75.22353, 39.956709 ], [ -75.22382, 39.95674 ], [ -75.2247, 39.956849 ], [ -75.224949, 39.956879 ], [ -75.225499, 39.956949 ], [ -75.225939, 39.95701 ], [ -75.226269, 39.957049 ], [ -75.22674, 39.957119 ], [ -75.227019, 39.957159 ], [ -75.227489, 39.957219 ], [ -75.228069, 39.95728 ], [ -75.228659, 39.95736 ], [ -75.229279, 39.957429 ], [ -75.23082, 39.95762 ], [ -75.231439, 39.957689 ], [ -75.23291, 39.957859 ], [ -75.23349, 39.95793 ], [ -75.234179, 39.95801 ], [ -75.234499, 39.958059 ], [ -75.234759, 39.9581 ], [ -75.23501, 39.958129 ], [ -75.235299, 39.95817 ], [ -75.235499, 39.95819 ], [ -75.235759, 39.958219 ], [ -75.236209, 39.95828 ], [ -75.23651, 39.958309 ], [ -75.236829, 39.95835 ], [ -75.23745, 39.95843 ], [ -75.238689, 39.958579 ], [ -75.23894, 39.95861 ], [ -75.239409, 39.958659 ], [ -75.24, 39.95874 ], [ -75.24006, 39.958749 ], [ -75.240619, 39.95882 ], [ -75.24091, 39.958859 ], [ -75.241389, 39.95892 ], [ -75.24209, 39.95901 ], [ -75.242679, 39.9591 ], [ -75.2429, 39.959129 ], [ -75.243359, 39.95918 ], [ -75.24461, 39.95933 ], [ -75.24488, 39.95936 ], [ -75.245339, 39.95942 ], [ -75.24631, 39.95953 ], [ -75.2464, 39.95954 ], [ -75.24663, 39.959559 ], [ -75.2468, 39.959579 ], [ -75.247049, 39.95961 ], [ -75.24743, 39.959649 ], [ -75.247419, 39.95972 ], [ -75.24738, 39.959919 ], [ -75.247329, 39.960129 ], [ -75.247289, 39.96032 ], [ -75.247269, 39.96043 ], [ -75.247189, 39.960739 ], [ -75.24708, 39.96122 ], [ -75.24698, 39.96167 ], [ -75.246919, 39.96196 ], [ -75.24685, 39.96223 ], [ -75.246829, 39.96234 ], [ -75.2468, 39.962529 ], [ -75.24677, 39.962719 ], [ -75.24716, 39.96275 ], [ -75.247459, 39.96278 ], [ -75.247629, 39.962799 ], [ -75.247779, 39.962819 ], [ -75.24802, 39.96285 ], [ -75.248449, 39.962909 ], [ -75.24893, 39.962979 ], [ -75.24902, 39.962989 ], [ -75.24911, 39.962999 ], [ -75.2492, 39.963009 ], [ -75.24945, 39.96303 ], [ -75.24956, 39.96304 ], [ -75.24978, 39.96305 ], [ -75.24987, 39.96305 ], [ -75.24999, 39.96304 ], [ -75.250069, 39.96303 ], [ -75.250959, 39.962899 ], [ -75.251459, 39.962829 ], [ -75.25184, 39.96277 ], [ -75.251909, 39.96276 ], [ -75.25239, 39.96269 ], [ -75.252679, 39.962649 ], [ -75.2531, 39.9626 ], [ -75.25352, 39.962549 ], [ -75.253749, 39.96252 ], [ -75.25392, 39.9625 ], [ -75.25432, 39.962449 ], [ -75.254559, 39.96242 ], [ -75.254709, 39.9624 ], [ -75.254829, 39.962379 ], [ -75.255059, 39.96234 ], [ -75.255389, 39.962289 ], [ -75.25563, 39.96225 ], [ -75.25581, 39.96222 ], [ -75.255869, 39.96221 ], [ -75.256179, 39.96216 ], [ -75.256509, 39.962099 ], [ -75.25719, 39.961989 ], [ -75.25743, 39.96195 ], [ -75.257579, 39.962189 ], [ -75.258225, 39.962088 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307440", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144151, 40.041505 ], [ -75.144125, 40.041615 ], [ -75.144076, 40.041818 ], [ -75.144048, 40.041944 ], [ -75.143917, 40.04253 ], [ -75.143883, 40.042685 ], [ -75.14386, 40.042787 ], [ -75.143836, 40.042894 ], [ -75.143794, 40.043095 ], [ -75.143759, 40.043259 ], [ -75.143666, 40.043695 ], [ -75.14359, 40.044052 ], [ -75.143548, 40.044253 ], [ -75.143512, 40.044421 ], [ -75.143489, 40.044526 ], [ -75.143466, 40.044629 ], [ -75.143439, 40.044748 ], [ -75.143269, 40.045512 ], [ -75.143219, 40.045738 ], [ -75.143056, 40.046465 ], [ -75.143033, 40.046572 ], [ -75.143008, 40.046683 ], [ -75.142918, 40.047108 ], [ -75.142837, 40.047489 ], [ -75.1428, 40.047649 ], [ -75.142763, 40.047812 ], [ -75.142499, 40.049035 ], [ -75.142247, 40.050182 ], [ -75.142209, 40.050356 ], [ -75.142187, 40.050453 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141296, 40.054303 ], [ -75.141234, 40.054583 ], [ -75.141202, 40.054708 ], [ -75.141116, 40.055087 ], [ -75.141105, 40.055143 ], [ -75.141078, 40.055271 ], [ -75.141112, 40.055343 ], [ -75.141005, 40.055808 ], [ -75.140919, 40.056222 ], [ -75.140892, 40.056349 ], [ -75.140851, 40.056523 ], [ -75.14081, 40.056697 ], [ -75.140779, 40.056839 ], [ -75.140751, 40.056976 ], [ -75.140734, 40.057057 ], [ -75.140678, 40.057334 ], [ -75.140598, 40.057697 ], [ -75.140566, 40.057843 ], [ -75.140486, 40.058218 ], [ -75.140394, 40.058583 ], [ -75.140379, 40.058662 ], [ -75.140365, 40.05874 ], [ -75.140339, 40.058884 ], [ -75.140275, 40.059219 ], [ -75.14026, 40.059295 ], [ -75.140245, 40.059374 ], [ -75.140211, 40.059523 ], [ -75.140162, 40.059737 ], [ -75.140143, 40.059821 ], [ -75.140124, 40.059905 ], [ -75.140076, 40.060108 ], [ -75.139958, 40.060629 ], [ -75.139901, 40.060893 ], [ -75.139862, 40.061083 ], [ -75.139844, 40.061169 ], [ -75.139823, 40.06126 ], [ -75.139783, 40.061445 ], [ -75.139743, 40.061631 ], [ -75.139716, 40.061754 ], [ -75.139688, 40.061876 ], [ -75.139631, 40.061931 ], [ -75.13962, 40.061955 ], [ -75.139427, 40.062802 ], [ -75.139412, 40.062875 ], [ -75.139361, 40.063069 ], [ -75.139344, 40.063157 ], [ -75.139329, 40.063231 ], [ -75.139316, 40.063291 ], [ -75.139429, 40.063359 ], [ -75.139997, 40.063694 ], [ -75.140718, 40.064122 ], [ -75.140846, 40.064194 ], [ -75.141328, 40.064471 ], [ -75.141876, 40.064788 ], [ -75.143113, 40.065501 ], [ -75.143931, 40.065957 ], [ -75.144128, 40.06607 ], [ -75.144549, 40.066303 ], [ -75.144864, 40.066485 ], [ -75.145219, 40.06669 ], [ -75.145496, 40.066856 ], [ -75.145724, 40.066987 ], [ -75.146324, 40.067335 ], [ -75.146549, 40.067471 ], [ -75.146682, 40.067549 ], [ -75.147646, 40.068096 ], [ -75.148335, 40.06849 ], [ -75.14959, 40.06921 ], [ -75.149985, 40.069437 ], [ -75.150706, 40.069838 ], [ -75.151592, 40.07033 ], [ -75.151881, 40.070491 ], [ -75.152182, 40.070659 ], [ -75.152746, 40.070983 ], [ -75.15294, 40.071093 ], [ -75.153326, 40.071315 ], [ -75.153582, 40.071461 ], [ -75.154, 40.0717 ], [ -75.154069, 40.07174 ], [ -75.154116, 40.071767 ], [ -75.154743, 40.072126 ], [ -75.155443, 40.072519 ], [ -75.155926, 40.07279 ], [ -75.156441, 40.073082 ], [ -75.156655, 40.073203 ], [ -75.157688, 40.073788 ], [ -75.157856, 40.073884 ], [ -75.158411, 40.074197 ], [ -75.158496, 40.074242 ], [ -75.159126, 40.07459 ], [ -75.160426, 40.075306 ], [ -75.160332, 40.075752 ], [ -75.160307, 40.075925 ], [ -75.160287, 40.076186 ], [ -75.16036, 40.07702 ], [ -75.160361, 40.077475 ], [ -75.160328, 40.077822 ], [ -75.160324, 40.077878 ], [ -75.160181, 40.078834 ], [ -75.160082, 40.079041 ], [ -75.160031, 40.079111 ], [ -75.159975, 40.079167 ], [ -75.159849, 40.079249 ], [ -75.159887, 40.07937 ], [ -75.159953, 40.079587 ], [ -75.159994, 40.079723 ], [ -75.160066, 40.079943 ], [ -75.160095, 40.080028 ], [ -75.160196, 40.080408 ], [ -75.16026, 40.080622 ], [ -75.160324, 40.080788 ], [ -75.160418, 40.08099 ], [ -75.160499, 40.081137 ], [ -75.160592, 40.081272 ], [ -75.16082, 40.081627 ], [ -75.160983, 40.081873 ], [ -75.161335, 40.082353 ], [ -75.161611, 40.08282 ], [ -75.161654, 40.082881 ], [ -75.162118, 40.083589 ], [ -75.162185, 40.083707 ], [ -75.162204, 40.083739 ], [ -75.162241, 40.08383 ], [ -75.162283, 40.083929 ], [ -75.162403, 40.084153 ], [ -75.162516, 40.084392 ], [ -75.162624, 40.084606 ], [ -75.162644, 40.084784 ], [ -75.162658, 40.084872 ], [ -75.162744, 40.085355 ], [ -75.16282, 40.085927 ], [ -75.162831, 40.086025 ], [ -75.162891, 40.086487 ], [ -75.162908, 40.086579 ], [ -75.162922, 40.086653 ], [ -75.16296, 40.086785 ], [ -75.163013, 40.086898 ], [ -75.163084, 40.087008 ], [ -75.163172, 40.087112 ], [ -75.163271, 40.087208 ], [ -75.163386, 40.087297 ], [ -75.163423, 40.087322 ], [ -75.16351, 40.087379 ], [ -75.163645, 40.087455 ], [ -75.163834, 40.087568 ], [ -75.163666, 40.087803 ], [ -75.163533, 40.088093 ], [ -75.163496, 40.088156 ], [ -75.163463, 40.088232 ], [ -75.163392, 40.088512 ], [ -75.163345, 40.088789 ], [ -75.163328, 40.089019 ], [ -75.163273, 40.089381 ], [ -75.163187, 40.089943 ], [ -75.163176, 40.090033 ], [ -75.163134, 40.090254 ], [ -75.163077, 40.090461 ], [ -75.162987, 40.090689 ], [ -75.162915, 40.090829 ], [ -75.162844, 40.090952 ], [ -75.162756, 40.09106 ], [ -75.162603, 40.091253 ], [ -75.162415, 40.091493 ], [ -75.162303, 40.091635 ], [ -75.162058, 40.091933 ], [ -75.161773, 40.092222 ], [ -75.161498, 40.092501 ], [ -75.161234, 40.092782 ], [ -75.161136, 40.092888 ], [ -75.161105, 40.092921 ], [ -75.161074, 40.092966 ], [ -75.161059, 40.093045 ], [ -75.160738, 40.093361 ], [ -75.160625, 40.093478 ], [ -75.159494, 40.094607 ], [ -75.15896, 40.09514 ], [ -75.158636, 40.095457 ], [ -75.15851, 40.095579 ], [ -75.158252, 40.095831 ], [ -75.158019, 40.09606 ], [ -75.157821, 40.096255 ], [ -75.157651, 40.096423 ], [ -75.157562, 40.096511 ], [ -75.156762, 40.097304 ], [ -75.156448, 40.097612 ], [ -75.155844, 40.098219 ], [ -75.155663, 40.098401 ], [ -75.155434, 40.098631 ], [ -75.155265, 40.098799 ], [ -75.154994, 40.099066 ], [ -75.154499, 40.099558 ], [ -75.153977, 40.100093 ], [ -75.153508, 40.100573 ], [ -75.153241, 40.100834 ], [ -75.152937, 40.101133 ], [ -75.152866, 40.101219 ], [ -75.152769, 40.101352 ], [ -75.152571, 40.10163 ], [ -75.152363, 40.101901 ], [ -75.152351, 40.101917 ], [ -75.15216, 40.102171 ], [ -75.15212, 40.102229 ], [ -75.152062, 40.102294 ], [ -75.151902, 40.102454 ], [ -75.151094, 40.103249 ], [ -75.149625, 40.104728 ], [ -75.149259, 40.105094 ], [ -75.148735, 40.105613 ], [ -75.147808, 40.10653 ], [ -75.147484, 40.106851 ], [ -75.14728, 40.107054 ], [ -75.147059, 40.107279 ], [ -75.146277, 40.108066 ], [ -75.146116, 40.108225 ], [ -75.145642, 40.108699 ], [ -75.145373, 40.108986 ], [ -75.145004, 40.109362 ], [ -75.144753, 40.109615 ], [ -75.144603, 40.109767 ], [ -75.144419, 40.109953 ], [ -75.144402, 40.109971 ], [ -75.143892, 40.110482 ], [ -75.143358, 40.11102 ], [ -75.14208, 40.112328 ], [ -75.14092, 40.113498 ], [ -75.140737, 40.113668 ], [ -75.140293, 40.114118 ], [ -75.140048, 40.114366 ], [ -75.13974, 40.114685 ], [ -75.139601, 40.114828 ], [ -75.139226, 40.115217 ], [ -75.138658, 40.115787 ], [ -75.138252, 40.116203 ], [ -75.138019, 40.116442 ], [ -75.137704, 40.116748 ], [ -75.137239, 40.117241 ], [ -75.137094, 40.117378 ], [ -75.136937, 40.11753 ], [ -75.136533, 40.117912 ], [ -75.136062, 40.118387 ], [ -75.135013, 40.119447 ], [ -75.134537, 40.11993 ], [ -75.133707, 40.120735 ], [ -75.133691, 40.120751 ], [ -75.133372, 40.121122 ], [ -75.133288, 40.121254 ], [ -75.132985, 40.121799 ], [ -75.132888, 40.121973 ], [ -75.132804, 40.122127 ], [ -75.132708, 40.12233 ], [ -75.132667, 40.122423 ], [ -75.13265, 40.12247 ], [ -75.132641, 40.122541 ], [ -75.132643, 40.122608 ], [ -75.132652, 40.122665 ], [ -75.132672, 40.122785 ], [ -75.132703, 40.122954 ], [ -75.132755, 40.123267 ], [ -75.132837, 40.12377 ], [ -75.132871, 40.123968 ], [ -75.132899, 40.124119 ], [ -75.132933, 40.124331 ], [ -75.132958, 40.124466 ], [ -75.13297, 40.124562 ], [ -75.132978, 40.124638 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124736 ], [ -75.132967, 40.124812 ], [ -75.132953, 40.124862 ], [ -75.13295, 40.124874 ], [ -75.132928, 40.124953 ], [ -75.132883, 40.12506 ], [ -75.132829, 40.125164 ], [ -75.132781, 40.125231 ], [ -75.132728, 40.125299 ], [ -75.13268, 40.125361 ], [ -75.132598, 40.125389 ], [ -75.132574, 40.125411 ], [ -75.132465, 40.125534 ], [ -75.13233, 40.125682 ], [ -75.131801, 40.126235 ], [ -75.13176, 40.126285 ], [ -75.131702, 40.126363 ], [ -75.131658, 40.126411 ], [ -75.131332, 40.126754 ], [ -75.13083, 40.127285 ], [ -75.130622, 40.127517 ], [ -75.130609, 40.127539 ], [ -75.130601, 40.127582 ], [ -75.13031, 40.127888 ], [ -75.130004, 40.128192 ], [ -75.129924, 40.128271 ], [ -75.129681, 40.128515 ], [ -75.129465, 40.128733 ], [ -75.12911, 40.129094 ], [ -75.128884, 40.129325 ], [ -75.128268, 40.129957 ], [ -75.128138, 40.130092 ], [ -75.127871, 40.13036 ], [ -75.127664, 40.130569 ], [ -75.127438, 40.130798 ], [ -75.126629, 40.131623 ], [ -75.12586, 40.132407 ], [ -75.125633, 40.132639 ], [ -75.12527, 40.133004 ], [ -75.125106, 40.13317 ], [ -75.12481, 40.133474 ], [ -75.124664, 40.133625 ], [ -75.124445, 40.133849 ], [ -75.12386, 40.134437 ], [ -75.123576, 40.134719 ], [ -75.123386, 40.134907 ], [ -75.12313, 40.135161 ], [ -75.122655, 40.135647 ], [ -75.122402, 40.135909 ], [ -75.122305, 40.135997 ], [ -75.122212, 40.13603 ], [ -75.121746, 40.136516 ], [ -75.121498, 40.136787 ], [ -75.12142, 40.136866 ], [ -75.121332, 40.136955 ], [ -75.12108, 40.137211 ], [ -75.120955, 40.137342 ], [ -75.120406, 40.137905 ], [ -75.120314, 40.138009 ], [ -75.120243, 40.138073 ], [ -75.119856, 40.138486 ], [ -75.119728, 40.138622 ], [ -75.119548, 40.138816 ], [ -75.119466, 40.138892 ], [ -75.118639, 40.139714 ], [ -75.118442, 40.139914 ], [ -75.117953, 40.140415 ], [ -75.117522, 40.140845 ], [ -75.11744, 40.140944 ], [ -75.117339, 40.141069 ], [ -75.117207, 40.141247 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117108, 40.141466 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307441", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144151, 40.041505 ], [ -75.144125, 40.041615 ], [ -75.144076, 40.041818 ], [ -75.144048, 40.041944 ], [ -75.143917, 40.04253 ], [ -75.143883, 40.042685 ], [ -75.14386, 40.042787 ], [ -75.143836, 40.042894 ], [ -75.143794, 40.043095 ], [ -75.143759, 40.043259 ], [ -75.143666, 40.043695 ], [ -75.14359, 40.044052 ], [ -75.143548, 40.044253 ], [ -75.143512, 40.044421 ], [ -75.143489, 40.044526 ], [ -75.143466, 40.044629 ], [ -75.143439, 40.044748 ], [ -75.143269, 40.045512 ], [ -75.143219, 40.045738 ], [ -75.143056, 40.046465 ], [ -75.143033, 40.046572 ], [ -75.143008, 40.046683 ], [ -75.142918, 40.047108 ], [ -75.142837, 40.047489 ], [ -75.1428, 40.047649 ], [ -75.142763, 40.047812 ], [ -75.142499, 40.049035 ], [ -75.142247, 40.050182 ], [ -75.142209, 40.050356 ], [ -75.142187, 40.050453 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141296, 40.054303 ], [ -75.141234, 40.054583 ], [ -75.141202, 40.054708 ], [ -75.141116, 40.055087 ], [ -75.141105, 40.055143 ], [ -75.141078, 40.055271 ], [ -75.141112, 40.055343 ], [ -75.141005, 40.055808 ], [ -75.140919, 40.056222 ], [ -75.140892, 40.056349 ], [ -75.140851, 40.056523 ], [ -75.14081, 40.056697 ], [ -75.140779, 40.056839 ], [ -75.140751, 40.056976 ], [ -75.140734, 40.057057 ], [ -75.140678, 40.057334 ], [ -75.140598, 40.057697 ], [ -75.140566, 40.057843 ], [ -75.140486, 40.058218 ], [ -75.140394, 40.058583 ], [ -75.140379, 40.058662 ], [ -75.140365, 40.05874 ], [ -75.140339, 40.058884 ], [ -75.140275, 40.059219 ], [ -75.14026, 40.059295 ], [ -75.140245, 40.059374 ], [ -75.140211, 40.059523 ], [ -75.140162, 40.059737 ], [ -75.140143, 40.059821 ], [ -75.140124, 40.059905 ], [ -75.140076, 40.060108 ], [ -75.139958, 40.060629 ], [ -75.139901, 40.060893 ], [ -75.139862, 40.061083 ], [ -75.139844, 40.061169 ], [ -75.139823, 40.06126 ], [ -75.139783, 40.061445 ], [ -75.139743, 40.061631 ], [ -75.139716, 40.061754 ], [ -75.139688, 40.061876 ], [ -75.139631, 40.061931 ], [ -75.13962, 40.061955 ], [ -75.139427, 40.062802 ], [ -75.139412, 40.062875 ], [ -75.139361, 40.063069 ], [ -75.139344, 40.063157 ], [ -75.139329, 40.063231 ], [ -75.139316, 40.063291 ], [ -75.139429, 40.063359 ], [ -75.139997, 40.063694 ], [ -75.140718, 40.064122 ], [ -75.140846, 40.064194 ], [ -75.141328, 40.064471 ], [ -75.141876, 40.064788 ], [ -75.143113, 40.065501 ], [ -75.143931, 40.065957 ], [ -75.144128, 40.06607 ], [ -75.144549, 40.066303 ], [ -75.144864, 40.066485 ], [ -75.145219, 40.06669 ], [ -75.145496, 40.066856 ], [ -75.145724, 40.066987 ], [ -75.146324, 40.067335 ], [ -75.146549, 40.067471 ], [ -75.146682, 40.067549 ], [ -75.147646, 40.068096 ], [ -75.148335, 40.06849 ], [ -75.14959, 40.06921 ], [ -75.149985, 40.069437 ], [ -75.150706, 40.069838 ], [ -75.151592, 40.07033 ], [ -75.151881, 40.070491 ], [ -75.152182, 40.070659 ], [ -75.152746, 40.070983 ], [ -75.15294, 40.071093 ], [ -75.153326, 40.071315 ], [ -75.153582, 40.071461 ], [ -75.154, 40.0717 ], [ -75.154069, 40.07174 ], [ -75.154116, 40.071767 ], [ -75.154743, 40.072126 ], [ -75.155443, 40.072519 ], [ -75.155926, 40.07279 ], [ -75.156441, 40.073082 ], [ -75.156655, 40.073203 ], [ -75.157688, 40.073788 ], [ -75.157856, 40.073884 ], [ -75.158411, 40.074197 ], [ -75.158496, 40.074242 ], [ -75.159126, 40.07459 ], [ -75.160426, 40.075306 ], [ -75.16097, 40.075591 ], [ -75.161289, 40.075758 ], [ -75.161542, 40.075902 ], [ -75.161959, 40.076127 ], [ -75.162503, 40.076447 ], [ -75.16339, 40.076949 ], [ -75.163904, 40.077233 ], [ -75.165014, 40.077867 ], [ -75.165781, 40.078317 ], [ -75.166076, 40.078505 ], [ -75.166114, 40.078576 ], [ -75.166504, 40.078818 ], [ -75.166834, 40.079037 ], [ -75.167147, 40.079218 ], [ -75.167328, 40.079323 ], [ -75.167626, 40.079497 ], [ -75.168053, 40.079763 ], [ -75.168222, 40.079859 ], [ -75.168509, 40.080026 ], [ -75.169303, 40.080487 ], [ -75.1699, 40.080833 ], [ -75.170475, 40.081188 ], [ -75.170715, 40.081336 ], [ -75.17095, 40.081485 ], [ -75.171061, 40.081557 ], [ -75.171438, 40.081893 ], [ -75.171447, 40.081918 ], [ -75.17145, 40.08194 ], [ -75.17145, 40.08197 ], [ -75.171427, 40.082057 ], [ -75.171212, 40.082302 ], [ -75.17076, 40.082817 ], [ -75.169665, 40.083906 ], [ -75.169283, 40.084313 ], [ -75.168944, 40.084647 ], [ -75.168101, 40.085415 ], [ -75.167964, 40.085519 ], [ -75.167807, 40.085611 ], [ -75.167636, 40.085705 ], [ -75.167453, 40.085795 ], [ -75.167148, 40.085938 ], [ -75.166981, 40.086009 ], [ -75.166665, 40.086138 ], [ -75.166426, 40.086234 ], [ -75.165951, 40.0864 ], [ -75.165285, 40.086675 ], [ -75.164817, 40.086881 ], [ -75.164617, 40.08698 ], [ -75.164563, 40.087021 ], [ -75.164507, 40.087055 ], [ -75.164413, 40.087126 ], [ -75.163941, 40.087497 ], [ -75.163834, 40.087568 ], [ -75.163666, 40.087803 ], [ -75.163533, 40.088093 ], [ -75.163496, 40.088156 ], [ -75.163463, 40.088232 ], [ -75.163392, 40.088512 ], [ -75.163345, 40.088789 ], [ -75.163328, 40.089019 ], [ -75.163273, 40.089381 ], [ -75.163187, 40.089943 ], [ -75.163176, 40.090033 ], [ -75.163134, 40.090254 ], [ -75.163077, 40.090461 ], [ -75.162987, 40.090689 ], [ -75.162915, 40.090829 ], [ -75.162844, 40.090952 ], [ -75.162756, 40.09106 ], [ -75.162603, 40.091253 ], [ -75.162415, 40.091493 ], [ -75.162303, 40.091635 ], [ -75.162058, 40.091933 ], [ -75.161773, 40.092222 ], [ -75.161498, 40.092501 ], [ -75.161234, 40.092782 ], [ -75.161136, 40.092888 ], [ -75.161105, 40.092921 ], [ -75.161074, 40.092966 ], [ -75.161059, 40.093045 ], [ -75.160738, 40.093361 ], [ -75.160625, 40.093478 ], [ -75.159494, 40.094607 ], [ -75.15896, 40.09514 ], [ -75.158636, 40.095457 ], [ -75.15851, 40.095579 ], [ -75.158252, 40.095831 ], [ -75.158019, 40.09606 ], [ -75.157821, 40.096255 ], [ -75.157651, 40.096423 ], [ -75.157562, 40.096511 ], [ -75.156762, 40.097304 ], [ -75.156448, 40.097612 ], [ -75.155844, 40.098219 ], [ -75.155663, 40.098401 ], [ -75.155434, 40.098631 ], [ -75.155265, 40.098799 ], [ -75.154994, 40.099066 ], [ -75.154499, 40.099558 ], [ -75.153977, 40.100093 ], [ -75.153508, 40.100573 ], [ -75.153241, 40.100834 ], [ -75.152937, 40.101133 ], [ -75.152866, 40.101219 ], [ -75.152769, 40.101352 ], [ -75.152571, 40.10163 ], [ -75.152363, 40.101901 ], [ -75.152351, 40.101917 ], [ -75.15216, 40.102171 ], [ -75.15212, 40.102229 ], [ -75.152062, 40.102294 ], [ -75.151902, 40.102454 ], [ -75.151094, 40.103249 ], [ -75.149625, 40.104728 ], [ -75.149259, 40.105094 ], [ -75.148735, 40.105613 ], [ -75.147808, 40.10653 ], [ -75.147484, 40.106851 ], [ -75.14728, 40.107054 ], [ -75.147059, 40.107279 ], [ -75.146277, 40.108066 ], [ -75.146116, 40.108225 ], [ -75.145642, 40.108699 ], [ -75.145373, 40.108986 ], [ -75.145004, 40.109362 ], [ -75.144753, 40.109615 ], [ -75.144603, 40.109767 ], [ -75.144419, 40.109953 ], [ -75.144402, 40.109971 ], [ -75.143892, 40.110482 ], [ -75.143358, 40.11102 ], [ -75.14208, 40.112328 ], [ -75.14092, 40.113498 ], [ -75.140737, 40.113668 ], [ -75.140293, 40.114118 ], [ -75.140048, 40.114366 ], [ -75.13974, 40.114685 ], [ -75.139601, 40.114828 ], [ -75.139226, 40.115217 ], [ -75.138658, 40.115787 ], [ -75.138252, 40.116203 ], [ -75.138019, 40.116442 ], [ -75.137704, 40.116748 ], [ -75.137239, 40.117241 ], [ -75.137094, 40.117378 ], [ -75.136937, 40.11753 ], [ -75.136533, 40.117912 ], [ -75.136062, 40.118387 ], [ -75.135013, 40.119447 ], [ -75.134537, 40.11993 ], [ -75.133707, 40.120735 ], [ -75.133691, 40.120751 ], [ -75.133372, 40.121122 ], [ -75.133288, 40.121254 ], [ -75.132985, 40.121799 ], [ -75.132888, 40.121973 ], [ -75.132804, 40.122127 ], [ -75.132708, 40.12233 ], [ -75.132667, 40.122423 ], [ -75.13265, 40.12247 ], [ -75.132641, 40.122541 ], [ -75.132643, 40.122608 ], [ -75.132652, 40.122665 ], [ -75.132672, 40.122785 ], [ -75.132703, 40.122954 ], [ -75.132755, 40.123267 ], [ -75.132837, 40.12377 ], [ -75.132871, 40.123968 ], [ -75.132899, 40.124119 ], [ -75.132933, 40.124331 ], [ -75.132958, 40.124466 ], [ -75.13297, 40.124562 ], [ -75.132978, 40.124638 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124736 ], [ -75.132967, 40.124812 ], [ -75.132953, 40.124862 ], [ -75.13295, 40.124874 ], [ -75.132928, 40.124953 ], [ -75.132883, 40.12506 ], [ -75.132829, 40.125164 ], [ -75.132781, 40.125231 ], [ -75.132728, 40.125299 ], [ -75.13268, 40.125361 ], [ -75.132598, 40.125389 ], [ -75.132574, 40.125411 ], [ -75.132465, 40.125534 ], [ -75.13233, 40.125682 ], [ -75.131801, 40.126235 ], [ -75.13176, 40.126285 ], [ -75.131702, 40.126363 ], [ -75.131658, 40.126411 ], [ -75.131332, 40.126754 ], [ -75.13083, 40.127285 ], [ -75.130622, 40.127517 ], [ -75.130609, 40.127539 ], [ -75.130601, 40.127582 ], [ -75.13031, 40.127888 ], [ -75.130004, 40.128192 ], [ -75.129924, 40.128271 ], [ -75.129681, 40.128515 ], [ -75.129465, 40.128733 ], [ -75.12911, 40.129094 ], [ -75.128884, 40.129325 ], [ -75.128268, 40.129957 ], [ -75.128138, 40.130092 ], [ -75.127871, 40.13036 ], [ -75.127664, 40.130569 ], [ -75.127438, 40.130798 ], [ -75.126629, 40.131623 ], [ -75.12586, 40.132407 ], [ -75.125633, 40.132639 ], [ -75.12527, 40.133004 ], [ -75.125106, 40.13317 ], [ -75.12481, 40.133474 ], [ -75.124664, 40.133625 ], [ -75.124445, 40.133849 ], [ -75.12386, 40.134437 ], [ -75.123576, 40.134719 ], [ -75.123386, 40.134907 ], [ -75.12313, 40.135161 ], [ -75.122655, 40.135647 ], [ -75.122402, 40.135909 ], [ -75.122305, 40.135997 ], [ -75.122212, 40.13603 ], [ -75.121746, 40.136516 ], [ -75.121498, 40.136787 ], [ -75.12142, 40.136866 ], [ -75.121332, 40.136955 ], [ -75.12108, 40.137211 ], [ -75.120955, 40.137342 ], [ -75.120406, 40.137905 ], [ -75.120314, 40.138009 ], [ -75.120243, 40.138073 ], [ -75.119856, 40.138486 ], [ -75.119728, 40.138622 ], [ -75.119548, 40.138816 ], [ -75.119466, 40.138892 ], [ -75.118639, 40.139714 ], [ -75.118442, 40.139914 ], [ -75.117953, 40.140415 ], [ -75.117522, 40.140845 ], [ -75.11744, 40.140944 ], [ -75.117339, 40.141069 ], [ -75.117207, 40.141247 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117108, 40.141466 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307442", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144151, 40.041505 ], [ -75.144125, 40.041615 ], [ -75.144076, 40.041818 ], [ -75.144048, 40.041944 ], [ -75.143917, 40.04253 ], [ -75.143883, 40.042685 ], [ -75.14386, 40.042787 ], [ -75.143836, 40.042894 ], [ -75.143794, 40.043095 ], [ -75.143759, 40.043259 ], [ -75.143666, 40.043695 ], [ -75.14359, 40.044052 ], [ -75.143548, 40.044253 ], [ -75.143512, 40.044421 ], [ -75.143489, 40.044526 ], [ -75.143466, 40.044629 ], [ -75.143439, 40.044748 ], [ -75.143269, 40.045512 ], [ -75.143219, 40.045738 ], [ -75.143056, 40.046465 ], [ -75.143033, 40.046572 ], [ -75.143008, 40.046683 ], [ -75.142918, 40.047108 ], [ -75.142837, 40.047489 ], [ -75.1428, 40.047649 ], [ -75.142763, 40.047812 ], [ -75.142499, 40.049035 ], [ -75.142247, 40.050182 ], [ -75.142209, 40.050356 ], [ -75.142187, 40.050453 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141296, 40.054303 ], [ -75.141234, 40.054583 ], [ -75.141202, 40.054708 ], [ -75.141116, 40.055087 ], [ -75.141105, 40.055143 ], [ -75.141078, 40.055271 ], [ -75.141112, 40.055343 ], [ -75.141005, 40.055808 ], [ -75.140919, 40.056222 ], [ -75.140892, 40.056349 ], [ -75.140851, 40.056523 ], [ -75.14081, 40.056697 ], [ -75.140779, 40.056839 ], [ -75.140751, 40.056976 ], [ -75.140734, 40.057057 ], [ -75.140678, 40.057334 ], [ -75.140598, 40.057697 ], [ -75.140566, 40.057843 ], [ -75.140486, 40.058218 ], [ -75.140394, 40.058583 ], [ -75.140379, 40.058662 ], [ -75.140365, 40.05874 ], [ -75.140339, 40.058884 ], [ -75.140275, 40.059219 ], [ -75.14026, 40.059295 ], [ -75.140245, 40.059374 ], [ -75.140211, 40.059523 ], [ -75.140162, 40.059737 ], [ -75.140143, 40.059821 ], [ -75.140124, 40.059905 ], [ -75.140076, 40.060108 ], [ -75.139958, 40.060629 ], [ -75.139901, 40.060893 ], [ -75.139862, 40.061083 ], [ -75.139844, 40.061169 ], [ -75.139823, 40.06126 ], [ -75.139783, 40.061445 ], [ -75.139743, 40.061631 ], [ -75.139716, 40.061754 ], [ -75.139688, 40.061876 ], [ -75.139631, 40.061931 ], [ -75.13962, 40.061955 ], [ -75.139427, 40.062802 ], [ -75.139412, 40.062875 ], [ -75.139361, 40.063069 ], [ -75.139344, 40.063157 ], [ -75.139329, 40.063231 ], [ -75.139316, 40.063291 ], [ -75.139429, 40.063359 ], [ -75.139997, 40.063694 ], [ -75.140718, 40.064122 ], [ -75.140846, 40.064194 ], [ -75.141328, 40.064471 ], [ -75.141876, 40.064788 ], [ -75.143113, 40.065501 ], [ -75.143931, 40.065957 ], [ -75.144128, 40.06607 ], [ -75.144549, 40.066303 ], [ -75.144864, 40.066485 ], [ -75.145219, 40.06669 ], [ -75.145496, 40.066856 ], [ -75.145724, 40.066987 ], [ -75.146324, 40.067335 ], [ -75.146549, 40.067471 ], [ -75.146682, 40.067549 ], [ -75.147646, 40.068096 ], [ -75.148335, 40.06849 ], [ -75.14959, 40.06921 ], [ -75.149985, 40.069437 ], [ -75.150706, 40.069838 ], [ -75.151592, 40.07033 ], [ -75.151881, 40.070491 ], [ -75.152182, 40.070659 ], [ -75.152746, 40.070983 ], [ -75.15294, 40.071093 ], [ -75.153326, 40.071315 ], [ -75.153582, 40.071461 ], [ -75.154, 40.0717 ], [ -75.154069, 40.07174 ], [ -75.154116, 40.071767 ], [ -75.154743, 40.072126 ], [ -75.155443, 40.072519 ], [ -75.155926, 40.07279 ], [ -75.156441, 40.073082 ], [ -75.156655, 40.073203 ], [ -75.157688, 40.073788 ], [ -75.157856, 40.073884 ], [ -75.158411, 40.074197 ], [ -75.158496, 40.074242 ], [ -75.159126, 40.07459 ], [ -75.160426, 40.075306 ], [ -75.16097, 40.075591 ], [ -75.161289, 40.075758 ], [ -75.161542, 40.075902 ], [ -75.161959, 40.076127 ], [ -75.162503, 40.076447 ], [ -75.16339, 40.076949 ], [ -75.163904, 40.077233 ], [ -75.165014, 40.077867 ], [ -75.165781, 40.078317 ], [ -75.166076, 40.078505 ], [ -75.166114, 40.078576 ], [ -75.166504, 40.078818 ], [ -75.166834, 40.079037 ], [ -75.167147, 40.079218 ], [ -75.167328, 40.079323 ], [ -75.167626, 40.079497 ], [ -75.168053, 40.079763 ], [ -75.168222, 40.079859 ], [ -75.168509, 40.080026 ], [ -75.169303, 40.080487 ], [ -75.1699, 40.080833 ], [ -75.170475, 40.081188 ], [ -75.170715, 40.081336 ], [ -75.17095, 40.081485 ], [ -75.171061, 40.081557 ], [ -75.171438, 40.081893 ], [ -75.171447, 40.081918 ], [ -75.17145, 40.08194 ], [ -75.17145, 40.08197 ], [ -75.171427, 40.082057 ], [ -75.171212, 40.082302 ], [ -75.17076, 40.082817 ], [ -75.169665, 40.083906 ], [ -75.169283, 40.084313 ], [ -75.168944, 40.084647 ], [ -75.168101, 40.085415 ], [ -75.167964, 40.085519 ], [ -75.167807, 40.085611 ], [ -75.167636, 40.085705 ], [ -75.167453, 40.085795 ], [ -75.167148, 40.085938 ], [ -75.166981, 40.086009 ], [ -75.166665, 40.086138 ], [ -75.166426, 40.086234 ], [ -75.165951, 40.0864 ], [ -75.165285, 40.086675 ], [ -75.164817, 40.086881 ], [ -75.164617, 40.08698 ], [ -75.164563, 40.087021 ], [ -75.164507, 40.087055 ], [ -75.164413, 40.087126 ], [ -75.163941, 40.087497 ], [ -75.163834, 40.087568 ], [ -75.163666, 40.087803 ], [ -75.163533, 40.088093 ], [ -75.163496, 40.088156 ], [ -75.163463, 40.088232 ], [ -75.163392, 40.088512 ], [ -75.163345, 40.088789 ], [ -75.163328, 40.089019 ], [ -75.163273, 40.089381 ], [ -75.163187, 40.089943 ], [ -75.163176, 40.090033 ], [ -75.163134, 40.090254 ], [ -75.163077, 40.090461 ], [ -75.162987, 40.090689 ], [ -75.162915, 40.090829 ], [ -75.162844, 40.090952 ], [ -75.162756, 40.09106 ], [ -75.162603, 40.091253 ], [ -75.162415, 40.091493 ], [ -75.162303, 40.091635 ], [ -75.162058, 40.091933 ], [ -75.161773, 40.092222 ], [ -75.161498, 40.092501 ], [ -75.161234, 40.092782 ], [ -75.161136, 40.092888 ], [ -75.161105, 40.092921 ], [ -75.161074, 40.092966 ], [ -75.161059, 40.093045 ], [ -75.160738, 40.093361 ], [ -75.160625, 40.093478 ], [ -75.159494, 40.094607 ], [ -75.15896, 40.09514 ], [ -75.158636, 40.095457 ], [ -75.15851, 40.095579 ], [ -75.158252, 40.095831 ], [ -75.158019, 40.09606 ], [ -75.157821, 40.096255 ], [ -75.157651, 40.096423 ], [ -75.157562, 40.096511 ], [ -75.156762, 40.097304 ], [ -75.156448, 40.097612 ], [ -75.155844, 40.098219 ], [ -75.155663, 40.098401 ], [ -75.155434, 40.098631 ], [ -75.155265, 40.098799 ], [ -75.154994, 40.099066 ], [ -75.154499, 40.099558 ], [ -75.153977, 40.100093 ], [ -75.153508, 40.100573 ], [ -75.153241, 40.100834 ], [ -75.152937, 40.101133 ], [ -75.152866, 40.101219 ], [ -75.152769, 40.101352 ], [ -75.152571, 40.10163 ], [ -75.152363, 40.101901 ], [ -75.152351, 40.101917 ], [ -75.15216, 40.102171 ], [ -75.15212, 40.102229 ], [ -75.152062, 40.102294 ], [ -75.151902, 40.102454 ], [ -75.151094, 40.103249 ], [ -75.149625, 40.104728 ], [ -75.149259, 40.105094 ], [ -75.148735, 40.105613 ], [ -75.147808, 40.10653 ], [ -75.147484, 40.106851 ], [ -75.14728, 40.107054 ], [ -75.147059, 40.107279 ], [ -75.146277, 40.108066 ], [ -75.146116, 40.108225 ], [ -75.145642, 40.108699 ], [ -75.145373, 40.108986 ], [ -75.145004, 40.109362 ], [ -75.144753, 40.109615 ], [ -75.144603, 40.109767 ], [ -75.144419, 40.109953 ], [ -75.144402, 40.109971 ], [ -75.143892, 40.110482 ], [ -75.143358, 40.11102 ], [ -75.14208, 40.112328 ], [ -75.14092, 40.113498 ], [ -75.140737, 40.113668 ], [ -75.140293, 40.114118 ], [ -75.140048, 40.114366 ], [ -75.13974, 40.114685 ], [ -75.139601, 40.114828 ], [ -75.139226, 40.115217 ], [ -75.138658, 40.115787 ], [ -75.138252, 40.116203 ], [ -75.138019, 40.116442 ], [ -75.137704, 40.116748 ], [ -75.137239, 40.117241 ], [ -75.137094, 40.117378 ], [ -75.136937, 40.11753 ], [ -75.136533, 40.117912 ], [ -75.136062, 40.118387 ], [ -75.135013, 40.119447 ], [ -75.134537, 40.11993 ], [ -75.133707, 40.120735 ], [ -75.133691, 40.120751 ], [ -75.133372, 40.121122 ], [ -75.133288, 40.121254 ], [ -75.132985, 40.121799 ], [ -75.132888, 40.121973 ], [ -75.132804, 40.122127 ], [ -75.132708, 40.12233 ], [ -75.132667, 40.122423 ], [ -75.13265, 40.12247 ], [ -75.132641, 40.122541 ], [ -75.132643, 40.122608 ], [ -75.132652, 40.122665 ], [ -75.132672, 40.122785 ], [ -75.132703, 40.122954 ], [ -75.132755, 40.123267 ], [ -75.132837, 40.12377 ], [ -75.132871, 40.123968 ], [ -75.132899, 40.124119 ], [ -75.132933, 40.124331 ], [ -75.132958, 40.124466 ], [ -75.13297, 40.124562 ], [ -75.132978, 40.124638 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124736 ], [ -75.132967, 40.124812 ], [ -75.132953, 40.124862 ], [ -75.13295, 40.124874 ], [ -75.132928, 40.124953 ], [ -75.132883, 40.12506 ], [ -75.132829, 40.125164 ], [ -75.132781, 40.125231 ], [ -75.132728, 40.125299 ], [ -75.13268, 40.125361 ], [ -75.132598, 40.125389 ], [ -75.132574, 40.125411 ], [ -75.132465, 40.125534 ], [ -75.13233, 40.125682 ], [ -75.131801, 40.126235 ], [ -75.13176, 40.126285 ], [ -75.131702, 40.126363 ], [ -75.131658, 40.126411 ], [ -75.131332, 40.126754 ], [ -75.13083, 40.127285 ], [ -75.130622, 40.127517 ], [ -75.130609, 40.127539 ], [ -75.130601, 40.127582 ], [ -75.13031, 40.127888 ], [ -75.130004, 40.128192 ], [ -75.129924, 40.128271 ], [ -75.129681, 40.128515 ], [ -75.129465, 40.128733 ], [ -75.12911, 40.129094 ], [ -75.128884, 40.129325 ], [ -75.128268, 40.129957 ], [ -75.128138, 40.130092 ], [ -75.127871, 40.13036 ], [ -75.127664, 40.130569 ], [ -75.127438, 40.130798 ], [ -75.126629, 40.131623 ], [ -75.12586, 40.132407 ], [ -75.125633, 40.132639 ], [ -75.12527, 40.133004 ], [ -75.125106, 40.13317 ], [ -75.12481, 40.133474 ], [ -75.124664, 40.133625 ], [ -75.124445, 40.133849 ], [ -75.12386, 40.134437 ], [ -75.123576, 40.134719 ], [ -75.123386, 40.134907 ], [ -75.12313, 40.135161 ], [ -75.122655, 40.135647 ], [ -75.122402, 40.135909 ], [ -75.122305, 40.135997 ], [ -75.122212, 40.13603 ], [ -75.121746, 40.136516 ], [ -75.121498, 40.136787 ], [ -75.12142, 40.136866 ], [ -75.121332, 40.136955 ], [ -75.12108, 40.137211 ], [ -75.120955, 40.137342 ], [ -75.120406, 40.137905 ], [ -75.120314, 40.138009 ], [ -75.120243, 40.138073 ], [ -75.119856, 40.138486 ], [ -75.119728, 40.138622 ], [ -75.119548, 40.138816 ], [ -75.119466, 40.138892 ], [ -75.118639, 40.139714 ], [ -75.118442, 40.139914 ], [ -75.117953, 40.140415 ], [ -75.117522, 40.140845 ], [ -75.11744, 40.140944 ], [ -75.117339, 40.141069 ], [ -75.117207, 40.141247 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117108, 40.141466 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116019, 40.14478 ], [ -75.115956, 40.145353 ], [ -75.115858, 40.146392 ], [ -75.115833, 40.146657 ], [ -75.115813, 40.146871 ], [ -75.115797, 40.147053 ], [ -75.115723, 40.147376 ], [ -75.115706, 40.147442 ], [ -75.11567, 40.147589 ], [ -75.11566, 40.147622 ], [ -75.115614, 40.147777 ], [ -75.115591, 40.147848 ], [ -75.115524, 40.14805 ], [ -75.115459, 40.148192 ], [ -75.115355, 40.148435 ], [ -75.115338, 40.148477 ], [ -75.115269, 40.14861 ], [ -75.115181, 40.148782 ], [ -75.115023, 40.149072 ], [ -75.114651, 40.149633 ], [ -75.114516, 40.149823 ], [ -75.114396, 40.150029 ], [ -75.114322, 40.150163 ], [ -75.114223, 40.150366 ], [ -75.113881, 40.151298 ], [ -75.113676, 40.151953 ], [ -75.113456, 40.152628 ], [ -75.113256, 40.153295 ], [ -75.113051, 40.153966 ], [ -75.112881, 40.154637 ], [ -75.112495, 40.156346 ], [ -75.112073, 40.158193 ], [ -75.112008, 40.158549 ], [ -75.111956, 40.158982 ], [ -75.111917, 40.159246 ], [ -75.111906, 40.159369 ], [ -75.111905, 40.159388 ], [ -75.111866, 40.159835 ], [ -75.111806, 40.160276 ], [ -75.11177, 40.160544 ], [ -75.111757, 40.160613 ], [ -75.111713, 40.160811 ], [ -75.111639, 40.16116 ], [ -75.111548, 40.161591 ], [ -75.111468, 40.161929 ], [ -75.111447, 40.162036 ], [ -75.111326, 40.162571 ], [ -75.111316, 40.162621 ], [ -75.111296, 40.162705 ], [ -75.111225, 40.163005 ], [ -75.111187, 40.163147 ], [ -75.111116, 40.163383 ], [ -75.111075, 40.163571 ], [ -75.11103, 40.163769 ], [ -75.110821, 40.164665 ], [ -75.110715, 40.165124 ], [ -75.110688, 40.165239 ], [ -75.11052, 40.165983 ], [ -75.110481, 40.166188 ], [ -75.110413, 40.166563 ], [ -75.110346, 40.166888 ], [ -75.11031, 40.167038 ], [ -75.110261, 40.167246 ], [ -75.110238, 40.167369 ], [ -75.110198, 40.16758 ], [ -75.11019, 40.167671 ], [ -75.110185, 40.167729 ], [ -75.110187, 40.16782 ], [ -75.110201, 40.167961 ], [ -75.110238, 40.168141 ], [ -75.110321, 40.168473 ], [ -75.110379, 40.168716 ], [ -75.110464, 40.169014 ], [ -75.110498, 40.169197 ], [ -75.110522, 40.169295 ], [ -75.110535, 40.169363 ], [ -75.110545, 40.169419 ], [ -75.110558, 40.169497 ], [ -75.110568, 40.169575 ], [ -75.110579, 40.169674 ], [ -75.110587, 40.169751 ], [ -75.110601, 40.169886 ], [ -75.110607, 40.170048 ], [ -75.110608, 40.170147 ], [ -75.110607, 40.170189 ], [ -75.110606, 40.170217 ], [ -75.110603, 40.170279 ], [ -75.110596, 40.170333 ], [ -75.110586, 40.170386 ], [ -75.110579, 40.170427 ], [ -75.110565, 40.170483 ], [ -75.110551, 40.170529 ], [ -75.110536, 40.17058 ], [ -75.110514, 40.17064 ], [ -75.11049, 40.170693 ], [ -75.110467, 40.170739 ], [ -75.110443, 40.170787 ], [ -75.110395, 40.170864 ], [ -75.110352, 40.17092 ], [ -75.110301, 40.170981 ], [ -75.110239, 40.171054 ], [ -75.110055, 40.171236 ], [ -75.109847, 40.171436 ], [ -75.10971, 40.171555 ], [ -75.109427, 40.17181 ], [ -75.109189, 40.172038 ], [ -75.108849, 40.172353 ], [ -75.108587, 40.172597 ], [ -75.108413, 40.172758 ], [ -75.108109, 40.173041 ], [ -75.108054, 40.173089 ], [ -75.107755, 40.17337 ], [ -75.107608, 40.173509 ], [ -75.107373, 40.17373 ], [ -75.107311, 40.173794 ], [ -75.107199, 40.173926 ], [ -75.107097, 40.174064 ], [ -75.107051, 40.174141 ], [ -75.107008, 40.174219 ], [ -75.106984, 40.174276 ], [ -75.106938, 40.174444 ], [ -75.106895, 40.174603 ], [ -75.106814, 40.174901 ], [ -75.106746, 40.175151 ], [ -75.106736, 40.175187 ], [ -75.106678, 40.175404 ], [ -75.10664, 40.175556 ], [ -75.106428, 40.17639 ], [ -75.106338, 40.176724 ], [ -75.106284, 40.176926 ], [ -75.106192, 40.17727 ], [ -75.106098, 40.177644 ], [ -75.106042, 40.177862 ], [ -75.106017, 40.177949 ], [ -75.105903, 40.178369 ], [ -75.105835, 40.178601 ], [ -75.105781, 40.178782 ], [ -75.105736, 40.17894 ], [ -75.105663, 40.179187 ], [ -75.105643, 40.179272 ], [ -75.105567, 40.179567 ], [ -75.105454, 40.180005 ], [ -75.105442, 40.180053 ], [ -75.105412, 40.180174 ], [ -75.105359, 40.18037 ], [ -75.105319, 40.18056 ], [ -75.105204, 40.181071 ], [ -75.105165, 40.181247 ], [ -75.105122, 40.181446 ], [ -75.105086, 40.18161 ], [ -75.10495, 40.182217 ], [ -75.104913, 40.182386 ], [ -75.104798, 40.182918 ], [ -75.10472, 40.183247 ], [ -75.104666, 40.183478 ], [ -75.104551, 40.183957 ], [ -75.104527, 40.184046 ], [ -75.104344, 40.184783 ], [ -75.104244, 40.185207 ], [ -75.104034, 40.186084 ], [ -75.103932, 40.186482 ], [ -75.103814, 40.186966 ], [ -75.103657, 40.187625 ], [ -75.1035, 40.188297 ], [ -75.103369, 40.188798 ], [ -75.103353, 40.188889 ], [ -75.103341, 40.188949 ], [ -75.103317, 40.18907 ], [ -75.103251, 40.189438 ], [ -75.103196, 40.189683 ], [ -75.103148, 40.18989 ], [ -75.103124, 40.189967 ], [ -75.103086, 40.190067 ], [ -75.103026, 40.190297 ], [ -75.102957, 40.190594 ], [ -75.102918, 40.190788 ], [ -75.102873, 40.191016 ], [ -75.102826, 40.191294 ], [ -75.10279, 40.191449 ], [ -75.102769, 40.191571 ], [ -75.102754, 40.191647 ], [ -75.102686, 40.191983 ], [ -75.102676, 40.192039 ], [ -75.102663, 40.192083 ], [ -75.102609, 40.19232 ], [ -75.102584, 40.19244 ], [ -75.10254, 40.192654 ], [ -75.102395, 40.193325 ], [ -75.102344, 40.193594 ], [ -75.102301, 40.193836 ], [ -75.102261, 40.194007 ], [ -75.102148, 40.194631 ], [ -75.101998, 40.19542 ], [ -75.101872, 40.196049 ], [ -75.101846, 40.196226 ], [ -75.10168, 40.197008 ], [ -75.101533, 40.19778 ], [ -75.101471, 40.198081 ], [ -75.101413, 40.198397 ], [ -75.101374, 40.198591 ], [ -75.101321, 40.19889 ], [ -75.101109, 40.199937 ], [ -75.101081, 40.200114 ], [ -75.101065, 40.200186 ], [ -75.100987, 40.200561 ], [ -75.10092, 40.200889 ], [ -75.100883, 40.201087 ], [ -75.100855, 40.20125 ], [ -75.10077, 40.201729 ], [ -75.100694, 40.202156 ], [ -75.100675, 40.202221 ], [ -75.100535, 40.202917 ], [ -75.100459, 40.203371 ], [ -75.100431, 40.203536 ], [ -75.100403, 40.203705 ], [ -75.100316, 40.20417 ], [ -75.100281, 40.204346 ], [ -75.100176, 40.204864 ], [ -75.100087, 40.205303 ], [ -75.100006, 40.205383 ], [ -75.099928, 40.205796 ], [ -75.099914, 40.205875 ], [ -75.099909, 40.205899 ], [ -75.09987, 40.206122 ], [ -75.099826, 40.20637 ], [ -75.099756, 40.206446 ], [ -75.099719, 40.206474 ], [ -75.099674, 40.206491 ], [ -75.099627, 40.206498 ], [ -75.099581, 40.206492 ], [ -75.099476, 40.206472 ], [ -75.09915, 40.206311 ], [ -75.098728, 40.206052 ], [ -75.098706, 40.206039 ], [ -75.098553, 40.205953 ], [ -75.098455, 40.20594 ], [ -75.098337, 40.205867 ], [ -75.096937, 40.205079 ], [ -75.096284, 40.204704 ], [ -75.096174, 40.204643 ], [ -75.095792, 40.204429 ], [ -75.094966, 40.203959 ], [ -75.094337, 40.203602 ], [ -75.09433, 40.203598 ], [ -75.094262, 40.203559 ], [ -75.093485, 40.203119 ], [ -75.093119, 40.202912 ], [ -75.092271, 40.202433 ], [ -75.092103, 40.202331 ], [ -75.091327, 40.201898 ], [ -75.090242, 40.201257 ], [ -75.089641, 40.200903 ], [ -75.089297, 40.2007 ], [ -75.089098, 40.200592 ], [ -75.088519, 40.200258 ], [ -75.088092, 40.200011 ], [ -75.087221, 40.199509 ], [ -75.086528, 40.199121 ], [ -75.085808, 40.198719 ], [ -75.085625, 40.198626 ], [ -75.084555, 40.197994 ], [ -75.083773, 40.197562 ], [ -75.083508, 40.197407 ], [ -75.083331, 40.197304 ], [ -75.082927, 40.197069 ], [ -75.082702, 40.196937 ], [ -75.082261, 40.196712 ], [ -75.081688, 40.196405 ], [ -75.081538, 40.196319 ], [ -75.081443, 40.196264 ], [ -75.080277, 40.195603 ], [ -75.079768, 40.195315 ], [ -75.080835, 40.194083 ], [ -75.081769, 40.19466 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307444", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144151, 40.041505 ], [ -75.144125, 40.041615 ], [ -75.144076, 40.041818 ], [ -75.144048, 40.041944 ], [ -75.143917, 40.04253 ], [ -75.143883, 40.042685 ], [ -75.14386, 40.042787 ], [ -75.143836, 40.042894 ], [ -75.143794, 40.043095 ], [ -75.143759, 40.043259 ], [ -75.143666, 40.043695 ], [ -75.14359, 40.044052 ], [ -75.143548, 40.044253 ], [ -75.143512, 40.044421 ], [ -75.143489, 40.044526 ], [ -75.143466, 40.044629 ], [ -75.143439, 40.044748 ], [ -75.143269, 40.045512 ], [ -75.143219, 40.045738 ], [ -75.143056, 40.046465 ], [ -75.143033, 40.046572 ], [ -75.143008, 40.046683 ], [ -75.142918, 40.047108 ], [ -75.142837, 40.047489 ], [ -75.1428, 40.047649 ], [ -75.142763, 40.047812 ], [ -75.142499, 40.049035 ], [ -75.142247, 40.050182 ], [ -75.142209, 40.050356 ], [ -75.142187, 40.050453 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141296, 40.054303 ], [ -75.141234, 40.054583 ], [ -75.141202, 40.054708 ], [ -75.141116, 40.055087 ], [ -75.141105, 40.055143 ], [ -75.141078, 40.055271 ], [ -75.141112, 40.055343 ], [ -75.141005, 40.055808 ], [ -75.140919, 40.056222 ], [ -75.140892, 40.056349 ], [ -75.140851, 40.056523 ], [ -75.14081, 40.056697 ], [ -75.140779, 40.056839 ], [ -75.140751, 40.056976 ], [ -75.140734, 40.057057 ], [ -75.140678, 40.057334 ], [ -75.140598, 40.057697 ], [ -75.140566, 40.057843 ], [ -75.140486, 40.058218 ], [ -75.140394, 40.058583 ], [ -75.140379, 40.058662 ], [ -75.140365, 40.05874 ], [ -75.140339, 40.058884 ], [ -75.140275, 40.059219 ], [ -75.14026, 40.059295 ], [ -75.140245, 40.059374 ], [ -75.140211, 40.059523 ], [ -75.140162, 40.059737 ], [ -75.140143, 40.059821 ], [ -75.140124, 40.059905 ], [ -75.140076, 40.060108 ], [ -75.139958, 40.060629 ], [ -75.139901, 40.060893 ], [ -75.139862, 40.061083 ], [ -75.139844, 40.061169 ], [ -75.139823, 40.06126 ], [ -75.139783, 40.061445 ], [ -75.139743, 40.061631 ], [ -75.139716, 40.061754 ], [ -75.139688, 40.061876 ], [ -75.139631, 40.061931 ], [ -75.13962, 40.061955 ], [ -75.139427, 40.062802 ], [ -75.139412, 40.062875 ], [ -75.139361, 40.063069 ], [ -75.139344, 40.063157 ], [ -75.139329, 40.063231 ], [ -75.139316, 40.063291 ], [ -75.139429, 40.063359 ], [ -75.139997, 40.063694 ], [ -75.140718, 40.064122 ], [ -75.140846, 40.064194 ], [ -75.141328, 40.064471 ], [ -75.141876, 40.064788 ], [ -75.143113, 40.065501 ], [ -75.143931, 40.065957 ], [ -75.144128, 40.06607 ], [ -75.144549, 40.066303 ], [ -75.144864, 40.066485 ], [ -75.145219, 40.06669 ], [ -75.145496, 40.066856 ], [ -75.145724, 40.066987 ], [ -75.146324, 40.067335 ], [ -75.146549, 40.067471 ], [ -75.146682, 40.067549 ], [ -75.147646, 40.068096 ], [ -75.148335, 40.06849 ], [ -75.14959, 40.06921 ], [ -75.149985, 40.069437 ], [ -75.150706, 40.069838 ], [ -75.151592, 40.07033 ], [ -75.151881, 40.070491 ], [ -75.152182, 40.070659 ], [ -75.152746, 40.070983 ], [ -75.15294, 40.071093 ], [ -75.153326, 40.071315 ], [ -75.153582, 40.071461 ], [ -75.154, 40.0717 ], [ -75.154069, 40.07174 ], [ -75.154116, 40.071767 ], [ -75.154743, 40.072126 ], [ -75.155443, 40.072519 ], [ -75.155926, 40.07279 ], [ -75.156441, 40.073082 ], [ -75.156655, 40.073203 ], [ -75.157688, 40.073788 ], [ -75.157856, 40.073884 ], [ -75.158411, 40.074197 ], [ -75.158496, 40.074242 ], [ -75.159126, 40.07459 ], [ -75.160426, 40.075306 ], [ -75.16097, 40.075591 ], [ -75.161289, 40.075758 ], [ -75.161542, 40.075902 ], [ -75.161959, 40.076127 ], [ -75.162503, 40.076447 ], [ -75.16339, 40.076949 ], [ -75.163904, 40.077233 ], [ -75.165014, 40.077867 ], [ -75.165781, 40.078317 ], [ -75.166076, 40.078505 ], [ -75.166114, 40.078576 ], [ -75.166504, 40.078818 ], [ -75.166834, 40.079037 ], [ -75.167147, 40.079218 ], [ -75.167328, 40.079323 ], [ -75.167626, 40.079497 ], [ -75.168053, 40.079763 ], [ -75.168222, 40.079859 ], [ -75.168509, 40.080026 ], [ -75.169303, 40.080487 ], [ -75.1699, 40.080833 ], [ -75.170475, 40.081188 ], [ -75.170715, 40.081336 ], [ -75.17095, 40.081485 ], [ -75.171061, 40.081557 ], [ -75.171438, 40.081893 ], [ -75.171447, 40.081918 ], [ -75.17145, 40.08194 ], [ -75.17145, 40.08197 ], [ -75.171427, 40.082057 ], [ -75.171212, 40.082302 ], [ -75.17076, 40.082817 ], [ -75.169665, 40.083906 ], [ -75.169283, 40.084313 ], [ -75.168944, 40.084647 ], [ -75.168101, 40.085415 ], [ -75.167964, 40.085519 ], [ -75.167807, 40.085611 ], [ -75.167636, 40.085705 ], [ -75.167453, 40.085795 ], [ -75.167148, 40.085938 ], [ -75.166981, 40.086009 ], [ -75.166665, 40.086138 ], [ -75.166426, 40.086234 ], [ -75.165951, 40.0864 ], [ -75.165285, 40.086675 ], [ -75.164817, 40.086881 ], [ -75.164617, 40.08698 ], [ -75.164563, 40.087021 ], [ -75.164507, 40.087055 ], [ -75.164413, 40.087126 ], [ -75.163941, 40.087497 ], [ -75.163834, 40.087568 ], [ -75.163666, 40.087803 ], [ -75.163533, 40.088093 ], [ -75.163496, 40.088156 ], [ -75.163463, 40.088232 ], [ -75.163392, 40.088512 ], [ -75.163345, 40.088789 ], [ -75.163328, 40.089019 ], [ -75.163273, 40.089381 ], [ -75.163187, 40.089943 ], [ -75.163176, 40.090033 ], [ -75.163134, 40.090254 ], [ -75.163077, 40.090461 ], [ -75.162987, 40.090689 ], [ -75.162915, 40.090829 ], [ -75.162844, 40.090952 ], [ -75.162756, 40.09106 ], [ -75.162603, 40.091253 ], [ -75.162415, 40.091493 ], [ -75.162303, 40.091635 ], [ -75.162058, 40.091933 ], [ -75.161773, 40.092222 ], [ -75.161498, 40.092501 ], [ -75.161234, 40.092782 ], [ -75.161136, 40.092888 ], [ -75.161105, 40.092921 ], [ -75.161074, 40.092966 ], [ -75.161059, 40.093045 ], [ -75.160738, 40.093361 ], [ -75.160625, 40.093478 ], [ -75.159494, 40.094607 ], [ -75.15896, 40.09514 ], [ -75.158636, 40.095457 ], [ -75.15851, 40.095579 ], [ -75.158252, 40.095831 ], [ -75.158019, 40.09606 ], [ -75.157821, 40.096255 ], [ -75.157651, 40.096423 ], [ -75.157562, 40.096511 ], [ -75.156762, 40.097304 ], [ -75.156448, 40.097612 ], [ -75.155844, 40.098219 ], [ -75.155663, 40.098401 ], [ -75.155434, 40.098631 ], [ -75.155265, 40.098799 ], [ -75.154994, 40.099066 ], [ -75.154499, 40.099558 ], [ -75.153977, 40.100093 ], [ -75.153508, 40.100573 ], [ -75.153241, 40.100834 ], [ -75.152937, 40.101133 ], [ -75.152866, 40.101219 ], [ -75.152769, 40.101352 ], [ -75.152571, 40.10163 ], [ -75.152363, 40.101901 ], [ -75.152351, 40.101917 ], [ -75.15216, 40.102171 ], [ -75.15212, 40.102229 ], [ -75.152062, 40.102294 ], [ -75.151902, 40.102454 ], [ -75.151094, 40.103249 ], [ -75.149625, 40.104728 ], [ -75.149259, 40.105094 ], [ -75.148735, 40.105613 ], [ -75.147808, 40.10653 ], [ -75.147484, 40.106851 ], [ -75.14728, 40.107054 ], [ -75.147059, 40.107279 ], [ -75.146277, 40.108066 ], [ -75.146116, 40.108225 ], [ -75.145642, 40.108699 ], [ -75.145373, 40.108986 ], [ -75.145004, 40.109362 ], [ -75.144753, 40.109615 ], [ -75.144603, 40.109767 ], [ -75.144419, 40.109953 ], [ -75.144402, 40.109971 ], [ -75.143892, 40.110482 ], [ -75.143358, 40.11102 ], [ -75.14208, 40.112328 ], [ -75.14092, 40.113498 ], [ -75.140737, 40.113668 ], [ -75.140293, 40.114118 ], [ -75.140048, 40.114366 ], [ -75.13974, 40.114685 ], [ -75.139601, 40.114828 ], [ -75.139226, 40.115217 ], [ -75.138658, 40.115787 ], [ -75.138252, 40.116203 ], [ -75.138019, 40.116442 ], [ -75.137704, 40.116748 ], [ -75.137239, 40.117241 ], [ -75.137094, 40.117378 ], [ -75.136937, 40.11753 ], [ -75.136533, 40.117912 ], [ -75.136062, 40.118387 ], [ -75.135013, 40.119447 ], [ -75.134537, 40.11993 ], [ -75.133707, 40.120735 ], [ -75.133691, 40.120751 ], [ -75.133372, 40.121122 ], [ -75.133288, 40.121254 ], [ -75.132985, 40.121799 ], [ -75.132888, 40.121973 ], [ -75.132804, 40.122127 ], [ -75.132708, 40.12233 ], [ -75.132667, 40.122423 ], [ -75.13265, 40.12247 ], [ -75.132641, 40.122541 ], [ -75.132643, 40.122608 ], [ -75.132652, 40.122665 ], [ -75.132672, 40.122785 ], [ -75.132703, 40.122954 ], [ -75.132755, 40.123267 ], [ -75.132837, 40.12377 ], [ -75.132871, 40.123968 ], [ -75.132899, 40.124119 ], [ -75.132933, 40.124331 ], [ -75.132958, 40.124466 ], [ -75.13297, 40.124562 ], [ -75.132978, 40.124638 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124736 ], [ -75.132967, 40.124812 ], [ -75.132953, 40.124862 ], [ -75.13295, 40.124874 ], [ -75.132928, 40.124953 ], [ -75.132883, 40.12506 ], [ -75.132829, 40.125164 ], [ -75.132781, 40.125231 ], [ -75.132728, 40.125299 ], [ -75.13268, 40.125361 ], [ -75.132598, 40.125389 ], [ -75.132574, 40.125411 ], [ -75.132465, 40.125534 ], [ -75.13233, 40.125682 ], [ -75.131801, 40.126235 ], [ -75.13176, 40.126285 ], [ -75.131702, 40.126363 ], [ -75.131658, 40.126411 ], [ -75.131332, 40.126754 ], [ -75.13083, 40.127285 ], [ -75.130622, 40.127517 ], [ -75.130609, 40.127539 ], [ -75.130601, 40.127582 ], [ -75.13031, 40.127888 ], [ -75.130004, 40.128192 ], [ -75.129924, 40.128271 ], [ -75.129681, 40.128515 ], [ -75.129465, 40.128733 ], [ -75.12911, 40.129094 ], [ -75.128884, 40.129325 ], [ -75.128268, 40.129957 ], [ -75.128138, 40.130092 ], [ -75.127871, 40.13036 ], [ -75.127664, 40.130569 ], [ -75.127438, 40.130798 ], [ -75.126629, 40.131623 ], [ -75.12586, 40.132407 ], [ -75.125633, 40.132639 ], [ -75.12527, 40.133004 ], [ -75.125106, 40.13317 ], [ -75.12481, 40.133474 ], [ -75.124664, 40.133625 ], [ -75.124445, 40.133849 ], [ -75.12386, 40.134437 ], [ -75.123576, 40.134719 ], [ -75.123386, 40.134907 ], [ -75.12313, 40.135161 ], [ -75.122655, 40.135647 ], [ -75.122402, 40.135909 ], [ -75.122305, 40.135997 ], [ -75.122212, 40.13603 ], [ -75.121746, 40.136516 ], [ -75.121498, 40.136787 ], [ -75.12142, 40.136866 ], [ -75.121332, 40.136955 ], [ -75.12108, 40.137211 ], [ -75.120955, 40.137342 ], [ -75.120406, 40.137905 ], [ -75.120314, 40.138009 ], [ -75.120243, 40.138073 ], [ -75.119856, 40.138486 ], [ -75.119728, 40.138622 ], [ -75.119548, 40.138816 ], [ -75.119466, 40.138892 ], [ -75.118639, 40.139714 ], [ -75.118442, 40.139914 ], [ -75.117953, 40.140415 ], [ -75.117522, 40.140845 ], [ -75.11744, 40.140944 ], [ -75.117339, 40.141069 ], [ -75.117207, 40.141247 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117108, 40.141466 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116019, 40.14478 ], [ -75.115956, 40.145353 ], [ -75.115858, 40.146392 ], [ -75.115833, 40.146657 ], [ -75.115813, 40.146871 ], [ -75.115797, 40.147053 ], [ -75.115723, 40.147376 ], [ -75.115706, 40.147442 ], [ -75.11567, 40.147589 ], [ -75.11566, 40.147622 ], [ -75.115614, 40.147777 ], [ -75.115591, 40.147848 ], [ -75.115524, 40.14805 ], [ -75.115459, 40.148192 ], [ -75.115355, 40.148435 ], [ -75.115338, 40.148477 ], [ -75.115269, 40.14861 ], [ -75.115181, 40.148782 ], [ -75.115023, 40.149072 ], [ -75.114651, 40.149633 ], [ -75.114516, 40.149823 ], [ -75.114396, 40.150029 ], [ -75.114322, 40.150163 ], [ -75.114223, 40.150366 ], [ -75.113881, 40.151298 ], [ -75.113676, 40.151953 ], [ -75.113456, 40.152628 ], [ -75.113256, 40.153295 ], [ -75.113051, 40.153966 ], [ -75.112881, 40.154637 ], [ -75.112495, 40.156346 ], [ -75.112073, 40.158193 ], [ -75.112008, 40.158549 ], [ -75.111956, 40.158982 ], [ -75.111917, 40.159246 ], [ -75.111906, 40.159369 ], [ -75.111905, 40.159388 ], [ -75.111866, 40.159835 ], [ -75.111806, 40.160276 ], [ -75.11177, 40.160544 ], [ -75.111757, 40.160613 ], [ -75.111713, 40.160811 ], [ -75.111639, 40.16116 ], [ -75.111548, 40.161591 ], [ -75.111468, 40.161929 ], [ -75.111447, 40.162036 ], [ -75.111326, 40.162571 ], [ -75.111316, 40.162621 ], [ -75.111296, 40.162705 ], [ -75.111225, 40.163005 ], [ -75.111187, 40.163147 ], [ -75.111116, 40.163383 ], [ -75.111075, 40.163571 ], [ -75.11103, 40.163769 ], [ -75.110821, 40.164665 ], [ -75.110715, 40.165124 ], [ -75.110688, 40.165239 ], [ -75.11052, 40.165983 ], [ -75.110481, 40.166188 ], [ -75.110413, 40.166563 ], [ -75.110346, 40.166888 ], [ -75.11031, 40.167038 ], [ -75.110261, 40.167246 ], [ -75.110238, 40.167369 ], [ -75.110198, 40.16758 ], [ -75.11019, 40.167671 ], [ -75.110185, 40.167729 ], [ -75.110187, 40.16782 ], [ -75.110201, 40.167961 ], [ -75.110238, 40.168141 ], [ -75.110321, 40.168473 ], [ -75.110379, 40.168716 ], [ -75.110464, 40.169014 ], [ -75.110498, 40.169197 ], [ -75.110522, 40.169295 ], [ -75.110535, 40.169363 ], [ -75.110545, 40.169419 ], [ -75.110558, 40.169497 ], [ -75.110568, 40.169575 ], [ -75.110579, 40.169674 ], [ -75.110587, 40.169751 ], [ -75.110601, 40.169886 ], [ -75.110607, 40.170048 ], [ -75.110608, 40.170147 ], [ -75.110607, 40.170189 ], [ -75.110606, 40.170217 ], [ -75.110603, 40.170279 ], [ -75.110596, 40.170333 ], [ -75.110586, 40.170386 ], [ -75.110579, 40.170427 ], [ -75.110565, 40.170483 ], [ -75.110551, 40.170529 ], [ -75.110536, 40.17058 ], [ -75.110514, 40.17064 ], [ -75.11049, 40.170693 ], [ -75.110467, 40.170739 ], [ -75.110443, 40.170787 ], [ -75.110395, 40.170864 ], [ -75.110352, 40.17092 ], [ -75.110301, 40.170981 ], [ -75.110239, 40.171054 ], [ -75.110055, 40.171236 ], [ -75.109847, 40.171436 ], [ -75.10971, 40.171555 ], [ -75.109427, 40.17181 ], [ -75.109189, 40.172038 ], [ -75.108849, 40.172353 ], [ -75.108587, 40.172597 ], [ -75.108413, 40.172758 ], [ -75.108109, 40.173041 ], [ -75.108054, 40.173089 ], [ -75.107755, 40.17337 ], [ -75.107608, 40.173509 ], [ -75.107373, 40.17373 ], [ -75.107311, 40.173794 ], [ -75.107199, 40.173926 ], [ -75.107097, 40.174064 ], [ -75.107051, 40.174141 ], [ -75.107008, 40.174219 ], [ -75.106984, 40.174276 ], [ -75.106938, 40.174444 ], [ -75.106895, 40.174603 ], [ -75.106814, 40.174901 ], [ -75.106746, 40.175151 ], [ -75.106736, 40.175187 ], [ -75.106678, 40.175404 ], [ -75.10664, 40.175556 ], [ -75.106428, 40.17639 ], [ -75.106338, 40.176724 ], [ -75.106284, 40.176926 ], [ -75.106192, 40.17727 ], [ -75.106098, 40.177644 ], [ -75.106042, 40.177862 ], [ -75.106017, 40.177949 ], [ -75.105903, 40.178369 ], [ -75.105835, 40.178601 ], [ -75.105781, 40.178782 ], [ -75.105736, 40.17894 ], [ -75.105663, 40.179187 ], [ -75.105643, 40.179272 ], [ -75.105567, 40.179567 ], [ -75.105454, 40.180005 ], [ -75.105442, 40.180053 ], [ -75.105412, 40.180174 ], [ -75.105359, 40.18037 ], [ -75.105319, 40.18056 ], [ -75.105204, 40.181071 ], [ -75.105165, 40.181247 ], [ -75.105122, 40.181446 ], [ -75.105086, 40.18161 ], [ -75.10495, 40.182217 ], [ -75.104913, 40.182386 ], [ -75.104798, 40.182918 ], [ -75.10472, 40.183247 ], [ -75.104666, 40.183478 ], [ -75.104551, 40.183957 ], [ -75.104527, 40.184046 ], [ -75.104344, 40.184783 ], [ -75.104244, 40.185207 ], [ -75.104034, 40.186084 ], [ -75.103932, 40.186482 ], [ -75.103814, 40.186966 ], [ -75.103657, 40.187625 ], [ -75.1035, 40.188297 ], [ -75.103369, 40.188798 ], [ -75.103353, 40.188889 ], [ -75.103341, 40.188949 ], [ -75.103317, 40.18907 ], [ -75.103251, 40.189438 ], [ -75.103196, 40.189683 ], [ -75.103148, 40.18989 ], [ -75.103124, 40.189967 ], [ -75.103086, 40.190067 ], [ -75.103026, 40.190297 ], [ -75.102957, 40.190594 ], [ -75.102918, 40.190788 ], [ -75.102873, 40.191016 ], [ -75.102826, 40.191294 ], [ -75.10279, 40.191449 ], [ -75.102769, 40.191571 ], [ -75.102754, 40.191647 ], [ -75.102686, 40.191983 ], [ -75.102676, 40.192039 ], [ -75.102663, 40.192083 ], [ -75.102609, 40.19232 ], [ -75.102584, 40.19244 ], [ -75.10254, 40.192654 ], [ -75.102395, 40.193325 ], [ -75.102344, 40.193594 ], [ -75.102301, 40.193836 ], [ -75.102261, 40.194007 ], [ -75.102148, 40.194631 ], [ -75.101998, 40.19542 ], [ -75.101872, 40.196049 ], [ -75.101846, 40.196226 ], [ -75.10168, 40.197008 ], [ -75.101533, 40.19778 ], [ -75.101471, 40.198081 ], [ -75.101413, 40.198397 ], [ -75.101374, 40.198591 ], [ -75.101321, 40.19889 ], [ -75.101109, 40.199937 ], [ -75.101081, 40.200114 ], [ -75.101065, 40.200186 ], [ -75.100987, 40.200561 ], [ -75.10092, 40.200889 ], [ -75.100883, 40.201087 ], [ -75.100855, 40.20125 ], [ -75.10077, 40.201729 ], [ -75.100694, 40.202156 ], [ -75.100675, 40.202221 ], [ -75.100535, 40.202917 ], [ -75.100459, 40.203371 ], [ -75.100431, 40.203536 ], [ -75.100403, 40.203705 ], [ -75.100316, 40.20417 ], [ -75.100281, 40.204346 ], [ -75.100176, 40.204864 ], [ -75.100087, 40.205303 ], [ -75.100006, 40.205383 ], [ -75.099928, 40.205796 ], [ -75.099914, 40.205875 ], [ -75.099909, 40.205899 ], [ -75.09987, 40.206122 ], [ -75.099826, 40.20637 ], [ -75.099756, 40.206446 ], [ -75.099719, 40.206474 ], [ -75.099674, 40.206491 ], [ -75.099627, 40.206498 ], [ -75.099581, 40.206492 ], [ -75.099476, 40.206472 ], [ -75.09915, 40.206311 ], [ -75.098728, 40.206052 ], [ -75.098706, 40.206039 ], [ -75.098553, 40.205953 ], [ -75.098455, 40.20594 ], [ -75.098337, 40.205867 ], [ -75.096937, 40.205079 ], [ -75.096284, 40.204704 ], [ -75.096174, 40.204643 ], [ -75.095792, 40.204429 ], [ -75.094966, 40.203959 ], [ -75.094337, 40.203602 ], [ -75.09433, 40.203598 ], [ -75.094262, 40.203559 ], [ -75.093485, 40.203119 ], [ -75.093119, 40.202912 ], [ -75.092271, 40.202433 ], [ -75.092103, 40.202331 ], [ -75.091327, 40.201898 ], [ -75.090242, 40.201257 ], [ -75.089641, 40.200903 ], [ -75.089297, 40.2007 ], [ -75.089098, 40.200592 ], [ -75.088519, 40.200258 ], [ -75.088092, 40.200011 ], [ -75.087221, 40.199509 ], [ -75.086528, 40.199121 ], [ -75.085808, 40.198719 ], [ -75.085625, 40.198626 ], [ -75.084555, 40.197994 ], [ -75.083773, 40.197562 ], [ -75.083508, 40.197407 ], [ -75.083331, 40.197304 ], [ -75.082927, 40.197069 ], [ -75.082702, 40.196937 ], [ -75.082261, 40.196712 ], [ -75.081688, 40.196405 ], [ -75.081538, 40.196319 ], [ -75.081443, 40.196264 ], [ -75.080277, 40.195603 ], [ -75.079768, 40.195315 ], [ -75.080835, 40.194083 ], [ -75.081769, 40.19466 ], [ -75.082954, 40.195333 ], [ -75.083043, 40.195391 ], [ -75.083128, 40.195446 ], [ -75.083204, 40.195501 ], [ -75.083248, 40.19553 ], [ -75.083311, 40.195585 ], [ -75.08337, 40.19564 ], [ -75.083438, 40.195707 ], [ -75.08361, 40.19587 ], [ -75.083704, 40.195958 ], [ -75.083821, 40.195882 ], [ -75.083914, 40.195817 ], [ -75.083992, 40.195758 ], [ -75.084085, 40.195684 ], [ -75.084162, 40.195622 ], [ -75.084221, 40.195568 ], [ -75.084259, 40.195534 ], [ -75.084311, 40.195488 ], [ -75.08457, 40.195234 ], [ -75.085078, 40.194717 ], [ -75.085459, 40.194343 ], [ -75.085684, 40.194121 ], [ -75.085774, 40.194034 ], [ -75.08579, 40.194019 ], [ -75.086455, 40.193317 ], [ -75.087004, 40.192745 ], [ -75.087542, 40.192205 ], [ -75.087551, 40.192196 ], [ -75.087867, 40.191879 ], [ -75.088526, 40.191203 ], [ -75.088802, 40.190933 ], [ -75.089393, 40.190312 ], [ -75.08952, 40.190173 ], [ -75.089804, 40.189896 ], [ -75.0903, 40.189413 ], [ -75.090561, 40.189161 ], [ -75.090629, 40.189094 ], [ -75.090963, 40.188734 ], [ -75.09101, 40.188683 ], [ -75.091702, 40.187951 ], [ -75.091748, 40.187895 ], [ -75.091126, 40.187544 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307445", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117299, 40.141278 ], [ -75.117368, 40.141172 ], [ -75.117479, 40.141031 ], [ -75.117575, 40.14092 ], [ -75.11788, 40.140602 ], [ -75.117898, 40.140584 ], [ -75.11812, 40.140359 ], [ -75.118575, 40.139902 ], [ -75.118901, 40.1396 ], [ -75.119221, 40.139279 ], [ -75.119549, 40.138951 ], [ -75.119649, 40.138877 ], [ -75.119822, 40.138689 ], [ -75.12012, 40.138366 ], [ -75.120318, 40.138169 ], [ -75.120513, 40.137976 ], [ -75.120714, 40.137775 ], [ -75.121095, 40.137384 ], [ -75.121217, 40.137254 ], [ -75.121444, 40.136996 ], [ -75.121596, 40.136828 ], [ -75.121836, 40.136566 ], [ -75.122281, 40.136095 ], [ -75.122305, 40.135997 ], [ -75.122402, 40.135909 ], [ -75.122655, 40.135647 ], [ -75.12313, 40.135161 ], [ -75.123386, 40.134907 ], [ -75.123576, 40.134719 ], [ -75.12386, 40.134437 ], [ -75.124445, 40.133849 ], [ -75.124664, 40.133625 ], [ -75.12481, 40.133474 ], [ -75.125106, 40.13317 ], [ -75.12527, 40.133004 ], [ -75.125633, 40.132639 ], [ -75.12586, 40.132407 ], [ -75.126629, 40.131623 ], [ -75.127438, 40.130798 ], [ -75.127664, 40.130569 ], [ -75.127871, 40.13036 ], [ -75.128138, 40.130092 ], [ -75.128268, 40.129957 ], [ -75.128884, 40.129325 ], [ -75.12911, 40.129094 ], [ -75.129465, 40.128733 ], [ -75.129681, 40.128515 ], [ -75.129924, 40.128271 ], [ -75.130004, 40.128192 ], [ -75.13031, 40.127888 ], [ -75.130601, 40.127582 ], [ -75.130654, 40.127564 ], [ -75.130683, 40.127537 ], [ -75.130904, 40.127327 ], [ -75.131413, 40.126802 ], [ -75.131754, 40.12644 ], [ -75.131784, 40.126398 ], [ -75.131896, 40.126284 ], [ -75.132432, 40.125739 ], [ -75.132654, 40.125465 ], [ -75.13268, 40.125361 ], [ -75.132728, 40.125299 ], [ -75.132781, 40.125231 ], [ -75.132829, 40.125164 ], [ -75.132883, 40.12506 ], [ -75.132928, 40.124953 ], [ -75.13295, 40.124874 ], [ -75.132953, 40.124862 ], [ -75.132967, 40.124812 ], [ -75.132978, 40.124736 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124638 ], [ -75.13297, 40.124562 ], [ -75.132958, 40.124466 ], [ -75.132933, 40.124331 ], [ -75.132899, 40.124119 ], [ -75.132871, 40.123968 ], [ -75.132837, 40.12377 ], [ -75.132755, 40.123267 ], [ -75.132703, 40.122954 ], [ -75.132672, 40.122785 ], [ -75.132652, 40.122665 ], [ -75.132643, 40.122608 ], [ -75.132641, 40.122541 ], [ -75.13265, 40.12247 ], [ -75.132667, 40.122423 ], [ -75.132708, 40.12233 ], [ -75.132804, 40.122127 ], [ -75.132888, 40.121973 ], [ -75.132985, 40.121799 ], [ -75.133288, 40.121254 ], [ -75.133372, 40.121122 ], [ -75.133691, 40.120751 ], [ -75.133707, 40.120735 ], [ -75.134537, 40.11993 ], [ -75.135013, 40.119447 ], [ -75.136062, 40.118387 ], [ -75.136533, 40.117912 ], [ -75.136937, 40.11753 ], [ -75.137094, 40.117378 ], [ -75.137239, 40.117241 ], [ -75.137704, 40.116748 ], [ -75.138019, 40.116442 ], [ -75.138252, 40.116203 ], [ -75.138658, 40.115787 ], [ -75.139226, 40.115217 ], [ -75.139601, 40.114828 ], [ -75.13974, 40.114685 ], [ -75.140048, 40.114366 ], [ -75.140293, 40.114118 ], [ -75.140737, 40.113668 ], [ -75.14092, 40.113498 ], [ -75.14208, 40.112328 ], [ -75.143358, 40.11102 ], [ -75.143892, 40.110482 ], [ -75.144402, 40.109971 ], [ -75.144419, 40.109953 ], [ -75.144603, 40.109767 ], [ -75.144753, 40.109615 ], [ -75.145004, 40.109362 ], [ -75.145373, 40.108986 ], [ -75.145642, 40.108699 ], [ -75.146116, 40.108225 ], [ -75.146277, 40.108066 ], [ -75.147059, 40.107279 ], [ -75.14728, 40.107054 ], [ -75.147484, 40.106851 ], [ -75.147808, 40.10653 ], [ -75.148735, 40.105613 ], [ -75.149259, 40.105094 ], [ -75.149625, 40.104728 ], [ -75.151094, 40.103249 ], [ -75.151902, 40.102454 ], [ -75.152062, 40.102294 ], [ -75.15212, 40.102229 ], [ -75.15216, 40.102171 ], [ -75.152351, 40.101917 ], [ -75.152363, 40.101901 ], [ -75.152571, 40.10163 ], [ -75.152769, 40.101352 ], [ -75.152866, 40.101219 ], [ -75.152937, 40.101133 ], [ -75.153241, 40.100834 ], [ -75.153508, 40.100573 ], [ -75.153977, 40.100093 ], [ -75.154499, 40.099558 ], [ -75.154994, 40.099066 ], [ -75.155265, 40.098799 ], [ -75.155434, 40.098631 ], [ -75.155663, 40.098401 ], [ -75.155844, 40.098219 ], [ -75.156448, 40.097612 ], [ -75.156762, 40.097304 ], [ -75.157562, 40.096511 ], [ -75.157651, 40.096423 ], [ -75.157821, 40.096255 ], [ -75.158019, 40.09606 ], [ -75.158252, 40.095831 ], [ -75.15851, 40.095579 ], [ -75.158636, 40.095457 ], [ -75.15896, 40.09514 ], [ -75.159494, 40.094607 ], [ -75.160625, 40.093478 ], [ -75.160738, 40.093361 ], [ -75.161059, 40.093045 ], [ -75.161144, 40.093015 ], [ -75.161182, 40.092979 ], [ -75.161221, 40.092936 ], [ -75.161314, 40.092832 ], [ -75.161414, 40.09272 ], [ -75.16165, 40.092478 ], [ -75.162038, 40.092114 ], [ -75.162099, 40.092052 ], [ -75.162283, 40.091834 ], [ -75.162413, 40.091681 ], [ -75.162874, 40.091145 ], [ -75.163129, 40.090848 ], [ -75.163271, 40.090601 ], [ -75.163338, 40.090379 ], [ -75.163432, 40.090036 ], [ -75.163463, 40.089793 ], [ -75.163496, 40.089611 ], [ -75.163508, 40.089366 ], [ -75.163549, 40.089033 ], [ -75.163558, 40.089 ], [ -75.16359, 40.088895 ], [ -75.163635, 40.088704 ], [ -75.163651, 40.08865 ], [ -75.163669, 40.08859 ], [ -75.163731, 40.088325 ], [ -75.163772, 40.088206 ], [ -75.163836, 40.088077 ], [ -75.163854, 40.088044 ], [ -75.163889, 40.087982 ], [ -75.163919, 40.08793 ], [ -75.163956, 40.08788 ], [ -75.164056, 40.087706 ], [ -75.164228, 40.087514 ], [ -75.164286, 40.087457 ], [ -75.164542, 40.087253 ], [ -75.164738, 40.08712 ], [ -75.164965, 40.087022 ], [ -75.164842, 40.086909 ], [ -75.164817, 40.086881 ], [ -75.164721, 40.08678 ], [ -75.164452, 40.086375 ], [ -75.162875, 40.084593 ], [ -75.16286, 40.084568 ], [ -75.162528, 40.083915 ], [ -75.162472, 40.083819 ], [ -75.162388, 40.083678 ], [ -75.162048, 40.083164 ], [ -75.161798, 40.082787 ], [ -75.16142, 40.082291 ], [ -75.16111, 40.081793 ], [ -75.161096, 40.081768 ], [ -75.160984, 40.08161 ], [ -75.160918, 40.081517 ], [ -75.160842, 40.081395 ], [ -75.160643, 40.08112 ], [ -75.160587, 40.081012 ], [ -75.160523, 40.080912 ], [ -75.160479, 40.080827 ], [ -75.160435, 40.08074 ], [ -75.160378, 40.080619 ], [ -75.160311, 40.080413 ], [ -75.160196, 40.080031 ], [ -75.160167, 40.079927 ], [ -75.160112, 40.079692 ], [ -75.160138, 40.079187 ], [ -75.160181, 40.078834 ], [ -75.160324, 40.077878 ], [ -75.160328, 40.077822 ], [ -75.160361, 40.077475 ], [ -75.16036, 40.07702 ], [ -75.160287, 40.076186 ], [ -75.160307, 40.075925 ], [ -75.160332, 40.075752 ], [ -75.160426, 40.075306 ], [ -75.159126, 40.07459 ], [ -75.158496, 40.074242 ], [ -75.158411, 40.074197 ], [ -75.157856, 40.073884 ], [ -75.157688, 40.073788 ], [ -75.156655, 40.073203 ], [ -75.156441, 40.073082 ], [ -75.155926, 40.07279 ], [ -75.155443, 40.072519 ], [ -75.154743, 40.072126 ], [ -75.154116, 40.071767 ], [ -75.154069, 40.07174 ], [ -75.154, 40.0717 ], [ -75.153582, 40.071461 ], [ -75.153326, 40.071315 ], [ -75.15294, 40.071093 ], [ -75.152746, 40.070983 ], [ -75.152182, 40.070659 ], [ -75.151881, 40.070491 ], [ -75.151592, 40.07033 ], [ -75.150706, 40.069838 ], [ -75.149985, 40.069437 ], [ -75.14959, 40.06921 ], [ -75.148335, 40.06849 ], [ -75.147646, 40.068096 ], [ -75.146682, 40.067549 ], [ -75.146549, 40.067471 ], [ -75.146324, 40.067335 ], [ -75.145724, 40.066987 ], [ -75.145496, 40.066856 ], [ -75.145219, 40.06669 ], [ -75.144864, 40.066485 ], [ -75.144549, 40.066303 ], [ -75.144128, 40.06607 ], [ -75.143931, 40.065957 ], [ -75.143113, 40.065501 ], [ -75.141876, 40.064788 ], [ -75.141328, 40.064471 ], [ -75.140846, 40.064194 ], [ -75.140718, 40.064122 ], [ -75.139997, 40.063694 ], [ -75.139429, 40.063359 ], [ -75.13946, 40.063206 ], [ -75.139517, 40.062914 ], [ -75.139539, 40.062813 ], [ -75.139704, 40.062014 ], [ -75.139719, 40.061946 ], [ -75.139704, 40.061909 ], [ -75.139688, 40.061876 ], [ -75.139716, 40.061754 ], [ -75.139743, 40.061631 ], [ -75.139783, 40.061445 ], [ -75.139823, 40.06126 ], [ -75.139844, 40.061169 ], [ -75.139862, 40.061083 ], [ -75.139901, 40.060893 ], [ -75.139958, 40.060629 ], [ -75.140076, 40.060108 ], [ -75.140124, 40.059905 ], [ -75.140143, 40.059821 ], [ -75.140162, 40.059737 ], [ -75.140211, 40.059523 ], [ -75.140245, 40.059374 ], [ -75.14026, 40.059295 ], [ -75.140275, 40.059219 ], [ -75.140339, 40.058884 ], [ -75.140365, 40.05874 ], [ -75.140379, 40.058662 ], [ -75.140394, 40.058583 ], [ -75.140486, 40.058218 ], [ -75.140566, 40.057843 ], [ -75.140598, 40.057697 ], [ -75.140678, 40.057334 ], [ -75.140734, 40.057057 ], [ -75.140751, 40.056976 ], [ -75.140779, 40.056839 ], [ -75.14081, 40.056697 ], [ -75.140851, 40.056523 ], [ -75.140892, 40.056349 ], [ -75.140919, 40.056222 ], [ -75.141005, 40.055808 ], [ -75.141112, 40.055343 ], [ -75.14115, 40.05531 ], [ -75.141179, 40.055282 ], [ -75.141193, 40.055233 ], [ -75.141209, 40.055157 ], [ -75.141245, 40.054992 ], [ -75.141292, 40.054778 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307446", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117299, 40.141278 ], [ -75.117368, 40.141172 ], [ -75.117479, 40.141031 ], [ -75.117575, 40.14092 ], [ -75.11788, 40.140602 ], [ -75.117898, 40.140584 ], [ -75.11812, 40.140359 ], [ -75.118575, 40.139902 ], [ -75.118901, 40.1396 ], [ -75.119221, 40.139279 ], [ -75.119549, 40.138951 ], [ -75.119649, 40.138877 ], [ -75.119822, 40.138689 ], [ -75.12012, 40.138366 ], [ -75.120318, 40.138169 ], [ -75.120513, 40.137976 ], [ -75.120714, 40.137775 ], [ -75.121095, 40.137384 ], [ -75.121217, 40.137254 ], [ -75.121444, 40.136996 ], [ -75.121596, 40.136828 ], [ -75.121836, 40.136566 ], [ -75.122281, 40.136095 ], [ -75.122305, 40.135997 ], [ -75.122402, 40.135909 ], [ -75.122655, 40.135647 ], [ -75.12313, 40.135161 ], [ -75.123386, 40.134907 ], [ -75.123576, 40.134719 ], [ -75.12386, 40.134437 ], [ -75.124445, 40.133849 ], [ -75.124664, 40.133625 ], [ -75.12481, 40.133474 ], [ -75.125106, 40.13317 ], [ -75.12527, 40.133004 ], [ -75.125633, 40.132639 ], [ -75.12586, 40.132407 ], [ -75.126629, 40.131623 ], [ -75.127438, 40.130798 ], [ -75.127664, 40.130569 ], [ -75.127871, 40.13036 ], [ -75.128138, 40.130092 ], [ -75.128268, 40.129957 ], [ -75.128884, 40.129325 ], [ -75.12911, 40.129094 ], [ -75.129465, 40.128733 ], [ -75.129681, 40.128515 ], [ -75.129924, 40.128271 ], [ -75.130004, 40.128192 ], [ -75.13031, 40.127888 ], [ -75.130601, 40.127582 ], [ -75.130654, 40.127564 ], [ -75.130683, 40.127537 ], [ -75.130904, 40.127327 ], [ -75.131413, 40.126802 ], [ -75.131754, 40.12644 ], [ -75.131784, 40.126398 ], [ -75.131896, 40.126284 ], [ -75.132432, 40.125739 ], [ -75.132654, 40.125465 ], [ -75.13268, 40.125361 ], [ -75.132728, 40.125299 ], [ -75.132781, 40.125231 ], [ -75.132829, 40.125164 ], [ -75.132883, 40.12506 ], [ -75.132928, 40.124953 ], [ -75.13295, 40.124874 ], [ -75.132953, 40.124862 ], [ -75.132967, 40.124812 ], [ -75.132978, 40.124736 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124638 ], [ -75.13297, 40.124562 ], [ -75.132958, 40.124466 ], [ -75.132933, 40.124331 ], [ -75.132899, 40.124119 ], [ -75.132871, 40.123968 ], [ -75.132837, 40.12377 ], [ -75.132755, 40.123267 ], [ -75.132703, 40.122954 ], [ -75.132672, 40.122785 ], [ -75.132652, 40.122665 ], [ -75.132643, 40.122608 ], [ -75.132641, 40.122541 ], [ -75.13265, 40.12247 ], [ -75.132667, 40.122423 ], [ -75.132708, 40.12233 ], [ -75.132804, 40.122127 ], [ -75.132888, 40.121973 ], [ -75.132985, 40.121799 ], [ -75.133288, 40.121254 ], [ -75.133372, 40.121122 ], [ -75.133691, 40.120751 ], [ -75.133707, 40.120735 ], [ -75.134537, 40.11993 ], [ -75.135013, 40.119447 ], [ -75.136062, 40.118387 ], [ -75.136533, 40.117912 ], [ -75.136937, 40.11753 ], [ -75.137094, 40.117378 ], [ -75.137239, 40.117241 ], [ -75.137704, 40.116748 ], [ -75.138019, 40.116442 ], [ -75.138252, 40.116203 ], [ -75.138658, 40.115787 ], [ -75.139226, 40.115217 ], [ -75.139601, 40.114828 ], [ -75.13974, 40.114685 ], [ -75.140048, 40.114366 ], [ -75.140293, 40.114118 ], [ -75.140737, 40.113668 ], [ -75.14092, 40.113498 ], [ -75.14208, 40.112328 ], [ -75.143358, 40.11102 ], [ -75.143892, 40.110482 ], [ -75.144402, 40.109971 ], [ -75.144419, 40.109953 ], [ -75.144603, 40.109767 ], [ -75.144753, 40.109615 ], [ -75.145004, 40.109362 ], [ -75.145373, 40.108986 ], [ -75.145642, 40.108699 ], [ -75.146116, 40.108225 ], [ -75.146277, 40.108066 ], [ -75.147059, 40.107279 ], [ -75.14728, 40.107054 ], [ -75.147484, 40.106851 ], [ -75.147808, 40.10653 ], [ -75.148735, 40.105613 ], [ -75.149259, 40.105094 ], [ -75.149625, 40.104728 ], [ -75.151094, 40.103249 ], [ -75.151902, 40.102454 ], [ -75.152062, 40.102294 ], [ -75.15212, 40.102229 ], [ -75.15216, 40.102171 ], [ -75.152351, 40.101917 ], [ -75.152363, 40.101901 ], [ -75.152571, 40.10163 ], [ -75.152769, 40.101352 ], [ -75.152866, 40.101219 ], [ -75.152937, 40.101133 ], [ -75.153241, 40.100834 ], [ -75.153508, 40.100573 ], [ -75.153977, 40.100093 ], [ -75.154499, 40.099558 ], [ -75.154994, 40.099066 ], [ -75.155265, 40.098799 ], [ -75.155434, 40.098631 ], [ -75.155663, 40.098401 ], [ -75.155844, 40.098219 ], [ -75.156448, 40.097612 ], [ -75.156762, 40.097304 ], [ -75.157562, 40.096511 ], [ -75.157651, 40.096423 ], [ -75.157821, 40.096255 ], [ -75.158019, 40.09606 ], [ -75.158252, 40.095831 ], [ -75.15851, 40.095579 ], [ -75.158636, 40.095457 ], [ -75.15896, 40.09514 ], [ -75.159494, 40.094607 ], [ -75.160625, 40.093478 ], [ -75.160738, 40.093361 ], [ -75.161059, 40.093045 ], [ -75.161144, 40.093015 ], [ -75.161182, 40.092979 ], [ -75.161221, 40.092936 ], [ -75.161314, 40.092832 ], [ -75.161414, 40.09272 ], [ -75.16165, 40.092478 ], [ -75.162038, 40.092114 ], [ -75.162099, 40.092052 ], [ -75.162283, 40.091834 ], [ -75.162413, 40.091681 ], [ -75.162874, 40.091145 ], [ -75.163129, 40.090848 ], [ -75.163271, 40.090601 ], [ -75.163338, 40.090379 ], [ -75.163432, 40.090036 ], [ -75.163463, 40.089793 ], [ -75.163496, 40.089611 ], [ -75.163508, 40.089366 ], [ -75.163549, 40.089033 ], [ -75.163558, 40.089 ], [ -75.16359, 40.088895 ], [ -75.163635, 40.088704 ], [ -75.163651, 40.08865 ], [ -75.163669, 40.08859 ], [ -75.163731, 40.088325 ], [ -75.163772, 40.088206 ], [ -75.163836, 40.088077 ], [ -75.163854, 40.088044 ], [ -75.163889, 40.087982 ], [ -75.163919, 40.08793 ], [ -75.163956, 40.08788 ], [ -75.164056, 40.087706 ], [ -75.164228, 40.087514 ], [ -75.164286, 40.087457 ], [ -75.164542, 40.087253 ], [ -75.164738, 40.08712 ], [ -75.164965, 40.087022 ], [ -75.165092, 40.086965 ], [ -75.165545, 40.086742 ], [ -75.166029, 40.086538 ], [ -75.167059, 40.086135 ], [ -75.167099, 40.086115 ], [ -75.167761, 40.085783 ], [ -75.168161, 40.085592 ], [ -75.168286, 40.085505 ], [ -75.168516, 40.085284 ], [ -75.16857, 40.085231 ], [ -75.168779, 40.085029 ], [ -75.169063, 40.084736 ], [ -75.169351, 40.084439 ], [ -75.169803, 40.083985 ], [ -75.170442, 40.083307 ], [ -75.170868, 40.082871 ], [ -75.17115, 40.082581 ], [ -75.171235, 40.082488 ], [ -75.17134, 40.082375 ], [ -75.171556, 40.082136 ], [ -75.171705, 40.081959 ], [ -75.171708, 40.081886 ], [ -75.171714, 40.081851 ], [ -75.171716, 40.08181 ], [ -75.171597, 40.081735 ], [ -75.171376, 40.081604 ], [ -75.170726, 40.081197 ], [ -75.170439, 40.081017 ], [ -75.169985, 40.080732 ], [ -75.168315, 40.079758 ], [ -75.167709, 40.079406 ], [ -75.166569, 40.078731 ], [ -75.166169, 40.078517 ], [ -75.166076, 40.078505 ], [ -75.165781, 40.078317 ], [ -75.165014, 40.077867 ], [ -75.163904, 40.077233 ], [ -75.16339, 40.076949 ], [ -75.162503, 40.076447 ], [ -75.161959, 40.076127 ], [ -75.161542, 40.075902 ], [ -75.161289, 40.075758 ], [ -75.16097, 40.075591 ], [ -75.160426, 40.075306 ], [ -75.159126, 40.07459 ], [ -75.158496, 40.074242 ], [ -75.158411, 40.074197 ], [ -75.157856, 40.073884 ], [ -75.157688, 40.073788 ], [ -75.156655, 40.073203 ], [ -75.156441, 40.073082 ], [ -75.155926, 40.07279 ], [ -75.155443, 40.072519 ], [ -75.154743, 40.072126 ], [ -75.154116, 40.071767 ], [ -75.154069, 40.07174 ], [ -75.154, 40.0717 ], [ -75.153582, 40.071461 ], [ -75.153326, 40.071315 ], [ -75.15294, 40.071093 ], [ -75.152746, 40.070983 ], [ -75.152182, 40.070659 ], [ -75.151881, 40.070491 ], [ -75.151592, 40.07033 ], [ -75.150706, 40.069838 ], [ -75.149985, 40.069437 ], [ -75.14959, 40.06921 ], [ -75.148335, 40.06849 ], [ -75.147646, 40.068096 ], [ -75.146682, 40.067549 ], [ -75.146549, 40.067471 ], [ -75.146324, 40.067335 ], [ -75.145724, 40.066987 ], [ -75.145496, 40.066856 ], [ -75.145219, 40.06669 ], [ -75.144864, 40.066485 ], [ -75.144549, 40.066303 ], [ -75.144128, 40.06607 ], [ -75.143931, 40.065957 ], [ -75.143113, 40.065501 ], [ -75.141876, 40.064788 ], [ -75.141328, 40.064471 ], [ -75.140846, 40.064194 ], [ -75.140718, 40.064122 ], [ -75.139997, 40.063694 ], [ -75.139429, 40.063359 ], [ -75.13946, 40.063206 ], [ -75.139517, 40.062914 ], [ -75.139539, 40.062813 ], [ -75.139704, 40.062014 ], [ -75.139719, 40.061946 ], [ -75.139704, 40.061909 ], [ -75.139688, 40.061876 ], [ -75.139716, 40.061754 ], [ -75.139743, 40.061631 ], [ -75.139783, 40.061445 ], [ -75.139823, 40.06126 ], [ -75.139844, 40.061169 ], [ -75.139862, 40.061083 ], [ -75.139901, 40.060893 ], [ -75.139958, 40.060629 ], [ -75.140076, 40.060108 ], [ -75.140124, 40.059905 ], [ -75.140143, 40.059821 ], [ -75.140162, 40.059737 ], [ -75.140211, 40.059523 ], [ -75.140245, 40.059374 ], [ -75.14026, 40.059295 ], [ -75.140275, 40.059219 ], [ -75.140339, 40.058884 ], [ -75.140365, 40.05874 ], [ -75.140379, 40.058662 ], [ -75.140394, 40.058583 ], [ -75.140486, 40.058218 ], [ -75.140566, 40.057843 ], [ -75.140598, 40.057697 ], [ -75.140678, 40.057334 ], [ -75.140734, 40.057057 ], [ -75.140751, 40.056976 ], [ -75.140779, 40.056839 ], [ -75.14081, 40.056697 ], [ -75.140851, 40.056523 ], [ -75.140892, 40.056349 ], [ -75.140919, 40.056222 ], [ -75.141005, 40.055808 ], [ -75.141112, 40.055343 ], [ -75.14115, 40.05531 ], [ -75.141179, 40.055282 ], [ -75.141193, 40.055233 ], [ -75.141209, 40.055157 ], [ -75.141245, 40.054992 ], [ -75.141292, 40.054778 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307447", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.081769, 40.19466 ], [ -75.082954, 40.195333 ], [ -75.083043, 40.195391 ], [ -75.083128, 40.195446 ], [ -75.083204, 40.195501 ], [ -75.083248, 40.19553 ], [ -75.083311, 40.195585 ], [ -75.08337, 40.19564 ], [ -75.083438, 40.195707 ], [ -75.08361, 40.19587 ], [ -75.083704, 40.195958 ], [ -75.083602, 40.19602 ], [ -75.083411, 40.196135 ], [ -75.083279, 40.196203 ], [ -75.083212, 40.196239 ], [ -75.083131, 40.196276 ], [ -75.083119, 40.196282 ], [ -75.082611, 40.196529 ], [ -75.082261, 40.196712 ], [ -75.082702, 40.196937 ], [ -75.082927, 40.197069 ], [ -75.083331, 40.197304 ], [ -75.083508, 40.197407 ], [ -75.083773, 40.197562 ], [ -75.084555, 40.197994 ], [ -75.085625, 40.198626 ], [ -75.085808, 40.198719 ], [ -75.086528, 40.199121 ], [ -75.087221, 40.199509 ], [ -75.088092, 40.200011 ], [ -75.088519, 40.200258 ], [ -75.089098, 40.200592 ], [ -75.089297, 40.2007 ], [ -75.089641, 40.200903 ], [ -75.090242, 40.201257 ], [ -75.091327, 40.201898 ], [ -75.092103, 40.202331 ], [ -75.092271, 40.202433 ], [ -75.093119, 40.202912 ], [ -75.093485, 40.203119 ], [ -75.094262, 40.203559 ], [ -75.09433, 40.203598 ], [ -75.094337, 40.203602 ], [ -75.094966, 40.203959 ], [ -75.095792, 40.204429 ], [ -75.096174, 40.204643 ], [ -75.096284, 40.204704 ], [ -75.096937, 40.205079 ], [ -75.098337, 40.205867 ], [ -75.098455, 40.20594 ], [ -75.098494, 40.206014 ], [ -75.098533, 40.20604 ], [ -75.098665, 40.206116 ], [ -75.098688, 40.20613 ], [ -75.098847, 40.206228 ], [ -75.099097, 40.206382 ], [ -75.099179, 40.206431 ], [ -75.09933, 40.206523 ], [ -75.099531, 40.20663 ], [ -75.099639, 40.206691 ], [ -75.09975, 40.206762 ], [ -75.099905, 40.206846 ], [ -75.099925, 40.206725 ], [ -75.099971, 40.206475 ], [ -75.099992, 40.20635 ], [ -75.100107, 40.205665 ], [ -75.100149, 40.205416 ], [ -75.100087, 40.205303 ], [ -75.100176, 40.204864 ], [ -75.100281, 40.204346 ], [ -75.100316, 40.20417 ], [ -75.100403, 40.203705 ], [ -75.100431, 40.203536 ], [ -75.100459, 40.203371 ], [ -75.100535, 40.202917 ], [ -75.100675, 40.202221 ], [ -75.100694, 40.202156 ], [ -75.10077, 40.201729 ], [ -75.100855, 40.20125 ], [ -75.100883, 40.201087 ], [ -75.10092, 40.200889 ], [ -75.100987, 40.200561 ], [ -75.101065, 40.200186 ], [ -75.101081, 40.200114 ], [ -75.101109, 40.199937 ], [ -75.101321, 40.19889 ], [ -75.101374, 40.198591 ], [ -75.101413, 40.198397 ], [ -75.101471, 40.198081 ], [ -75.101533, 40.19778 ], [ -75.10168, 40.197008 ], [ -75.101846, 40.196226 ], [ -75.101872, 40.196049 ], [ -75.101998, 40.19542 ], [ -75.102148, 40.194631 ], [ -75.102261, 40.194007 ], [ -75.102301, 40.193836 ], [ -75.102344, 40.193594 ], [ -75.102395, 40.193325 ], [ -75.10254, 40.192654 ], [ -75.102584, 40.19244 ], [ -75.102609, 40.19232 ], [ -75.102663, 40.192083 ], [ -75.102676, 40.192039 ], [ -75.102686, 40.191984 ], [ -75.102754, 40.191647 ], [ -75.102769, 40.191571 ], [ -75.10279, 40.191449 ], [ -75.102826, 40.191294 ], [ -75.102873, 40.191016 ], [ -75.102918, 40.190788 ], [ -75.102957, 40.190594 ], [ -75.103026, 40.190297 ], [ -75.103086, 40.190067 ], [ -75.103124, 40.189967 ], [ -75.103148, 40.18989 ], [ -75.103196, 40.189683 ], [ -75.103251, 40.189438 ], [ -75.103317, 40.18907 ], [ -75.103341, 40.188949 ], [ -75.103353, 40.188889 ], [ -75.103369, 40.188798 ], [ -75.1035, 40.188297 ], [ -75.103657, 40.187625 ], [ -75.103814, 40.186966 ], [ -75.103932, 40.186482 ], [ -75.104034, 40.186084 ], [ -75.104244, 40.185207 ], [ -75.104345, 40.184782 ], [ -75.104527, 40.184046 ], [ -75.104551, 40.183957 ], [ -75.104665, 40.183478 ], [ -75.10472, 40.183247 ], [ -75.104798, 40.182918 ], [ -75.104913, 40.182386 ], [ -75.10495, 40.182217 ], [ -75.105086, 40.18161 ], [ -75.105122, 40.181446 ], [ -75.105165, 40.181247 ], [ -75.105204, 40.181071 ], [ -75.105319, 40.18056 ], [ -75.105359, 40.18037 ], [ -75.105412, 40.180174 ], [ -75.105442, 40.180053 ], [ -75.105454, 40.180005 ], [ -75.105567, 40.179567 ], [ -75.105643, 40.179272 ], [ -75.105663, 40.179187 ], [ -75.105736, 40.17894 ], [ -75.105781, 40.178782 ], [ -75.105835, 40.178601 ], [ -75.105903, 40.178369 ], [ -75.106017, 40.177949 ], [ -75.106042, 40.177862 ], [ -75.106098, 40.177644 ], [ -75.106192, 40.17727 ], [ -75.106284, 40.176926 ], [ -75.106338, 40.176724 ], [ -75.106428, 40.17639 ], [ -75.106641, 40.175557 ], [ -75.106678, 40.175404 ], [ -75.106736, 40.175187 ], [ -75.106746, 40.175151 ], [ -75.106814, 40.174901 ], [ -75.106895, 40.174603 ], [ -75.106938, 40.174444 ], [ -75.106984, 40.174276 ], [ -75.107008, 40.174219 ], [ -75.107051, 40.174141 ], [ -75.107097, 40.174064 ], [ -75.107199, 40.173926 ], [ -75.107312, 40.173794 ], [ -75.107373, 40.17373 ], [ -75.107608, 40.173509 ], [ -75.107755, 40.17337 ], [ -75.108054, 40.173089 ], [ -75.108109, 40.173041 ], [ -75.108413, 40.172758 ], [ -75.108587, 40.172597 ], [ -75.108849, 40.172353 ], [ -75.109189, 40.172038 ], [ -75.109427, 40.17181 ], [ -75.10971, 40.171555 ], [ -75.109847, 40.171436 ], [ -75.110055, 40.171236 ], [ -75.110239, 40.171054 ], [ -75.110301, 40.170981 ], [ -75.110351, 40.170919 ], [ -75.110395, 40.170864 ], [ -75.110443, 40.170786 ], [ -75.110467, 40.170739 ], [ -75.11049, 40.170693 ], [ -75.110513, 40.170639 ], [ -75.110537, 40.170581 ], [ -75.110551, 40.170529 ], [ -75.110564, 40.170482 ], [ -75.110579, 40.170427 ], [ -75.110586, 40.170386 ], [ -75.110596, 40.170333 ], [ -75.110603, 40.170279 ], [ -75.110606, 40.170217 ], [ -75.110607, 40.170189 ], [ -75.110609, 40.170147 ], [ -75.110607, 40.170048 ], [ -75.110601, 40.169887 ], [ -75.110587, 40.169751 ], [ -75.11058, 40.169674 ], [ -75.110568, 40.169575 ], [ -75.110557, 40.169496 ], [ -75.110545, 40.169419 ], [ -75.110535, 40.169363 ], [ -75.110522, 40.169295 ], [ -75.110498, 40.169197 ], [ -75.110464, 40.169014 ], [ -75.110379, 40.168716 ], [ -75.110321, 40.168473 ], [ -75.110238, 40.168141 ], [ -75.110201, 40.167961 ], [ -75.110187, 40.16782 ], [ -75.110185, 40.167729 ], [ -75.11019, 40.167671 ], [ -75.110199, 40.16758 ], [ -75.110238, 40.167369 ], [ -75.110262, 40.167245 ], [ -75.11031, 40.167038 ], [ -75.110346, 40.166888 ], [ -75.110413, 40.166563 ], [ -75.110481, 40.166188 ], [ -75.11052, 40.165983 ], [ -75.110688, 40.165239 ], [ -75.110715, 40.165124 ], [ -75.110822, 40.164666 ], [ -75.11103, 40.163769 ], [ -75.111074, 40.163572 ], [ -75.111117, 40.163382 ], [ -75.111187, 40.163147 ], [ -75.111225, 40.163005 ], [ -75.111296, 40.162705 ], [ -75.111316, 40.162621 ], [ -75.111326, 40.162571 ], [ -75.111447, 40.162036 ], [ -75.111468, 40.161929 ], [ -75.111548, 40.161591 ], [ -75.111639, 40.16116 ], [ -75.111713, 40.160811 ], [ -75.111757, 40.160613 ], [ -75.11177, 40.160544 ], [ -75.111806, 40.160275 ], [ -75.111866, 40.159835 ], [ -75.111906, 40.159387 ], [ -75.111906, 40.159369 ], [ -75.111917, 40.159246 ], [ -75.111956, 40.158982 ], [ -75.112008, 40.158549 ], [ -75.112072, 40.158192 ], [ -75.112495, 40.156346 ], [ -75.112881, 40.154637 ], [ -75.113051, 40.153966 ], [ -75.113256, 40.153295 ], [ -75.113456, 40.152628 ], [ -75.113676, 40.151953 ], [ -75.113881, 40.151298 ], [ -75.114223, 40.150366 ], [ -75.114322, 40.150163 ], [ -75.114396, 40.150029 ], [ -75.114516, 40.149823 ], [ -75.114651, 40.149633 ], [ -75.115023, 40.149072 ], [ -75.115181, 40.148782 ], [ -75.115269, 40.14861 ], [ -75.115338, 40.148477 ], [ -75.115355, 40.148435 ], [ -75.115459, 40.148192 ], [ -75.115524, 40.14805 ], [ -75.115591, 40.147848 ], [ -75.115614, 40.147777 ], [ -75.11566, 40.147622 ], [ -75.11567, 40.147589 ], [ -75.115706, 40.147442 ], [ -75.115723, 40.147376 ], [ -75.115797, 40.147053 ], [ -75.115813, 40.146871 ], [ -75.115935, 40.146694 ], [ -75.115948, 40.146538 ], [ -75.115952, 40.146493 ], [ -75.11598, 40.146308 ], [ -75.116007, 40.146223 ], [ -75.116035, 40.146177 ], [ -75.11607, 40.146136 ], [ -75.116106, 40.146099 ], [ -75.116149, 40.146066 ], [ -75.1162, 40.146038 ], [ -75.116245, 40.146015 ], [ -75.116294, 40.145999 ], [ -75.116711, 40.145852 ], [ -75.116961, 40.145773 ], [ -75.11721, 40.145669 ], [ -75.116996, 40.145418 ], [ -75.116961, 40.145378 ], [ -75.116957, 40.145325 ], [ -75.116891, 40.14523 ], [ -75.11679, 40.145106 ], [ -75.116554, 40.144874 ], [ -75.116506, 40.144828 ], [ -75.116461, 40.144788 ], [ -75.116385, 40.144718 ], [ -75.116272, 40.144618 ], [ -75.116239, 40.144583 ], [ -75.116198, 40.144527 ], [ -75.116164, 40.144459 ], [ -75.116137, 40.144404 ], [ -75.116091, 40.144304 ], [ -75.116059, 40.144206 ], [ -75.116035, 40.144121 ], [ -75.11598, 40.143988 ], [ -75.115952, 40.143913 ], [ -75.115914, 40.143842 ], [ -75.115861, 40.143778 ], [ -75.115799, 40.143723 ], [ -75.115755, 40.143696 ], [ -75.11571, 40.143668 ], [ -75.115663, 40.143637 ], [ -75.115824, 40.143379 ], [ -75.11599, 40.143106 ], [ -75.116024, 40.143049 ], [ -75.116272, 40.142649 ], [ -75.116783, 40.141898 ], [ -75.116865, 40.141788 ], [ -75.116936, 40.141692 ], [ -75.117025, 40.141574 ], [ -75.117099, 40.141541 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117299, 40.141278 ], [ -75.117368, 40.141172 ], [ -75.117479, 40.141031 ], [ -75.117575, 40.14092 ], [ -75.11788, 40.140602 ], [ -75.117898, 40.140584 ], [ -75.11812, 40.140359 ], [ -75.118575, 40.139902 ], [ -75.118901, 40.1396 ], [ -75.119221, 40.139279 ], [ -75.119549, 40.138951 ], [ -75.119649, 40.138877 ], [ -75.119822, 40.138689 ], [ -75.12012, 40.138366 ], [ -75.120318, 40.138169 ], [ -75.120513, 40.137976 ], [ -75.120714, 40.137775 ], [ -75.121095, 40.137384 ], [ -75.121217, 40.137254 ], [ -75.121444, 40.136996 ], [ -75.121596, 40.136828 ], [ -75.121836, 40.136566 ], [ -75.122281, 40.136095 ], [ -75.122305, 40.135997 ], [ -75.122402, 40.135909 ], [ -75.122655, 40.135647 ], [ -75.12313, 40.135161 ], [ -75.123386, 40.134907 ], [ -75.123576, 40.134719 ], [ -75.12386, 40.134437 ], [ -75.124445, 40.133849 ], [ -75.124664, 40.133625 ], [ -75.12481, 40.133474 ], [ -75.125106, 40.13317 ], [ -75.12527, 40.133004 ], [ -75.125633, 40.132639 ], [ -75.12586, 40.132407 ], [ -75.126629, 40.131623 ], [ -75.127438, 40.130798 ], [ -75.127664, 40.130569 ], [ -75.127871, 40.13036 ], [ -75.128138, 40.130092 ], [ -75.128268, 40.129957 ], [ -75.128884, 40.129325 ], [ -75.12911, 40.129094 ], [ -75.129465, 40.128733 ], [ -75.129681, 40.128515 ], [ -75.129924, 40.128271 ], [ -75.130004, 40.128192 ], [ -75.13031, 40.127888 ], [ -75.130601, 40.127582 ], [ -75.130654, 40.127564 ], [ -75.130683, 40.127537 ], [ -75.130904, 40.127327 ], [ -75.131413, 40.126802 ], [ -75.131754, 40.12644 ], [ -75.131784, 40.126398 ], [ -75.131896, 40.126284 ], [ -75.132432, 40.125739 ], [ -75.132654, 40.125465 ], [ -75.13268, 40.125361 ], [ -75.132728, 40.125299 ], [ -75.132781, 40.125231 ], [ -75.132829, 40.125164 ], [ -75.132883, 40.12506 ], [ -75.132928, 40.124953 ], [ -75.13295, 40.124874 ], [ -75.132953, 40.124862 ], [ -75.132967, 40.124812 ], [ -75.132978, 40.124736 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124638 ], [ -75.13297, 40.124562 ], [ -75.132958, 40.124466 ], [ -75.132933, 40.124331 ], [ -75.132899, 40.124119 ], [ -75.132871, 40.123968 ], [ -75.132837, 40.12377 ], [ -75.132755, 40.123267 ], [ -75.132703, 40.122954 ], [ -75.132672, 40.122785 ], [ -75.132652, 40.122665 ], [ -75.132643, 40.122608 ], [ -75.132641, 40.122541 ], [ -75.13265, 40.12247 ], [ -75.132667, 40.122423 ], [ -75.132708, 40.12233 ], [ -75.132804, 40.122127 ], [ -75.132888, 40.121973 ], [ -75.132985, 40.121799 ], [ -75.133288, 40.121254 ], [ -75.133372, 40.121122 ], [ -75.133691, 40.120751 ], [ -75.133707, 40.120735 ], [ -75.134537, 40.11993 ], [ -75.135013, 40.119447 ], [ -75.136062, 40.118387 ], [ -75.136533, 40.117912 ], [ -75.136937, 40.11753 ], [ -75.137094, 40.117378 ], [ -75.137239, 40.117241 ], [ -75.137704, 40.116748 ], [ -75.138019, 40.116442 ], [ -75.138252, 40.116203 ], [ -75.138658, 40.115787 ], [ -75.139226, 40.115217 ], [ -75.139601, 40.114828 ], [ -75.13974, 40.114685 ], [ -75.140048, 40.114366 ], [ -75.140293, 40.114118 ], [ -75.140737, 40.113668 ], [ -75.14092, 40.113498 ], [ -75.14208, 40.112328 ], [ -75.143358, 40.11102 ], [ -75.143892, 40.110482 ], [ -75.144402, 40.109971 ], [ -75.144419, 40.109953 ], [ -75.144603, 40.109767 ], [ -75.144753, 40.109615 ], [ -75.145004, 40.109362 ], [ -75.145373, 40.108986 ], [ -75.145642, 40.108699 ], [ -75.146116, 40.108225 ], [ -75.146277, 40.108066 ], [ -75.147059, 40.107279 ], [ -75.14728, 40.107054 ], [ -75.147484, 40.106851 ], [ -75.147808, 40.10653 ], [ -75.148735, 40.105613 ], [ -75.149259, 40.105094 ], [ -75.149625, 40.104728 ], [ -75.151094, 40.103249 ], [ -75.151902, 40.102454 ], [ -75.152062, 40.102294 ], [ -75.15212, 40.102229 ], [ -75.15216, 40.102171 ], [ -75.152351, 40.101917 ], [ -75.152363, 40.101901 ], [ -75.152571, 40.10163 ], [ -75.152769, 40.101352 ], [ -75.152866, 40.101219 ], [ -75.152937, 40.101133 ], [ -75.153241, 40.100834 ], [ -75.153508, 40.100573 ], [ -75.153977, 40.100093 ], [ -75.154499, 40.099558 ], [ -75.154994, 40.099066 ], [ -75.155265, 40.098799 ], [ -75.155434, 40.098631 ], [ -75.155663, 40.098401 ], [ -75.155844, 40.098219 ], [ -75.156448, 40.097612 ], [ -75.156762, 40.097304 ], [ -75.157562, 40.096511 ], [ -75.157651, 40.096423 ], [ -75.157821, 40.096255 ], [ -75.158019, 40.09606 ], [ -75.158252, 40.095831 ], [ -75.15851, 40.095579 ], [ -75.158636, 40.095457 ], [ -75.15896, 40.09514 ], [ -75.159494, 40.094607 ], [ -75.160625, 40.093478 ], [ -75.160738, 40.093361 ], [ -75.161059, 40.093045 ], [ -75.161144, 40.093015 ], [ -75.161182, 40.092979 ], [ -75.161221, 40.092936 ], [ -75.161314, 40.092832 ], [ -75.161414, 40.09272 ], [ -75.16165, 40.092478 ], [ -75.162038, 40.092114 ], [ -75.162099, 40.092052 ], [ -75.162283, 40.091834 ], [ -75.162413, 40.091681 ], [ -75.162874, 40.091145 ], [ -75.163129, 40.090848 ], [ -75.163271, 40.090601 ], [ -75.163338, 40.090379 ], [ -75.163432, 40.090036 ], [ -75.163463, 40.089793 ], [ -75.163496, 40.089611 ], [ -75.163508, 40.089366 ], [ -75.163549, 40.089033 ], [ -75.163558, 40.089 ], [ -75.16359, 40.088895 ], [ -75.163635, 40.088704 ], [ -75.163651, 40.08865 ], [ -75.163669, 40.08859 ], [ -75.163731, 40.088325 ], [ -75.163772, 40.088206 ], [ -75.163836, 40.088077 ], [ -75.163854, 40.088044 ], [ -75.163889, 40.087982 ], [ -75.163919, 40.08793 ], [ -75.163956, 40.08788 ], [ -75.164056, 40.087706 ], [ -75.164228, 40.087514 ], [ -75.164286, 40.087457 ], [ -75.164542, 40.087253 ], [ -75.164738, 40.08712 ], [ -75.164965, 40.087022 ], [ -75.165092, 40.086965 ], [ -75.165545, 40.086742 ], [ -75.166029, 40.086538 ], [ -75.167059, 40.086135 ], [ -75.167099, 40.086115 ], [ -75.167761, 40.085783 ], [ -75.168161, 40.085592 ], [ -75.168286, 40.085505 ], [ -75.168516, 40.085284 ], [ -75.16857, 40.085231 ], [ -75.168779, 40.085029 ], [ -75.169063, 40.084736 ], [ -75.169351, 40.084439 ], [ -75.169803, 40.083985 ], [ -75.170442, 40.083307 ], [ -75.170868, 40.082871 ], [ -75.17115, 40.082581 ], [ -75.171235, 40.082488 ], [ -75.17134, 40.082375 ], [ -75.171556, 40.082136 ], [ -75.171705, 40.081959 ], [ -75.171708, 40.081886 ], [ -75.171714, 40.081851 ], [ -75.171716, 40.08181 ], [ -75.171597, 40.081735 ], [ -75.171376, 40.081604 ], [ -75.170726, 40.081197 ], [ -75.170439, 40.081017 ], [ -75.169985, 40.080732 ], [ -75.168315, 40.079758 ], [ -75.167709, 40.079406 ], [ -75.166569, 40.078731 ], [ -75.166169, 40.078517 ], [ -75.166076, 40.078505 ], [ -75.165781, 40.078317 ], [ -75.165014, 40.077867 ], [ -75.163904, 40.077233 ], [ -75.16339, 40.076949 ], [ -75.162503, 40.076447 ], [ -75.161959, 40.076127 ], [ -75.161542, 40.075902 ], [ -75.161289, 40.075758 ], [ -75.16097, 40.075591 ], [ -75.160426, 40.075306 ], [ -75.159126, 40.07459 ], [ -75.158496, 40.074242 ], [ -75.158411, 40.074197 ], [ -75.157856, 40.073884 ], [ -75.157688, 40.073788 ], [ -75.156655, 40.073203 ], [ -75.156441, 40.073082 ], [ -75.155926, 40.07279 ], [ -75.155443, 40.072519 ], [ -75.154743, 40.072126 ], [ -75.154116, 40.071767 ], [ -75.154069, 40.07174 ], [ -75.154, 40.0717 ], [ -75.153582, 40.071461 ], [ -75.153326, 40.071315 ], [ -75.15294, 40.071093 ], [ -75.152746, 40.070983 ], [ -75.152182, 40.070659 ], [ -75.151881, 40.070491 ], [ -75.151592, 40.07033 ], [ -75.150706, 40.069838 ], [ -75.149985, 40.069437 ], [ -75.14959, 40.06921 ], [ -75.148335, 40.06849 ], [ -75.147646, 40.068096 ], [ -75.146682, 40.067549 ], [ -75.146549, 40.067471 ], [ -75.146324, 40.067335 ], [ -75.145724, 40.066987 ], [ -75.145496, 40.066856 ], [ -75.145219, 40.06669 ], [ -75.144864, 40.066485 ], [ -75.144549, 40.066303 ], [ -75.144128, 40.06607 ], [ -75.143931, 40.065957 ], [ -75.143113, 40.065501 ], [ -75.141876, 40.064788 ], [ -75.141328, 40.064471 ], [ -75.140846, 40.064194 ], [ -75.140718, 40.064122 ], [ -75.139997, 40.063694 ], [ -75.139429, 40.063359 ], [ -75.13946, 40.063206 ], [ -75.139517, 40.062914 ], [ -75.139539, 40.062813 ], [ -75.139704, 40.062014 ], [ -75.139719, 40.061946 ], [ -75.139704, 40.061909 ], [ -75.139688, 40.061876 ], [ -75.139716, 40.061754 ], [ -75.139743, 40.061631 ], [ -75.139783, 40.061445 ], [ -75.139823, 40.06126 ], [ -75.139844, 40.061169 ], [ -75.139862, 40.061083 ], [ -75.139901, 40.060893 ], [ -75.139958, 40.060629 ], [ -75.140076, 40.060108 ], [ -75.140124, 40.059905 ], [ -75.140143, 40.059821 ], [ -75.140162, 40.059737 ], [ -75.140211, 40.059523 ], [ -75.140245, 40.059374 ], [ -75.14026, 40.059295 ], [ -75.140275, 40.059219 ], [ -75.140339, 40.058884 ], [ -75.140365, 40.05874 ], [ -75.140379, 40.058662 ], [ -75.140394, 40.058583 ], [ -75.140486, 40.058218 ], [ -75.140566, 40.057843 ], [ -75.140598, 40.057697 ], [ -75.140678, 40.057334 ], [ -75.140734, 40.057057 ], [ -75.140751, 40.056976 ], [ -75.140779, 40.056839 ], [ -75.14081, 40.056697 ], [ -75.140851, 40.056523 ], [ -75.140892, 40.056349 ], [ -75.140919, 40.056222 ], [ -75.141005, 40.055808 ], [ -75.141112, 40.055343 ], [ -75.14115, 40.05531 ], [ -75.141179, 40.055282 ], [ -75.141193, 40.055233 ], [ -75.141209, 40.055157 ], [ -75.141245, 40.054992 ], [ -75.141292, 40.054778 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307448", "route_id": "22" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.091126, 40.187544 ], [ -75.090432, 40.187152 ], [ -75.09033, 40.18709 ], [ -75.090133, 40.186948 ], [ -75.08989, 40.186762 ], [ -75.089765, 40.186634 ], [ -75.08964, 40.186475 ], [ -75.089584, 40.186386 ], [ -75.089299, 40.186491 ], [ -75.088811, 40.186721 ], [ -75.088281, 40.186972 ], [ -75.087966, 40.187118 ], [ -75.08773, 40.187251 ], [ -75.087318, 40.187512 ], [ -75.08668, 40.187835 ], [ -75.086022, 40.18808 ], [ -75.086365, 40.18879 ], [ -75.086478, 40.189012 ], [ -75.086503, 40.189062 ], [ -75.086829, 40.189504 ], [ -75.08704, 40.189735 ], [ -75.087366, 40.190019 ], [ -75.087425, 40.190058 ], [ -75.087909, 40.190384 ], [ -75.08813, 40.190532 ], [ -75.088426, 40.190706 ], [ -75.088802, 40.190933 ], [ -75.088526, 40.191203 ], [ -75.087867, 40.191879 ], [ -75.087551, 40.192196 ], [ -75.087543, 40.192205 ], [ -75.087004, 40.192745 ], [ -75.086455, 40.193317 ], [ -75.08579, 40.194018 ], [ -75.085774, 40.194034 ], [ -75.085684, 40.194121 ], [ -75.085459, 40.194343 ], [ -75.085078, 40.194717 ], [ -75.08457, 40.195234 ], [ -75.084311, 40.195488 ], [ -75.084259, 40.195534 ], [ -75.084221, 40.195568 ], [ -75.084162, 40.195622 ], [ -75.084085, 40.195684 ], [ -75.083992, 40.195758 ], [ -75.083914, 40.195817 ], [ -75.083821, 40.195882 ], [ -75.083704, 40.195958 ], [ -75.083602, 40.19602 ], [ -75.083411, 40.196135 ], [ -75.083279, 40.196203 ], [ -75.083212, 40.196239 ], [ -75.083131, 40.196276 ], [ -75.083119, 40.196282 ], [ -75.082611, 40.196529 ], [ -75.082261, 40.196712 ], [ -75.081688, 40.196405 ], [ -75.081538, 40.196319 ], [ -75.081443, 40.196264 ], [ -75.080277, 40.195603 ], [ -75.079768, 40.195315 ], [ -75.080835, 40.194083 ], [ -75.081769, 40.19466 ], [ -75.082954, 40.195333 ], [ -75.083043, 40.195391 ], [ -75.083128, 40.195446 ], [ -75.083204, 40.195501 ], [ -75.083248, 40.19553 ], [ -75.083311, 40.195585 ], [ -75.08337, 40.19564 ], [ -75.083438, 40.195707 ], [ -75.08361, 40.19587 ], [ -75.083704, 40.195958 ], [ -75.083602, 40.19602 ], [ -75.083411, 40.196135 ], [ -75.083279, 40.196203 ], [ -75.083212, 40.196239 ], [ -75.083131, 40.196276 ], [ -75.083119, 40.196282 ], [ -75.082611, 40.196529 ], [ -75.082261, 40.196712 ], [ -75.082702, 40.196937 ], [ -75.082927, 40.197069 ], [ -75.083331, 40.197304 ], [ -75.083508, 40.197407 ], [ -75.083773, 40.197562 ], [ -75.084555, 40.197994 ], [ -75.085625, 40.198626 ], [ -75.085808, 40.198719 ], [ -75.086528, 40.199121 ], [ -75.087221, 40.199509 ], [ -75.088092, 40.200011 ], [ -75.088519, 40.200258 ], [ -75.089098, 40.200592 ], [ -75.089297, 40.2007 ], [ -75.089641, 40.200903 ], [ -75.090242, 40.201257 ], [ -75.091327, 40.201898 ], [ -75.092103, 40.202331 ], [ -75.092271, 40.202433 ], [ -75.093119, 40.202912 ], [ -75.093485, 40.203119 ], [ -75.094262, 40.203559 ], [ -75.09433, 40.203598 ], [ -75.094337, 40.203602 ], [ -75.094966, 40.203959 ], [ -75.095792, 40.204429 ], [ -75.096174, 40.204643 ], [ -75.096284, 40.204704 ], [ -75.096937, 40.205079 ], [ -75.098337, 40.205867 ], [ -75.098455, 40.20594 ], [ -75.098494, 40.206014 ], [ -75.098533, 40.20604 ], [ -75.098665, 40.206116 ], [ -75.098688, 40.20613 ], [ -75.098847, 40.206228 ], [ -75.099097, 40.206382 ], [ -75.099179, 40.206431 ], [ -75.09933, 40.206523 ], [ -75.099531, 40.20663 ], [ -75.099639, 40.206691 ], [ -75.09975, 40.206762 ], [ -75.099905, 40.206846 ], [ -75.099925, 40.206725 ], [ -75.099971, 40.206475 ], [ -75.099992, 40.20635 ], [ -75.100107, 40.205665 ], [ -75.100149, 40.205416 ], [ -75.100087, 40.205303 ], [ -75.100176, 40.204864 ], [ -75.100281, 40.204346 ], [ -75.100316, 40.20417 ], [ -75.100403, 40.203705 ], [ -75.100431, 40.203536 ], [ -75.100459, 40.203371 ], [ -75.100535, 40.202917 ], [ -75.100675, 40.202221 ], [ -75.100694, 40.202156 ], [ -75.10077, 40.201729 ], [ -75.100855, 40.20125 ], [ -75.100883, 40.201087 ], [ -75.10092, 40.200889 ], [ -75.100987, 40.200561 ], [ -75.101065, 40.200186 ], [ -75.101081, 40.200114 ], [ -75.101109, 40.199937 ], [ -75.101321, 40.19889 ], [ -75.101374, 40.198591 ], [ -75.101413, 40.198397 ], [ -75.101471, 40.198081 ], [ -75.101533, 40.19778 ], [ -75.10168, 40.197008 ], [ -75.101846, 40.196226 ], [ -75.101872, 40.196049 ], [ -75.101998, 40.19542 ], [ -75.102148, 40.194631 ], [ -75.102261, 40.194007 ], [ -75.102301, 40.193836 ], [ -75.102344, 40.193594 ], [ -75.102395, 40.193325 ], [ -75.10254, 40.192654 ], [ -75.102584, 40.19244 ], [ -75.102609, 40.19232 ], [ -75.102663, 40.192083 ], [ -75.102676, 40.192039 ], [ -75.102686, 40.191984 ], [ -75.102754, 40.191647 ], [ -75.102769, 40.191571 ], [ -75.10279, 40.191449 ], [ -75.102826, 40.191294 ], [ -75.102873, 40.191016 ], [ -75.102918, 40.190788 ], [ -75.102957, 40.190594 ], [ -75.103026, 40.190297 ], [ -75.103086, 40.190067 ], [ -75.103124, 40.189967 ], [ -75.103148, 40.18989 ], [ -75.103196, 40.189683 ], [ -75.103251, 40.189438 ], [ -75.103317, 40.18907 ], [ -75.103341, 40.188949 ], [ -75.103353, 40.188889 ], [ -75.103369, 40.188798 ], [ -75.1035, 40.188297 ], [ -75.103657, 40.187625 ], [ -75.103814, 40.186966 ], [ -75.103932, 40.186482 ], [ -75.104034, 40.186084 ], [ -75.104244, 40.185207 ], [ -75.104345, 40.184782 ], [ -75.104527, 40.184046 ], [ -75.104551, 40.183957 ], [ -75.104665, 40.183478 ], [ -75.10472, 40.183247 ], [ -75.104798, 40.182918 ], [ -75.104913, 40.182386 ], [ -75.10495, 40.182217 ], [ -75.105086, 40.18161 ], [ -75.105122, 40.181446 ], [ -75.105165, 40.181247 ], [ -75.105204, 40.181071 ], [ -75.105319, 40.18056 ], [ -75.105359, 40.18037 ], [ -75.105412, 40.180174 ], [ -75.105442, 40.180053 ], [ -75.105454, 40.180005 ], [ -75.105567, 40.179567 ], [ -75.105643, 40.179272 ], [ -75.105663, 40.179187 ], [ -75.105736, 40.17894 ], [ -75.105781, 40.178782 ], [ -75.105835, 40.178601 ], [ -75.105903, 40.178369 ], [ -75.106017, 40.177949 ], [ -75.106042, 40.177862 ], [ -75.106098, 40.177644 ], [ -75.106192, 40.17727 ], [ -75.106284, 40.176926 ], [ -75.106338, 40.176724 ], [ -75.106428, 40.17639 ], [ -75.106641, 40.175557 ], [ -75.106678, 40.175404 ], [ -75.106736, 40.175187 ], [ -75.106746, 40.175151 ], [ -75.106814, 40.174901 ], [ -75.106895, 40.174603 ], [ -75.106938, 40.174444 ], [ -75.106984, 40.174276 ], [ -75.107008, 40.174219 ], [ -75.107051, 40.174141 ], [ -75.107097, 40.174064 ], [ -75.107199, 40.173926 ], [ -75.107312, 40.173794 ], [ -75.107373, 40.17373 ], [ -75.107608, 40.173509 ], [ -75.107755, 40.17337 ], [ -75.108054, 40.173089 ], [ -75.108109, 40.173041 ], [ -75.108413, 40.172758 ], [ -75.108587, 40.172597 ], [ -75.108849, 40.172353 ], [ -75.109189, 40.172038 ], [ -75.109427, 40.17181 ], [ -75.10971, 40.171555 ], [ -75.109847, 40.171436 ], [ -75.110055, 40.171236 ], [ -75.110239, 40.171054 ], [ -75.110301, 40.170981 ], [ -75.110351, 40.170919 ], [ -75.110395, 40.170864 ], [ -75.110443, 40.170786 ], [ -75.110467, 40.170739 ], [ -75.11049, 40.170693 ], [ -75.110513, 40.170639 ], [ -75.110537, 40.170581 ], [ -75.110551, 40.170529 ], [ -75.110564, 40.170482 ], [ -75.110579, 40.170427 ], [ -75.110586, 40.170386 ], [ -75.110596, 40.170333 ], [ -75.110603, 40.170279 ], [ -75.110606, 40.170217 ], [ -75.110607, 40.170189 ], [ -75.110609, 40.170147 ], [ -75.110607, 40.170048 ], [ -75.110601, 40.169887 ], [ -75.110587, 40.169751 ], [ -75.11058, 40.169674 ], [ -75.110568, 40.169575 ], [ -75.110557, 40.169496 ], [ -75.110545, 40.169419 ], [ -75.110535, 40.169363 ], [ -75.110522, 40.169295 ], [ -75.110498, 40.169197 ], [ -75.110464, 40.169014 ], [ -75.110379, 40.168716 ], [ -75.110321, 40.168473 ], [ -75.110238, 40.168141 ], [ -75.110201, 40.167961 ], [ -75.110187, 40.16782 ], [ -75.110185, 40.167729 ], [ -75.11019, 40.167671 ], [ -75.110199, 40.16758 ], [ -75.110238, 40.167369 ], [ -75.110262, 40.167245 ], [ -75.11031, 40.167038 ], [ -75.110346, 40.166888 ], [ -75.110413, 40.166563 ], [ -75.110481, 40.166188 ], [ -75.11052, 40.165983 ], [ -75.110688, 40.165239 ], [ -75.110715, 40.165124 ], [ -75.110822, 40.164666 ], [ -75.11103, 40.163769 ], [ -75.111074, 40.163572 ], [ -75.111117, 40.163382 ], [ -75.111187, 40.163147 ], [ -75.111225, 40.163005 ], [ -75.111296, 40.162705 ], [ -75.111316, 40.162621 ], [ -75.111326, 40.162571 ], [ -75.111447, 40.162036 ], [ -75.111468, 40.161929 ], [ -75.111548, 40.161591 ], [ -75.111639, 40.16116 ], [ -75.111713, 40.160811 ], [ -75.111757, 40.160613 ], [ -75.11177, 40.160544 ], [ -75.111806, 40.160275 ], [ -75.111866, 40.159835 ], [ -75.111906, 40.159387 ], [ -75.111906, 40.159369 ], [ -75.111917, 40.159246 ], [ -75.111956, 40.158982 ], [ -75.112008, 40.158549 ], [ -75.112072, 40.158192 ], [ -75.112495, 40.156346 ], [ -75.112881, 40.154637 ], [ -75.113051, 40.153966 ], [ -75.113256, 40.153295 ], [ -75.113456, 40.152628 ], [ -75.113676, 40.151953 ], [ -75.113881, 40.151298 ], [ -75.114223, 40.150366 ], [ -75.114322, 40.150163 ], [ -75.114396, 40.150029 ], [ -75.114516, 40.149823 ], [ -75.114651, 40.149633 ], [ -75.115023, 40.149072 ], [ -75.115181, 40.148782 ], [ -75.115269, 40.14861 ], [ -75.115338, 40.148477 ], [ -75.115355, 40.148435 ], [ -75.115459, 40.148192 ], [ -75.115524, 40.14805 ], [ -75.115591, 40.147848 ], [ -75.115614, 40.147777 ], [ -75.11566, 40.147622 ], [ -75.11567, 40.147589 ], [ -75.115706, 40.147442 ], [ -75.115723, 40.147376 ], [ -75.115797, 40.147053 ], [ -75.115813, 40.146871 ], [ -75.115935, 40.146694 ], [ -75.115948, 40.146538 ], [ -75.115952, 40.146493 ], [ -75.11598, 40.146308 ], [ -75.116007, 40.146223 ], [ -75.116035, 40.146177 ], [ -75.11607, 40.146136 ], [ -75.116106, 40.146099 ], [ -75.116149, 40.146066 ], [ -75.1162, 40.146038 ], [ -75.116245, 40.146015 ], [ -75.116294, 40.145999 ], [ -75.116711, 40.145852 ], [ -75.116961, 40.145773 ], [ -75.11721, 40.145669 ], [ -75.116996, 40.145418 ], [ -75.116961, 40.145378 ], [ -75.116957, 40.145325 ], [ -75.116891, 40.14523 ], [ -75.11679, 40.145106 ], [ -75.116554, 40.144874 ], [ -75.116506, 40.144828 ], [ -75.116461, 40.144788 ], [ -75.116385, 40.144718 ], [ -75.116272, 40.144618 ], [ -75.116239, 40.144583 ], [ -75.116198, 40.144527 ], [ -75.116164, 40.144459 ], [ -75.116137, 40.144404 ], [ -75.116091, 40.144304 ], [ -75.116059, 40.144206 ], [ -75.116035, 40.144121 ], [ -75.11598, 40.143988 ], [ -75.115952, 40.143913 ], [ -75.115914, 40.143842 ], [ -75.115861, 40.143778 ], [ -75.115799, 40.143723 ], [ -75.115755, 40.143696 ], [ -75.11571, 40.143668 ], [ -75.115663, 40.143637 ], [ -75.115824, 40.143379 ], [ -75.11599, 40.143106 ], [ -75.116024, 40.143049 ], [ -75.116272, 40.142649 ], [ -75.116783, 40.141898 ], [ -75.116865, 40.141788 ], [ -75.116936, 40.141692 ], [ -75.117025, 40.141574 ], [ -75.117099, 40.141541 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117299, 40.141278 ], [ -75.117368, 40.141172 ], [ -75.117479, 40.141031 ], [ -75.117575, 40.14092 ], [ -75.11788, 40.140602 ], [ -75.117898, 40.140584 ], [ -75.11812, 40.140359 ], [ -75.118575, 40.139902 ], [ -75.118901, 40.1396 ], [ -75.119221, 40.139279 ], [ -75.119549, 40.138951 ], [ -75.119649, 40.138877 ], [ -75.119822, 40.138689 ], [ -75.12012, 40.138366 ], [ -75.120318, 40.138169 ], [ -75.120513, 40.137976 ], [ -75.120714, 40.137775 ], [ -75.121095, 40.137384 ], [ -75.121217, 40.137254 ], [ -75.121444, 40.136996 ], [ -75.121596, 40.136828 ], [ -75.121836, 40.136566 ], [ -75.122281, 40.136095 ], [ -75.122305, 40.135997 ], [ -75.122402, 40.135909 ], [ -75.122655, 40.135647 ], [ -75.12313, 40.135161 ], [ -75.123386, 40.134907 ], [ -75.123576, 40.134719 ], [ -75.12386, 40.134437 ], [ -75.124445, 40.133849 ], [ -75.124664, 40.133625 ], [ -75.12481, 40.133474 ], [ -75.125106, 40.13317 ], [ -75.12527, 40.133004 ], [ -75.125633, 40.132639 ], [ -75.12586, 40.132407 ], [ -75.126629, 40.131623 ], [ -75.127438, 40.130798 ], [ -75.127664, 40.130569 ], [ -75.127871, 40.13036 ], [ -75.128138, 40.130092 ], [ -75.128268, 40.129957 ], [ -75.128884, 40.129325 ], [ -75.12911, 40.129094 ], [ -75.129465, 40.128733 ], [ -75.129681, 40.128515 ], [ -75.129924, 40.128271 ], [ -75.130004, 40.128192 ], [ -75.13031, 40.127888 ], [ -75.130601, 40.127582 ], [ -75.130654, 40.127564 ], [ -75.130683, 40.127537 ], [ -75.130904, 40.127327 ], [ -75.131413, 40.126802 ], [ -75.131754, 40.12644 ], [ -75.131784, 40.126398 ], [ -75.131896, 40.126284 ], [ -75.132432, 40.125739 ], [ -75.132654, 40.125465 ], [ -75.13268, 40.125361 ], [ -75.132728, 40.125299 ], [ -75.132781, 40.125231 ], [ -75.132829, 40.125164 ], [ -75.132883, 40.12506 ], [ -75.132928, 40.124953 ], [ -75.13295, 40.124874 ], [ -75.132953, 40.124862 ], [ -75.132967, 40.124812 ], [ -75.132978, 40.124736 ], [ -75.132981, 40.124688 ], [ -75.132978, 40.124638 ], [ -75.13297, 40.124562 ], [ -75.132958, 40.124466 ], [ -75.132933, 40.124331 ], [ -75.132899, 40.124119 ], [ -75.132871, 40.123968 ], [ -75.132837, 40.12377 ], [ -75.132755, 40.123267 ], [ -75.132703, 40.122954 ], [ -75.132672, 40.122785 ], [ -75.132652, 40.122665 ], [ -75.132643, 40.122608 ], [ -75.132641, 40.122541 ], [ -75.13265, 40.12247 ], [ -75.132667, 40.122423 ], [ -75.132708, 40.12233 ], [ -75.132804, 40.122127 ], [ -75.132888, 40.121973 ], [ -75.132985, 40.121799 ], [ -75.133288, 40.121254 ], [ -75.133372, 40.121122 ], [ -75.133691, 40.120751 ], [ -75.133707, 40.120735 ], [ -75.134537, 40.11993 ], [ -75.135013, 40.119447 ], [ -75.136062, 40.118387 ], [ -75.136533, 40.117912 ], [ -75.136937, 40.11753 ], [ -75.137094, 40.117378 ], [ -75.137239, 40.117241 ], [ -75.137704, 40.116748 ], [ -75.138019, 40.116442 ], [ -75.138252, 40.116203 ], [ -75.138658, 40.115787 ], [ -75.139226, 40.115217 ], [ -75.139601, 40.114828 ], [ -75.13974, 40.114685 ], [ -75.140048, 40.114366 ], [ -75.140293, 40.114118 ], [ -75.140737, 40.113668 ], [ -75.14092, 40.113498 ], [ -75.14208, 40.112328 ], [ -75.143358, 40.11102 ], [ -75.143892, 40.110482 ], [ -75.144402, 40.109971 ], [ -75.144419, 40.109953 ], [ -75.144603, 40.109767 ], [ -75.144753, 40.109615 ], [ -75.145004, 40.109362 ], [ -75.145373, 40.108986 ], [ -75.145642, 40.108699 ], [ -75.146116, 40.108225 ], [ -75.146277, 40.108066 ], [ -75.147059, 40.107279 ], [ -75.14728, 40.107054 ], [ -75.147484, 40.106851 ], [ -75.147808, 40.10653 ], [ -75.148735, 40.105613 ], [ -75.149259, 40.105094 ], [ -75.149625, 40.104728 ], [ -75.151094, 40.103249 ], [ -75.151902, 40.102454 ], [ -75.152062, 40.102294 ], [ -75.15212, 40.102229 ], [ -75.15216, 40.102171 ], [ -75.152351, 40.101917 ], [ -75.152363, 40.101901 ], [ -75.152571, 40.10163 ], [ -75.152769, 40.101352 ], [ -75.152866, 40.101219 ], [ -75.152937, 40.101133 ], [ -75.153241, 40.100834 ], [ -75.153508, 40.100573 ], [ -75.153977, 40.100093 ], [ -75.154499, 40.099558 ], [ -75.154994, 40.099066 ], [ -75.155265, 40.098799 ], [ -75.155434, 40.098631 ], [ -75.155663, 40.098401 ], [ -75.155844, 40.098219 ], [ -75.156448, 40.097612 ], [ -75.156762, 40.097304 ], [ -75.157562, 40.096511 ], [ -75.157651, 40.096423 ], [ -75.157821, 40.096255 ], [ -75.158019, 40.09606 ], [ -75.158252, 40.095831 ], [ -75.15851, 40.095579 ], [ -75.158636, 40.095457 ], [ -75.15896, 40.09514 ], [ -75.159494, 40.094607 ], [ -75.160625, 40.093478 ], [ -75.160738, 40.093361 ], [ -75.161059, 40.093045 ], [ -75.161144, 40.093015 ], [ -75.161182, 40.092979 ], [ -75.161221, 40.092936 ], [ -75.161314, 40.092832 ], [ -75.161414, 40.09272 ], [ -75.16165, 40.092478 ], [ -75.162038, 40.092114 ], [ -75.162099, 40.092052 ], [ -75.162283, 40.091834 ], [ -75.162413, 40.091681 ], [ -75.162874, 40.091145 ], [ -75.163129, 40.090848 ], [ -75.163271, 40.090601 ], [ -75.163338, 40.090379 ], [ -75.163432, 40.090036 ], [ -75.163463, 40.089793 ], [ -75.163496, 40.089611 ], [ -75.163508, 40.089366 ], [ -75.163549, 40.089033 ], [ -75.163558, 40.089 ], [ -75.16359, 40.088895 ], [ -75.163635, 40.088704 ], [ -75.163651, 40.08865 ], [ -75.163669, 40.08859 ], [ -75.163731, 40.088325 ], [ -75.163772, 40.088206 ], [ -75.163836, 40.088077 ], [ -75.163854, 40.088044 ], [ -75.163889, 40.087982 ], [ -75.163919, 40.08793 ], [ -75.163956, 40.08788 ], [ -75.164056, 40.087706 ], [ -75.164228, 40.087514 ], [ -75.164286, 40.087457 ], [ -75.164542, 40.087253 ], [ -75.164738, 40.08712 ], [ -75.164965, 40.087022 ], [ -75.165092, 40.086965 ], [ -75.165545, 40.086742 ], [ -75.166029, 40.086538 ], [ -75.167059, 40.086135 ], [ -75.167099, 40.086115 ], [ -75.167761, 40.085783 ], [ -75.168161, 40.085592 ], [ -75.168286, 40.085505 ], [ -75.168516, 40.085284 ], [ -75.16857, 40.085231 ], [ -75.168779, 40.085029 ], [ -75.169063, 40.084736 ], [ -75.169351, 40.084439 ], [ -75.169803, 40.083985 ], [ -75.170442, 40.083307 ], [ -75.170868, 40.082871 ], [ -75.17115, 40.082581 ], [ -75.171235, 40.082488 ], [ -75.17134, 40.082375 ], [ -75.171556, 40.082136 ], [ -75.171705, 40.081959 ], [ -75.171708, 40.081886 ], [ -75.171714, 40.081851 ], [ -75.171716, 40.08181 ], [ -75.171597, 40.081735 ], [ -75.171376, 40.081604 ], [ -75.170726, 40.081197 ], [ -75.170439, 40.081017 ], [ -75.169985, 40.080732 ], [ -75.168315, 40.079758 ], [ -75.167709, 40.079406 ], [ -75.166569, 40.078731 ], [ -75.166169, 40.078517 ], [ -75.166076, 40.078505 ], [ -75.165781, 40.078317 ], [ -75.165014, 40.077867 ], [ -75.163904, 40.077233 ], [ -75.16339, 40.076949 ], [ -75.162503, 40.076447 ], [ -75.161959, 40.076127 ], [ -75.161542, 40.075902 ], [ -75.161289, 40.075758 ], [ -75.16097, 40.075591 ], [ -75.160426, 40.075306 ], [ -75.159126, 40.07459 ], [ -75.158496, 40.074242 ], [ -75.158411, 40.074197 ], [ -75.157856, 40.073884 ], [ -75.157688, 40.073788 ], [ -75.156655, 40.073203 ], [ -75.156441, 40.073082 ], [ -75.155926, 40.07279 ], [ -75.155443, 40.072519 ], [ -75.154743, 40.072126 ], [ -75.154116, 40.071767 ], [ -75.154069, 40.07174 ], [ -75.154, 40.0717 ], [ -75.153582, 40.071461 ], [ -75.153326, 40.071315 ], [ -75.15294, 40.071093 ], [ -75.152746, 40.070983 ], [ -75.152182, 40.070659 ], [ -75.151881, 40.070491 ], [ -75.151592, 40.07033 ], [ -75.150706, 40.069838 ], [ -75.149985, 40.069437 ], [ -75.14959, 40.06921 ], [ -75.148335, 40.06849 ], [ -75.147646, 40.068096 ], [ -75.146682, 40.067549 ], [ -75.146549, 40.067471 ], [ -75.146324, 40.067335 ], [ -75.145724, 40.066987 ], [ -75.145496, 40.066856 ], [ -75.145219, 40.06669 ], [ -75.144864, 40.066485 ], [ -75.144549, 40.066303 ], [ -75.144128, 40.06607 ], [ -75.143931, 40.065957 ], [ -75.143113, 40.065501 ], [ -75.141876, 40.064788 ], [ -75.141328, 40.064471 ], [ -75.140846, 40.064194 ], [ -75.140718, 40.064122 ], [ -75.139997, 40.063694 ], [ -75.139429, 40.063359 ], [ -75.13946, 40.063206 ], [ -75.139517, 40.062914 ], [ -75.139539, 40.062813 ], [ -75.139704, 40.062014 ], [ -75.139719, 40.061946 ], [ -75.139704, 40.061909 ], [ -75.139688, 40.061876 ], [ -75.139716, 40.061754 ], [ -75.139743, 40.061631 ], [ -75.139783, 40.061445 ], [ -75.139823, 40.06126 ], [ -75.139844, 40.061169 ], [ -75.139862, 40.061083 ], [ -75.139901, 40.060893 ], [ -75.139958, 40.060629 ], [ -75.140076, 40.060108 ], [ -75.140124, 40.059905 ], [ -75.140143, 40.059821 ], [ -75.140162, 40.059737 ], [ -75.140211, 40.059523 ], [ -75.140245, 40.059374 ], [ -75.14026, 40.059295 ], [ -75.140275, 40.059219 ], [ -75.140339, 40.058884 ], [ -75.140365, 40.05874 ], [ -75.140379, 40.058662 ], [ -75.140394, 40.058583 ], [ -75.140486, 40.058218 ], [ -75.140566, 40.057843 ], [ -75.140598, 40.057697 ], [ -75.140678, 40.057334 ], [ -75.140734, 40.057057 ], [ -75.140751, 40.056976 ], [ -75.140779, 40.056839 ], [ -75.14081, 40.056697 ], [ -75.140851, 40.056523 ], [ -75.140892, 40.056349 ], [ -75.140919, 40.056222 ], [ -75.141005, 40.055808 ], [ -75.141112, 40.055343 ], [ -75.14115, 40.05531 ], [ -75.141179, 40.055282 ], [ -75.141193, 40.055233 ], [ -75.141209, 40.055157 ], [ -75.141245, 40.054992 ], [ -75.141292, 40.054778 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307449", "route_id": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.208287, 40.077763 ], [ -75.208237, 40.077762 ], [ -75.208094, 40.077752 ], [ -75.20817, 40.077017 ], [ -75.208068, 40.076969 ], [ -75.207915, 40.076885 ], [ -75.20746, 40.076631 ], [ -75.207314, 40.07655 ], [ -75.2064, 40.076028 ], [ -75.204912, 40.075126 ], [ -75.204782, 40.075047 ], [ -75.204265, 40.074738 ], [ -75.203754, 40.074427 ], [ -75.203611, 40.07434 ], [ -75.203549, 40.074297 ], [ -75.203474, 40.074225 ], [ -75.203439, 40.074183 ], [ -75.203097, 40.073769 ], [ -75.202866, 40.07349 ], [ -75.202654, 40.073223 ], [ -75.201773, 40.071981 ], [ -75.201611, 40.071754 ], [ -75.201477, 40.071579 ], [ -75.201307, 40.071358 ], [ -75.20078, 40.07073 ], [ -75.200279, 40.070124 ], [ -75.200148, 40.069961 ], [ -75.199843, 40.069632 ], [ -75.199739, 40.069522 ], [ -75.198781, 40.068681 ], [ -75.198632, 40.068557 ], [ -75.198495, 40.068456 ], [ -75.198321, 40.068343 ], [ -75.197336, 40.06771 ], [ -75.197082, 40.067552 ], [ -75.196773, 40.067361 ], [ -75.19664, 40.067254 ], [ -75.196596, 40.067214 ], [ -75.196546, 40.067153 ], [ -75.196508, 40.067085 ], [ -75.196469, 40.066981 ], [ -75.196461, 40.066955 ], [ -75.196428, 40.066839 ], [ -75.196366, 40.066624 ], [ -75.196294, 40.066354 ], [ -75.196245, 40.066144 ], [ -75.196197, 40.065942 ], [ -75.196109, 40.065636 ], [ -75.196088, 40.065573 ], [ -75.196061, 40.065515 ], [ -75.196029, 40.065462 ], [ -75.196017, 40.065447 ], [ -75.195979, 40.065401 ], [ -75.195928, 40.065351 ], [ -75.195864, 40.065297 ], [ -75.195792, 40.065245 ], [ -75.195691, 40.065191 ], [ -75.195532, 40.065113 ], [ -75.195382, 40.065039 ], [ -75.195092, 40.064903 ], [ -75.194566, 40.064651 ], [ -75.19445, 40.064586 ], [ -75.194318, 40.064501 ], [ -75.194218, 40.064426 ], [ -75.194161, 40.064367 ], [ -75.193975, 40.064126 ], [ -75.193813, 40.063894 ], [ -75.193773, 40.063837 ], [ -75.193624, 40.063637 ], [ -75.193482, 40.063443 ], [ -75.193047, 40.062854 ], [ -75.192994, 40.062779 ], [ -75.192957, 40.062728 ], [ -75.192855, 40.062594 ], [ -75.192557, 40.062193 ], [ -75.191869, 40.061271 ], [ -75.191507, 40.060759 ], [ -75.191271, 40.060463 ], [ -75.191041, 40.06019 ], [ -75.190868, 40.059976 ], [ -75.190188, 40.059236 ], [ -75.189993, 40.059008 ], [ -75.189712, 40.058693 ], [ -75.189413, 40.058408 ], [ -75.188839, 40.057896 ], [ -75.188716, 40.057781 ], [ -75.188527, 40.057601 ], [ -75.188411, 40.05748 ], [ -75.188305, 40.057334 ], [ -75.18824, 40.05722 ], [ -75.188155, 40.057069 ], [ -75.18807, 40.056892 ], [ -75.18733, 40.055474 ], [ -75.186964, 40.054846 ], [ -75.186753, 40.05446 ], [ -75.186484, 40.053968 ], [ -75.186195, 40.053396 ], [ -75.186128, 40.053265 ], [ -75.186094, 40.053197 ], [ -75.18599, 40.053006 ], [ -75.185813, 40.052674 ], [ -75.185672, 40.052423 ], [ -75.18529, 40.051738 ], [ -75.185216, 40.05162 ], [ -75.185003, 40.051224 ], [ -75.184994, 40.051208 ], [ -75.184975, 40.051172 ], [ -75.184693, 40.050644 ], [ -75.184553, 40.050396 ], [ -75.184373, 40.050079 ], [ -75.184197, 40.049766 ], [ -75.183951, 40.049321 ], [ -75.1839, 40.049225 ], [ -75.18384, 40.049108 ], [ -75.183735, 40.048905 ], [ -75.183686, 40.048809 ], [ -75.183405, 40.048251 ], [ -75.182803, 40.047077 ], [ -75.1822, 40.045884 ], [ -75.181703, 40.044846 ], [ -75.181418, 40.044188 ], [ -75.181372, 40.044059 ], [ -75.1813, 40.043887 ], [ -75.181223, 40.043734 ], [ -75.181186, 40.043662 ], [ -75.181128, 40.043569 ], [ -75.181043, 40.043443 ], [ -75.180888, 40.043234 ], [ -75.18081, 40.043129 ], [ -75.179976, 40.042094 ], [ -75.179666, 40.0417 ], [ -75.179622, 40.041646 ], [ -75.179599, 40.041619 ], [ -75.179116, 40.041055 ], [ -75.178719, 40.040561 ], [ -75.178624, 40.040441 ], [ -75.177779, 40.039426 ], [ -75.177667, 40.03929 ], [ -75.177641, 40.03926 ], [ -75.177607, 40.039221 ], [ -75.176977, 40.038456 ], [ -75.176926, 40.038395 ], [ -75.176434, 40.037796 ], [ -75.176397, 40.037752 ], [ -75.176144, 40.037451 ], [ -75.175876, 40.037101 ], [ -75.175612, 40.03676 ], [ -75.175387, 40.03646 ], [ -75.175299, 40.036356 ], [ -75.175232, 40.036279 ], [ -75.175173, 40.036215 ], [ -75.175, 40.036074 ], [ -75.174838, 40.035936 ], [ -75.174711, 40.035831 ], [ -75.174607, 40.035748 ], [ -75.173917, 40.0352 ], [ -75.173822, 40.035119 ], [ -75.173705, 40.035019 ], [ -75.173636, 40.034962 ], [ -75.173389, 40.034788 ], [ -75.172674, 40.034376 ], [ -75.172013, 40.033978 ], [ -75.170582, 40.033145 ], [ -75.169304, 40.032377 ], [ -75.169204, 40.032322 ], [ -75.168553, 40.03196 ], [ -75.167791, 40.031537 ], [ -75.16666, 40.030901 ], [ -75.166497, 40.030806 ], [ -75.166176, 40.030631 ], [ -75.165502, 40.030256 ], [ -75.164956, 40.029945 ], [ -75.164149, 40.029486 ], [ -75.163765, 40.029266 ], [ -75.163274, 40.028971 ], [ -75.162275, 40.028347 ], [ -75.162131, 40.028248 ], [ -75.161569, 40.027865 ], [ -75.16151, 40.02782 ], [ -75.161446, 40.027772 ], [ -75.161345, 40.027674 ], [ -75.161234, 40.027561 ], [ -75.161181, 40.027494 ], [ -75.161126, 40.027426 ], [ -75.161001, 40.027269 ], [ -75.160558, 40.026703 ], [ -75.160254, 40.026328 ], [ -75.160192, 40.026247 ], [ -75.160142, 40.026177 ], [ -75.160102, 40.026106 ], [ -75.160067, 40.026036 ], [ -75.160039, 40.025968 ], [ -75.160012, 40.025884 ], [ -75.159987, 40.025788 ], [ -75.159964, 40.025697 ], [ -75.159947, 40.025571 ], [ -75.159902, 40.025181 ], [ -75.159883, 40.024952 ], [ -75.159869, 40.024772 ], [ -75.15986, 40.024695 ], [ -75.159849, 40.024615 ], [ -75.159829, 40.024544 ], [ -75.159797, 40.024465 ], [ -75.159759, 40.02438 ], [ -75.159573, 40.023966 ], [ -75.159549, 40.02392 ], [ -75.159325, 40.023469 ], [ -75.15928, 40.023368 ], [ -75.159204, 40.023216 ], [ -75.159181, 40.023162 ], [ -75.159156, 40.0231 ], [ -75.159122, 40.023025 ], [ -75.159081, 40.022922 ], [ -75.159022, 40.02281 ], [ -75.158974, 40.022723 ], [ -75.158917, 40.022633 ], [ -75.158828, 40.022515 ], [ -75.158324, 40.021924 ], [ -75.157984, 40.021564 ], [ -75.157724, 40.021284 ], [ -75.157474, 40.021038 ], [ -75.157187, 40.020745 ], [ -75.157114, 40.020669 ], [ -75.157017, 40.020579 ], [ -75.15691, 40.020479 ], [ -75.156388, 40.019962 ], [ -75.15627, 40.019842 ], [ -75.156095, 40.019667 ], [ -75.156059, 40.019627 ], [ -75.156016, 40.019579 ], [ -75.155985, 40.019538 ], [ -75.155954, 40.019493 ], [ -75.155797, 40.019245 ], [ -75.155681, 40.019059 ], [ -75.155562, 40.018879 ], [ -75.155402, 40.018623 ], [ -75.155358, 40.018553 ], [ -75.155097, 40.018125 ], [ -75.155029, 40.018026 ], [ -75.154774, 40.017631 ], [ -75.154569, 40.017263 ], [ -75.154476, 40.017087 ], [ -75.154172, 40.016498 ], [ -75.154097, 40.016351 ], [ -75.154037, 40.016241 ], [ -75.153857, 40.015896 ], [ -75.153678, 40.015569 ], [ -75.153351, 40.014955 ], [ -75.153066, 40.01441 ], [ -75.152447, 40.013234 ], [ -75.152384, 40.01311 ], [ -75.152124, 40.012533 ], [ -75.1521, 40.012474 ], [ -75.1519, 40.011986 ], [ -75.151412, 40.010892 ], [ -75.151183, 40.010346 ], [ -75.151104, 40.01014 ], [ -75.151045, 40.009962 ], [ -75.151001, 40.009833 ], [ -75.150796, 40.009189 ], [ -75.150466, 40.008047 ], [ -75.15028, 40.007498 ], [ -75.149845, 40.006115 ], [ -75.149766, 40.005877 ], [ -75.149571, 40.005223 ], [ -75.149298, 40.004293 ], [ -75.149187, 40.003918 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307450", "route_id": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.208287, 40.077763 ], [ -75.208237, 40.077762 ], [ -75.208094, 40.077752 ], [ -75.20817, 40.077017 ], [ -75.208068, 40.076969 ], [ -75.207915, 40.076885 ], [ -75.20746, 40.076631 ], [ -75.207314, 40.07655 ], [ -75.2064, 40.076028 ], [ -75.204912, 40.075126 ], [ -75.204782, 40.075047 ], [ -75.204265, 40.074738 ], [ -75.203754, 40.074427 ], [ -75.203611, 40.07434 ], [ -75.203549, 40.074297 ], [ -75.203474, 40.074225 ], [ -75.203439, 40.074183 ], [ -75.203097, 40.073769 ], [ -75.202866, 40.07349 ], [ -75.202654, 40.073223 ], [ -75.201773, 40.071981 ], [ -75.201611, 40.071754 ], [ -75.201477, 40.071579 ], [ -75.201307, 40.071358 ], [ -75.20078, 40.07073 ], [ -75.200279, 40.070124 ], [ -75.200148, 40.069961 ], [ -75.199843, 40.069632 ], [ -75.199739, 40.069522 ], [ -75.198781, 40.068681 ], [ -75.198632, 40.068557 ], [ -75.198495, 40.068456 ], [ -75.198321, 40.068343 ], [ -75.197336, 40.06771 ], [ -75.197082, 40.067552 ], [ -75.196773, 40.067361 ], [ -75.19664, 40.067254 ], [ -75.196596, 40.067214 ], [ -75.196546, 40.067153 ], [ -75.196508, 40.067085 ], [ -75.196469, 40.066981 ], [ -75.196461, 40.066955 ], [ -75.196428, 40.066839 ], [ -75.196366, 40.066624 ], [ -75.196294, 40.066354 ], [ -75.196245, 40.066144 ], [ -75.196197, 40.065942 ], [ -75.196109, 40.065636 ], [ -75.196088, 40.065573 ], [ -75.196061, 40.065515 ], [ -75.196029, 40.065462 ], [ -75.196017, 40.065447 ], [ -75.195979, 40.065401 ], [ -75.195928, 40.065351 ], [ -75.195864, 40.065297 ], [ -75.195792, 40.065245 ], [ -75.195691, 40.065191 ], [ -75.195532, 40.065113 ], [ -75.195382, 40.065039 ], [ -75.195092, 40.064903 ], [ -75.194566, 40.064651 ], [ -75.19445, 40.064586 ], [ -75.194318, 40.064501 ], [ -75.194218, 40.064426 ], [ -75.194161, 40.064367 ], [ -75.193975, 40.064126 ], [ -75.193813, 40.063894 ], [ -75.193773, 40.063837 ], [ -75.193624, 40.063637 ], [ -75.193482, 40.063443 ], [ -75.193047, 40.062854 ], [ -75.192994, 40.062779 ], [ -75.192957, 40.062728 ], [ -75.192855, 40.062594 ], [ -75.192557, 40.062193 ], [ -75.191869, 40.061271 ], [ -75.191507, 40.060759 ], [ -75.191271, 40.060463 ], [ -75.191041, 40.06019 ], [ -75.190868, 40.059976 ], [ -75.190188, 40.059236 ], [ -75.189993, 40.059008 ], [ -75.189712, 40.058693 ], [ -75.189413, 40.058408 ], [ -75.188839, 40.057896 ], [ -75.188716, 40.057781 ], [ -75.188527, 40.057601 ], [ -75.188411, 40.05748 ], [ -75.188305, 40.057334 ], [ -75.18824, 40.05722 ], [ -75.188155, 40.057069 ], [ -75.18807, 40.056892 ], [ -75.18733, 40.055474 ], [ -75.186964, 40.054846 ], [ -75.186753, 40.05446 ], [ -75.186484, 40.053968 ], [ -75.186195, 40.053396 ], [ -75.186128, 40.053265 ], [ -75.186094, 40.053197 ], [ -75.18599, 40.053006 ], [ -75.185813, 40.052674 ], [ -75.185672, 40.052423 ], [ -75.18529, 40.051738 ], [ -75.185216, 40.05162 ], [ -75.185003, 40.051224 ], [ -75.184994, 40.051208 ], [ -75.184975, 40.051172 ], [ -75.184693, 40.050644 ], [ -75.184553, 40.050396 ], [ -75.184373, 40.050079 ], [ -75.184197, 40.049766 ], [ -75.183951, 40.049321 ], [ -75.1839, 40.049225 ], [ -75.18384, 40.049108 ], [ -75.183735, 40.048905 ], [ -75.183686, 40.048809 ], [ -75.183405, 40.048251 ], [ -75.182803, 40.047077 ], [ -75.1822, 40.045884 ], [ -75.181703, 40.044846 ], [ -75.181418, 40.044188 ], [ -75.181372, 40.044059 ], [ -75.1813, 40.043887 ], [ -75.181223, 40.043734 ], [ -75.181186, 40.043662 ], [ -75.181128, 40.043569 ], [ -75.181043, 40.043443 ], [ -75.180888, 40.043234 ], [ -75.18081, 40.043129 ], [ -75.179976, 40.042094 ], [ -75.179666, 40.0417 ], [ -75.179622, 40.041646 ], [ -75.179599, 40.041619 ], [ -75.179116, 40.041055 ], [ -75.178719, 40.040561 ], [ -75.178624, 40.040441 ], [ -75.177779, 40.039426 ], [ -75.177667, 40.03929 ], [ -75.177641, 40.03926 ], [ -75.177607, 40.039221 ], [ -75.176977, 40.038456 ], [ -75.176926, 40.038395 ], [ -75.176434, 40.037796 ], [ -75.176397, 40.037752 ], [ -75.176144, 40.037451 ], [ -75.175876, 40.037101 ], [ -75.175612, 40.03676 ], [ -75.175387, 40.03646 ], [ -75.175299, 40.036356 ], [ -75.175232, 40.036279 ], [ -75.175173, 40.036215 ], [ -75.175, 40.036074 ], [ -75.174838, 40.035936 ], [ -75.174711, 40.035831 ], [ -75.174607, 40.035748 ], [ -75.173917, 40.0352 ], [ -75.173822, 40.035119 ], [ -75.173705, 40.035019 ], [ -75.173636, 40.034962 ], [ -75.173389, 40.034788 ], [ -75.172674, 40.034376 ], [ -75.172013, 40.033978 ], [ -75.170582, 40.033145 ], [ -75.169304, 40.032377 ], [ -75.169204, 40.032322 ], [ -75.168553, 40.03196 ], [ -75.167791, 40.031537 ], [ -75.16666, 40.030901 ], [ -75.166497, 40.030806 ], [ -75.166176, 40.030631 ], [ -75.165502, 40.030256 ], [ -75.164956, 40.029945 ], [ -75.164149, 40.029486 ], [ -75.163765, 40.029266 ], [ -75.163274, 40.028971 ], [ -75.162275, 40.028347 ], [ -75.162131, 40.028248 ], [ -75.161569, 40.027865 ], [ -75.16151, 40.02782 ], [ -75.161446, 40.027772 ], [ -75.161345, 40.027674 ], [ -75.161234, 40.027561 ], [ -75.161181, 40.027494 ], [ -75.161126, 40.027426 ], [ -75.161001, 40.027269 ], [ -75.160558, 40.026703 ], [ -75.160254, 40.026328 ], [ -75.160192, 40.026247 ], [ -75.160142, 40.026177 ], [ -75.160102, 40.026106 ], [ -75.160067, 40.026036 ], [ -75.160039, 40.025968 ], [ -75.160012, 40.025884 ], [ -75.159987, 40.025788 ], [ -75.159964, 40.025697 ], [ -75.159947, 40.025571 ], [ -75.159902, 40.025181 ], [ -75.159883, 40.024952 ], [ -75.159869, 40.024772 ], [ -75.15986, 40.024695 ], [ -75.159849, 40.024615 ], [ -75.159829, 40.024544 ], [ -75.159797, 40.024465 ], [ -75.159759, 40.02438 ], [ -75.159573, 40.023966 ], [ -75.159549, 40.02392 ], [ -75.159325, 40.023469 ], [ -75.15928, 40.023368 ], [ -75.159204, 40.023216 ], [ -75.159181, 40.023162 ], [ -75.159156, 40.0231 ], [ -75.159122, 40.023025 ], [ -75.159081, 40.022922 ], [ -75.159022, 40.02281 ], [ -75.158974, 40.022723 ], [ -75.158917, 40.022633 ], [ -75.158828, 40.022515 ], [ -75.158324, 40.021924 ], [ -75.157984, 40.021564 ], [ -75.157724, 40.021284 ], [ -75.157474, 40.021038 ], [ -75.157187, 40.020745 ], [ -75.157114, 40.020669 ], [ -75.157017, 40.020579 ], [ -75.15691, 40.020479 ], [ -75.156388, 40.019962 ], [ -75.15627, 40.019842 ], [ -75.156095, 40.019667 ], [ -75.156059, 40.019627 ], [ -75.156016, 40.019579 ], [ -75.155985, 40.019538 ], [ -75.155954, 40.019493 ], [ -75.155797, 40.019245 ], [ -75.155681, 40.019059 ], [ -75.155562, 40.018879 ], [ -75.155402, 40.018623 ], [ -75.155358, 40.018553 ], [ -75.155097, 40.018125 ], [ -75.155029, 40.018026 ], [ -75.154774, 40.017631 ], [ -75.154569, 40.017263 ], [ -75.154476, 40.017087 ], [ -75.154172, 40.016498 ], [ -75.154097, 40.016351 ], [ -75.154037, 40.016241 ], [ -75.153857, 40.015896 ], [ -75.153678, 40.015569 ], [ -75.153351, 40.014955 ], [ -75.153066, 40.01441 ], [ -75.152447, 40.013234 ], [ -75.152384, 40.01311 ], [ -75.152124, 40.012533 ], [ -75.1521, 40.012474 ], [ -75.1519, 40.011986 ], [ -75.151412, 40.010892 ], [ -75.151183, 40.010346 ], [ -75.151104, 40.01014 ], [ -75.151045, 40.009962 ], [ -75.151001, 40.009833 ], [ -75.150796, 40.009189 ], [ -75.150466, 40.008047 ], [ -75.15028, 40.007498 ], [ -75.149845, 40.006115 ], [ -75.149766, 40.005877 ], [ -75.149571, 40.005223 ], [ -75.149298, 40.004293 ], [ -75.149187, 40.003918 ], [ -75.149121, 40.003705 ], [ -75.148894, 40.00298 ], [ -75.148872, 40.002904 ], [ -75.148808, 40.002679 ], [ -75.148512, 40.001925 ], [ -75.148456, 40.001771 ], [ -75.148164, 40.000989 ], [ -75.148046, 40.000703 ], [ -75.147926, 40.000421 ], [ -75.147823, 40.000178 ], [ -75.147753, 40.000014 ], [ -75.147702, 39.999894 ], [ -75.147639, 39.999759 ], [ -75.147581, 39.999643 ], [ -75.14738, 39.999227 ], [ -75.147134, 39.998684 ], [ -75.146974, 39.998307 ], [ -75.146908, 39.998144 ], [ -75.14685, 39.997962 ], [ -75.146806, 39.997777 ], [ -75.146785, 39.997642 ], [ -75.146778, 39.997598 ], [ -75.146773, 39.997492 ], [ -75.146783, 39.997378 ], [ -75.146815, 39.997239 ], [ -75.146895, 39.996893 ], [ -75.146988, 39.996544 ], [ -75.147088, 39.996142 ], [ -75.147388, 39.994946 ], [ -75.14748, 39.994648 ], [ -75.147521, 39.994477 ], [ -75.147623, 39.994074 ], [ -75.147708, 39.993778 ], [ -75.147896, 39.993089 ], [ -75.148074, 39.992362 ], [ -75.148169, 39.992008 ], [ -75.148311, 39.991492 ], [ -75.148344, 39.991378 ], [ -75.148353, 39.991335 ], [ -75.148359, 39.991279 ], [ -75.148361, 39.991225 ], [ -75.148359, 39.991184 ], [ -75.148353, 39.991133 ], [ -75.148344, 39.991093 ], [ -75.148327, 39.991051 ], [ -75.148297, 39.990992 ], [ -75.148237, 39.990894 ], [ -75.148189, 39.990818 ], [ -75.14824, 39.990482 ], [ -75.148346, 39.989985 ], [ -75.148557, 39.989022 ], [ -75.148686, 39.988487 ], [ -75.148786, 39.98796 ], [ -75.148885, 39.987505 ], [ -75.148992, 39.987002 ], [ -75.14911, 39.986443 ], [ -75.149205, 39.986016 ], [ -75.149341, 39.985394 ], [ -75.150185, 39.985503 ], [ -75.150911, 39.985595 ], [ -75.151718, 39.985699 ], [ -75.152428, 39.985809 ], [ -75.152481, 39.985817 ], [ -75.152832, 39.984189 ], [ -75.153116, 39.982738 ], [ -75.153396, 39.981263 ], [ -75.153815, 39.979741 ], [ -75.153885, 39.979388 ], [ -75.153928, 39.979167 ], [ -75.154156, 39.978155 ], [ -75.154192, 39.978007 ], [ -75.154378, 39.97714 ], [ -75.15445, 39.976791 ], [ -75.154746, 39.975367 ], [ -75.155068, 39.974002 ], [ -75.155357, 39.972736 ], [ -75.155451, 39.972313 ], [ -75.155534, 39.971916 ], [ -75.155611, 39.971545 ], [ -75.155731, 39.971005 ], [ -75.15584, 39.970476 ], [ -75.155868, 39.97034 ], [ -75.15592, 39.970095 ], [ -75.155988, 39.969784 ], [ -75.156092, 39.969302 ], [ -75.156219, 39.968703 ], [ -75.156232, 39.968641 ], [ -75.156278, 39.968424 ], [ -75.156292, 39.968359 ], [ -75.156346, 39.968092 ], [ -75.156427, 39.967693 ], [ -75.156551, 39.967132 ], [ -75.156772, 39.966151 ], [ -75.15692, 39.965458 ], [ -75.157018, 39.965019 ], [ -75.157114, 39.964566 ], [ -75.157219, 39.96407 ], [ -75.157328, 39.963592 ], [ -75.157398, 39.963277 ], [ -75.157467, 39.962969 ], [ -75.157568, 39.962496 ], [ -75.157668, 39.962013 ], [ -75.157699, 39.961862 ], [ -75.157709, 39.961813 ], [ -75.157721, 39.961755 ], [ -75.157814, 39.961335 ], [ -75.157888, 39.961 ], [ -75.157997, 39.960474 ], [ -75.158104, 39.959966 ], [ -75.158124, 39.959875 ], [ -75.158161, 39.959758 ], [ -75.1583, 39.959123 ], [ -75.158397, 39.958642 ], [ -75.158467, 39.958366 ], [ -75.158526, 39.958092 ], [ -75.158644, 39.957602 ], [ -75.158661, 39.957526 ], [ -75.158676, 39.95746 ], [ -75.158698, 39.957356 ], [ -75.158711, 39.9573 ], [ -75.158723, 39.957239 ], [ -75.158733, 39.957195 ], [ -75.158784, 39.956949 ], [ -75.158816, 39.956793 ], [ -75.158906, 39.95637 ], [ -75.158955, 39.956137 ], [ -75.159044, 39.95578 ], [ -75.159165, 39.955269 ], [ -75.159275, 39.9548 ], [ -75.159403, 39.954259 ], [ -75.159466, 39.953949 ], [ -75.1596, 39.953351 ], [ -75.159682, 39.952949 ], [ -75.159754, 39.952642 ], [ -75.159921, 39.951909 ], [ -75.159943, 39.951796 ], [ -75.159962, 39.951695 ], [ -75.159979, 39.951605 ], [ -75.16005, 39.951229 ], [ -75.160102, 39.950997 ], [ -75.160123, 39.95091 ], [ -75.160235, 39.950396 ], [ -75.16039, 39.94965 ], [ -75.160462, 39.949322 ], [ -75.160557, 39.948868 ], [ -75.160636, 39.948485 ], [ -75.160709, 39.94813 ], [ -75.160789, 39.947742 ], [ -75.160346, 39.947681 ], [ -75.160005, 39.947643 ], [ -75.159705, 39.947603 ], [ -75.159236, 39.947548 ], [ -75.15913, 39.948008 ], [ -75.159082, 39.948199 ], [ -75.158973, 39.948677 ], [ -75.158817, 39.949431 ], [ -75.158642, 39.950202 ], [ -75.158565, 39.950559 ], [ -75.158471, 39.951048 ], [ -75.15845, 39.951117 ], [ -75.158346, 39.951613 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307451", "route_id": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.149187, 40.003918 ], [ -75.149298, 40.004293 ], [ -75.149571, 40.005223 ], [ -75.149766, 40.005877 ], [ -75.149845, 40.006115 ], [ -75.15028, 40.007498 ], [ -75.150466, 40.008047 ], [ -75.150796, 40.009189 ], [ -75.151001, 40.009833 ], [ -75.151045, 40.009962 ], [ -75.151104, 40.01014 ], [ -75.151183, 40.010346 ], [ -75.151412, 40.010892 ], [ -75.1519, 40.011986 ], [ -75.1521, 40.012474 ], [ -75.152124, 40.012533 ], [ -75.152384, 40.01311 ], [ -75.152447, 40.013234 ], [ -75.153066, 40.01441 ], [ -75.153351, 40.014955 ], [ -75.153678, 40.015569 ], [ -75.153857, 40.015896 ], [ -75.154037, 40.016241 ], [ -75.154097, 40.016351 ], [ -75.154172, 40.016498 ], [ -75.154476, 40.017087 ], [ -75.154569, 40.017263 ], [ -75.154774, 40.017631 ], [ -75.155029, 40.018026 ], [ -75.155097, 40.018125 ], [ -75.155358, 40.018553 ], [ -75.155402, 40.018623 ], [ -75.155562, 40.018879 ], [ -75.155681, 40.019059 ], [ -75.155797, 40.019245 ], [ -75.155954, 40.019493 ], [ -75.155985, 40.019538 ], [ -75.156016, 40.019579 ], [ -75.156059, 40.019627 ], [ -75.156095, 40.019667 ], [ -75.15627, 40.019842 ], [ -75.156388, 40.019962 ], [ -75.15691, 40.020479 ], [ -75.157017, 40.020579 ], [ -75.157114, 40.020669 ], [ -75.157187, 40.020745 ], [ -75.157474, 40.021038 ], [ -75.157724, 40.021284 ], [ -75.157984, 40.021564 ], [ -75.158324, 40.021924 ], [ -75.158828, 40.022515 ], [ -75.158917, 40.022633 ], [ -75.158974, 40.022723 ], [ -75.159022, 40.02281 ], [ -75.159081, 40.022922 ], [ -75.159122, 40.023025 ], [ -75.159156, 40.0231 ], [ -75.159181, 40.023162 ], [ -75.159204, 40.023216 ], [ -75.15928, 40.023368 ], [ -75.159325, 40.023469 ], [ -75.159549, 40.02392 ], [ -75.159573, 40.023966 ], [ -75.159759, 40.02438 ], [ -75.159797, 40.024465 ], [ -75.159829, 40.024544 ], [ -75.159849, 40.024615 ], [ -75.15986, 40.024695 ], [ -75.159869, 40.024772 ], [ -75.159883, 40.024952 ], [ -75.159902, 40.025181 ], [ -75.159947, 40.025571 ], [ -75.159964, 40.025697 ], [ -75.159987, 40.025788 ], [ -75.160012, 40.025884 ], [ -75.160039, 40.025968 ], [ -75.160067, 40.026036 ], [ -75.160102, 40.026106 ], [ -75.160142, 40.026177 ], [ -75.160192, 40.026247 ], [ -75.160254, 40.026328 ], [ -75.160558, 40.026703 ], [ -75.161001, 40.027269 ], [ -75.161126, 40.027426 ], [ -75.161181, 40.027494 ], [ -75.161234, 40.027561 ], [ -75.161345, 40.027674 ], [ -75.161446, 40.027772 ], [ -75.16151, 40.02782 ], [ -75.161569, 40.027865 ], [ -75.162131, 40.028248 ], [ -75.162275, 40.028347 ], [ -75.163274, 40.028971 ], [ -75.163765, 40.029266 ], [ -75.164149, 40.029486 ], [ -75.164956, 40.029945 ], [ -75.165502, 40.030256 ], [ -75.166176, 40.030631 ], [ -75.166497, 40.030806 ], [ -75.16666, 40.030901 ], [ -75.167791, 40.031537 ], [ -75.168553, 40.03196 ], [ -75.169204, 40.032322 ], [ -75.169304, 40.032377 ], [ -75.170582, 40.033145 ], [ -75.172013, 40.033978 ], [ -75.172674, 40.034376 ], [ -75.173389, 40.034788 ], [ -75.173636, 40.034962 ], [ -75.173705, 40.035019 ], [ -75.173822, 40.035119 ], [ -75.173917, 40.0352 ], [ -75.174607, 40.035748 ], [ -75.174711, 40.035831 ], [ -75.174838, 40.035936 ], [ -75.175, 40.036074 ], [ -75.175173, 40.036215 ], [ -75.175232, 40.036279 ], [ -75.175299, 40.036356 ], [ -75.175387, 40.03646 ], [ -75.175612, 40.03676 ], [ -75.175876, 40.037101 ], [ -75.176144, 40.037451 ], [ -75.176397, 40.037752 ], [ -75.176434, 40.037796 ], [ -75.176926, 40.038395 ], [ -75.176977, 40.038456 ], [ -75.177607, 40.039221 ], [ -75.177641, 40.03926 ], [ -75.177667, 40.03929 ], [ -75.177779, 40.039426 ], [ -75.178624, 40.040441 ], [ -75.178719, 40.040561 ], [ -75.179116, 40.041055 ], [ -75.179599, 40.041619 ], [ -75.179622, 40.041646 ], [ -75.179666, 40.0417 ], [ -75.179976, 40.042094 ], [ -75.18081, 40.043129 ], [ -75.180888, 40.043234 ], [ -75.181043, 40.043443 ], [ -75.181128, 40.043569 ], [ -75.181186, 40.043662 ], [ -75.181223, 40.043734 ], [ -75.1813, 40.043887 ], [ -75.181372, 40.044059 ], [ -75.181418, 40.044188 ], [ -75.181703, 40.044846 ], [ -75.1822, 40.045884 ], [ -75.182803, 40.047077 ], [ -75.183405, 40.048251 ], [ -75.183686, 40.048809 ], [ -75.183735, 40.048905 ], [ -75.18384, 40.049108 ], [ -75.1839, 40.049225 ], [ -75.183951, 40.049321 ], [ -75.184197, 40.049766 ], [ -75.184373, 40.050079 ], [ -75.184553, 40.050396 ], [ -75.184693, 40.050644 ], [ -75.184975, 40.051172 ], [ -75.184994, 40.051208 ], [ -75.185003, 40.051224 ], [ -75.185216, 40.05162 ], [ -75.18529, 40.051738 ], [ -75.185672, 40.052423 ], [ -75.185813, 40.052674 ], [ -75.18599, 40.053006 ], [ -75.186094, 40.053197 ], [ -75.186128, 40.053265 ], [ -75.186195, 40.053396 ], [ -75.186484, 40.053968 ], [ -75.186753, 40.05446 ], [ -75.186964, 40.054846 ], [ -75.18733, 40.055474 ], [ -75.18807, 40.056892 ], [ -75.188155, 40.057069 ], [ -75.18824, 40.05722 ], [ -75.188305, 40.057334 ], [ -75.188411, 40.05748 ], [ -75.188527, 40.057601 ], [ -75.188716, 40.057781 ], [ -75.188839, 40.057896 ], [ -75.189413, 40.058408 ], [ -75.189712, 40.058693 ], [ -75.189993, 40.059008 ], [ -75.190188, 40.059236 ], [ -75.190868, 40.059976 ], [ -75.191041, 40.06019 ], [ -75.191271, 40.060463 ], [ -75.191507, 40.060759 ], [ -75.191869, 40.061271 ], [ -75.192557, 40.062193 ], [ -75.192855, 40.062594 ], [ -75.192957, 40.062728 ], [ -75.192994, 40.062779 ], [ -75.193047, 40.062854 ], [ -75.193482, 40.063443 ], [ -75.193624, 40.063637 ], [ -75.193773, 40.063837 ], [ -75.193813, 40.063894 ], [ -75.193975, 40.064126 ], [ -75.194161, 40.064367 ], [ -75.194218, 40.064426 ], [ -75.194318, 40.064501 ], [ -75.19445, 40.064586 ], [ -75.194566, 40.064651 ], [ -75.195092, 40.064903 ], [ -75.195382, 40.065039 ], [ -75.195532, 40.065113 ], [ -75.195691, 40.065191 ], [ -75.195792, 40.065245 ], [ -75.195864, 40.065297 ], [ -75.195928, 40.065351 ], [ -75.195979, 40.065401 ], [ -75.196017, 40.065447 ], [ -75.196029, 40.065462 ], [ -75.196061, 40.065515 ], [ -75.196088, 40.065573 ], [ -75.196109, 40.065636 ], [ -75.196197, 40.065942 ], [ -75.196245, 40.066144 ], [ -75.196294, 40.066354 ], [ -75.196366, 40.066624 ], [ -75.196428, 40.066839 ], [ -75.196461, 40.066955 ], [ -75.196469, 40.066981 ], [ -75.196508, 40.067085 ], [ -75.196546, 40.067153 ], [ -75.196596, 40.067214 ], [ -75.19664, 40.067254 ], [ -75.196773, 40.067361 ], [ -75.197082, 40.067552 ], [ -75.197336, 40.06771 ], [ -75.198321, 40.068343 ], [ -75.198495, 40.068456 ], [ -75.198632, 40.068557 ], [ -75.198781, 40.068681 ], [ -75.199739, 40.069522 ], [ -75.199843, 40.069632 ], [ -75.200148, 40.069961 ], [ -75.200279, 40.070124 ], [ -75.20078, 40.07073 ], [ -75.201307, 40.071358 ], [ -75.201477, 40.071579 ], [ -75.201611, 40.071754 ], [ -75.201773, 40.071981 ], [ -75.202654, 40.073223 ], [ -75.202866, 40.07349 ], [ -75.203097, 40.073769 ], [ -75.203439, 40.074183 ], [ -75.203474, 40.074225 ], [ -75.203549, 40.074297 ], [ -75.203611, 40.07434 ], [ -75.203754, 40.074427 ], [ -75.204265, 40.074738 ], [ -75.204782, 40.075047 ], [ -75.204912, 40.075126 ], [ -75.2064, 40.076028 ], [ -75.207314, 40.07655 ], [ -75.20746, 40.076631 ], [ -75.207915, 40.076885 ], [ -75.208068, 40.076969 ], [ -75.20817, 40.077017 ], [ -75.208936, 40.077311 ], [ -75.208759, 40.077557 ], [ -75.208689, 40.077655 ], [ -75.208637, 40.077708 ], [ -75.208609, 40.077728 ], [ -75.208558, 40.077749 ], [ -75.208491, 40.077762 ], [ -75.208407, 40.077768 ], [ -75.208287, 40.077763 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307452", "route_id": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.158346, 39.951613 ], [ -75.158314, 39.951723 ], [ -75.158286, 39.951907 ], [ -75.15822, 39.952172 ], [ -75.15813, 39.952656 ], [ -75.158106, 39.952757 ], [ -75.158094, 39.952822 ], [ -75.158086, 39.952865 ], [ -75.158041, 39.953065 ], [ -75.157998, 39.953267 ], [ -75.157955, 39.953482 ], [ -75.157913, 39.95366 ], [ -75.157891, 39.953762 ], [ -75.157755, 39.954347 ], [ -75.157691, 39.954677 ], [ -75.157567, 39.955231 ], [ -75.157488, 39.955593 ], [ -75.157406, 39.955942 ], [ -75.157356, 39.956157 ], [ -75.157341, 39.956216 ], [ -75.157202, 39.956815 ], [ -75.157163, 39.956989 ], [ -75.157152, 39.957038 ], [ -75.15713, 39.957134 ], [ -75.157103, 39.957253 ], [ -75.157085, 39.957336 ], [ -75.157069, 39.957406 ], [ -75.156962, 39.957877 ], [ -75.156897, 39.958165 ], [ -75.156826, 39.958467 ], [ -75.156737, 39.95892 ], [ -75.156697, 39.959098 ], [ -75.15664, 39.959334 ], [ -75.156553, 39.959767 ], [ -75.156447, 39.960282 ], [ -75.156414, 39.960422 ], [ -75.156324, 39.960826 ], [ -75.156236, 39.961217 ], [ -75.156137, 39.961669 ], [ -75.156125, 39.961722 ], [ -75.156114, 39.961773 ], [ -75.155997, 39.962323 ], [ -75.15589, 39.962796 ], [ -75.155827, 39.963099 ], [ -75.15576, 39.963409 ], [ -75.155672, 39.963818 ], [ -75.15557, 39.964273 ], [ -75.155482, 39.964672 ], [ -75.155397, 39.965067 ], [ -75.155256, 39.965714 ], [ -75.15504, 39.96667 ], [ -75.154812, 39.967729 ], [ -75.154686, 39.96832 ], [ -75.154597, 39.968742 ], [ -75.154555, 39.968925 ], [ -75.154443, 39.969415 ], [ -75.154358, 39.969822 ], [ -75.154266, 39.970231 ], [ -75.15414, 39.970804 ], [ -75.154035, 39.971312 ], [ -75.15395, 39.971692 ], [ -75.153773, 39.972515 ], [ -75.15369, 39.972881 ], [ -75.153602, 39.973315 ], [ -75.153489, 39.973808 ], [ -75.15319, 39.975166 ], [ -75.152881, 39.976594 ], [ -75.152622, 39.977793 ], [ -75.15259, 39.977955 ], [ -75.152318, 39.979167 ], [ -75.152288, 39.979303 ], [ -75.152241, 39.979527 ], [ -75.152013, 39.980588 ], [ -75.151915, 39.981038 ], [ -75.151899, 39.9811 ], [ -75.151789, 39.981601 ], [ -75.151721, 39.981912 ], [ -75.151592, 39.982517 ], [ -75.151263, 39.983993 ], [ -75.150911, 39.985595 ], [ -75.150784, 39.986213 ], [ -75.150677, 39.986652 ], [ -75.150576, 39.987196 ], [ -75.150505, 39.987525 ], [ -75.150465, 39.987702 ], [ -75.150357, 39.988158 ], [ -75.150247, 39.988687 ], [ -75.149918, 39.990188 ], [ -75.149605, 39.991631 ], [ -75.149585, 39.991675 ], [ -75.149053, 39.991595 ], [ -75.148938, 39.991577 ], [ -75.148512, 39.991517 ], [ -75.148311, 39.991492 ], [ -75.148169, 39.992008 ], [ -75.148074, 39.992362 ], [ -75.147896, 39.993089 ], [ -75.147708, 39.993778 ], [ -75.147623, 39.994074 ], [ -75.147521, 39.994477 ], [ -75.14748, 39.994648 ], [ -75.147388, 39.994946 ], [ -75.147088, 39.996142 ], [ -75.146988, 39.996544 ], [ -75.146895, 39.996893 ], [ -75.146815, 39.997239 ], [ -75.146783, 39.997378 ], [ -75.146773, 39.997492 ], [ -75.146778, 39.997598 ], [ -75.146785, 39.997642 ], [ -75.146806, 39.997777 ], [ -75.14685, 39.997962 ], [ -75.146908, 39.998144 ], [ -75.146974, 39.998307 ], [ -75.147134, 39.998684 ], [ -75.14738, 39.999227 ], [ -75.147581, 39.999643 ], [ -75.147639, 39.999759 ], [ -75.147702, 39.999894 ], [ -75.147753, 40.000014 ], [ -75.147823, 40.000178 ], [ -75.147926, 40.000421 ], [ -75.148046, 40.000703 ], [ -75.148164, 40.000989 ], [ -75.148456, 40.001771 ], [ -75.148512, 40.001925 ], [ -75.148808, 40.002679 ], [ -75.148872, 40.002904 ], [ -75.148894, 40.00298 ], [ -75.149121, 40.003705 ], [ -75.149187, 40.003918 ], [ -75.149298, 40.004293 ], [ -75.149571, 40.005223 ], [ -75.149766, 40.005877 ], [ -75.149845, 40.006115 ], [ -75.15028, 40.007498 ], [ -75.150466, 40.008047 ], [ -75.150796, 40.009189 ], [ -75.151001, 40.009833 ], [ -75.151045, 40.009962 ], [ -75.151104, 40.01014 ], [ -75.151183, 40.010346 ], [ -75.151412, 40.010892 ], [ -75.1519, 40.011986 ], [ -75.1521, 40.012474 ], [ -75.152124, 40.012533 ], [ -75.152384, 40.01311 ], [ -75.152447, 40.013234 ], [ -75.153066, 40.01441 ], [ -75.153351, 40.014955 ], [ -75.153678, 40.015569 ], [ -75.153857, 40.015896 ], [ -75.154037, 40.016241 ], [ -75.154097, 40.016351 ], [ -75.154172, 40.016498 ], [ -75.154476, 40.017087 ], [ -75.154569, 40.017263 ], [ -75.154774, 40.017631 ], [ -75.155029, 40.018026 ], [ -75.155097, 40.018125 ], [ -75.155358, 40.018553 ], [ -75.155402, 40.018623 ], [ -75.155562, 40.018879 ], [ -75.155681, 40.019059 ], [ -75.155797, 40.019245 ], [ -75.155954, 40.019493 ], [ -75.155985, 40.019538 ], [ -75.156016, 40.019579 ], [ -75.156059, 40.019627 ], [ -75.156095, 40.019667 ], [ -75.15627, 40.019842 ], [ -75.156388, 40.019962 ], [ -75.15691, 40.020479 ], [ -75.157017, 40.020579 ], [ -75.157114, 40.020669 ], [ -75.157187, 40.020745 ], [ -75.157474, 40.021038 ], [ -75.157724, 40.021284 ], [ -75.157984, 40.021564 ], [ -75.158324, 40.021924 ], [ -75.158828, 40.022515 ], [ -75.158917, 40.022633 ], [ -75.158974, 40.022723 ], [ -75.159022, 40.02281 ], [ -75.159081, 40.022922 ], [ -75.159122, 40.023025 ], [ -75.159156, 40.0231 ], [ -75.159181, 40.023162 ], [ -75.159204, 40.023216 ], [ -75.15928, 40.023368 ], [ -75.159325, 40.023469 ], [ -75.159549, 40.02392 ], [ -75.159573, 40.023966 ], [ -75.159759, 40.02438 ], [ -75.159797, 40.024465 ], [ -75.159829, 40.024544 ], [ -75.159849, 40.024615 ], [ -75.15986, 40.024695 ], [ -75.159869, 40.024772 ], [ -75.159883, 40.024952 ], [ -75.159902, 40.025181 ], [ -75.159947, 40.025571 ], [ -75.159964, 40.025697 ], [ -75.159987, 40.025788 ], [ -75.160012, 40.025884 ], [ -75.160039, 40.025968 ], [ -75.160067, 40.026036 ], [ -75.160102, 40.026106 ], [ -75.160142, 40.026177 ], [ -75.160192, 40.026247 ], [ -75.160254, 40.026328 ], [ -75.160558, 40.026703 ], [ -75.161001, 40.027269 ], [ -75.161126, 40.027426 ], [ -75.161181, 40.027494 ], [ -75.161234, 40.027561 ], [ -75.161345, 40.027674 ], [ -75.161446, 40.027772 ], [ -75.16151, 40.02782 ], [ -75.161569, 40.027865 ], [ -75.162131, 40.028248 ], [ -75.162275, 40.028347 ], [ -75.163274, 40.028971 ], [ -75.163765, 40.029266 ], [ -75.164149, 40.029486 ], [ -75.164956, 40.029945 ], [ -75.165502, 40.030256 ], [ -75.166176, 40.030631 ], [ -75.166497, 40.030806 ], [ -75.16666, 40.030901 ], [ -75.167791, 40.031537 ], [ -75.168553, 40.03196 ], [ -75.169204, 40.032322 ], [ -75.169304, 40.032377 ], [ -75.170582, 40.033145 ], [ -75.172013, 40.033978 ], [ -75.172674, 40.034376 ], [ -75.173389, 40.034788 ], [ -75.173636, 40.034962 ], [ -75.173705, 40.035019 ], [ -75.173822, 40.035119 ], [ -75.173917, 40.0352 ], [ -75.174607, 40.035748 ], [ -75.174711, 40.035831 ], [ -75.174838, 40.035936 ], [ -75.175, 40.036074 ], [ -75.175173, 40.036215 ], [ -75.175232, 40.036279 ], [ -75.175299, 40.036356 ], [ -75.175387, 40.03646 ], [ -75.175612, 40.03676 ], [ -75.175876, 40.037101 ], [ -75.176144, 40.037451 ], [ -75.176397, 40.037752 ], [ -75.176434, 40.037796 ], [ -75.176926, 40.038395 ], [ -75.176977, 40.038456 ], [ -75.177607, 40.039221 ], [ -75.177641, 40.03926 ], [ -75.177667, 40.03929 ], [ -75.177779, 40.039426 ], [ -75.178624, 40.040441 ], [ -75.178719, 40.040561 ], [ -75.179116, 40.041055 ], [ -75.179599, 40.041619 ], [ -75.179622, 40.041646 ], [ -75.179666, 40.0417 ], [ -75.179976, 40.042094 ], [ -75.18081, 40.043129 ], [ -75.180888, 40.043234 ], [ -75.181043, 40.043443 ], [ -75.181128, 40.043569 ], [ -75.181186, 40.043662 ], [ -75.181223, 40.043734 ], [ -75.1813, 40.043887 ], [ -75.181372, 40.044059 ], [ -75.181418, 40.044188 ], [ -75.181703, 40.044846 ], [ -75.1822, 40.045884 ], [ -75.182803, 40.047077 ], [ -75.183405, 40.048251 ], [ -75.183686, 40.048809 ], [ -75.183735, 40.048905 ], [ -75.18384, 40.049108 ], [ -75.1839, 40.049225 ], [ -75.183951, 40.049321 ], [ -75.184197, 40.049766 ], [ -75.184373, 40.050079 ], [ -75.184553, 40.050396 ], [ -75.184693, 40.050644 ], [ -75.184975, 40.051172 ], [ -75.184994, 40.051208 ], [ -75.185003, 40.051224 ], [ -75.185216, 40.05162 ], [ -75.18529, 40.051738 ], [ -75.185672, 40.052423 ], [ -75.185813, 40.052674 ], [ -75.18599, 40.053006 ], [ -75.186094, 40.053197 ], [ -75.186128, 40.053265 ], [ -75.186195, 40.053396 ], [ -75.186484, 40.053968 ], [ -75.186753, 40.05446 ], [ -75.186964, 40.054846 ], [ -75.18733, 40.055474 ], [ -75.18807, 40.056892 ], [ -75.188155, 40.057069 ], [ -75.18824, 40.05722 ], [ -75.188305, 40.057334 ], [ -75.188411, 40.05748 ], [ -75.188527, 40.057601 ], [ -75.188716, 40.057781 ], [ -75.188839, 40.057896 ], [ -75.189413, 40.058408 ], [ -75.189712, 40.058693 ], [ -75.189993, 40.059008 ], [ -75.190188, 40.059236 ], [ -75.190868, 40.059976 ], [ -75.191041, 40.06019 ], [ -75.191271, 40.060463 ], [ -75.191507, 40.060759 ], [ -75.191869, 40.061271 ], [ -75.192557, 40.062193 ], [ -75.192855, 40.062594 ], [ -75.192957, 40.062728 ], [ -75.192994, 40.062779 ], [ -75.193047, 40.062854 ], [ -75.193482, 40.063443 ], [ -75.193624, 40.063637 ], [ -75.193773, 40.063837 ], [ -75.193813, 40.063894 ], [ -75.193975, 40.064126 ], [ -75.194161, 40.064367 ], [ -75.194218, 40.064426 ], [ -75.194318, 40.064501 ], [ -75.19445, 40.064586 ], [ -75.194566, 40.064651 ], [ -75.195092, 40.064903 ], [ -75.195382, 40.065039 ], [ -75.195532, 40.065113 ], [ -75.195691, 40.065191 ], [ -75.195792, 40.065245 ], [ -75.195864, 40.065297 ], [ -75.195928, 40.065351 ], [ -75.195979, 40.065401 ], [ -75.196017, 40.065447 ], [ -75.196029, 40.065462 ], [ -75.196061, 40.065515 ], [ -75.196088, 40.065573 ], [ -75.196109, 40.065636 ], [ -75.196197, 40.065942 ], [ -75.196245, 40.066144 ], [ -75.196294, 40.066354 ], [ -75.196366, 40.066624 ], [ -75.196428, 40.066839 ], [ -75.196461, 40.066955 ], [ -75.196469, 40.066981 ], [ -75.196508, 40.067085 ], [ -75.196546, 40.067153 ], [ -75.196596, 40.067214 ], [ -75.19664, 40.067254 ], [ -75.196773, 40.067361 ], [ -75.197082, 40.067552 ], [ -75.197336, 40.06771 ], [ -75.198321, 40.068343 ], [ -75.198495, 40.068456 ], [ -75.198632, 40.068557 ], [ -75.198781, 40.068681 ], [ -75.199739, 40.069522 ], [ -75.199843, 40.069632 ], [ -75.200148, 40.069961 ], [ -75.200279, 40.070124 ], [ -75.20078, 40.07073 ], [ -75.201307, 40.071358 ], [ -75.201477, 40.071579 ], [ -75.201611, 40.071754 ], [ -75.201773, 40.071981 ], [ -75.202654, 40.073223 ], [ -75.202866, 40.07349 ], [ -75.203097, 40.073769 ], [ -75.203439, 40.074183 ], [ -75.203474, 40.074225 ], [ -75.203549, 40.074297 ], [ -75.203611, 40.07434 ], [ -75.203754, 40.074427 ], [ -75.204265, 40.074738 ], [ -75.204782, 40.075047 ], [ -75.204912, 40.075126 ], [ -75.2064, 40.076028 ], [ -75.207314, 40.07655 ], [ -75.20746, 40.076631 ], [ -75.207915, 40.076885 ], [ -75.208068, 40.076969 ], [ -75.20817, 40.077017 ], [ -75.208936, 40.077311 ], [ -75.208759, 40.077557 ], [ -75.208689, 40.077655 ], [ -75.208637, 40.077708 ], [ -75.208609, 40.077728 ], [ -75.208558, 40.077749 ], [ -75.208491, 40.077762 ], [ -75.208407, 40.077768 ], [ -75.208287, 40.077763 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307453", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.07789, 40.023437 ], [ -75.077839, 40.023497 ], [ -75.077782, 40.023623 ], [ -75.07776, 40.023764 ], [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079882, 40.02365 ], [ -75.079971, 40.023513 ], [ -75.08052, 40.023863 ], [ -75.081243, 40.024331 ], [ -75.081565, 40.02451 ], [ -75.081924, 40.024719 ], [ -75.082263, 40.0249 ], [ -75.082673, 40.025129 ], [ -75.083435, 40.025549 ], [ -75.08422, 40.025983 ], [ -75.084918, 40.026373 ], [ -75.086007, 40.026979 ], [ -75.087103, 40.027588 ], [ -75.08819, 40.028206 ], [ -75.088625, 40.028442 ], [ -75.088968, 40.028634 ], [ -75.089283, 40.028816 ], [ -75.089385, 40.028873 ], [ -75.089537, 40.028952 ], [ -75.089884, 40.02914 ], [ -75.090031, 40.029222 ], [ -75.09018, 40.029303 ], [ -75.090482, 40.029482 ], [ -75.090574, 40.029526 ], [ -75.090845, 40.029678 ], [ -75.091582, 40.030083 ], [ -75.093027, 40.030894 ], [ -75.092798, 40.03113 ], [ -75.092627, 40.031304 ], [ -75.092413, 40.031527 ], [ -75.092231, 40.031718 ], [ -75.092032, 40.031921 ], [ -75.091822, 40.032142 ], [ -75.091568, 40.032394 ], [ -75.091404, 40.032565 ], [ -75.091192, 40.032787 ], [ -75.091006, 40.032979 ], [ -75.090811, 40.033183 ], [ -75.090595, 40.033398 ], [ -75.090366, 40.033643 ], [ -75.090171, 40.033836 ], [ -75.089975, 40.03404 ], [ -75.089782, 40.034239 ], [ -75.089567, 40.034445 ], [ -75.089377, 40.034658 ], [ -75.089154, 40.034889 ], [ -75.088951, 40.035087 ], [ -75.088762, 40.035287 ], [ -75.088586, 40.035464 ], [ -75.088479, 40.035581 ], [ -75.088393, 40.035666 ], [ -75.088338, 40.035708 ], [ -75.088134, 40.035917 ], [ -75.088081, 40.035955 ], [ -75.088025, 40.03599 ], [ -75.087944, 40.036029 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.088346, 40.041716 ], [ -75.088448, 40.042166 ], [ -75.088484, 40.042325 ], [ -75.08856, 40.042656 ], [ -75.088635, 40.042975 ], [ -75.088697, 40.043264 ], [ -75.088688, 40.043355 ], [ -75.088789, 40.04382 ], [ -75.088839, 40.043959 ], [ -75.088888, 40.044101 ], [ -75.088968, 40.044164 ], [ -75.089011, 40.044287 ], [ -75.089065, 40.044403 ], [ -75.089104, 40.04448 ], [ -75.089127, 40.044523 ], [ -75.089144, 40.044549 ], [ -75.089164, 40.044577 ], [ -75.089199, 40.044622 ], [ -75.08926, 40.044695 ], [ -75.090441, 40.046076 ], [ -75.090572, 40.046267 ], [ -75.090791, 40.046588 ], [ -75.090923, 40.04678 ], [ -75.09097, 40.046859 ], [ -75.091009, 40.046935 ], [ -75.091042, 40.047018 ], [ -75.091064, 40.047079 ], [ -75.091092, 40.047167 ], [ -75.091124, 40.047258 ], [ -75.091143, 40.047357 ], [ -75.091184, 40.04759 ], [ -75.091278, 40.048091 ], [ -75.091349, 40.048801 ], [ -75.091422, 40.049517 ], [ -75.091595, 40.050453 ], [ -75.091638, 40.050625 ], [ -75.0918, 40.051448 ], [ -75.09201, 40.052428 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090227, 40.065422 ], [ -75.089038, 40.0666 ], [ -75.087983, 40.067629 ], [ -75.087234, 40.068394 ], [ -75.086993, 40.06863 ], [ -75.085674, 40.069944 ], [ -75.0855, 40.070111 ], [ -75.085439, 40.070174 ], [ -75.085379, 40.070246 ], [ -75.085341, 40.070301 ], [ -75.085315, 40.070355 ], [ -75.085298, 40.070409 ], [ -75.085289, 40.070471 ], [ -75.085244, 40.070906 ], [ -75.08516, 40.071478 ], [ -75.085047, 40.072215 ], [ -75.084927, 40.072993 ], [ -75.084893, 40.073235 ], [ -75.0848, 40.07381 ], [ -75.084786, 40.073847 ], [ -75.084764, 40.073876 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085129, 40.076537 ], [ -75.085152, 40.076686 ], [ -75.085212, 40.077076 ], [ -75.085219, 40.077116 ], [ -75.085225, 40.077155 ], [ -75.085237, 40.077194 ], [ -75.085642, 40.077537 ], [ -75.086134, 40.077965 ], [ -75.086451, 40.078258 ], [ -75.086722, 40.078481 ], [ -75.086917, 40.078646 ], [ -75.087107, 40.078815 ], [ -75.0873, 40.07899 ], [ -75.087711, 40.079352 ], [ -75.087782, 40.079414 ], [ -75.087981, 40.079587 ], [ -75.088123, 40.079716 ], [ -75.088428, 40.079977 ], [ -75.088641, 40.080169 ], [ -75.088708, 40.080229 ], [ -75.088794, 40.080303 ], [ -75.088963, 40.080452 ], [ -75.08927, 40.080712 ], [ -75.089673, 40.081055 ], [ -75.090012, 40.081343 ], [ -75.090738, 40.081961 ], [ -75.091063, 40.082236 ], [ -75.091477, 40.082587 ], [ -75.091527, 40.082629 ], [ -75.092204, 40.083205 ], [ -75.092565, 40.083507 ], [ -75.092652, 40.083579 ], [ -75.092709, 40.083626 ], [ -75.092728, 40.083686 ], [ -75.092868, 40.08388 ], [ -75.093042, 40.084114 ], [ -75.09314, 40.084242 ], [ -75.093202, 40.084324 ], [ -75.093298, 40.084471 ], [ -75.093375, 40.084633 ], [ -75.093385, 40.084655 ], [ -75.093393, 40.084668 ], [ -75.093505, 40.084779 ], [ -75.093514, 40.084828 ], [ -75.093559, 40.085093 ], [ -75.093599, 40.085396 ], [ -75.093615, 40.085536 ], [ -75.093655, 40.085817 ], [ -75.093674, 40.086034 ], [ -75.0937, 40.086306 ], [ -75.093707, 40.086465 ], [ -75.093738, 40.087122 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307454", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.07789, 40.023437 ], [ -75.077839, 40.023497 ], [ -75.077782, 40.023623 ], [ -75.07776, 40.023764 ], [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079882, 40.02365 ], [ -75.079971, 40.023513 ], [ -75.08052, 40.023863 ], [ -75.081243, 40.024331 ], [ -75.081565, 40.02451 ], [ -75.081924, 40.024719 ], [ -75.082263, 40.0249 ], [ -75.082673, 40.025129 ], [ -75.083435, 40.025549 ], [ -75.08422, 40.025983 ], [ -75.084918, 40.026373 ], [ -75.086007, 40.026979 ], [ -75.087103, 40.027588 ], [ -75.08819, 40.028206 ], [ -75.088625, 40.028442 ], [ -75.088968, 40.028634 ], [ -75.089283, 40.028816 ], [ -75.089385, 40.028873 ], [ -75.089537, 40.028952 ], [ -75.089884, 40.02914 ], [ -75.090031, 40.029222 ], [ -75.09018, 40.029303 ], [ -75.090482, 40.029482 ], [ -75.090574, 40.029526 ], [ -75.090845, 40.029678 ], [ -75.091582, 40.030083 ], [ -75.093027, 40.030894 ], [ -75.092798, 40.03113 ], [ -75.092627, 40.031304 ], [ -75.092413, 40.031527 ], [ -75.092231, 40.031718 ], [ -75.092032, 40.031921 ], [ -75.091822, 40.032142 ], [ -75.091568, 40.032394 ], [ -75.091404, 40.032565 ], [ -75.091192, 40.032787 ], [ -75.091006, 40.032979 ], [ -75.090811, 40.033183 ], [ -75.090595, 40.033398 ], [ -75.090366, 40.033643 ], [ -75.090171, 40.033836 ], [ -75.089975, 40.03404 ], [ -75.089782, 40.034239 ], [ -75.089567, 40.034445 ], [ -75.089377, 40.034658 ], [ -75.089154, 40.034889 ], [ -75.088951, 40.035087 ], [ -75.088762, 40.035287 ], [ -75.088586, 40.035464 ], [ -75.088479, 40.035581 ], [ -75.088393, 40.035666 ], [ -75.088338, 40.035708 ], [ -75.088134, 40.035917 ], [ -75.088081, 40.035955 ], [ -75.088025, 40.03599 ], [ -75.087944, 40.036029 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.088346, 40.041716 ], [ -75.088448, 40.042166 ], [ -75.088484, 40.042325 ], [ -75.08856, 40.042656 ], [ -75.088635, 40.042975 ], [ -75.088697, 40.043264 ], [ -75.088688, 40.043355 ], [ -75.088789, 40.04382 ], [ -75.088839, 40.043959 ], [ -75.088888, 40.044101 ], [ -75.088968, 40.044164 ], [ -75.089011, 40.044287 ], [ -75.089065, 40.044403 ], [ -75.089104, 40.04448 ], [ -75.089127, 40.044523 ], [ -75.089144, 40.044549 ], [ -75.089164, 40.044577 ], [ -75.089199, 40.044622 ], [ -75.08926, 40.044695 ], [ -75.090441, 40.046076 ], [ -75.090572, 40.046267 ], [ -75.090791, 40.046588 ], [ -75.090923, 40.04678 ], [ -75.09097, 40.046859 ], [ -75.091009, 40.046935 ], [ -75.091042, 40.047018 ], [ -75.091064, 40.047079 ], [ -75.091092, 40.047167 ], [ -75.091124, 40.047258 ], [ -75.091143, 40.047357 ], [ -75.091184, 40.04759 ], [ -75.091278, 40.048091 ], [ -75.091349, 40.048801 ], [ -75.091422, 40.049517 ], [ -75.091595, 40.050453 ], [ -75.091638, 40.050625 ], [ -75.0918, 40.051448 ], [ -75.09201, 40.052428 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090227, 40.065422 ], [ -75.089038, 40.0666 ], [ -75.087983, 40.067629 ], [ -75.087234, 40.068394 ], [ -75.086993, 40.06863 ], [ -75.085674, 40.069944 ], [ -75.0855, 40.070111 ], [ -75.085439, 40.070174 ], [ -75.085379, 40.070246 ], [ -75.085341, 40.070301 ], [ -75.085315, 40.070355 ], [ -75.085298, 40.070409 ], [ -75.085289, 40.070471 ], [ -75.085244, 40.070906 ], [ -75.08516, 40.071478 ], [ -75.085047, 40.072215 ], [ -75.084927, 40.072993 ], [ -75.084893, 40.073235 ], [ -75.0848, 40.07381 ], [ -75.084786, 40.073847 ], [ -75.084764, 40.073876 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085129, 40.076537 ], [ -75.085152, 40.076686 ], [ -75.085212, 40.077076 ], [ -75.085219, 40.077116 ], [ -75.085225, 40.077155 ], [ -75.085237, 40.077194 ], [ -75.085642, 40.077537 ], [ -75.086134, 40.077965 ], [ -75.086451, 40.078258 ], [ -75.086722, 40.078481 ], [ -75.086917, 40.078646 ], [ -75.087107, 40.078815 ], [ -75.0873, 40.07899 ], [ -75.087711, 40.079352 ], [ -75.087782, 40.079414 ], [ -75.087981, 40.079587 ], [ -75.088123, 40.079716 ], [ -75.088428, 40.079977 ], [ -75.088641, 40.080169 ], [ -75.088708, 40.080229 ], [ -75.088794, 40.080303 ], [ -75.088963, 40.080452 ], [ -75.08927, 40.080712 ], [ -75.089673, 40.081055 ], [ -75.090012, 40.081343 ], [ -75.090738, 40.081961 ], [ -75.091063, 40.082236 ], [ -75.091477, 40.082587 ], [ -75.091527, 40.082629 ], [ -75.092204, 40.083205 ], [ -75.092565, 40.083507 ], [ -75.092652, 40.083579 ], [ -75.092709, 40.083626 ], [ -75.092728, 40.083686 ], [ -75.092868, 40.08388 ], [ -75.093042, 40.084114 ], [ -75.09314, 40.084242 ], [ -75.093202, 40.084324 ], [ -75.093298, 40.084471 ], [ -75.093375, 40.084633 ], [ -75.093385, 40.084655 ], [ -75.093393, 40.084668 ], [ -75.093505, 40.084779 ], [ -75.093514, 40.084828 ], [ -75.093559, 40.085093 ], [ -75.093599, 40.085396 ], [ -75.093615, 40.085536 ], [ -75.093655, 40.085817 ], [ -75.093674, 40.086034 ], [ -75.0937, 40.086306 ], [ -75.093707, 40.086465 ], [ -75.093738, 40.087122 ], [ -75.093769, 40.087787 ], [ -75.093797, 40.088511 ], [ -75.093818, 40.088918 ], [ -75.093771, 40.088991 ], [ -75.093742, 40.089282 ], [ -75.093727, 40.08944 ], [ -75.093702, 40.089558 ], [ -75.0936, 40.090045 ], [ -75.093553, 40.090221 ], [ -75.093462, 40.090501 ], [ -75.09331, 40.091044 ], [ -75.093241, 40.091353 ], [ -75.09318, 40.091546 ], [ -75.093106, 40.091838 ], [ -75.093041, 40.09206 ], [ -75.092954, 40.092328 ], [ -75.092938, 40.092484 ], [ -75.092973, 40.092564 ], [ -75.092917, 40.09278 ], [ -75.092765, 40.093337 ], [ -75.092604, 40.093909 ], [ -75.092488, 40.094308 ], [ -75.092337, 40.094907 ], [ -75.092227, 40.095309 ], [ -75.09215, 40.095372 ], [ -75.092013, 40.095804 ], [ -75.091914, 40.096286 ], [ -75.09185, 40.096506 ], [ -75.091813, 40.096615 ], [ -75.091785, 40.096698 ], [ -75.091744, 40.096778 ], [ -75.091719, 40.096834 ], [ -75.091663, 40.096937 ], [ -75.091602, 40.097037 ], [ -75.091534, 40.097141 ], [ -75.091478, 40.097216 ], [ -75.091438, 40.097259 ], [ -75.091421, 40.097277 ], [ -75.091239, 40.097465 ], [ -75.091213, 40.097538 ], [ -75.091022, 40.097735 ], [ -75.090815, 40.097949 ], [ -75.090552, 40.09821 ], [ -75.090509, 40.098249 ], [ -75.090056, 40.098693 ], [ -75.089925, 40.098825 ], [ -75.089694, 40.099059 ], [ -75.089522, 40.099225 ], [ -75.089295, 40.099444 ], [ -75.088346, 40.100397 ], [ -75.087441, 40.101293 ], [ -75.086565, 40.102174 ], [ -75.086428, 40.102322 ], [ -75.086302, 40.102475 ], [ -75.08619, 40.102633 ], [ -75.086128, 40.102733 ], [ -75.086119, 40.102748 ], [ -75.086018, 40.102919 ], [ -75.085864, 40.103221 ], [ -75.08581, 40.103352 ], [ -75.085635, 40.103843 ], [ -75.08562, 40.103888 ], [ -75.085473, 40.104335 ], [ -75.085352, 40.10471 ], [ -75.085294, 40.104761 ], [ -75.085161, 40.105073 ], [ -75.085127, 40.10516 ], [ -75.085077, 40.105277 ], [ -75.085011, 40.105424 ], [ -75.084999, 40.105445 ], [ -75.084944, 40.105543 ], [ -75.084938, 40.105553 ], [ -75.084871, 40.105675 ], [ -75.084809, 40.10577 ], [ -75.084718, 40.105879 ], [ -75.084612, 40.106041 ], [ -75.084513, 40.106185 ], [ -75.08438, 40.106345 ], [ -75.084212, 40.106528 ], [ -75.084032, 40.106714 ], [ -75.083508, 40.107229 ], [ -75.083278, 40.107462 ], [ -75.083238, 40.107502 ], [ -75.083017, 40.107716 ], [ -75.082909, 40.107809 ], [ -75.082892, 40.107825 ], [ -75.08263, 40.108028 ], [ -75.082495, 40.108126 ], [ -75.082396, 40.108193 ], [ -75.082276, 40.108277 ], [ -75.082219, 40.108315 ], [ -75.082117, 40.108379 ], [ -75.08203, 40.108425 ], [ -75.081818, 40.108537 ], [ -75.081683, 40.108602 ], [ -75.081601, 40.108641 ], [ -75.081308, 40.108771 ], [ -75.081055, 40.108869 ], [ -75.08061, 40.109018 ], [ -75.079771, 40.109308 ], [ -75.079321, 40.109469 ], [ -75.07892, 40.109617 ], [ -75.0785, 40.109809 ], [ -75.078294, 40.109908 ], [ -75.078159, 40.109981 ], [ -75.077948, 40.110104 ], [ -75.077601, 40.110336 ], [ -75.076773, 40.110884 ], [ -75.076589, 40.111006 ], [ -75.075873, 40.111483 ], [ -75.075043, 40.112041 ], [ -75.074011, 40.112731 ], [ -75.073689, 40.112926 ], [ -75.072737, 40.113673 ], [ -75.072485, 40.113828 ], [ -75.072333, 40.113907 ], [ -75.072215, 40.113982 ], [ -75.072054, 40.114083 ], [ -75.071325, 40.114578 ], [ -75.071309, 40.114588 ], [ -75.071068, 40.114779 ], [ -75.070865, 40.114936 ], [ -75.07076, 40.115016 ], [ -75.070602, 40.115159 ], [ -75.070532, 40.115229 ], [ -75.070381, 40.115375 ], [ -75.070267, 40.115497 ], [ -75.069977, 40.115821 ], [ -75.069879, 40.11595 ], [ -75.069664, 40.11618 ], [ -75.069572, 40.116282 ], [ -75.069521, 40.116347 ], [ -75.068647, 40.117488 ], [ -75.068429, 40.117754 ], [ -75.068311, 40.117913 ], [ -75.068306, 40.11792 ], [ -75.068069, 40.118241 ], [ -75.067763, 40.118719 ], [ -75.067654, 40.118897 ], [ -75.067347, 40.119397 ], [ -75.067319, 40.119446 ], [ -75.067281, 40.119504 ], [ -75.067332, 40.11953 ], [ -75.0674, 40.119569 ], [ -75.067489, 40.119626 ], [ -75.067593, 40.119704 ], [ -75.067673, 40.11978 ], [ -75.068112, 40.120246 ], [ -75.068305, 40.120453 ], [ -75.068466, 40.120665 ], [ -75.068545, 40.120748 ], [ -75.068618, 40.120821 ], [ -75.068674, 40.120887 ], [ -75.068748, 40.120954 ], [ -75.068902, 40.121087 ], [ -75.069, 40.121168 ], [ -75.06909, 40.121242 ], [ -75.069226, 40.121339 ], [ -75.069317, 40.121388 ], [ -75.06944, 40.121444 ], [ -75.069583, 40.121498 ], [ -75.069741, 40.121548 ], [ -75.069449, 40.122478 ], [ -75.069035, 40.122771 ], [ -75.068407, 40.123214 ], [ -75.068693, 40.123399 ], [ -75.069164, 40.123349 ], [ -75.069035, 40.122771 ], [ -75.069449, 40.122478 ], [ -75.069741, 40.121548 ], [ -75.069913, 40.12158 ], [ -75.070108, 40.121603 ], [ -75.070313, 40.121618 ], [ -75.070346, 40.121613 ], [ -75.07042, 40.121585 ], [ -75.070847, 40.121603 ], [ -75.071339, 40.121617 ], [ -75.071362, 40.121401 ], [ -75.071741, 40.121272 ], [ -75.071784, 40.121165 ], [ -75.071705, 40.121058 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307455", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.07789, 40.023437 ], [ -75.077839, 40.023497 ], [ -75.077782, 40.023623 ], [ -75.07776, 40.023764 ], [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079882, 40.02365 ], [ -75.079971, 40.023513 ], [ -75.08052, 40.023863 ], [ -75.081243, 40.024331 ], [ -75.081565, 40.02451 ], [ -75.081924, 40.024719 ], [ -75.082263, 40.0249 ], [ -75.082673, 40.025129 ], [ -75.083435, 40.025549 ], [ -75.08422, 40.025983 ], [ -75.084918, 40.026373 ], [ -75.086007, 40.026979 ], [ -75.087103, 40.027588 ], [ -75.08819, 40.028206 ], [ -75.088625, 40.028442 ], [ -75.088968, 40.028634 ], [ -75.089283, 40.028816 ], [ -75.089385, 40.028873 ], [ -75.089537, 40.028952 ], [ -75.089884, 40.02914 ], [ -75.090031, 40.029222 ], [ -75.09018, 40.029303 ], [ -75.090482, 40.029482 ], [ -75.090574, 40.029526 ], [ -75.090845, 40.029678 ], [ -75.091582, 40.030083 ], [ -75.093027, 40.030894 ], [ -75.092798, 40.03113 ], [ -75.092627, 40.031304 ], [ -75.092413, 40.031527 ], [ -75.092231, 40.031718 ], [ -75.092032, 40.031921 ], [ -75.091822, 40.032142 ], [ -75.091568, 40.032394 ], [ -75.091404, 40.032565 ], [ -75.091192, 40.032787 ], [ -75.091006, 40.032979 ], [ -75.090811, 40.033183 ], [ -75.090595, 40.033398 ], [ -75.090366, 40.033643 ], [ -75.090171, 40.033836 ], [ -75.089975, 40.03404 ], [ -75.089782, 40.034239 ], [ -75.089567, 40.034445 ], [ -75.089377, 40.034658 ], [ -75.089154, 40.034889 ], [ -75.088951, 40.035087 ], [ -75.088762, 40.035287 ], [ -75.088586, 40.035464 ], [ -75.088479, 40.035581 ], [ -75.088393, 40.035666 ], [ -75.088338, 40.035708 ], [ -75.088134, 40.035917 ], [ -75.088081, 40.035955 ], [ -75.088025, 40.03599 ], [ -75.087944, 40.036029 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.088346, 40.041716 ], [ -75.088448, 40.042166 ], [ -75.088484, 40.042325 ], [ -75.08856, 40.042656 ], [ -75.088635, 40.042975 ], [ -75.088697, 40.043264 ], [ -75.088688, 40.043355 ], [ -75.088789, 40.04382 ], [ -75.088839, 40.043959 ], [ -75.088888, 40.044101 ], [ -75.088968, 40.044164 ], [ -75.089011, 40.044287 ], [ -75.089065, 40.044403 ], [ -75.089104, 40.04448 ], [ -75.089127, 40.044523 ], [ -75.089144, 40.044549 ], [ -75.089164, 40.044577 ], [ -75.089199, 40.044622 ], [ -75.08926, 40.044695 ], [ -75.090441, 40.046076 ], [ -75.090572, 40.046267 ], [ -75.090791, 40.046588 ], [ -75.090923, 40.04678 ], [ -75.09097, 40.046859 ], [ -75.091009, 40.046935 ], [ -75.091042, 40.047018 ], [ -75.091064, 40.047079 ], [ -75.091092, 40.047167 ], [ -75.091124, 40.047258 ], [ -75.091143, 40.047357 ], [ -75.091184, 40.04759 ], [ -75.091278, 40.048091 ], [ -75.091349, 40.048801 ], [ -75.091422, 40.049517 ], [ -75.091595, 40.050453 ], [ -75.091638, 40.050625 ], [ -75.0918, 40.051448 ], [ -75.09201, 40.052428 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090227, 40.065422 ], [ -75.089038, 40.0666 ], [ -75.087983, 40.067629 ], [ -75.087234, 40.068394 ], [ -75.086993, 40.06863 ], [ -75.085674, 40.069944 ], [ -75.0855, 40.070111 ], [ -75.085439, 40.070174 ], [ -75.085379, 40.070246 ], [ -75.085341, 40.070301 ], [ -75.085315, 40.070355 ], [ -75.085298, 40.070409 ], [ -75.085289, 40.070471 ], [ -75.085244, 40.070906 ], [ -75.08516, 40.071478 ], [ -75.085047, 40.072215 ], [ -75.084927, 40.072993 ], [ -75.084893, 40.073235 ], [ -75.0848, 40.07381 ], [ -75.084786, 40.073847 ], [ -75.084764, 40.073876 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085129, 40.076537 ], [ -75.085152, 40.076686 ], [ -75.085212, 40.077076 ], [ -75.085219, 40.077116 ], [ -75.085225, 40.077155 ], [ -75.085237, 40.077194 ], [ -75.085642, 40.077537 ], [ -75.086134, 40.077965 ], [ -75.086451, 40.078258 ], [ -75.086722, 40.078481 ], [ -75.086917, 40.078646 ], [ -75.087107, 40.078815 ], [ -75.0873, 40.07899 ], [ -75.087711, 40.079352 ], [ -75.087782, 40.079414 ], [ -75.087981, 40.079587 ], [ -75.088123, 40.079716 ], [ -75.088428, 40.079977 ], [ -75.088641, 40.080169 ], [ -75.088708, 40.080229 ], [ -75.088794, 40.080303 ], [ -75.088963, 40.080452 ], [ -75.08927, 40.080712 ], [ -75.089673, 40.081055 ], [ -75.090012, 40.081343 ], [ -75.090738, 40.081961 ], [ -75.091063, 40.082236 ], [ -75.091477, 40.082587 ], [ -75.091527, 40.082629 ], [ -75.092204, 40.083205 ], [ -75.092565, 40.083507 ], [ -75.092652, 40.083579 ], [ -75.092709, 40.083626 ], [ -75.092728, 40.083686 ], [ -75.092868, 40.08388 ], [ -75.093042, 40.084114 ], [ -75.09314, 40.084242 ], [ -75.093202, 40.084324 ], [ -75.093298, 40.084471 ], [ -75.093375, 40.084633 ], [ -75.093385, 40.084655 ], [ -75.093393, 40.084668 ], [ -75.093505, 40.084779 ], [ -75.093514, 40.084828 ], [ -75.093559, 40.085093 ], [ -75.093599, 40.085396 ], [ -75.093615, 40.085536 ], [ -75.093655, 40.085817 ], [ -75.093674, 40.086034 ], [ -75.0937, 40.086306 ], [ -75.093707, 40.086465 ], [ -75.093738, 40.087122 ], [ -75.093769, 40.087787 ], [ -75.093797, 40.088511 ], [ -75.093818, 40.088918 ], [ -75.093771, 40.088991 ], [ -75.093742, 40.089282 ], [ -75.093727, 40.08944 ], [ -75.093702, 40.089558 ], [ -75.0936, 40.090045 ], [ -75.093553, 40.090221 ], [ -75.093462, 40.090501 ], [ -75.09331, 40.091044 ], [ -75.093241, 40.091353 ], [ -75.09318, 40.091546 ], [ -75.093106, 40.091838 ], [ -75.093041, 40.09206 ], [ -75.092954, 40.092328 ], [ -75.092938, 40.092484 ], [ -75.092973, 40.092564 ], [ -75.092917, 40.09278 ], [ -75.092765, 40.093337 ], [ -75.092604, 40.093909 ], [ -75.092488, 40.094308 ], [ -75.092337, 40.094907 ], [ -75.092227, 40.095309 ], [ -75.09215, 40.095372 ], [ -75.092013, 40.095804 ], [ -75.091914, 40.096286 ], [ -75.09185, 40.096506 ], [ -75.091813, 40.096615 ], [ -75.091785, 40.096698 ], [ -75.091744, 40.096778 ], [ -75.091719, 40.096834 ], [ -75.091663, 40.096937 ], [ -75.091602, 40.097037 ], [ -75.091534, 40.097141 ], [ -75.091478, 40.097216 ], [ -75.091438, 40.097259 ], [ -75.091421, 40.097277 ], [ -75.091239, 40.097465 ], [ -75.091213, 40.097538 ], [ -75.091022, 40.097735 ], [ -75.090815, 40.097949 ], [ -75.090552, 40.09821 ], [ -75.090509, 40.098249 ], [ -75.090056, 40.098693 ], [ -75.089925, 40.098825 ], [ -75.089694, 40.099059 ], [ -75.089522, 40.099225 ], [ -75.089295, 40.099444 ], [ -75.088346, 40.100397 ], [ -75.087441, 40.101293 ], [ -75.086565, 40.102174 ], [ -75.086428, 40.102322 ], [ -75.086302, 40.102475 ], [ -75.08619, 40.102633 ], [ -75.086128, 40.102733 ], [ -75.086119, 40.102748 ], [ -75.086018, 40.102919 ], [ -75.085864, 40.103221 ], [ -75.08581, 40.103352 ], [ -75.085635, 40.103843 ], [ -75.08562, 40.103888 ], [ -75.085473, 40.104335 ], [ -75.085352, 40.10471 ], [ -75.085294, 40.104761 ], [ -75.085161, 40.105073 ], [ -75.085127, 40.10516 ], [ -75.085077, 40.105277 ], [ -75.085011, 40.105424 ], [ -75.084999, 40.105445 ], [ -75.084944, 40.105543 ], [ -75.084938, 40.105553 ], [ -75.084871, 40.105675 ], [ -75.084809, 40.10577 ], [ -75.084718, 40.105879 ], [ -75.084612, 40.106041 ], [ -75.084513, 40.106185 ], [ -75.08438, 40.106345 ], [ -75.084212, 40.106528 ], [ -75.084032, 40.106714 ], [ -75.083508, 40.107229 ], [ -75.083278, 40.107462 ], [ -75.083238, 40.107502 ], [ -75.083017, 40.107716 ], [ -75.082909, 40.107809 ], [ -75.082892, 40.107825 ], [ -75.08263, 40.108028 ], [ -75.082495, 40.108126 ], [ -75.082396, 40.108193 ], [ -75.082276, 40.108277 ], [ -75.082219, 40.108315 ], [ -75.082117, 40.108379 ], [ -75.08203, 40.108425 ], [ -75.081818, 40.108537 ], [ -75.081683, 40.108602 ], [ -75.081601, 40.108641 ], [ -75.081308, 40.108771 ], [ -75.081055, 40.108869 ], [ -75.08061, 40.109018 ], [ -75.079771, 40.109308 ], [ -75.079321, 40.109469 ], [ -75.07892, 40.109617 ], [ -75.0785, 40.109809 ], [ -75.078294, 40.109908 ], [ -75.078159, 40.109981 ], [ -75.077948, 40.110104 ], [ -75.077601, 40.110336 ], [ -75.076773, 40.110884 ], [ -75.076589, 40.111006 ], [ -75.075873, 40.111483 ], [ -75.075043, 40.112041 ], [ -75.074011, 40.112731 ], [ -75.073689, 40.112926 ], [ -75.072737, 40.113673 ], [ -75.072485, 40.113828 ], [ -75.072333, 40.113907 ], [ -75.072215, 40.113982 ], [ -75.072054, 40.114083 ], [ -75.071325, 40.114578 ], [ -75.071309, 40.114588 ], [ -75.071068, 40.114779 ], [ -75.070865, 40.114936 ], [ -75.07076, 40.115016 ], [ -75.070602, 40.115159 ], [ -75.070532, 40.115229 ], [ -75.070381, 40.115375 ], [ -75.070267, 40.115497 ], [ -75.069977, 40.115821 ], [ -75.069879, 40.11595 ], [ -75.069664, 40.11618 ], [ -75.069572, 40.116282 ], [ -75.069521, 40.116347 ], [ -75.068647, 40.117488 ], [ -75.068429, 40.117754 ], [ -75.068311, 40.117913 ], [ -75.068306, 40.11792 ], [ -75.068069, 40.118241 ], [ -75.067763, 40.118719 ], [ -75.067654, 40.118897 ], [ -75.067347, 40.119397 ], [ -75.067319, 40.119446 ], [ -75.067281, 40.119504 ], [ -75.067169, 40.119648 ], [ -75.067038, 40.119817 ], [ -75.066889, 40.119994 ], [ -75.06676, 40.120124 ], [ -75.066696, 40.120192 ], [ -75.066664, 40.120232 ], [ -75.066657, 40.120309 ], [ -75.066582, 40.1204 ], [ -75.066372, 40.120605 ], [ -75.065446, 40.1215 ], [ -75.064741, 40.122214 ], [ -75.064602, 40.122354 ], [ -75.064145, 40.122883 ], [ -75.063966, 40.123084 ], [ -75.063814, 40.123276 ], [ -75.063763, 40.123342 ], [ -75.063726, 40.123393 ], [ -75.063662, 40.12349 ], [ -75.063538, 40.123686 ], [ -75.063475, 40.12381 ], [ -75.063411, 40.123936 ], [ -75.063295, 40.124202 ], [ -75.063177, 40.124476 ], [ -75.063096, 40.124666 ], [ -75.062896, 40.12515 ], [ -75.06279, 40.125476 ], [ -75.062587, 40.126166 ], [ -75.062564, 40.126242 ], [ -75.062457, 40.126599 ], [ -75.062387, 40.126874 ], [ -75.062353, 40.127016 ], [ -75.062327, 40.1272 ], [ -75.062238, 40.127872 ], [ -75.062157, 40.128494 ], [ -75.062071, 40.129129 ], [ -75.061886, 40.130628 ], [ -75.061861, 40.130823 ], [ -75.061861, 40.132025 ], [ -75.061865, 40.132227 ], [ -75.061886, 40.13334 ], [ -75.061898, 40.133821 ], [ -75.0619, 40.134032 ], [ -75.061888, 40.134225 ], [ -75.061874, 40.134428 ], [ -75.061838, 40.134739 ], [ -75.061821, 40.134899 ], [ -75.061807, 40.135051 ], [ -75.061737, 40.135849 ], [ -75.061645, 40.136724 ], [ -75.061607, 40.137063 ], [ -75.061557, 40.137345 ], [ -75.061484, 40.13775 ], [ -75.061195, 40.139246 ], [ -75.060979, 40.140197 ], [ -75.060774, 40.141054 ], [ -75.060653, 40.141614 ], [ -75.060622, 40.14179 ], [ -75.060609, 40.141991 ], [ -75.0606, 40.142148 ], [ -75.060592, 40.14264 ], [ -75.060592, 40.143094 ], [ -75.060592, 40.143513 ], [ -75.060583, 40.143805 ], [ -75.060571, 40.144096 ], [ -75.060543, 40.144386 ], [ -75.06049, 40.144673 ], [ -75.060465, 40.14479 ], [ -75.06009, 40.14628 ], [ -75.059986, 40.146679 ], [ -75.05993, 40.146889 ], [ -75.059846, 40.14715 ], [ -75.059812, 40.147252 ], [ -75.059767, 40.147355 ], [ -75.059683, 40.147528 ], [ -75.059585, 40.147706 ], [ -75.059486, 40.147867 ], [ -75.059359, 40.148046 ], [ -75.059167, 40.148275 ], [ -75.058754, 40.148669 ], [ -75.05852, 40.148858 ], [ -75.058454, 40.148911 ], [ -75.058095, 40.149187 ], [ -75.057827, 40.149386 ], [ -75.056761, 40.150179 ], [ -75.055976, 40.15077 ], [ -75.055487, 40.151126 ], [ -75.055197, 40.151351 ], [ -75.054178, 40.152097 ], [ -75.053737, 40.152426 ], [ -75.053362, 40.152702 ], [ -75.053055, 40.152947 ], [ -75.052652, 40.153276 ], [ -75.052368, 40.153551 ], [ -75.052146, 40.153787 ], [ -75.051977, 40.153985 ], [ -75.0519, 40.154072 ], [ -75.051389, 40.154709 ], [ -75.050345, 40.156058 ], [ -75.050286, 40.156138 ], [ -75.049674, 40.156955 ], [ -75.049343, 40.157383 ], [ -75.049208, 40.157559 ], [ -75.048965, 40.157874 ], [ -75.048858, 40.158036 ], [ -75.048828, 40.158082 ], [ -75.049638, 40.158576 ], [ -75.049731, 40.158588 ], [ -75.051838, 40.159833 ], [ -75.052506, 40.160244 ], [ -75.052906, 40.160478 ], [ -75.053119, 40.160605 ], [ -75.053755, 40.161 ], [ -75.054329, 40.161342 ], [ -75.054688, 40.161549 ], [ -75.055694, 40.162127 ], [ -75.057068, 40.162965 ], [ -75.057346, 40.163129 ], [ -75.057448, 40.163188 ], [ -75.057514, 40.163225 ], [ -75.0578, 40.1634 ], [ -75.058118, 40.163581 ], [ -75.058596, 40.163854 ], [ -75.058815, 40.163995 ], [ -75.058668, 40.164135 ], [ -75.058465, 40.164314 ], [ -75.058298, 40.164445 ], [ -75.058118, 40.164548 ], [ -75.057966, 40.164592 ], [ -75.057683, 40.164614 ], [ -75.056529, 40.164732 ], [ -75.055663, 40.16485 ], [ -75.055206, 40.164942 ], [ -75.054664, 40.165101 ], [ -75.054431, 40.165206 ], [ -75.054172, 40.165344 ], [ -75.053713, 40.165609 ], [ -75.052295, 40.166458 ], [ -75.052126, 40.166281 ], [ -75.051903, 40.166056 ], [ -75.051811, 40.165965 ], [ -75.051745, 40.165904 ], [ -75.051687, 40.165851 ], [ -75.051603, 40.16578 ], [ -75.05152, 40.165721 ], [ -75.05143, 40.165662 ], [ -75.051324, 40.165602 ], [ -75.051204, 40.165544 ], [ -75.051053, 40.165482 ], [ -75.050868, 40.16542 ], [ -75.050703, 40.165365 ], [ -75.050499, 40.165301 ], [ -75.049894, 40.165106 ], [ -75.049602, 40.165009 ], [ -75.049461, 40.164967 ], [ -75.049264, 40.164904 ], [ -75.049121, 40.164854 ], [ -75.048936, 40.164784 ], [ -75.048746, 40.164705 ], [ -75.048521, 40.164609 ], [ -75.048199, 40.164476 ], [ -75.048043, 40.164412 ], [ -75.047933, 40.164372 ], [ -75.04784, 40.164342 ], [ -75.047736, 40.164314 ], [ -75.047638, 40.164294 ], [ -75.047424, 40.164255 ], [ -75.047185, 40.164218 ], [ -75.046951, 40.164186 ], [ -75.046725, 40.164156 ], [ -75.046592, 40.164642 ], [ -75.046478, 40.165064 ], [ -75.046412, 40.1653 ], [ -75.046225, 40.165961 ], [ -75.046112, 40.166376 ], [ -75.046028, 40.166684 ], [ -75.04599, 40.166824 ], [ -75.045939, 40.167007 ], [ -75.045903, 40.167145 ], [ -75.045836, 40.167395 ], [ -75.045794, 40.167539 ], [ -75.045745, 40.167713 ], [ -75.045715, 40.167808 ], [ -75.04543, 40.168713 ], [ -75.045273, 40.169241 ], [ -75.045141, 40.169689 ], [ -75.04486, 40.170683 ], [ -75.044775, 40.171015 ], [ -75.04468, 40.171388 ], [ -75.044629, 40.171568 ], [ -75.044546, 40.171864 ], [ -75.044331, 40.172644 ], [ -75.044094, 40.173478 ], [ -75.04398, 40.173909 ], [ -75.043919, 40.174123 ], [ -75.043869, 40.17417 ], [ -75.043836, 40.174191 ], [ -75.043818, 40.174203 ], [ -75.043794, 40.174218 ], [ -75.043754, 40.174239 ], [ -75.043704, 40.174255 ], [ -75.043671, 40.174261 ], [ -75.043599, 40.17427 ], [ -75.04355, 40.174279 ], [ -75.043499, 40.174285 ], [ -75.043472, 40.174286 ], [ -75.043432, 40.174281 ], [ -75.043214, 40.174154 ], [ -75.042939, 40.173991 ], [ -75.041802, 40.173378 ], [ -75.041379, 40.173147 ], [ -75.040954, 40.172916 ], [ -75.039654, 40.172157 ], [ -75.039438, 40.172042 ], [ -75.039248, 40.171941 ], [ -75.039105, 40.171861 ], [ -75.039034, 40.171815 ], [ -75.03902, 40.171764 ], [ -75.039015, 40.171683 ], [ -75.039017, 40.171646 ], [ -75.039027, 40.171581 ], [ -75.039045, 40.171523 ], [ -75.039465, 40.171459 ], [ -75.040667, 40.17127 ], [ -75.040841, 40.171234 ], [ -75.041335, 40.171237 ], [ -75.04184, 40.171274 ], [ -75.042255, 40.171305 ], [ -75.042701, 40.171327 ], [ -75.043739, 40.17135 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307456", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.07789, 40.023437 ], [ -75.077839, 40.023497 ], [ -75.077782, 40.023623 ], [ -75.07776, 40.023764 ], [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079882, 40.02365 ], [ -75.079971, 40.023513 ], [ -75.08052, 40.023863 ], [ -75.081243, 40.024331 ], [ -75.081565, 40.02451 ], [ -75.081924, 40.024719 ], [ -75.082263, 40.0249 ], [ -75.082673, 40.025129 ], [ -75.083435, 40.025549 ], [ -75.08422, 40.025983 ], [ -75.084918, 40.026373 ], [ -75.086007, 40.026979 ], [ -75.087103, 40.027588 ], [ -75.08819, 40.028206 ], [ -75.088625, 40.028442 ], [ -75.088968, 40.028634 ], [ -75.089283, 40.028816 ], [ -75.089385, 40.028873 ], [ -75.089537, 40.028952 ], [ -75.089884, 40.02914 ], [ -75.090031, 40.029222 ], [ -75.09018, 40.029303 ], [ -75.090482, 40.029482 ], [ -75.090574, 40.029526 ], [ -75.090845, 40.029678 ], [ -75.091582, 40.030083 ], [ -75.093027, 40.030894 ], [ -75.092798, 40.03113 ], [ -75.092627, 40.031304 ], [ -75.092413, 40.031527 ], [ -75.092231, 40.031718 ], [ -75.092032, 40.031921 ], [ -75.091822, 40.032142 ], [ -75.091568, 40.032394 ], [ -75.091404, 40.032565 ], [ -75.091192, 40.032787 ], [ -75.091006, 40.032979 ], [ -75.090811, 40.033183 ], [ -75.090595, 40.033398 ], [ -75.090366, 40.033643 ], [ -75.090171, 40.033836 ], [ -75.089975, 40.03404 ], [ -75.089782, 40.034239 ], [ -75.089567, 40.034445 ], [ -75.089377, 40.034658 ], [ -75.089154, 40.034889 ], [ -75.088951, 40.035087 ], [ -75.088762, 40.035287 ], [ -75.088586, 40.035464 ], [ -75.088479, 40.035581 ], [ -75.088393, 40.035666 ], [ -75.088338, 40.035708 ], [ -75.088134, 40.035917 ], [ -75.088081, 40.035955 ], [ -75.088025, 40.03599 ], [ -75.087944, 40.036029 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.088346, 40.041716 ], [ -75.088448, 40.042166 ], [ -75.088484, 40.042325 ], [ -75.08856, 40.042656 ], [ -75.088635, 40.042975 ], [ -75.088697, 40.043264 ], [ -75.088688, 40.043355 ], [ -75.088789, 40.04382 ], [ -75.088839, 40.043959 ], [ -75.088888, 40.044101 ], [ -75.088968, 40.044164 ], [ -75.089011, 40.044287 ], [ -75.089065, 40.044403 ], [ -75.089104, 40.04448 ], [ -75.089127, 40.044523 ], [ -75.089144, 40.044549 ], [ -75.089164, 40.044577 ], [ -75.089199, 40.044622 ], [ -75.08926, 40.044695 ], [ -75.090441, 40.046076 ], [ -75.090572, 40.046267 ], [ -75.090791, 40.046588 ], [ -75.090923, 40.04678 ], [ -75.09097, 40.046859 ], [ -75.091009, 40.046935 ], [ -75.091042, 40.047018 ], [ -75.091064, 40.047079 ], [ -75.091092, 40.047167 ], [ -75.091124, 40.047258 ], [ -75.091143, 40.047357 ], [ -75.091184, 40.04759 ], [ -75.091278, 40.048091 ], [ -75.091349, 40.048801 ], [ -75.091422, 40.049517 ], [ -75.091595, 40.050453 ], [ -75.091638, 40.050625 ], [ -75.0918, 40.051448 ], [ -75.09201, 40.052428 ], [ -75.092141, 40.053128 ], [ -75.091993, 40.053278 ], [ -75.091449, 40.053836 ], [ -75.090781, 40.054503 ], [ -75.090214, 40.055077 ], [ -75.08957, 40.055726 ], [ -75.089078, 40.056222 ], [ -75.088369, 40.056944 ], [ -75.087128, 40.058211 ], [ -75.086558, 40.058794 ], [ -75.085917, 40.05943 ], [ -75.085319, 40.060009 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090227, 40.065422 ], [ -75.089038, 40.0666 ], [ -75.087983, 40.067629 ], [ -75.087234, 40.068394 ], [ -75.086993, 40.06863 ], [ -75.085674, 40.069944 ], [ -75.0855, 40.070111 ], [ -75.085439, 40.070174 ], [ -75.085379, 40.070246 ], [ -75.085341, 40.070301 ], [ -75.085315, 40.070355 ], [ -75.085298, 40.070409 ], [ -75.085289, 40.070471 ], [ -75.085244, 40.070906 ], [ -75.08516, 40.071478 ], [ -75.085047, 40.072215 ], [ -75.084927, 40.072993 ], [ -75.084893, 40.073235 ], [ -75.0848, 40.07381 ], [ -75.084786, 40.073847 ], [ -75.084764, 40.073876 ], [ -75.084735, 40.073902 ], [ -75.084755, 40.074037 ], [ -75.084848, 40.074722 ], [ -75.085045, 40.076029 ], [ -75.085113, 40.076428 ], [ -75.085129, 40.076537 ], [ -75.085152, 40.076686 ], [ -75.085212, 40.077076 ], [ -75.085219, 40.077116 ], [ -75.085225, 40.077155 ], [ -75.085237, 40.077194 ], [ -75.085642, 40.077537 ], [ -75.086134, 40.077965 ], [ -75.086451, 40.078258 ], [ -75.086722, 40.078481 ], [ -75.086917, 40.078646 ], [ -75.087107, 40.078815 ], [ -75.0873, 40.07899 ], [ -75.087711, 40.079352 ], [ -75.087782, 40.079414 ], [ -75.087981, 40.079587 ], [ -75.088123, 40.079716 ], [ -75.088428, 40.079977 ], [ -75.088641, 40.080169 ], [ -75.088708, 40.080229 ], [ -75.088794, 40.080303 ], [ -75.088963, 40.080452 ], [ -75.08927, 40.080712 ], [ -75.089673, 40.081055 ], [ -75.090012, 40.081343 ], [ -75.090738, 40.081961 ], [ -75.091063, 40.082236 ], [ -75.091477, 40.082587 ], [ -75.091527, 40.082629 ], [ -75.092204, 40.083205 ], [ -75.092565, 40.083507 ], [ -75.092652, 40.083579 ], [ -75.092709, 40.083626 ], [ -75.092728, 40.083686 ], [ -75.092868, 40.08388 ], [ -75.093042, 40.084114 ], [ -75.09314, 40.084242 ], [ -75.093202, 40.084324 ], [ -75.093298, 40.084471 ], [ -75.093375, 40.084633 ], [ -75.093385, 40.084655 ], [ -75.093393, 40.084668 ], [ -75.093505, 40.084779 ], [ -75.093514, 40.084828 ], [ -75.093559, 40.085093 ], [ -75.093599, 40.085396 ], [ -75.093615, 40.085536 ], [ -75.093655, 40.085817 ], [ -75.093674, 40.086034 ], [ -75.0937, 40.086306 ], [ -75.093707, 40.086465 ], [ -75.093738, 40.087122 ], [ -75.093769, 40.087787 ], [ -75.093797, 40.088511 ], [ -75.093818, 40.088918 ], [ -75.093771, 40.088991 ], [ -75.093742, 40.089282 ], [ -75.093727, 40.08944 ], [ -75.093702, 40.089558 ], [ -75.0936, 40.090045 ], [ -75.093553, 40.090221 ], [ -75.093462, 40.090501 ], [ -75.09331, 40.091044 ], [ -75.093241, 40.091353 ], [ -75.09318, 40.091546 ], [ -75.093106, 40.091838 ], [ -75.093041, 40.09206 ], [ -75.092954, 40.092328 ], [ -75.092938, 40.092484 ], [ -75.092973, 40.092564 ], [ -75.092917, 40.09278 ], [ -75.092765, 40.093337 ], [ -75.092604, 40.093909 ], [ -75.092488, 40.094308 ], [ -75.092337, 40.094907 ], [ -75.092227, 40.095309 ], [ -75.09215, 40.095372 ], [ -75.092013, 40.095804 ], [ -75.091914, 40.096286 ], [ -75.09185, 40.096506 ], [ -75.091813, 40.096615 ], [ -75.091785, 40.096698 ], [ -75.091744, 40.096778 ], [ -75.091719, 40.096834 ], [ -75.091663, 40.096937 ], [ -75.091602, 40.097037 ], [ -75.091534, 40.097141 ], [ -75.091478, 40.097216 ], [ -75.091438, 40.097259 ], [ -75.091421, 40.097277 ], [ -75.091239, 40.097465 ], [ -75.091213, 40.097538 ], [ -75.091022, 40.097735 ], [ -75.090815, 40.097949 ], [ -75.090552, 40.09821 ], [ -75.090509, 40.098249 ], [ -75.090056, 40.098693 ], [ -75.089925, 40.098825 ], [ -75.089694, 40.099059 ], [ -75.089522, 40.099225 ], [ -75.089295, 40.099444 ], [ -75.088346, 40.100397 ], [ -75.087441, 40.101293 ], [ -75.086565, 40.102174 ], [ -75.086428, 40.102322 ], [ -75.086302, 40.102475 ], [ -75.08619, 40.102633 ], [ -75.086128, 40.102733 ], [ -75.086119, 40.102748 ], [ -75.086018, 40.102919 ], [ -75.085864, 40.103221 ], [ -75.08581, 40.103352 ], [ -75.085635, 40.103843 ], [ -75.08562, 40.103888 ], [ -75.085473, 40.104335 ], [ -75.085352, 40.10471 ], [ -75.085294, 40.104761 ], [ -75.085161, 40.105073 ], [ -75.085127, 40.10516 ], [ -75.085077, 40.105277 ], [ -75.085011, 40.105424 ], [ -75.084999, 40.105445 ], [ -75.084944, 40.105543 ], [ -75.084938, 40.105553 ], [ -75.084871, 40.105675 ], [ -75.084809, 40.10577 ], [ -75.084718, 40.105879 ], [ -75.084612, 40.106041 ], [ -75.084513, 40.106185 ], [ -75.08438, 40.106345 ], [ -75.084212, 40.106528 ], [ -75.084032, 40.106714 ], [ -75.083508, 40.107229 ], [ -75.083278, 40.107462 ], [ -75.083238, 40.107502 ], [ -75.083017, 40.107716 ], [ -75.082909, 40.107809 ], [ -75.082892, 40.107825 ], [ -75.08263, 40.108028 ], [ -75.082495, 40.108126 ], [ -75.082396, 40.108193 ], [ -75.082276, 40.108277 ], [ -75.082219, 40.108315 ], [ -75.082117, 40.108379 ], [ -75.08203, 40.108425 ], [ -75.081818, 40.108537 ], [ -75.081683, 40.108602 ], [ -75.081601, 40.108641 ], [ -75.081308, 40.108771 ], [ -75.081055, 40.108869 ], [ -75.08061, 40.109018 ], [ -75.079771, 40.109308 ], [ -75.079321, 40.109469 ], [ -75.07892, 40.109617 ], [ -75.0785, 40.109809 ], [ -75.078294, 40.109908 ], [ -75.078159, 40.109981 ], [ -75.077948, 40.110104 ], [ -75.077601, 40.110336 ], [ -75.076773, 40.110884 ], [ -75.076589, 40.111006 ], [ -75.075873, 40.111483 ], [ -75.075043, 40.112041 ], [ -75.074011, 40.112731 ], [ -75.073689, 40.112926 ], [ -75.072737, 40.113673 ], [ -75.072485, 40.113828 ], [ -75.072333, 40.113907 ], [ -75.072215, 40.113982 ], [ -75.072054, 40.114083 ], [ -75.071325, 40.114578 ], [ -75.071309, 40.114588 ], [ -75.071068, 40.114779 ], [ -75.070865, 40.114936 ], [ -75.07076, 40.115016 ], [ -75.070602, 40.115159 ], [ -75.070532, 40.115229 ], [ -75.070381, 40.115375 ], [ -75.070267, 40.115497 ], [ -75.069977, 40.115821 ], [ -75.069879, 40.11595 ], [ -75.069664, 40.11618 ], [ -75.069572, 40.116282 ], [ -75.069521, 40.116347 ], [ -75.068647, 40.117488 ], [ -75.068429, 40.117754 ], [ -75.068311, 40.117913 ], [ -75.068306, 40.11792 ], [ -75.068069, 40.118241 ], [ -75.067763, 40.118719 ], [ -75.067654, 40.118897 ], [ -75.067347, 40.119397 ], [ -75.067319, 40.119446 ], [ -75.067281, 40.119504 ], [ -75.067332, 40.11953 ], [ -75.0674, 40.119569 ], [ -75.067489, 40.119626 ], [ -75.067593, 40.119704 ], [ -75.067673, 40.11978 ], [ -75.068112, 40.120246 ], [ -75.068305, 40.120453 ], [ -75.068466, 40.120665 ], [ -75.068545, 40.120748 ], [ -75.068618, 40.120821 ], [ -75.068674, 40.120887 ], [ -75.068748, 40.120954 ], [ -75.068902, 40.121087 ], [ -75.069, 40.121168 ], [ -75.06909, 40.121242 ], [ -75.069226, 40.121339 ], [ -75.069317, 40.121388 ], [ -75.06944, 40.121444 ], [ -75.069583, 40.121498 ], [ -75.069741, 40.121548 ], [ -75.069449, 40.122478 ], [ -75.069035, 40.122771 ], [ -75.068407, 40.123214 ], [ -75.068693, 40.123399 ], [ -75.069164, 40.123349 ], [ -75.069035, 40.122771 ], [ -75.069449, 40.122478 ], [ -75.069741, 40.121548 ], [ -75.069913, 40.12158 ], [ -75.070108, 40.121603 ], [ -75.070313, 40.121618 ], [ -75.070346, 40.121613 ], [ -75.07042, 40.121585 ], [ -75.070847, 40.121603 ], [ -75.071339, 40.121617 ], [ -75.071362, 40.121401 ], [ -75.071741, 40.121272 ], [ -75.071784, 40.121165 ], [ -75.071705, 40.121058 ], [ -75.071291, 40.121029 ], [ -75.071362, 40.121401 ], [ -75.071339, 40.121617 ], [ -75.070847, 40.121603 ], [ -75.07042, 40.121585 ], [ -75.07035, 40.121557 ], [ -75.070148, 40.121531 ], [ -75.06995, 40.121499 ], [ -75.069807, 40.121467 ], [ -75.069617, 40.121416 ], [ -75.069507, 40.121376 ], [ -75.069339, 40.121311 ], [ -75.068843, 40.120906 ], [ -75.068669, 40.120709 ], [ -75.068414, 40.120408 ], [ -75.068219, 40.120187 ], [ -75.068078, 40.12003 ], [ -75.067987, 40.119929 ], [ -75.067754, 40.11967 ], [ -75.067717, 40.119637 ], [ -75.067574, 40.119516 ], [ -75.067484, 40.11946 ], [ -75.067422, 40.119431 ], [ -75.067347, 40.119397 ], [ -75.067319, 40.119446 ], [ -75.067281, 40.119504 ], [ -75.067169, 40.119648 ], [ -75.067038, 40.119817 ], [ -75.066889, 40.119994 ], [ -75.06676, 40.120124 ], [ -75.066696, 40.120192 ], [ -75.066664, 40.120232 ], [ -75.066657, 40.120309 ], [ -75.066582, 40.1204 ], [ -75.066372, 40.120605 ], [ -75.065446, 40.1215 ], [ -75.064741, 40.122214 ], [ -75.064602, 40.122354 ], [ -75.064145, 40.122883 ], [ -75.063966, 40.123084 ], [ -75.063814, 40.123276 ], [ -75.063763, 40.123342 ], [ -75.063726, 40.123393 ], [ -75.063662, 40.12349 ], [ -75.063538, 40.123686 ], [ -75.063475, 40.12381 ], [ -75.063411, 40.123936 ], [ -75.063295, 40.124202 ], [ -75.063177, 40.124476 ], [ -75.063096, 40.124666 ], [ -75.062896, 40.12515 ], [ -75.06279, 40.125476 ], [ -75.062587, 40.126166 ], [ -75.062564, 40.126242 ], [ -75.062457, 40.126599 ], [ -75.062387, 40.126874 ], [ -75.062353, 40.127016 ], [ -75.062327, 40.1272 ], [ -75.062238, 40.127872 ], [ -75.062157, 40.128494 ], [ -75.062071, 40.129129 ], [ -75.061886, 40.130628 ], [ -75.061861, 40.130823 ], [ -75.061861, 40.132025 ], [ -75.061865, 40.132227 ], [ -75.061886, 40.13334 ], [ -75.061898, 40.133821 ], [ -75.0619, 40.134032 ], [ -75.061888, 40.134225 ], [ -75.061874, 40.134428 ], [ -75.061838, 40.134739 ], [ -75.061821, 40.134899 ], [ -75.061807, 40.135051 ], [ -75.061737, 40.135849 ], [ -75.061645, 40.136724 ], [ -75.061607, 40.137063 ], [ -75.061557, 40.137345 ], [ -75.061484, 40.13775 ], [ -75.061195, 40.139246 ], [ -75.060979, 40.140197 ], [ -75.060774, 40.141054 ], [ -75.060653, 40.141614 ], [ -75.060622, 40.14179 ], [ -75.060609, 40.141991 ], [ -75.0606, 40.142148 ], [ -75.060592, 40.14264 ], [ -75.060592, 40.143094 ], [ -75.060592, 40.143513 ], [ -75.060583, 40.143805 ], [ -75.060571, 40.144096 ], [ -75.060543, 40.144386 ], [ -75.06049, 40.144673 ], [ -75.060465, 40.14479 ], [ -75.06009, 40.14628 ], [ -75.059986, 40.146679 ], [ -75.05993, 40.146889 ], [ -75.059846, 40.14715 ], [ -75.059812, 40.147252 ], [ -75.059767, 40.147355 ], [ -75.059683, 40.147528 ], [ -75.059585, 40.147706 ], [ -75.059486, 40.147867 ], [ -75.059359, 40.148046 ], [ -75.059167, 40.148275 ], [ -75.058754, 40.148669 ], [ -75.05852, 40.148858 ], [ -75.058454, 40.148911 ], [ -75.058095, 40.149187 ], [ -75.057827, 40.149386 ], [ -75.056761, 40.150179 ], [ -75.055976, 40.15077 ], [ -75.055487, 40.151126 ], [ -75.055197, 40.151351 ], [ -75.054178, 40.152097 ], [ -75.053737, 40.152426 ], [ -75.053362, 40.152702 ], [ -75.053055, 40.152947 ], [ -75.052652, 40.153276 ], [ -75.052368, 40.153551 ], [ -75.052146, 40.153787 ], [ -75.051977, 40.153985 ], [ -75.0519, 40.154072 ], [ -75.051389, 40.154709 ], [ -75.050345, 40.156058 ], [ -75.050286, 40.156138 ], [ -75.049674, 40.156955 ], [ -75.049343, 40.157383 ], [ -75.049208, 40.157559 ], [ -75.048965, 40.157874 ], [ -75.048858, 40.158036 ], [ -75.048828, 40.158082 ], [ -75.049638, 40.158576 ], [ -75.049731, 40.158588 ], [ -75.051838, 40.159833 ], [ -75.052506, 40.160244 ], [ -75.052906, 40.160478 ], [ -75.053119, 40.160605 ], [ -75.053755, 40.161 ], [ -75.054329, 40.161342 ], [ -75.054688, 40.161549 ], [ -75.055694, 40.162127 ], [ -75.057068, 40.162965 ], [ -75.057346, 40.163129 ], [ -75.057448, 40.163188 ], [ -75.057514, 40.163225 ], [ -75.0578, 40.1634 ], [ -75.058118, 40.163581 ], [ -75.058596, 40.163854 ], [ -75.058815, 40.163995 ], [ -75.058668, 40.164135 ], [ -75.058465, 40.164314 ], [ -75.058298, 40.164445 ], [ -75.058118, 40.164548 ], [ -75.057966, 40.164592 ], [ -75.057683, 40.164614 ], [ -75.056529, 40.164732 ], [ -75.055663, 40.16485 ], [ -75.055206, 40.164942 ], [ -75.054664, 40.165101 ], [ -75.054431, 40.165206 ], [ -75.054172, 40.165344 ], [ -75.053713, 40.165609 ], [ -75.052295, 40.166458 ], [ -75.052126, 40.166281 ], [ -75.051903, 40.166056 ], [ -75.051811, 40.165965 ], [ -75.051745, 40.165904 ], [ -75.051687, 40.165851 ], [ -75.051603, 40.16578 ], [ -75.05152, 40.165721 ], [ -75.05143, 40.165662 ], [ -75.051324, 40.165602 ], [ -75.051204, 40.165544 ], [ -75.051053, 40.165482 ], [ -75.050868, 40.16542 ], [ -75.050703, 40.165365 ], [ -75.050499, 40.165301 ], [ -75.049894, 40.165106 ], [ -75.049602, 40.165009 ], [ -75.049461, 40.164967 ], [ -75.049264, 40.164904 ], [ -75.049121, 40.164854 ], [ -75.048936, 40.164784 ], [ -75.048746, 40.164705 ], [ -75.048521, 40.164609 ], [ -75.048199, 40.164476 ], [ -75.048043, 40.164412 ], [ -75.047933, 40.164372 ], [ -75.04784, 40.164342 ], [ -75.047736, 40.164314 ], [ -75.047638, 40.164294 ], [ -75.047424, 40.164255 ], [ -75.047185, 40.164218 ], [ -75.046951, 40.164186 ], [ -75.046725, 40.164156 ], [ -75.046592, 40.164642 ], [ -75.046478, 40.165064 ], [ -75.046412, 40.1653 ], [ -75.046225, 40.165961 ], [ -75.046112, 40.166376 ], [ -75.046028, 40.166684 ], [ -75.04599, 40.166824 ], [ -75.045939, 40.167007 ], [ -75.045903, 40.167145 ], [ -75.045836, 40.167395 ], [ -75.045794, 40.167539 ], [ -75.045745, 40.167713 ], [ -75.045715, 40.167808 ], [ -75.04543, 40.168713 ], [ -75.045273, 40.169241 ], [ -75.045141, 40.169689 ], [ -75.04486, 40.170683 ], [ -75.044775, 40.171015 ], [ -75.04468, 40.171388 ], [ -75.044629, 40.171568 ], [ -75.044546, 40.171864 ], [ -75.044331, 40.172644 ], [ -75.044094, 40.173478 ], [ -75.04398, 40.173909 ], [ -75.043919, 40.174123 ], [ -75.043869, 40.17417 ], [ -75.043836, 40.174191 ], [ -75.043818, 40.174203 ], [ -75.043794, 40.174218 ], [ -75.043754, 40.174239 ], [ -75.043704, 40.174255 ], [ -75.043671, 40.174261 ], [ -75.043599, 40.17427 ], [ -75.04355, 40.174279 ], [ -75.043499, 40.174285 ], [ -75.043472, 40.174286 ], [ -75.043432, 40.174281 ], [ -75.043214, 40.174154 ], [ -75.042939, 40.173991 ], [ -75.041802, 40.173378 ], [ -75.041379, 40.173147 ], [ -75.040954, 40.172916 ], [ -75.039654, 40.172157 ], [ -75.039438, 40.172042 ], [ -75.039248, 40.171941 ], [ -75.039105, 40.171861 ], [ -75.039034, 40.171815 ], [ -75.03902, 40.171764 ], [ -75.039015, 40.171683 ], [ -75.039017, 40.171646 ], [ -75.039027, 40.171581 ], [ -75.039045, 40.171523 ], [ -75.039465, 40.171459 ], [ -75.040667, 40.17127 ], [ -75.040841, 40.171234 ], [ -75.041335, 40.171237 ], [ -75.04184, 40.171274 ], [ -75.042255, 40.171305 ], [ -75.042701, 40.171327 ], [ -75.043739, 40.17135 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307457", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.093797, 40.088511 ], [ -75.093769, 40.087787 ], [ -75.093738, 40.087122 ], [ -75.093707, 40.086465 ], [ -75.0937, 40.086306 ], [ -75.093674, 40.086034 ], [ -75.093655, 40.085817 ], [ -75.093615, 40.085536 ], [ -75.093599, 40.085396 ], [ -75.093559, 40.085093 ], [ -75.093514, 40.084828 ], [ -75.093505, 40.084779 ], [ -75.093393, 40.084668 ], [ -75.093385, 40.084655 ], [ -75.093375, 40.084633 ], [ -75.093298, 40.084471 ], [ -75.093202, 40.084324 ], [ -75.09314, 40.084242 ], [ -75.093042, 40.084114 ], [ -75.092868, 40.08388 ], [ -75.092728, 40.083686 ], [ -75.092709, 40.083626 ], [ -75.092652, 40.083579 ], [ -75.092565, 40.083507 ], [ -75.092204, 40.083205 ], [ -75.091527, 40.082629 ], [ -75.091477, 40.082587 ], [ -75.091063, 40.082236 ], [ -75.090738, 40.081961 ], [ -75.090012, 40.081343 ], [ -75.089673, 40.081055 ], [ -75.08927, 40.080712 ], [ -75.088963, 40.080452 ], [ -75.088794, 40.080303 ], [ -75.088708, 40.080229 ], [ -75.088641, 40.080169 ], [ -75.088428, 40.079977 ], [ -75.088123, 40.079716 ], [ -75.087981, 40.079587 ], [ -75.087782, 40.079414 ], [ -75.087711, 40.079352 ], [ -75.0873, 40.07899 ], [ -75.087107, 40.078815 ], [ -75.086917, 40.078646 ], [ -75.086722, 40.078481 ], [ -75.086451, 40.078258 ], [ -75.086134, 40.077965 ], [ -75.085642, 40.077537 ], [ -75.085237, 40.077194 ], [ -75.085225, 40.077155 ], [ -75.085219, 40.077116 ], [ -75.085212, 40.077076 ], [ -75.085152, 40.076686 ], [ -75.085129, 40.076537 ], [ -75.085113, 40.076428 ], [ -75.085045, 40.076029 ], [ -75.084848, 40.074722 ], [ -75.084755, 40.074037 ], [ -75.084735, 40.073902 ], [ -75.084764, 40.073876 ], [ -75.084786, 40.073847 ], [ -75.0848, 40.07381 ], [ -75.084893, 40.073235 ], [ -75.084927, 40.072993 ], [ -75.085047, 40.072215 ], [ -75.08516, 40.071478 ], [ -75.085244, 40.070906 ], [ -75.085289, 40.070471 ], [ -75.085298, 40.070409 ], [ -75.085315, 40.070355 ], [ -75.085341, 40.070301 ], [ -75.085379, 40.070246 ], [ -75.085439, 40.070174 ], [ -75.0855, 40.070111 ], [ -75.085674, 40.069944 ], [ -75.086993, 40.06863 ], [ -75.087234, 40.068394 ], [ -75.087983, 40.067629 ], [ -75.089038, 40.0666 ], [ -75.090227, 40.065422 ], [ -75.090355, 40.065301 ], [ -75.089494, 40.064789 ], [ -75.089366, 40.064706 ], [ -75.088746, 40.064355 ], [ -75.087885, 40.06384 ], [ -75.087471, 40.063593 ], [ -75.087277, 40.06349 ], [ -75.087024, 40.063345 ], [ -75.086884, 40.063267 ], [ -75.086557, 40.063085 ], [ -75.086292, 40.062933 ], [ -75.085738, 40.062616 ], [ -75.085124, 40.062256 ], [ -75.08478, 40.062054 ], [ -75.084433, 40.061846 ], [ -75.084205, 40.061709 ], [ -75.084092, 40.061642 ], [ -75.083822, 40.061477 ], [ -75.085319, 40.060009 ], [ -75.085917, 40.05943 ], [ -75.086558, 40.058794 ], [ -75.087128, 40.058211 ], [ -75.088369, 40.056944 ], [ -75.089078, 40.056222 ], [ -75.08957, 40.055726 ], [ -75.090214, 40.055077 ], [ -75.090781, 40.054503 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.09201, 40.052428 ], [ -75.0918, 40.051448 ], [ -75.091638, 40.050625 ], [ -75.091595, 40.050453 ], [ -75.091422, 40.049517 ], [ -75.091349, 40.048801 ], [ -75.091278, 40.048091 ], [ -75.091184, 40.04759 ], [ -75.091143, 40.047357 ], [ -75.091124, 40.047258 ], [ -75.091092, 40.047167 ], [ -75.091064, 40.047079 ], [ -75.091042, 40.047018 ], [ -75.091009, 40.046935 ], [ -75.09097, 40.046859 ], [ -75.090923, 40.04678 ], [ -75.090791, 40.046588 ], [ -75.090572, 40.046267 ], [ -75.090441, 40.046076 ], [ -75.08926, 40.044695 ], [ -75.089199, 40.044622 ], [ -75.089164, 40.044577 ], [ -75.089144, 40.044549 ], [ -75.089127, 40.044523 ], [ -75.089104, 40.04448 ], [ -75.089065, 40.044403 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.087944, 40.036029 ], [ -75.088025, 40.03599 ], [ -75.088081, 40.035955 ], [ -75.088134, 40.035917 ], [ -75.088338, 40.035708 ], [ -75.088393, 40.035666 ], [ -75.088479, 40.035581 ], [ -75.088586, 40.035464 ], [ -75.088762, 40.035287 ], [ -75.088951, 40.035087 ], [ -75.089154, 40.034889 ], [ -75.089377, 40.034658 ], [ -75.089567, 40.034445 ], [ -75.089782, 40.034239 ], [ -75.089975, 40.03404 ], [ -75.090171, 40.033836 ], [ -75.090366, 40.033643 ], [ -75.090595, 40.033398 ], [ -75.090811, 40.033183 ], [ -75.091006, 40.032979 ], [ -75.091192, 40.032787 ], [ -75.091404, 40.032565 ], [ -75.091568, 40.032394 ], [ -75.091822, 40.032142 ], [ -75.092032, 40.031921 ], [ -75.092231, 40.031718 ], [ -75.092413, 40.031527 ], [ -75.092627, 40.031304 ], [ -75.092798, 40.03113 ], [ -75.093027, 40.030894 ], [ -75.091582, 40.030083 ], [ -75.090845, 40.029678 ], [ -75.090574, 40.029526 ], [ -75.090482, 40.029482 ], [ -75.09018, 40.029303 ], [ -75.090031, 40.029222 ], [ -75.089884, 40.02914 ], [ -75.089537, 40.028952 ], [ -75.089385, 40.028873 ], [ -75.089283, 40.028816 ], [ -75.088968, 40.028634 ], [ -75.088625, 40.028442 ], [ -75.08819, 40.028206 ], [ -75.087103, 40.027588 ], [ -75.086007, 40.026979 ], [ -75.084918, 40.026373 ], [ -75.08422, 40.025983 ], [ -75.083435, 40.025549 ], [ -75.082673, 40.025129 ], [ -75.082263, 40.0249 ], [ -75.081924, 40.024719 ], [ -75.081565, 40.02451 ], [ -75.081243, 40.024331 ], [ -75.08052, 40.023863 ], [ -75.079971, 40.023514 ], [ -75.079882, 40.02365 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077384, 40.024124 ], [ -75.077335, 40.024124 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307458", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.071705, 40.121058 ], [ -75.071291, 40.121029 ], [ -75.071362, 40.121401 ], [ -75.071339, 40.121617 ], [ -75.070847, 40.121603 ], [ -75.07042, 40.121585 ], [ -75.07035, 40.121557 ], [ -75.070148, 40.121531 ], [ -75.06995, 40.121499 ], [ -75.069807, 40.121467 ], [ -75.069617, 40.121416 ], [ -75.069507, 40.121376 ], [ -75.069339, 40.121311 ], [ -75.068843, 40.120906 ], [ -75.068669, 40.120709 ], [ -75.068414, 40.120408 ], [ -75.068219, 40.120187 ], [ -75.068078, 40.12003 ], [ -75.067987, 40.119929 ], [ -75.067754, 40.11967 ], [ -75.067717, 40.119637 ], [ -75.067574, 40.119516 ], [ -75.067484, 40.11946 ], [ -75.067736, 40.119021 ], [ -75.06787, 40.118795 ], [ -75.068187, 40.118292 ], [ -75.068448, 40.11792 ], [ -75.068531, 40.117796 ], [ -75.068739, 40.117523 ], [ -75.069168, 40.116976 ], [ -75.069689, 40.116313 ], [ -75.069756, 40.116234 ], [ -75.069837, 40.116127 ], [ -75.069971, 40.115978 ], [ -75.070323, 40.115587 ], [ -75.070466, 40.115435 ], [ -75.070542, 40.115362 ], [ -75.070714, 40.115199 ], [ -75.070865, 40.115069 ], [ -75.07099, 40.114976 ], [ -75.071109, 40.114877 ], [ -75.071585, 40.114515 ], [ -75.07166, 40.114464 ], [ -75.072118, 40.114143 ], [ -75.072238, 40.11407 ], [ -75.072336, 40.114014 ], [ -75.072512, 40.113917 ], [ -75.072786, 40.113746 ], [ -75.073854, 40.11293 ], [ -75.074445, 40.112545 ], [ -75.075288, 40.111981 ], [ -75.07539, 40.111916 ], [ -75.075955, 40.11154 ], [ -75.076005, 40.111506 ], [ -75.07685, 40.110937 ], [ -75.076968, 40.110861 ], [ -75.077612, 40.110426 ], [ -75.078093, 40.110122 ], [ -75.078362, 40.109973 ], [ -75.078459, 40.109924 ], [ -75.078625, 40.109843 ], [ -75.078963, 40.109688 ], [ -75.079116, 40.109628 ], [ -75.079369, 40.109531 ], [ -75.079675, 40.109423 ], [ -75.080203, 40.109245 ], [ -75.0811, 40.108944 ], [ -75.081352, 40.108844 ], [ -75.081634, 40.108725 ], [ -75.081716, 40.108685 ], [ -75.081887, 40.108602 ], [ -75.081994, 40.10855 ], [ -75.082088, 40.108498 ], [ -75.082234, 40.108418 ], [ -75.082438, 40.10829 ], [ -75.082597, 40.108182 ], [ -75.082715, 40.108096 ], [ -75.082853, 40.107997 ], [ -75.082934, 40.107929 ], [ -75.082998, 40.107875 ], [ -75.083012, 40.107865 ], [ -75.083108, 40.107776 ], [ -75.083281, 40.107603 ], [ -75.083902, 40.106995 ], [ -75.084124, 40.106775 ], [ -75.084308, 40.106587 ], [ -75.084324, 40.106569 ], [ -75.084395, 40.106493 ], [ -75.084477, 40.106401 ], [ -75.084584, 40.106266 ], [ -75.084699, 40.106125 ], [ -75.084847, 40.105914 ], [ -75.08497, 40.105711 ], [ -75.085055, 40.105554 ], [ -75.085155, 40.105346 ], [ -75.085186, 40.105283 ], [ -75.085217, 40.1052 ], [ -75.08527, 40.105056 ], [ -75.085371, 40.104779 ], [ -75.085352, 40.10471 ], [ -75.085473, 40.104335 ], [ -75.08562, 40.103888 ], [ -75.085635, 40.103843 ], [ -75.08581, 40.103352 ], [ -75.085864, 40.103221 ], [ -75.086018, 40.102919 ], [ -75.086119, 40.102748 ], [ -75.086128, 40.102733 ], [ -75.08619, 40.102633 ], [ -75.086302, 40.102475 ], [ -75.086428, 40.102322 ], [ -75.086565, 40.102174 ], [ -75.087441, 40.101293 ], [ -75.088346, 40.100397 ], [ -75.089295, 40.099444 ], [ -75.089522, 40.099225 ], [ -75.089694, 40.099059 ], [ -75.089925, 40.098825 ], [ -75.090056, 40.098693 ], [ -75.090509, 40.098249 ], [ -75.090552, 40.09821 ], [ -75.090815, 40.097949 ], [ -75.091022, 40.097735 ], [ -75.091213, 40.097538 ], [ -75.091287, 40.097511 ], [ -75.091377, 40.097423 ], [ -75.091438, 40.097367 ], [ -75.091504, 40.097314 ], [ -75.091613, 40.097179 ], [ -75.091765, 40.096974 ], [ -75.09182, 40.096884 ], [ -75.091879, 40.096762 ], [ -75.091927, 40.09666 ], [ -75.091969, 40.096546 ], [ -75.092014, 40.096376 ], [ -75.092152, 40.095861 ], [ -75.092219, 40.095566 ], [ -75.092263, 40.095386 ], [ -75.092227, 40.095309 ], [ -75.092337, 40.094907 ], [ -75.092488, 40.094308 ], [ -75.092604, 40.093909 ], [ -75.092765, 40.093337 ], [ -75.092917, 40.09278 ], [ -75.092973, 40.092564 ], [ -75.093037, 40.092495 ], [ -75.09309, 40.092326 ], [ -75.093155, 40.092113 ], [ -75.093229, 40.091864 ], [ -75.093318, 40.091567 ], [ -75.093532, 40.090792 ], [ -75.093692, 40.090215 ], [ -75.093744, 40.090041 ], [ -75.093799, 40.089813 ], [ -75.093829, 40.089644 ], [ -75.093857, 40.089457 ], [ -75.093868, 40.089237 ], [ -75.093868, 40.088991 ], [ -75.093818, 40.088918 ], [ -75.093797, 40.088511 ], [ -75.093769, 40.087787 ], [ -75.093738, 40.087122 ], [ -75.093707, 40.086465 ], [ -75.0937, 40.086306 ], [ -75.093674, 40.086034 ], [ -75.093655, 40.085817 ], [ -75.093615, 40.085536 ], [ -75.093599, 40.085396 ], [ -75.093559, 40.085093 ], [ -75.093514, 40.084828 ], [ -75.093505, 40.084779 ], [ -75.093536, 40.084714 ], [ -75.093532, 40.084695 ], [ -75.093484, 40.08459 ], [ -75.093432, 40.084475 ], [ -75.093355, 40.084334 ], [ -75.093223, 40.084165 ], [ -75.09293, 40.083825 ], [ -75.092862, 40.083744 ], [ -75.092791, 40.083655 ], [ -75.092772, 40.083643 ], [ -75.092709, 40.083626 ], [ -75.092652, 40.083579 ], [ -75.092565, 40.083507 ], [ -75.092204, 40.083205 ], [ -75.091527, 40.082629 ], [ -75.091477, 40.082587 ], [ -75.091063, 40.082236 ], [ -75.090738, 40.081961 ], [ -75.090012, 40.081343 ], [ -75.089673, 40.081055 ], [ -75.08927, 40.080712 ], [ -75.088963, 40.080452 ], [ -75.088794, 40.080303 ], [ -75.088708, 40.080229 ], [ -75.088641, 40.080169 ], [ -75.088428, 40.079977 ], [ -75.088123, 40.079716 ], [ -75.087981, 40.079587 ], [ -75.087782, 40.079414 ], [ -75.087711, 40.079352 ], [ -75.0873, 40.07899 ], [ -75.087107, 40.078815 ], [ -75.086917, 40.078646 ], [ -75.086722, 40.078481 ], [ -75.086451, 40.078258 ], [ -75.086134, 40.077965 ], [ -75.085642, 40.077537 ], [ -75.085237, 40.077194 ], [ -75.085225, 40.077155 ], [ -75.085219, 40.077116 ], [ -75.085212, 40.077076 ], [ -75.085152, 40.076686 ], [ -75.085129, 40.076537 ], [ -75.085113, 40.076428 ], [ -75.085045, 40.076029 ], [ -75.084848, 40.074722 ], [ -75.084755, 40.074037 ], [ -75.084735, 40.073902 ], [ -75.084764, 40.073876 ], [ -75.084786, 40.073847 ], [ -75.0848, 40.07381 ], [ -75.084893, 40.073235 ], [ -75.084927, 40.072993 ], [ -75.085047, 40.072215 ], [ -75.08516, 40.071478 ], [ -75.085244, 40.070906 ], [ -75.085289, 40.070471 ], [ -75.085298, 40.070409 ], [ -75.085315, 40.070355 ], [ -75.085341, 40.070301 ], [ -75.085379, 40.070246 ], [ -75.085439, 40.070174 ], [ -75.0855, 40.070111 ], [ -75.085674, 40.069944 ], [ -75.086993, 40.06863 ], [ -75.087234, 40.068394 ], [ -75.087983, 40.067629 ], [ -75.089038, 40.0666 ], [ -75.090227, 40.065422 ], [ -75.090355, 40.065301 ], [ -75.089494, 40.064789 ], [ -75.089366, 40.064706 ], [ -75.088746, 40.064355 ], [ -75.087885, 40.06384 ], [ -75.087471, 40.063593 ], [ -75.087277, 40.06349 ], [ -75.087024, 40.063345 ], [ -75.086884, 40.063267 ], [ -75.086557, 40.063085 ], [ -75.086292, 40.062933 ], [ -75.085738, 40.062616 ], [ -75.085124, 40.062256 ], [ -75.08478, 40.062054 ], [ -75.084433, 40.061846 ], [ -75.084205, 40.061709 ], [ -75.084092, 40.061642 ], [ -75.083822, 40.061477 ], [ -75.085319, 40.060009 ], [ -75.085917, 40.05943 ], [ -75.086558, 40.058794 ], [ -75.087128, 40.058211 ], [ -75.088369, 40.056944 ], [ -75.089078, 40.056222 ], [ -75.08957, 40.055726 ], [ -75.090214, 40.055077 ], [ -75.090781, 40.054503 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.09201, 40.052428 ], [ -75.0918, 40.051448 ], [ -75.091638, 40.050625 ], [ -75.091595, 40.050453 ], [ -75.091422, 40.049517 ], [ -75.091349, 40.048801 ], [ -75.091278, 40.048091 ], [ -75.091184, 40.04759 ], [ -75.091143, 40.047357 ], [ -75.091124, 40.047258 ], [ -75.091092, 40.047167 ], [ -75.091064, 40.047079 ], [ -75.091042, 40.047018 ], [ -75.091009, 40.046935 ], [ -75.09097, 40.046859 ], [ -75.090923, 40.04678 ], [ -75.090791, 40.046588 ], [ -75.090572, 40.046267 ], [ -75.090441, 40.046076 ], [ -75.08926, 40.044695 ], [ -75.089199, 40.044622 ], [ -75.089164, 40.044577 ], [ -75.089144, 40.044549 ], [ -75.089127, 40.044523 ], [ -75.089104, 40.04448 ], [ -75.089065, 40.044403 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.087944, 40.036029 ], [ -75.088025, 40.03599 ], [ -75.088081, 40.035955 ], [ -75.088134, 40.035917 ], [ -75.088338, 40.035708 ], [ -75.088393, 40.035666 ], [ -75.088479, 40.035581 ], [ -75.088586, 40.035464 ], [ -75.088762, 40.035287 ], [ -75.088951, 40.035087 ], [ -75.089154, 40.034889 ], [ -75.089377, 40.034658 ], [ -75.089567, 40.034445 ], [ -75.089782, 40.034239 ], [ -75.089975, 40.03404 ], [ -75.090171, 40.033836 ], [ -75.090366, 40.033643 ], [ -75.090595, 40.033398 ], [ -75.090811, 40.033183 ], [ -75.091006, 40.032979 ], [ -75.091192, 40.032787 ], [ -75.091404, 40.032565 ], [ -75.091568, 40.032394 ], [ -75.091822, 40.032142 ], [ -75.092032, 40.031921 ], [ -75.092231, 40.031718 ], [ -75.092413, 40.031527 ], [ -75.092627, 40.031304 ], [ -75.092798, 40.03113 ], [ -75.093027, 40.030894 ], [ -75.091582, 40.030083 ], [ -75.090845, 40.029678 ], [ -75.090574, 40.029526 ], [ -75.090482, 40.029482 ], [ -75.09018, 40.029303 ], [ -75.090031, 40.029222 ], [ -75.089884, 40.02914 ], [ -75.089537, 40.028952 ], [ -75.089385, 40.028873 ], [ -75.089283, 40.028816 ], [ -75.088968, 40.028634 ], [ -75.088625, 40.028442 ], [ -75.08819, 40.028206 ], [ -75.087103, 40.027588 ], [ -75.086007, 40.026979 ], [ -75.084918, 40.026373 ], [ -75.08422, 40.025983 ], [ -75.083435, 40.025549 ], [ -75.082673, 40.025129 ], [ -75.082263, 40.0249 ], [ -75.081924, 40.024719 ], [ -75.081565, 40.02451 ], [ -75.081243, 40.024331 ], [ -75.08052, 40.023863 ], [ -75.079971, 40.023514 ], [ -75.079882, 40.02365 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077384, 40.024124 ], [ -75.077335, 40.024124 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307459", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.043739, 40.17135 ], [ -75.04468, 40.171388 ], [ -75.044775, 40.171015 ], [ -75.04486, 40.170683 ], [ -75.045141, 40.169689 ], [ -75.045273, 40.169241 ], [ -75.04543, 40.168713 ], [ -75.045715, 40.167808 ], [ -75.045745, 40.167713 ], [ -75.045794, 40.167539 ], [ -75.045836, 40.167395 ], [ -75.045903, 40.167145 ], [ -75.045939, 40.167007 ], [ -75.04599, 40.166824 ], [ -75.046028, 40.166684 ], [ -75.046112, 40.166376 ], [ -75.046225, 40.165961 ], [ -75.046412, 40.1653 ], [ -75.046478, 40.165064 ], [ -75.046592, 40.164642 ], [ -75.046725, 40.164156 ], [ -75.046951, 40.164186 ], [ -75.047185, 40.164218 ], [ -75.047424, 40.164255 ], [ -75.047638, 40.164294 ], [ -75.047736, 40.164314 ], [ -75.04784, 40.164342 ], [ -75.047933, 40.164372 ], [ -75.048043, 40.164412 ], [ -75.048199, 40.164476 ], [ -75.048521, 40.164609 ], [ -75.048746, 40.164705 ], [ -75.048936, 40.164784 ], [ -75.049121, 40.164854 ], [ -75.049264, 40.164904 ], [ -75.049461, 40.164967 ], [ -75.049602, 40.165009 ], [ -75.049894, 40.165106 ], [ -75.050499, 40.165301 ], [ -75.050703, 40.165365 ], [ -75.050868, 40.16542 ], [ -75.051053, 40.165482 ], [ -75.051204, 40.165544 ], [ -75.051324, 40.165602 ], [ -75.05143, 40.165662 ], [ -75.05152, 40.165721 ], [ -75.051603, 40.16578 ], [ -75.051687, 40.165851 ], [ -75.051745, 40.165904 ], [ -75.051811, 40.165965 ], [ -75.051903, 40.166056 ], [ -75.052126, 40.166281 ], [ -75.052295, 40.166458 ], [ -75.053713, 40.165609 ], [ -75.054172, 40.165344 ], [ -75.054431, 40.165206 ], [ -75.054664, 40.165101 ], [ -75.055206, 40.164942 ], [ -75.055663, 40.16485 ], [ -75.056529, 40.164732 ], [ -75.057683, 40.164614 ], [ -75.057966, 40.164592 ], [ -75.058118, 40.164548 ], [ -75.058298, 40.164445 ], [ -75.058465, 40.164314 ], [ -75.058668, 40.164135 ], [ -75.058815, 40.163995 ], [ -75.058596, 40.163854 ], [ -75.058118, 40.163581 ], [ -75.0578, 40.1634 ], [ -75.057514, 40.163225 ], [ -75.057448, 40.163188 ], [ -75.057346, 40.163129 ], [ -75.057068, 40.162965 ], [ -75.055694, 40.162127 ], [ -75.054688, 40.161549 ], [ -75.054329, 40.161342 ], [ -75.053755, 40.161 ], [ -75.053119, 40.160605 ], [ -75.052906, 40.160478 ], [ -75.052506, 40.160244 ], [ -75.051838, 40.159833 ], [ -75.049731, 40.158588 ], [ -75.049695, 40.158516 ], [ -75.04968, 40.158504 ], [ -75.049632, 40.158478 ], [ -75.049357, 40.158322 ], [ -75.048858, 40.158036 ], [ -75.048965, 40.157874 ], [ -75.049208, 40.157559 ], [ -75.049343, 40.157383 ], [ -75.049674, 40.156955 ], [ -75.050286, 40.156138 ], [ -75.050345, 40.156058 ], [ -75.051389, 40.154709 ], [ -75.0519, 40.154072 ], [ -75.051977, 40.153985 ], [ -75.052146, 40.153787 ], [ -75.052368, 40.153551 ], [ -75.052652, 40.153276 ], [ -75.053055, 40.152947 ], [ -75.053362, 40.152702 ], [ -75.053737, 40.152426 ], [ -75.054178, 40.152097 ], [ -75.055197, 40.151351 ], [ -75.055487, 40.151126 ], [ -75.055976, 40.15077 ], [ -75.056761, 40.150179 ], [ -75.057827, 40.149386 ], [ -75.058095, 40.149187 ], [ -75.058454, 40.148911 ], [ -75.05852, 40.148858 ], [ -75.058754, 40.148669 ], [ -75.059167, 40.148275 ], [ -75.059359, 40.148046 ], [ -75.059486, 40.147867 ], [ -75.059585, 40.147706 ], [ -75.059683, 40.147528 ], [ -75.059767, 40.147355 ], [ -75.059812, 40.147252 ], [ -75.059846, 40.14715 ], [ -75.05993, 40.146889 ], [ -75.059986, 40.146679 ], [ -75.06009, 40.14628 ], [ -75.060465, 40.14479 ], [ -75.06049, 40.144673 ], [ -75.060543, 40.144386 ], [ -75.060571, 40.144096 ], [ -75.060583, 40.143805 ], [ -75.060592, 40.143513 ], [ -75.060592, 40.143094 ], [ -75.060592, 40.14264 ], [ -75.0606, 40.142148 ], [ -75.060609, 40.141991 ], [ -75.060622, 40.14179 ], [ -75.060653, 40.141614 ], [ -75.060774, 40.141054 ], [ -75.060979, 40.140197 ], [ -75.061195, 40.139246 ], [ -75.061484, 40.13775 ], [ -75.061557, 40.137345 ], [ -75.061607, 40.137063 ], [ -75.061645, 40.136724 ], [ -75.061737, 40.135849 ], [ -75.061807, 40.135051 ], [ -75.061821, 40.134899 ], [ -75.061838, 40.134739 ], [ -75.061874, 40.134428 ], [ -75.061888, 40.134225 ], [ -75.0619, 40.134032 ], [ -75.061898, 40.133821 ], [ -75.061886, 40.13334 ], [ -75.061865, 40.132227 ], [ -75.061861, 40.132025 ], [ -75.061861, 40.130823 ], [ -75.061886, 40.130628 ], [ -75.062071, 40.129129 ], [ -75.062157, 40.128494 ], [ -75.062238, 40.127872 ], [ -75.062327, 40.1272 ], [ -75.062353, 40.127016 ], [ -75.062387, 40.126874 ], [ -75.062457, 40.126599 ], [ -75.062564, 40.126242 ], [ -75.062587, 40.126166 ], [ -75.06279, 40.125476 ], [ -75.062896, 40.12515 ], [ -75.063096, 40.124666 ], [ -75.063177, 40.124476 ], [ -75.063295, 40.124202 ], [ -75.063411, 40.123936 ], [ -75.063475, 40.12381 ], [ -75.063538, 40.123686 ], [ -75.063662, 40.12349 ], [ -75.063726, 40.123393 ], [ -75.063763, 40.123342 ], [ -75.063814, 40.123276 ], [ -75.063966, 40.123084 ], [ -75.064145, 40.122883 ], [ -75.064602, 40.122354 ], [ -75.064741, 40.122214 ], [ -75.065446, 40.1215 ], [ -75.066372, 40.120605 ], [ -75.066582, 40.1204 ], [ -75.066657, 40.120309 ], [ -75.06675, 40.120275 ], [ -75.06684, 40.120194 ], [ -75.066921, 40.120098 ], [ -75.067065, 40.119932 ], [ -75.0674, 40.119569 ], [ -75.067444, 40.119513 ], [ -75.067484, 40.11946 ], [ -75.067736, 40.119021 ], [ -75.06787, 40.118795 ], [ -75.068187, 40.118292 ], [ -75.068448, 40.11792 ], [ -75.068531, 40.117796 ], [ -75.068739, 40.117523 ], [ -75.069168, 40.116976 ], [ -75.069689, 40.116313 ], [ -75.069756, 40.116234 ], [ -75.069837, 40.116127 ], [ -75.069971, 40.115978 ], [ -75.070323, 40.115587 ], [ -75.070466, 40.115435 ], [ -75.070542, 40.115362 ], [ -75.070714, 40.115199 ], [ -75.070865, 40.115069 ], [ -75.07099, 40.114976 ], [ -75.071109, 40.114877 ], [ -75.071585, 40.114515 ], [ -75.07166, 40.114464 ], [ -75.072118, 40.114143 ], [ -75.072238, 40.11407 ], [ -75.072336, 40.114014 ], [ -75.072512, 40.113917 ], [ -75.072786, 40.113746 ], [ -75.073854, 40.11293 ], [ -75.074445, 40.112545 ], [ -75.075288, 40.111981 ], [ -75.07539, 40.111916 ], [ -75.075955, 40.11154 ], [ -75.076005, 40.111506 ], [ -75.07685, 40.110937 ], [ -75.076968, 40.110861 ], [ -75.077612, 40.110426 ], [ -75.078093, 40.110122 ], [ -75.078362, 40.109973 ], [ -75.078459, 40.109924 ], [ -75.078625, 40.109843 ], [ -75.078963, 40.109688 ], [ -75.079116, 40.109628 ], [ -75.079369, 40.109531 ], [ -75.079675, 40.109423 ], [ -75.080203, 40.109245 ], [ -75.0811, 40.108944 ], [ -75.081352, 40.108844 ], [ -75.081634, 40.108725 ], [ -75.081716, 40.108685 ], [ -75.081887, 40.108602 ], [ -75.081994, 40.10855 ], [ -75.082088, 40.108498 ], [ -75.082234, 40.108418 ], [ -75.082438, 40.10829 ], [ -75.082597, 40.108182 ], [ -75.082715, 40.108096 ], [ -75.082853, 40.107997 ], [ -75.082934, 40.107929 ], [ -75.082998, 40.107875 ], [ -75.083012, 40.107865 ], [ -75.083108, 40.107776 ], [ -75.083281, 40.107603 ], [ -75.083902, 40.106995 ], [ -75.084124, 40.106775 ], [ -75.084308, 40.106587 ], [ -75.084324, 40.106569 ], [ -75.084395, 40.106493 ], [ -75.084477, 40.106401 ], [ -75.084584, 40.106266 ], [ -75.084699, 40.106125 ], [ -75.084847, 40.105914 ], [ -75.08497, 40.105711 ], [ -75.085055, 40.105554 ], [ -75.085155, 40.105346 ], [ -75.085186, 40.105283 ], [ -75.085217, 40.1052 ], [ -75.08527, 40.105056 ], [ -75.085371, 40.104779 ], [ -75.085352, 40.10471 ], [ -75.085473, 40.104335 ], [ -75.08562, 40.103888 ], [ -75.085635, 40.103843 ], [ -75.08581, 40.103352 ], [ -75.085864, 40.103221 ], [ -75.086018, 40.102919 ], [ -75.086119, 40.102748 ], [ -75.086128, 40.102733 ], [ -75.08619, 40.102633 ], [ -75.086302, 40.102475 ], [ -75.086428, 40.102322 ], [ -75.086565, 40.102174 ], [ -75.087441, 40.101293 ], [ -75.088346, 40.100397 ], [ -75.089295, 40.099444 ], [ -75.089522, 40.099225 ], [ -75.089694, 40.099059 ], [ -75.089925, 40.098825 ], [ -75.090056, 40.098693 ], [ -75.090509, 40.098249 ], [ -75.090552, 40.09821 ], [ -75.090815, 40.097949 ], [ -75.091022, 40.097735 ], [ -75.091213, 40.097538 ], [ -75.091287, 40.097511 ], [ -75.091377, 40.097423 ], [ -75.091438, 40.097367 ], [ -75.091504, 40.097314 ], [ -75.091613, 40.097179 ], [ -75.091765, 40.096974 ], [ -75.09182, 40.096884 ], [ -75.091879, 40.096762 ], [ -75.091927, 40.09666 ], [ -75.091969, 40.096546 ], [ -75.092014, 40.096376 ], [ -75.092152, 40.095861 ], [ -75.092219, 40.095566 ], [ -75.092263, 40.095386 ], [ -75.092227, 40.095309 ], [ -75.092337, 40.094907 ], [ -75.092488, 40.094308 ], [ -75.092604, 40.093909 ], [ -75.092765, 40.093337 ], [ -75.092917, 40.09278 ], [ -75.092973, 40.092564 ], [ -75.093037, 40.092495 ], [ -75.09309, 40.092326 ], [ -75.093155, 40.092113 ], [ -75.093229, 40.091864 ], [ -75.093318, 40.091567 ], [ -75.093532, 40.090792 ], [ -75.093692, 40.090215 ], [ -75.093744, 40.090041 ], [ -75.093799, 40.089813 ], [ -75.093829, 40.089644 ], [ -75.093857, 40.089457 ], [ -75.093868, 40.089237 ], [ -75.093868, 40.088991 ], [ -75.093818, 40.088918 ], [ -75.093797, 40.088511 ], [ -75.093769, 40.087787 ], [ -75.093738, 40.087122 ], [ -75.093707, 40.086465 ], [ -75.0937, 40.086306 ], [ -75.093674, 40.086034 ], [ -75.093655, 40.085817 ], [ -75.093615, 40.085536 ], [ -75.093599, 40.085396 ], [ -75.093559, 40.085093 ], [ -75.093514, 40.084828 ], [ -75.093505, 40.084779 ], [ -75.093536, 40.084714 ], [ -75.093532, 40.084695 ], [ -75.093484, 40.08459 ], [ -75.093432, 40.084475 ], [ -75.093355, 40.084334 ], [ -75.093223, 40.084165 ], [ -75.09293, 40.083825 ], [ -75.092862, 40.083744 ], [ -75.092791, 40.083655 ], [ -75.092772, 40.083643 ], [ -75.092709, 40.083626 ], [ -75.092652, 40.083579 ], [ -75.092565, 40.083507 ], [ -75.092204, 40.083205 ], [ -75.091527, 40.082629 ], [ -75.091477, 40.082587 ], [ -75.091063, 40.082236 ], [ -75.090738, 40.081961 ], [ -75.090012, 40.081343 ], [ -75.089673, 40.081055 ], [ -75.08927, 40.080712 ], [ -75.088963, 40.080452 ], [ -75.088794, 40.080303 ], [ -75.088708, 40.080229 ], [ -75.088641, 40.080169 ], [ -75.088428, 40.079977 ], [ -75.088123, 40.079716 ], [ -75.087981, 40.079587 ], [ -75.087782, 40.079414 ], [ -75.087711, 40.079352 ], [ -75.0873, 40.07899 ], [ -75.087107, 40.078815 ], [ -75.086917, 40.078646 ], [ -75.086722, 40.078481 ], [ -75.086451, 40.078258 ], [ -75.086134, 40.077965 ], [ -75.085642, 40.077537 ], [ -75.085237, 40.077194 ], [ -75.085225, 40.077155 ], [ -75.085219, 40.077116 ], [ -75.085212, 40.077076 ], [ -75.085152, 40.076686 ], [ -75.085129, 40.076537 ], [ -75.085113, 40.076428 ], [ -75.085045, 40.076029 ], [ -75.084848, 40.074722 ], [ -75.084755, 40.074037 ], [ -75.084735, 40.073902 ], [ -75.084764, 40.073876 ], [ -75.084786, 40.073847 ], [ -75.0848, 40.07381 ], [ -75.084893, 40.073235 ], [ -75.084927, 40.072993 ], [ -75.085047, 40.072215 ], [ -75.08516, 40.071478 ], [ -75.085244, 40.070906 ], [ -75.085289, 40.070471 ], [ -75.085298, 40.070409 ], [ -75.085315, 40.070355 ], [ -75.085341, 40.070301 ], [ -75.085379, 40.070246 ], [ -75.085439, 40.070174 ], [ -75.0855, 40.070111 ], [ -75.085674, 40.069944 ], [ -75.086993, 40.06863 ], [ -75.087234, 40.068394 ], [ -75.087983, 40.067629 ], [ -75.089038, 40.0666 ], [ -75.090227, 40.065422 ], [ -75.090355, 40.065301 ], [ -75.089494, 40.064789 ], [ -75.089366, 40.064706 ], [ -75.088746, 40.064355 ], [ -75.087885, 40.06384 ], [ -75.087471, 40.063593 ], [ -75.087277, 40.06349 ], [ -75.087024, 40.063345 ], [ -75.086884, 40.063267 ], [ -75.086557, 40.063085 ], [ -75.086292, 40.062933 ], [ -75.085738, 40.062616 ], [ -75.085124, 40.062256 ], [ -75.08478, 40.062054 ], [ -75.084433, 40.061846 ], [ -75.084205, 40.061709 ], [ -75.084092, 40.061642 ], [ -75.083822, 40.061477 ], [ -75.085319, 40.060009 ], [ -75.085917, 40.05943 ], [ -75.086558, 40.058794 ], [ -75.087128, 40.058211 ], [ -75.088369, 40.056944 ], [ -75.089078, 40.056222 ], [ -75.08957, 40.055726 ], [ -75.090214, 40.055077 ], [ -75.090781, 40.054503 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.09201, 40.052428 ], [ -75.0918, 40.051448 ], [ -75.091638, 40.050625 ], [ -75.091595, 40.050453 ], [ -75.091422, 40.049517 ], [ -75.091349, 40.048801 ], [ -75.091278, 40.048091 ], [ -75.091184, 40.04759 ], [ -75.091143, 40.047357 ], [ -75.091124, 40.047258 ], [ -75.091092, 40.047167 ], [ -75.091064, 40.047079 ], [ -75.091042, 40.047018 ], [ -75.091009, 40.046935 ], [ -75.09097, 40.046859 ], [ -75.090923, 40.04678 ], [ -75.090791, 40.046588 ], [ -75.090572, 40.046267 ], [ -75.090441, 40.046076 ], [ -75.08926, 40.044695 ], [ -75.089199, 40.044622 ], [ -75.089164, 40.044577 ], [ -75.089144, 40.044549 ], [ -75.089127, 40.044523 ], [ -75.089104, 40.04448 ], [ -75.089065, 40.044403 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.087944, 40.036029 ], [ -75.088025, 40.03599 ], [ -75.088081, 40.035955 ], [ -75.088134, 40.035917 ], [ -75.088338, 40.035708 ], [ -75.088393, 40.035666 ], [ -75.088479, 40.035581 ], [ -75.088586, 40.035464 ], [ -75.088762, 40.035287 ], [ -75.088951, 40.035087 ], [ -75.089154, 40.034889 ], [ -75.089377, 40.034658 ], [ -75.089567, 40.034445 ], [ -75.089782, 40.034239 ], [ -75.089975, 40.03404 ], [ -75.090171, 40.033836 ], [ -75.090366, 40.033643 ], [ -75.090595, 40.033398 ], [ -75.090811, 40.033183 ], [ -75.091006, 40.032979 ], [ -75.091192, 40.032787 ], [ -75.091404, 40.032565 ], [ -75.091568, 40.032394 ], [ -75.091822, 40.032142 ], [ -75.092032, 40.031921 ], [ -75.092231, 40.031718 ], [ -75.092413, 40.031527 ], [ -75.092627, 40.031304 ], [ -75.092798, 40.03113 ], [ -75.093027, 40.030894 ], [ -75.091582, 40.030083 ], [ -75.090845, 40.029678 ], [ -75.090574, 40.029526 ], [ -75.090482, 40.029482 ], [ -75.09018, 40.029303 ], [ -75.090031, 40.029222 ], [ -75.089884, 40.02914 ], [ -75.089537, 40.028952 ], [ -75.089385, 40.028873 ], [ -75.089283, 40.028816 ], [ -75.088968, 40.028634 ], [ -75.088625, 40.028442 ], [ -75.08819, 40.028206 ], [ -75.087103, 40.027588 ], [ -75.086007, 40.026979 ], [ -75.084918, 40.026373 ], [ -75.08422, 40.025983 ], [ -75.083435, 40.025549 ], [ -75.082673, 40.025129 ], [ -75.082263, 40.0249 ], [ -75.081924, 40.024719 ], [ -75.081565, 40.02451 ], [ -75.081243, 40.024331 ], [ -75.08052, 40.023863 ], [ -75.079971, 40.023514 ], [ -75.079882, 40.02365 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077384, 40.024124 ], [ -75.077335, 40.024124 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307460", "route_id": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.043739, 40.17135 ], [ -75.04468, 40.171388 ], [ -75.044775, 40.171015 ], [ -75.04486, 40.170683 ], [ -75.045141, 40.169689 ], [ -75.045273, 40.169241 ], [ -75.04543, 40.168713 ], [ -75.045715, 40.167808 ], [ -75.045745, 40.167713 ], [ -75.045794, 40.167539 ], [ -75.045836, 40.167395 ], [ -75.045903, 40.167145 ], [ -75.045939, 40.167007 ], [ -75.04599, 40.166824 ], [ -75.046028, 40.166684 ], [ -75.046112, 40.166376 ], [ -75.046225, 40.165961 ], [ -75.046412, 40.1653 ], [ -75.046478, 40.165064 ], [ -75.046592, 40.164642 ], [ -75.046725, 40.164156 ], [ -75.046951, 40.164186 ], [ -75.047185, 40.164218 ], [ -75.047424, 40.164255 ], [ -75.047638, 40.164294 ], [ -75.047736, 40.164314 ], [ -75.04784, 40.164342 ], [ -75.047933, 40.164372 ], [ -75.048043, 40.164412 ], [ -75.048199, 40.164476 ], [ -75.048521, 40.164609 ], [ -75.048746, 40.164705 ], [ -75.048936, 40.164784 ], [ -75.049121, 40.164854 ], [ -75.049264, 40.164904 ], [ -75.049461, 40.164967 ], [ -75.049602, 40.165009 ], [ -75.049894, 40.165106 ], [ -75.050499, 40.165301 ], [ -75.050703, 40.165365 ], [ -75.050868, 40.16542 ], [ -75.051053, 40.165482 ], [ -75.051204, 40.165544 ], [ -75.051324, 40.165602 ], [ -75.05143, 40.165662 ], [ -75.05152, 40.165721 ], [ -75.051603, 40.16578 ], [ -75.051687, 40.165851 ], [ -75.051745, 40.165904 ], [ -75.051811, 40.165965 ], [ -75.051903, 40.166056 ], [ -75.052126, 40.166281 ], [ -75.052295, 40.166458 ], [ -75.053713, 40.165609 ], [ -75.054172, 40.165344 ], [ -75.054431, 40.165206 ], [ -75.054664, 40.165101 ], [ -75.055206, 40.164942 ], [ -75.055663, 40.16485 ], [ -75.056529, 40.164732 ], [ -75.057683, 40.164614 ], [ -75.057966, 40.164592 ], [ -75.058118, 40.164548 ], [ -75.058298, 40.164445 ], [ -75.058465, 40.164314 ], [ -75.058668, 40.164135 ], [ -75.058815, 40.163995 ], [ -75.058596, 40.163854 ], [ -75.058118, 40.163581 ], [ -75.0578, 40.1634 ], [ -75.057514, 40.163225 ], [ -75.057448, 40.163188 ], [ -75.057346, 40.163129 ], [ -75.057068, 40.162965 ], [ -75.055694, 40.162127 ], [ -75.054688, 40.161549 ], [ -75.054329, 40.161342 ], [ -75.053755, 40.161 ], [ -75.053119, 40.160605 ], [ -75.052906, 40.160478 ], [ -75.052506, 40.160244 ], [ -75.051838, 40.159833 ], [ -75.049731, 40.158588 ], [ -75.049695, 40.158516 ], [ -75.04968, 40.158504 ], [ -75.049632, 40.158478 ], [ -75.049357, 40.158322 ], [ -75.048858, 40.158036 ], [ -75.048965, 40.157874 ], [ -75.049208, 40.157559 ], [ -75.049343, 40.157383 ], [ -75.049674, 40.156955 ], [ -75.050286, 40.156138 ], [ -75.050345, 40.156058 ], [ -75.051389, 40.154709 ], [ -75.0519, 40.154072 ], [ -75.051977, 40.153985 ], [ -75.052146, 40.153787 ], [ -75.052368, 40.153551 ], [ -75.052652, 40.153276 ], [ -75.053055, 40.152947 ], [ -75.053362, 40.152702 ], [ -75.053737, 40.152426 ], [ -75.054178, 40.152097 ], [ -75.055197, 40.151351 ], [ -75.055487, 40.151126 ], [ -75.055976, 40.15077 ], [ -75.056761, 40.150179 ], [ -75.057827, 40.149386 ], [ -75.058095, 40.149187 ], [ -75.058454, 40.148911 ], [ -75.05852, 40.148858 ], [ -75.058754, 40.148669 ], [ -75.059167, 40.148275 ], [ -75.059359, 40.148046 ], [ -75.059486, 40.147867 ], [ -75.059585, 40.147706 ], [ -75.059683, 40.147528 ], [ -75.059767, 40.147355 ], [ -75.059812, 40.147252 ], [ -75.059846, 40.14715 ], [ -75.05993, 40.146889 ], [ -75.059986, 40.146679 ], [ -75.06009, 40.14628 ], [ -75.060465, 40.14479 ], [ -75.06049, 40.144673 ], [ -75.060543, 40.144386 ], [ -75.060571, 40.144096 ], [ -75.060583, 40.143805 ], [ -75.060592, 40.143513 ], [ -75.060592, 40.143094 ], [ -75.060592, 40.14264 ], [ -75.0606, 40.142148 ], [ -75.060609, 40.141991 ], [ -75.060622, 40.14179 ], [ -75.060653, 40.141614 ], [ -75.060774, 40.141054 ], [ -75.060979, 40.140197 ], [ -75.061195, 40.139246 ], [ -75.061484, 40.13775 ], [ -75.061557, 40.137345 ], [ -75.061607, 40.137063 ], [ -75.061645, 40.136724 ], [ -75.061737, 40.135849 ], [ -75.061807, 40.135051 ], [ -75.061821, 40.134899 ], [ -75.061838, 40.134739 ], [ -75.061874, 40.134428 ], [ -75.061888, 40.134225 ], [ -75.0619, 40.134032 ], [ -75.061898, 40.133821 ], [ -75.061886, 40.13334 ], [ -75.061865, 40.132227 ], [ -75.061861, 40.132025 ], [ -75.061861, 40.130823 ], [ -75.061886, 40.130628 ], [ -75.062071, 40.129129 ], [ -75.062157, 40.128494 ], [ -75.062238, 40.127872 ], [ -75.062327, 40.1272 ], [ -75.062353, 40.127016 ], [ -75.062387, 40.126874 ], [ -75.062457, 40.126599 ], [ -75.062564, 40.126242 ], [ -75.062587, 40.126166 ], [ -75.06279, 40.125476 ], [ -75.062896, 40.12515 ], [ -75.063096, 40.124666 ], [ -75.063177, 40.124476 ], [ -75.063295, 40.124202 ], [ -75.063411, 40.123936 ], [ -75.063475, 40.12381 ], [ -75.063538, 40.123686 ], [ -75.063662, 40.12349 ], [ -75.063726, 40.123393 ], [ -75.063763, 40.123342 ], [ -75.063814, 40.123276 ], [ -75.063966, 40.123084 ], [ -75.064145, 40.122883 ], [ -75.064602, 40.122354 ], [ -75.064741, 40.122214 ], [ -75.065446, 40.1215 ], [ -75.066372, 40.120605 ], [ -75.066582, 40.1204 ], [ -75.066657, 40.120309 ], [ -75.06675, 40.120275 ], [ -75.06684, 40.120194 ], [ -75.066921, 40.120098 ], [ -75.067065, 40.119932 ], [ -75.0674, 40.119569 ], [ -75.067489, 40.119626 ], [ -75.067593, 40.119704 ], [ -75.067673, 40.11978 ], [ -75.068112, 40.120246 ], [ -75.068305, 40.120453 ], [ -75.068466, 40.120665 ], [ -75.068545, 40.120748 ], [ -75.068618, 40.120821 ], [ -75.068674, 40.120887 ], [ -75.068748, 40.120954 ], [ -75.068902, 40.121087 ], [ -75.069, 40.121168 ], [ -75.06909, 40.121242 ], [ -75.069226, 40.121339 ], [ -75.069317, 40.121388 ], [ -75.06944, 40.121444 ], [ -75.069583, 40.121498 ], [ -75.069741, 40.121548 ], [ -75.069449, 40.122478 ], [ -75.069035, 40.122771 ], [ -75.068407, 40.123214 ], [ -75.068693, 40.123399 ], [ -75.069164, 40.123349 ], [ -75.069035, 40.122771 ], [ -75.069449, 40.122478 ], [ -75.069741, 40.121548 ], [ -75.069913, 40.12158 ], [ -75.070108, 40.121603 ], [ -75.070313, 40.121618 ], [ -75.070346, 40.121613 ], [ -75.07042, 40.121585 ], [ -75.070847, 40.121603 ], [ -75.071339, 40.121617 ], [ -75.071362, 40.121401 ], [ -75.071741, 40.121272 ], [ -75.071784, 40.121165 ], [ -75.071705, 40.121058 ], [ -75.071291, 40.121029 ], [ -75.071362, 40.121401 ], [ -75.071339, 40.121617 ], [ -75.070847, 40.121603 ], [ -75.07042, 40.121585 ], [ -75.07035, 40.121557 ], [ -75.070148, 40.121531 ], [ -75.06995, 40.121499 ], [ -75.069807, 40.121467 ], [ -75.069617, 40.121416 ], [ -75.069507, 40.121376 ], [ -75.069339, 40.121311 ], [ -75.068843, 40.120906 ], [ -75.068669, 40.120709 ], [ -75.068414, 40.120408 ], [ -75.068219, 40.120187 ], [ -75.068078, 40.12003 ], [ -75.067987, 40.119929 ], [ -75.067754, 40.11967 ], [ -75.067717, 40.119637 ], [ -75.067574, 40.119516 ], [ -75.067484, 40.11946 ], [ -75.067736, 40.119021 ], [ -75.06787, 40.118795 ], [ -75.068187, 40.118292 ], [ -75.068448, 40.11792 ], [ -75.068531, 40.117796 ], [ -75.068739, 40.117523 ], [ -75.069168, 40.116976 ], [ -75.069689, 40.116313 ], [ -75.069756, 40.116234 ], [ -75.069837, 40.116127 ], [ -75.069971, 40.115978 ], [ -75.070323, 40.115587 ], [ -75.070466, 40.115435 ], [ -75.070542, 40.115362 ], [ -75.070714, 40.115199 ], [ -75.070865, 40.115069 ], [ -75.07099, 40.114976 ], [ -75.071109, 40.114877 ], [ -75.071585, 40.114515 ], [ -75.07166, 40.114464 ], [ -75.072118, 40.114143 ], [ -75.072238, 40.11407 ], [ -75.072336, 40.114014 ], [ -75.072512, 40.113917 ], [ -75.072786, 40.113746 ], [ -75.073854, 40.11293 ], [ -75.074445, 40.112545 ], [ -75.075288, 40.111981 ], [ -75.07539, 40.111916 ], [ -75.075955, 40.11154 ], [ -75.076005, 40.111506 ], [ -75.07685, 40.110937 ], [ -75.076968, 40.110861 ], [ -75.077612, 40.110426 ], [ -75.078093, 40.110122 ], [ -75.078362, 40.109973 ], [ -75.078459, 40.109924 ], [ -75.078625, 40.109843 ], [ -75.078963, 40.109688 ], [ -75.079116, 40.109628 ], [ -75.079369, 40.109531 ], [ -75.079675, 40.109423 ], [ -75.080203, 40.109245 ], [ -75.0811, 40.108944 ], [ -75.081352, 40.108844 ], [ -75.081634, 40.108725 ], [ -75.081716, 40.108685 ], [ -75.081887, 40.108602 ], [ -75.081994, 40.10855 ], [ -75.082088, 40.108498 ], [ -75.082234, 40.108418 ], [ -75.082438, 40.10829 ], [ -75.082597, 40.108182 ], [ -75.082715, 40.108096 ], [ -75.082853, 40.107997 ], [ -75.082934, 40.107929 ], [ -75.082998, 40.107875 ], [ -75.083012, 40.107865 ], [ -75.083108, 40.107776 ], [ -75.083281, 40.107603 ], [ -75.083902, 40.106995 ], [ -75.084124, 40.106775 ], [ -75.084308, 40.106587 ], [ -75.084324, 40.106569 ], [ -75.084395, 40.106493 ], [ -75.084477, 40.106401 ], [ -75.084584, 40.106266 ], [ -75.084699, 40.106125 ], [ -75.084847, 40.105914 ], [ -75.08497, 40.105711 ], [ -75.085055, 40.105554 ], [ -75.085155, 40.105346 ], [ -75.085186, 40.105283 ], [ -75.085217, 40.1052 ], [ -75.08527, 40.105056 ], [ -75.085371, 40.104779 ], [ -75.085352, 40.10471 ], [ -75.085473, 40.104335 ], [ -75.08562, 40.103888 ], [ -75.085635, 40.103843 ], [ -75.08581, 40.103352 ], [ -75.085864, 40.103221 ], [ -75.086018, 40.102919 ], [ -75.086119, 40.102748 ], [ -75.086128, 40.102733 ], [ -75.08619, 40.102633 ], [ -75.086302, 40.102475 ], [ -75.086428, 40.102322 ], [ -75.086565, 40.102174 ], [ -75.087441, 40.101293 ], [ -75.088346, 40.100397 ], [ -75.089295, 40.099444 ], [ -75.089522, 40.099225 ], [ -75.089694, 40.099059 ], [ -75.089925, 40.098825 ], [ -75.090056, 40.098693 ], [ -75.090509, 40.098249 ], [ -75.090552, 40.09821 ], [ -75.090815, 40.097949 ], [ -75.091022, 40.097735 ], [ -75.091213, 40.097538 ], [ -75.091287, 40.097511 ], [ -75.091377, 40.097423 ], [ -75.091438, 40.097367 ], [ -75.091504, 40.097314 ], [ -75.091613, 40.097179 ], [ -75.091765, 40.096974 ], [ -75.09182, 40.096884 ], [ -75.091879, 40.096762 ], [ -75.091927, 40.09666 ], [ -75.091969, 40.096546 ], [ -75.092014, 40.096376 ], [ -75.092152, 40.095861 ], [ -75.092219, 40.095566 ], [ -75.092263, 40.095386 ], [ -75.092227, 40.095309 ], [ -75.092337, 40.094907 ], [ -75.092488, 40.094308 ], [ -75.092604, 40.093909 ], [ -75.092765, 40.093337 ], [ -75.092917, 40.09278 ], [ -75.092973, 40.092564 ], [ -75.093037, 40.092495 ], [ -75.09309, 40.092326 ], [ -75.093155, 40.092113 ], [ -75.093229, 40.091864 ], [ -75.093318, 40.091567 ], [ -75.093532, 40.090792 ], [ -75.093692, 40.090215 ], [ -75.093744, 40.090041 ], [ -75.093799, 40.089813 ], [ -75.093829, 40.089644 ], [ -75.093857, 40.089457 ], [ -75.093868, 40.089237 ], [ -75.093868, 40.088991 ], [ -75.093818, 40.088918 ], [ -75.093797, 40.088511 ], [ -75.093769, 40.087787 ], [ -75.093738, 40.087122 ], [ -75.093707, 40.086465 ], [ -75.0937, 40.086306 ], [ -75.093674, 40.086034 ], [ -75.093655, 40.085817 ], [ -75.093615, 40.085536 ], [ -75.093599, 40.085396 ], [ -75.093559, 40.085093 ], [ -75.093514, 40.084828 ], [ -75.093505, 40.084779 ], [ -75.093536, 40.084714 ], [ -75.093532, 40.084695 ], [ -75.093484, 40.08459 ], [ -75.093432, 40.084475 ], [ -75.093355, 40.084334 ], [ -75.093223, 40.084165 ], [ -75.09293, 40.083825 ], [ -75.092862, 40.083744 ], [ -75.092791, 40.083655 ], [ -75.092772, 40.083643 ], [ -75.092709, 40.083626 ], [ -75.092652, 40.083579 ], [ -75.092565, 40.083507 ], [ -75.092204, 40.083205 ], [ -75.091527, 40.082629 ], [ -75.091477, 40.082587 ], [ -75.091063, 40.082236 ], [ -75.090738, 40.081961 ], [ -75.090012, 40.081343 ], [ -75.089673, 40.081055 ], [ -75.08927, 40.080712 ], [ -75.088963, 40.080452 ], [ -75.088794, 40.080303 ], [ -75.088708, 40.080229 ], [ -75.088641, 40.080169 ], [ -75.088428, 40.079977 ], [ -75.088123, 40.079716 ], [ -75.087981, 40.079587 ], [ -75.087782, 40.079414 ], [ -75.087711, 40.079352 ], [ -75.0873, 40.07899 ], [ -75.087107, 40.078815 ], [ -75.086917, 40.078646 ], [ -75.086722, 40.078481 ], [ -75.086451, 40.078258 ], [ -75.086134, 40.077965 ], [ -75.085642, 40.077537 ], [ -75.085237, 40.077194 ], [ -75.085225, 40.077155 ], [ -75.085219, 40.077116 ], [ -75.085212, 40.077076 ], [ -75.085152, 40.076686 ], [ -75.085129, 40.076537 ], [ -75.085113, 40.076428 ], [ -75.085045, 40.076029 ], [ -75.084848, 40.074722 ], [ -75.084755, 40.074037 ], [ -75.084735, 40.073902 ], [ -75.084764, 40.073876 ], [ -75.084786, 40.073847 ], [ -75.0848, 40.07381 ], [ -75.084893, 40.073235 ], [ -75.084927, 40.072993 ], [ -75.085047, 40.072215 ], [ -75.08516, 40.071478 ], [ -75.085244, 40.070906 ], [ -75.085289, 40.070471 ], [ -75.085298, 40.070409 ], [ -75.085315, 40.070355 ], [ -75.085341, 40.070301 ], [ -75.085379, 40.070246 ], [ -75.085439, 40.070174 ], [ -75.0855, 40.070111 ], [ -75.085674, 40.069944 ], [ -75.086993, 40.06863 ], [ -75.087234, 40.068394 ], [ -75.087983, 40.067629 ], [ -75.089038, 40.0666 ], [ -75.090227, 40.065422 ], [ -75.090355, 40.065301 ], [ -75.089494, 40.064789 ], [ -75.089366, 40.064706 ], [ -75.088746, 40.064355 ], [ -75.087885, 40.06384 ], [ -75.087471, 40.063593 ], [ -75.087277, 40.06349 ], [ -75.087024, 40.063345 ], [ -75.086884, 40.063267 ], [ -75.086557, 40.063085 ], [ -75.086292, 40.062933 ], [ -75.085738, 40.062616 ], [ -75.085124, 40.062256 ], [ -75.08478, 40.062054 ], [ -75.084433, 40.061846 ], [ -75.084205, 40.061709 ], [ -75.084092, 40.061642 ], [ -75.083822, 40.061477 ], [ -75.085319, 40.060009 ], [ -75.085917, 40.05943 ], [ -75.086558, 40.058794 ], [ -75.087128, 40.058211 ], [ -75.088369, 40.056944 ], [ -75.089078, 40.056222 ], [ -75.08957, 40.055726 ], [ -75.090214, 40.055077 ], [ -75.090781, 40.054503 ], [ -75.091449, 40.053836 ], [ -75.091993, 40.053278 ], [ -75.092141, 40.053128 ], [ -75.09201, 40.052428 ], [ -75.0918, 40.051448 ], [ -75.091638, 40.050625 ], [ -75.091595, 40.050453 ], [ -75.091422, 40.049517 ], [ -75.091349, 40.048801 ], [ -75.091278, 40.048091 ], [ -75.091184, 40.04759 ], [ -75.091143, 40.047357 ], [ -75.091124, 40.047258 ], [ -75.091092, 40.047167 ], [ -75.091064, 40.047079 ], [ -75.091042, 40.047018 ], [ -75.091009, 40.046935 ], [ -75.09097, 40.046859 ], [ -75.090923, 40.04678 ], [ -75.090791, 40.046588 ], [ -75.090572, 40.046267 ], [ -75.090441, 40.046076 ], [ -75.08926, 40.044695 ], [ -75.089199, 40.044622 ], [ -75.089164, 40.044577 ], [ -75.089144, 40.044549 ], [ -75.089127, 40.044523 ], [ -75.089104, 40.04448 ], [ -75.089065, 40.044403 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.087944, 40.036029 ], [ -75.088025, 40.03599 ], [ -75.088081, 40.035955 ], [ -75.088134, 40.035917 ], [ -75.088338, 40.035708 ], [ -75.088393, 40.035666 ], [ -75.088479, 40.035581 ], [ -75.088586, 40.035464 ], [ -75.088762, 40.035287 ], [ -75.088951, 40.035087 ], [ -75.089154, 40.034889 ], [ -75.089377, 40.034658 ], [ -75.089567, 40.034445 ], [ -75.089782, 40.034239 ], [ -75.089975, 40.03404 ], [ -75.090171, 40.033836 ], [ -75.090366, 40.033643 ], [ -75.090595, 40.033398 ], [ -75.090811, 40.033183 ], [ -75.091006, 40.032979 ], [ -75.091192, 40.032787 ], [ -75.091404, 40.032565 ], [ -75.091568, 40.032394 ], [ -75.091822, 40.032142 ], [ -75.092032, 40.031921 ], [ -75.092231, 40.031718 ], [ -75.092413, 40.031527 ], [ -75.092627, 40.031304 ], [ -75.092798, 40.03113 ], [ -75.093027, 40.030894 ], [ -75.091582, 40.030083 ], [ -75.090845, 40.029678 ], [ -75.090574, 40.029526 ], [ -75.090482, 40.029482 ], [ -75.09018, 40.029303 ], [ -75.090031, 40.029222 ], [ -75.089884, 40.02914 ], [ -75.089537, 40.028952 ], [ -75.089385, 40.028873 ], [ -75.089283, 40.028816 ], [ -75.088968, 40.028634 ], [ -75.088625, 40.028442 ], [ -75.08819, 40.028206 ], [ -75.087103, 40.027588 ], [ -75.086007, 40.026979 ], [ -75.084918, 40.026373 ], [ -75.08422, 40.025983 ], [ -75.083435, 40.025549 ], [ -75.082673, 40.025129 ], [ -75.082263, 40.0249 ], [ -75.081924, 40.024719 ], [ -75.081565, 40.02451 ], [ -75.081243, 40.024331 ], [ -75.08052, 40.023863 ], [ -75.079971, 40.023514 ], [ -75.079882, 40.02365 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077384, 40.024124 ], [ -75.077335, 40.024124 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307469", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.150212, 40.038998 ], [ -75.150015, 40.038981 ], [ -75.149738, 40.038677 ], [ -75.149642, 40.038572 ], [ -75.149551, 40.038461 ], [ -75.149539, 40.038447 ], [ -75.149456, 40.038342 ], [ -75.149406, 40.038269 ], [ -75.14936, 40.038191 ], [ -75.149284, 40.038039 ], [ -75.149227, 40.037894 ], [ -75.14918, 40.03774 ], [ -75.149149, 40.037597 ], [ -75.149136, 40.037478 ], [ -75.149134, 40.037415 ], [ -75.149131, 40.037337 ], [ -75.149136, 40.037225 ], [ -75.149137, 40.03719 ], [ -75.149143, 40.037121 ], [ -75.149152, 40.037058 ], [ -75.149171, 40.036959 ], [ -75.149193, 40.03687 ], [ -75.149214, 40.036805 ], [ -75.149261, 40.036674 ], [ -75.149327, 40.036528 ], [ -75.149342, 40.036498 ], [ -75.149449, 40.036333 ], [ -75.149497, 40.036267 ], [ -75.149606, 40.036123 ], [ -75.149883, 40.035818 ], [ -75.149629, 40.035792 ], [ -75.149428, 40.035779 ], [ -75.149249, 40.035764 ], [ -75.148566, 40.035681 ], [ -75.148161, 40.035621 ], [ -75.147187, 40.035478 ], [ -75.146432, 40.035367 ], [ -75.145662, 40.035279 ], [ -75.145521, 40.035263 ], [ -75.14544, 40.03563 ], [ -75.145365, 40.035969 ], [ -75.145234, 40.036572 ], [ -75.14517, 40.036863 ], [ -75.14514, 40.036992 ], [ -75.145069, 40.037298 ], [ -75.145, 40.037602 ], [ -75.144891, 40.037704 ], [ -75.144855, 40.037832 ], [ -75.144829, 40.037949 ], [ -75.144815, 40.038019 ], [ -75.144684, 40.038691 ], [ -75.144663, 40.038822 ], [ -75.14463, 40.039037 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115388, 40.034524 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114875, 40.034423 ], [ -75.114845, 40.034391 ], [ -75.114814, 40.03435 ], [ -75.114421, 40.033874 ], [ -75.113486, 40.03273 ], [ -75.112882, 40.031996 ], [ -75.112203, 40.031196 ], [ -75.112157, 40.031127 ], [ -75.112113, 40.031054 ], [ -75.112059, 40.030941 ], [ -75.112012, 40.030817 ], [ -75.112001, 40.030736 ], [ -75.111901, 40.030753 ], [ -75.111839, 40.030769 ], [ -75.1118, 40.030784 ], [ -75.111749, 40.03084 ], [ -75.111659, 40.030868 ], [ -75.111123, 40.031054 ], [ -75.11, 40.031428 ], [ -75.109056, 40.03176 ], [ -75.108449, 40.031962 ], [ -75.108376, 40.031986 ], [ -75.108, 40.032131 ], [ -75.107925, 40.03216 ], [ -75.107856, 40.0322 ], [ -75.107767, 40.032263 ], [ -75.107677, 40.032343 ], [ -75.107579, 40.032438 ], [ -75.107244, 40.032778 ], [ -75.106912, 40.033121 ], [ -75.105944, 40.034105 ], [ -75.104723, 40.035329 ], [ -75.104061, 40.035987 ], [ -75.103192, 40.036781 ], [ -75.102353, 40.037574 ], [ -75.102132, 40.037782 ], [ -75.10188, 40.038014 ], [ -75.101576, 40.038289 ], [ -75.101334, 40.038503 ], [ -75.101154, 40.03866 ], [ -75.100939, 40.038844 ], [ -75.100914, 40.038865 ], [ -75.100726, 40.039029 ], [ -75.100479, 40.039231 ], [ -75.100274, 40.039404 ], [ -75.10004, 40.039605 ], [ -75.099814, 40.039801 ], [ -75.099589, 40.039984 ], [ -75.099346, 40.040196 ], [ -75.099088, 40.040409 ], [ -75.098868, 40.040593 ], [ -75.098655, 40.040768 ], [ -75.09844, 40.040954 ], [ -75.098233, 40.041128 ], [ -75.097955, 40.041367 ], [ -75.096582, 40.042524 ], [ -75.096532, 40.042565 ], [ -75.096488, 40.042601 ], [ -75.0964, 40.042685 ], [ -75.096129, 40.042969 ], [ -75.095946, 40.043161 ], [ -75.095385, 40.043746 ], [ -75.094197, 40.044998 ], [ -75.093032, 40.046234 ], [ -75.092193, 40.047134 ], [ -75.09187, 40.047488 ], [ -75.091616, 40.047343 ], [ -75.091493, 40.047274 ], [ -75.091042, 40.047018 ], [ -75.090645, 40.046803 ], [ -75.090068, 40.046482 ], [ -75.08943, 40.046132 ], [ -75.089081, 40.045935 ], [ -75.088992, 40.045885 ], [ -75.088762, 40.045758 ], [ -75.088312, 40.045505 ], [ -75.087623, 40.045126 ], [ -75.087094, 40.044834 ], [ -75.086736, 40.044637 ], [ -75.086576, 40.044549 ], [ -75.085774, 40.044107 ], [ -75.085533, 40.04397 ], [ -75.085265, 40.043819 ], [ -75.085196, 40.043808 ], [ -75.08513, 40.04379 ], [ -75.085081, 40.043758 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.080365, 40.044882 ], [ -75.080002, 40.044686 ], [ -75.078591, 40.043886 ], [ -75.076675, 40.042843 ], [ -75.076571, 40.042781 ], [ -75.075018, 40.041937 ], [ -75.074818, 40.041818 ], [ -75.074529, 40.041657 ], [ -75.074216, 40.041485 ], [ -75.073937, 40.041314 ], [ -75.073646, 40.041152 ], [ -75.073338, 40.04098 ], [ -75.072998, 40.040783 ], [ -75.072674, 40.040599 ], [ -75.072394, 40.040437 ], [ -75.072102, 40.040278 ], [ -75.07182, 40.040124 ], [ -75.071531, 40.039969 ], [ -75.07122, 40.039784 ], [ -75.070905, 40.039607 ], [ -75.070615, 40.039439 ], [ -75.070324, 40.039283 ], [ -75.070028, 40.039125 ], [ -75.069746, 40.038959 ], [ -75.069431, 40.038779 ], [ -75.069104, 40.038593 ], [ -75.068975, 40.038522 ], [ -75.068784, 40.038424 ], [ -75.068466, 40.038238 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065539, 40.040363 ], [ -75.065508, 40.040299 ], [ -75.065478, 40.0402 ], [ -75.065507, 40.040094 ], [ -75.065426, 40.039808 ], [ -75.065231, 40.039122 ], [ -75.065136, 40.038781 ], [ -75.065088, 40.038616 ], [ -75.064962, 40.038199 ], [ -75.06483, 40.037808 ], [ -75.064775, 40.037638 ], [ -75.064743, 40.037527 ], [ -75.064653, 40.037211 ], [ -75.06463, 40.03714 ], [ -75.064505, 40.03673 ], [ -75.06447, 40.036611 ], [ -75.06437, 40.036308 ], [ -75.064331, 40.036187 ], [ -75.064253, 40.035877 ], [ -75.06424, 40.035816 ], [ -75.064225, 40.035751 ], [ -75.064179, 40.035548 ], [ -75.064084, 40.035095 ], [ -75.064002, 40.034721 ], [ -75.063901, 40.034251 ], [ -75.063795, 40.033761 ], [ -75.063762, 40.033623 ], [ -75.063729, 40.033476 ], [ -75.063654, 40.033134 ], [ -75.063568, 40.032741 ], [ -75.063436, 40.032112 ], [ -75.063378, 40.031839 ], [ -75.063326, 40.031586 ], [ -75.063312, 40.03152 ], [ -75.063189, 40.030957 ], [ -75.063142, 40.030746 ], [ -75.063037, 40.030248 ], [ -75.062983, 40.029986 ], [ -75.062952, 40.029832 ], [ -75.062869, 40.029449 ], [ -75.062859, 40.029388 ], [ -75.063219, 40.028999 ], [ -75.063388, 40.028822 ], [ -75.063581, 40.028621 ], [ -75.064014, 40.028163 ], [ -75.064625, 40.027512 ], [ -75.065022, 40.027094 ], [ -75.065076, 40.027085 ], [ -75.065246, 40.027061 ], [ -75.065424, 40.027035 ], [ -75.065521, 40.027019 ], [ -75.066046, 40.026939 ], [ -75.066276, 40.026904 ], [ -75.066679, 40.026843 ], [ -75.067127, 40.02677 ], [ -75.067181, 40.026756 ], [ -75.06721, 40.026748 ], [ -75.067303, 40.02673 ], [ -75.067331, 40.026723 ], [ -75.067979, 40.026581 ], [ -75.068378, 40.026495 ], [ -75.068803, 40.0264 ], [ -75.069441, 40.02626 ], [ -75.06987, 40.026165 ], [ -75.072045, 40.025672 ], [ -75.072507, 40.025567 ], [ -75.07325, 40.025398 ], [ -75.073379, 40.025371 ], [ -75.073849, 40.025788 ], [ -75.074165, 40.026052 ], [ -75.074983, 40.026686 ], [ -75.075205, 40.026877 ], [ -75.075324, 40.026975 ], [ -75.075401, 40.027017 ], [ -75.075454, 40.027038 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307470", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.180877, 40.02982 ], [ -75.180972, 40.029725 ], [ -75.18146, 40.02925 ], [ -75.182284, 40.029751 ], [ -75.182892, 40.03011 ], [ -75.183689, 40.030589 ], [ -75.183736, 40.030611 ], [ -75.183701, 40.030651 ], [ -75.183225, 40.031147 ], [ -75.18306, 40.031307 ], [ -75.182926, 40.031438 ], [ -75.182572, 40.031783 ], [ -75.180909, 40.030775 ], [ -75.180285, 40.030411 ], [ -75.179386, 40.031282 ], [ -75.178915, 40.031754 ], [ -75.178506, 40.032146 ], [ -75.178354, 40.032292 ], [ -75.177728, 40.032893 ], [ -75.177047, 40.033576 ], [ -75.176812, 40.033812 ], [ -75.176519, 40.034107 ], [ -75.175932, 40.034644 ], [ -75.175472, 40.035095 ], [ -75.174711, 40.035831 ], [ -75.173856, 40.036671 ], [ -75.173098, 40.037408 ], [ -75.172085, 40.038391 ], [ -75.171624, 40.038844 ], [ -75.169866, 40.040558 ], [ -75.169795, 40.040628 ], [ -75.168703, 40.041695 ], [ -75.16721, 40.043155 ], [ -75.166097, 40.044239 ], [ -75.165302, 40.045006 ], [ -75.165064, 40.045236 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150212, 40.038998 ], [ -75.150015, 40.038981 ], [ -75.149418, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.12128, 40.035947 ], [ -75.121077, 40.036856 ], [ -75.120337, 40.036745 ], [ -75.119765, 40.036669 ], [ -75.118937, 40.037274 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307471", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.180877, 40.02982 ], [ -75.180972, 40.029725 ], [ -75.18146, 40.02925 ], [ -75.182284, 40.029751 ], [ -75.182892, 40.03011 ], [ -75.183689, 40.030589 ], [ -75.183736, 40.030611 ], [ -75.183701, 40.030651 ], [ -75.183225, 40.031147 ], [ -75.18306, 40.031307 ], [ -75.182926, 40.031438 ], [ -75.182572, 40.031783 ], [ -75.180909, 40.030775 ], [ -75.180285, 40.030411 ], [ -75.179386, 40.031282 ], [ -75.178915, 40.031754 ], [ -75.178506, 40.032146 ], [ -75.178354, 40.032292 ], [ -75.177728, 40.032893 ], [ -75.177047, 40.033576 ], [ -75.176812, 40.033812 ], [ -75.176519, 40.034107 ], [ -75.175932, 40.034644 ], [ -75.175472, 40.035095 ], [ -75.174711, 40.035831 ], [ -75.173856, 40.036671 ], [ -75.173098, 40.037408 ], [ -75.172085, 40.038391 ], [ -75.171624, 40.038844 ], [ -75.169866, 40.040558 ], [ -75.169795, 40.040628 ], [ -75.168703, 40.041695 ], [ -75.16721, 40.043155 ], [ -75.166097, 40.044239 ], [ -75.165302, 40.045006 ], [ -75.165064, 40.045236 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150212, 40.038998 ], [ -75.150015, 40.038981 ], [ -75.149418, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115708, 40.034434 ], [ -75.115702, 40.034336 ], [ -75.115663, 40.034282 ], [ -75.115578, 40.034233 ], [ -75.115393, 40.034178 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307472", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.180877, 40.02982 ], [ -75.180972, 40.029725 ], [ -75.18146, 40.02925 ], [ -75.182284, 40.029751 ], [ -75.182892, 40.03011 ], [ -75.183689, 40.030589 ], [ -75.183736, 40.030611 ], [ -75.183701, 40.030651 ], [ -75.183225, 40.031147 ], [ -75.18306, 40.031307 ], [ -75.182926, 40.031438 ], [ -75.182572, 40.031783 ], [ -75.180909, 40.030775 ], [ -75.180285, 40.030411 ], [ -75.179386, 40.031282 ], [ -75.178915, 40.031754 ], [ -75.178506, 40.032146 ], [ -75.178354, 40.032292 ], [ -75.177728, 40.032893 ], [ -75.177047, 40.033576 ], [ -75.176812, 40.033812 ], [ -75.176519, 40.034107 ], [ -75.175932, 40.034644 ], [ -75.175472, 40.035095 ], [ -75.174711, 40.035831 ], [ -75.173856, 40.036671 ], [ -75.173098, 40.037408 ], [ -75.172085, 40.038391 ], [ -75.171624, 40.038844 ], [ -75.169866, 40.040558 ], [ -75.169795, 40.040628 ], [ -75.168703, 40.041695 ], [ -75.16721, 40.043155 ], [ -75.166097, 40.044239 ], [ -75.165302, 40.045006 ], [ -75.165064, 40.045236 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150212, 40.038998 ], [ -75.150015, 40.038981 ], [ -75.149418, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115388, 40.034524 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114875, 40.034423 ], [ -75.114845, 40.034391 ], [ -75.114814, 40.03435 ], [ -75.114421, 40.033874 ], [ -75.113486, 40.03273 ], [ -75.112882, 40.031996 ], [ -75.112203, 40.031196 ], [ -75.112157, 40.031127 ], [ -75.112113, 40.031054 ], [ -75.112059, 40.030941 ], [ -75.112012, 40.030817 ], [ -75.112001, 40.030736 ], [ -75.111901, 40.030753 ], [ -75.111839, 40.030769 ], [ -75.1118, 40.030784 ], [ -75.111749, 40.03084 ], [ -75.111659, 40.030868 ], [ -75.111123, 40.031054 ], [ -75.11, 40.031428 ], [ -75.109056, 40.03176 ], [ -75.108449, 40.031962 ], [ -75.108376, 40.031986 ], [ -75.108, 40.032131 ], [ -75.107925, 40.03216 ], [ -75.107856, 40.0322 ], [ -75.107767, 40.032263 ], [ -75.107677, 40.032343 ], [ -75.107579, 40.032438 ], [ -75.107244, 40.032778 ], [ -75.106912, 40.033121 ], [ -75.105944, 40.034105 ], [ -75.104723, 40.035329 ], [ -75.104061, 40.035987 ], [ -75.103192, 40.036781 ], [ -75.102353, 40.037574 ], [ -75.102132, 40.037782 ], [ -75.10188, 40.038014 ], [ -75.101576, 40.038289 ], [ -75.101334, 40.038503 ], [ -75.101154, 40.03866 ], [ -75.100939, 40.038844 ], [ -75.100914, 40.038865 ], [ -75.100726, 40.039029 ], [ -75.100479, 40.039231 ], [ -75.100274, 40.039404 ], [ -75.10004, 40.039605 ], [ -75.099814, 40.039801 ], [ -75.099589, 40.039984 ], [ -75.099346, 40.040196 ], [ -75.099088, 40.040409 ], [ -75.098868, 40.040593 ], [ -75.098655, 40.040768 ], [ -75.09844, 40.040954 ], [ -75.098233, 40.041128 ], [ -75.097955, 40.041367 ], [ -75.096582, 40.042524 ], [ -75.096532, 40.042565 ], [ -75.096488, 40.042601 ], [ -75.0964, 40.042685 ], [ -75.096129, 40.042969 ], [ -75.095946, 40.043161 ], [ -75.095385, 40.043746 ], [ -75.094197, 40.044998 ], [ -75.093032, 40.046234 ], [ -75.092193, 40.047134 ], [ -75.09187, 40.047488 ], [ -75.091616, 40.047343 ], [ -75.091493, 40.047274 ], [ -75.091042, 40.047018 ], [ -75.091009, 40.046935 ], [ -75.09097, 40.046859 ], [ -75.090923, 40.04678 ], [ -75.090791, 40.046588 ], [ -75.090572, 40.046267 ], [ -75.090441, 40.046076 ], [ -75.08926, 40.044695 ], [ -75.089199, 40.044622 ], [ -75.089164, 40.044577 ], [ -75.089144, 40.044549 ], [ -75.089127, 40.044523 ], [ -75.089104, 40.04448 ], [ -75.089065, 40.044403 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085994, 40.042293 ], [ -75.085734, 40.042158 ], [ -75.085129, 40.041807 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307473", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.180877, 40.02982 ], [ -75.180972, 40.029725 ], [ -75.18146, 40.02925 ], [ -75.182284, 40.029751 ], [ -75.182892, 40.03011 ], [ -75.183689, 40.030589 ], [ -75.183736, 40.030611 ], [ -75.183701, 40.030651 ], [ -75.183225, 40.031147 ], [ -75.18306, 40.031307 ], [ -75.182926, 40.031438 ], [ -75.182572, 40.031783 ], [ -75.180909, 40.030775 ], [ -75.180285, 40.030411 ], [ -75.179386, 40.031282 ], [ -75.178915, 40.031754 ], [ -75.178506, 40.032146 ], [ -75.178354, 40.032292 ], [ -75.177728, 40.032893 ], [ -75.177047, 40.033576 ], [ -75.176812, 40.033812 ], [ -75.176519, 40.034107 ], [ -75.175932, 40.034644 ], [ -75.175472, 40.035095 ], [ -75.174711, 40.035831 ], [ -75.173856, 40.036671 ], [ -75.173098, 40.037408 ], [ -75.172085, 40.038391 ], [ -75.171624, 40.038844 ], [ -75.169866, 40.040558 ], [ -75.169795, 40.040628 ], [ -75.168703, 40.041695 ], [ -75.16721, 40.043155 ], [ -75.166097, 40.044239 ], [ -75.165302, 40.045006 ], [ -75.165064, 40.045236 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150212, 40.038998 ], [ -75.150015, 40.038981 ], [ -75.149418, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115388, 40.034524 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114875, 40.034423 ], [ -75.114845, 40.034391 ], [ -75.114814, 40.03435 ], [ -75.114421, 40.033874 ], [ -75.113486, 40.03273 ], [ -75.112882, 40.031996 ], [ -75.112203, 40.031196 ], [ -75.112157, 40.031127 ], [ -75.112113, 40.031054 ], [ -75.112059, 40.030941 ], [ -75.112012, 40.030817 ], [ -75.112001, 40.030736 ], [ -75.111901, 40.030753 ], [ -75.111839, 40.030769 ], [ -75.1118, 40.030784 ], [ -75.111749, 40.03084 ], [ -75.111659, 40.030868 ], [ -75.111123, 40.031054 ], [ -75.11, 40.031428 ], [ -75.109056, 40.03176 ], [ -75.108449, 40.031962 ], [ -75.108376, 40.031986 ], [ -75.108, 40.032131 ], [ -75.107925, 40.03216 ], [ -75.107856, 40.0322 ], [ -75.107767, 40.032263 ], [ -75.107677, 40.032343 ], [ -75.107579, 40.032438 ], [ -75.107244, 40.032778 ], [ -75.106912, 40.033121 ], [ -75.105944, 40.034105 ], [ -75.104723, 40.035329 ], [ -75.104061, 40.035987 ], [ -75.103192, 40.036781 ], [ -75.102353, 40.037574 ], [ -75.102132, 40.037782 ], [ -75.10188, 40.038014 ], [ -75.101576, 40.038289 ], [ -75.101334, 40.038503 ], [ -75.101154, 40.03866 ], [ -75.100939, 40.038844 ], [ -75.100914, 40.038865 ], [ -75.100726, 40.039029 ], [ -75.100479, 40.039231 ], [ -75.100274, 40.039404 ], [ -75.10004, 40.039605 ], [ -75.099814, 40.039801 ], [ -75.099589, 40.039984 ], [ -75.099346, 40.040196 ], [ -75.099088, 40.040409 ], [ -75.098868, 40.040593 ], [ -75.098655, 40.040768 ], [ -75.09844, 40.040954 ], [ -75.098233, 40.041128 ], [ -75.097955, 40.041367 ], [ -75.096582, 40.042524 ], [ -75.096532, 40.042565 ], [ -75.096488, 40.042601 ], [ -75.0964, 40.042685 ], [ -75.096129, 40.042969 ], [ -75.095946, 40.043161 ], [ -75.095385, 40.043746 ], [ -75.094197, 40.044998 ], [ -75.093032, 40.046234 ], [ -75.092193, 40.047134 ], [ -75.09187, 40.047488 ], [ -75.091616, 40.047343 ], [ -75.091493, 40.047274 ], [ -75.091042, 40.047018 ], [ -75.091009, 40.046935 ], [ -75.09097, 40.046859 ], [ -75.090923, 40.04678 ], [ -75.090791, 40.046588 ], [ -75.090572, 40.046267 ], [ -75.090441, 40.046076 ], [ -75.08926, 40.044695 ], [ -75.089199, 40.044622 ], [ -75.089164, 40.044577 ], [ -75.089144, 40.044549 ], [ -75.089127, 40.044523 ], [ -75.089104, 40.04448 ], [ -75.089065, 40.044403 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085994, 40.042293 ], [ -75.085734, 40.042158 ], [ -75.085129, 40.041807 ], [ -75.084805, 40.041638 ], [ -75.08448, 40.041474 ], [ -75.08415, 40.041298 ], [ -75.083893, 40.041142 ], [ -75.083552, 40.040987 ], [ -75.083928, 40.040296 ], [ -75.084057, 40.040065 ], [ -75.084252, 40.039772 ], [ -75.084418, 40.039531 ], [ -75.08453, 40.039418 ], [ -75.084619, 40.039389 ], [ -75.085651, 40.038357 ], [ -75.086862, 40.037116 ], [ -75.087191, 40.036791 ], [ -75.08741, 40.036579 ], [ -75.087604, 40.036385 ], [ -75.08769, 40.03628 ], [ -75.087694, 40.036207 ], [ -75.087792, 40.036122 ], [ -75.087856, 40.036077 ], [ -75.087944, 40.036029 ], [ -75.088025, 40.03599 ], [ -75.088081, 40.035955 ], [ -75.088134, 40.035917 ], [ -75.088338, 40.035708 ], [ -75.088393, 40.035666 ], [ -75.088479, 40.035581 ], [ -75.088586, 40.035464 ], [ -75.088762, 40.035287 ], [ -75.088951, 40.035087 ], [ -75.089154, 40.034889 ], [ -75.089377, 40.034658 ], [ -75.089567, 40.034445 ], [ -75.089782, 40.034239 ], [ -75.089975, 40.03404 ], [ -75.090171, 40.033836 ], [ -75.090366, 40.033643 ], [ -75.090595, 40.033398 ], [ -75.090811, 40.033183 ], [ -75.091006, 40.032979 ], [ -75.091192, 40.032787 ], [ -75.091404, 40.032565 ], [ -75.091568, 40.032394 ], [ -75.091822, 40.032142 ], [ -75.092032, 40.031921 ], [ -75.092231, 40.031718 ], [ -75.092413, 40.031527 ], [ -75.092627, 40.031304 ], [ -75.092798, 40.03113 ], [ -75.093027, 40.030894 ], [ -75.093482, 40.031126 ], [ -75.093768, 40.03149 ], [ -75.094258, 40.032108 ], [ -75.094287, 40.032174 ], [ -75.094287, 40.03223 ], [ -75.094236, 40.032311 ], [ -75.09389, 40.032672 ], [ -75.093698, 40.032869 ], [ -75.093492, 40.033068 ], [ -75.093252, 40.033319 ], [ -75.093081, 40.033502 ], [ -75.092875, 40.033721 ], [ -75.092683, 40.033918 ], [ -75.092495, 40.034113 ], [ -75.092263, 40.034327 ], [ -75.093292, 40.034876 ], [ -75.093277, 40.034968 ], [ -75.093277, 40.03503 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307474", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.180877, 40.02982 ], [ -75.180972, 40.029725 ], [ -75.18146, 40.02925 ], [ -75.182284, 40.029751 ], [ -75.182892, 40.03011 ], [ -75.183689, 40.030589 ], [ -75.183736, 40.030611 ], [ -75.183701, 40.030651 ], [ -75.183225, 40.031147 ], [ -75.18306, 40.031307 ], [ -75.182926, 40.031438 ], [ -75.182572, 40.031783 ], [ -75.180909, 40.030775 ], [ -75.180285, 40.030411 ], [ -75.179386, 40.031282 ], [ -75.178915, 40.031754 ], [ -75.178506, 40.032146 ], [ -75.178354, 40.032292 ], [ -75.177728, 40.032893 ], [ -75.177047, 40.033576 ], [ -75.176812, 40.033812 ], [ -75.176519, 40.034107 ], [ -75.175932, 40.034644 ], [ -75.175472, 40.035095 ], [ -75.174711, 40.035831 ], [ -75.173856, 40.036671 ], [ -75.173098, 40.037408 ], [ -75.172085, 40.038391 ], [ -75.171624, 40.038844 ], [ -75.169866, 40.040558 ], [ -75.169795, 40.040628 ], [ -75.168703, 40.041695 ], [ -75.16721, 40.043155 ], [ -75.166097, 40.044239 ], [ -75.165302, 40.045006 ], [ -75.165064, 40.045236 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150212, 40.038998 ], [ -75.150015, 40.038981 ], [ -75.149418, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115388, 40.034524 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114875, 40.034423 ], [ -75.114845, 40.034391 ], [ -75.114814, 40.03435 ], [ -75.114421, 40.033874 ], [ -75.113486, 40.03273 ], [ -75.112882, 40.031996 ], [ -75.112203, 40.031196 ], [ -75.112157, 40.031127 ], [ -75.112113, 40.031054 ], [ -75.112059, 40.030941 ], [ -75.112012, 40.030817 ], [ -75.112001, 40.030736 ], [ -75.111901, 40.030753 ], [ -75.111839, 40.030769 ], [ -75.1118, 40.030784 ], [ -75.111749, 40.03084 ], [ -75.111659, 40.030868 ], [ -75.111123, 40.031054 ], [ -75.11, 40.031428 ], [ -75.109056, 40.03176 ], [ -75.108449, 40.031962 ], [ -75.108376, 40.031986 ], [ -75.108, 40.032131 ], [ -75.107925, 40.03216 ], [ -75.107856, 40.0322 ], [ -75.107767, 40.032263 ], [ -75.107677, 40.032343 ], [ -75.107579, 40.032438 ], [ -75.107244, 40.032778 ], [ -75.106912, 40.033121 ], [ -75.105944, 40.034105 ], [ -75.104723, 40.035329 ], [ -75.104061, 40.035987 ], [ -75.103192, 40.036781 ], [ -75.102353, 40.037574 ], [ -75.102132, 40.037782 ], [ -75.10188, 40.038014 ], [ -75.101576, 40.038289 ], [ -75.101334, 40.038503 ], [ -75.101154, 40.03866 ], [ -75.100939, 40.038844 ], [ -75.100914, 40.038865 ], [ -75.100726, 40.039029 ], [ -75.100479, 40.039231 ], [ -75.100274, 40.039404 ], [ -75.10004, 40.039605 ], [ -75.099814, 40.039801 ], [ -75.099589, 40.039984 ], [ -75.099346, 40.040196 ], [ -75.099088, 40.040409 ], [ -75.098868, 40.040593 ], [ -75.098655, 40.040768 ], [ -75.09844, 40.040954 ], [ -75.098233, 40.041128 ], [ -75.097955, 40.041367 ], [ -75.096582, 40.042524 ], [ -75.096532, 40.042565 ], [ -75.096488, 40.042601 ], [ -75.0964, 40.042685 ], [ -75.096129, 40.042969 ], [ -75.095946, 40.043161 ], [ -75.095385, 40.043746 ], [ -75.094197, 40.044998 ], [ -75.093032, 40.046234 ], [ -75.092193, 40.047134 ], [ -75.09187, 40.047488 ], [ -75.091616, 40.047343 ], [ -75.091493, 40.047274 ], [ -75.091042, 40.047018 ], [ -75.090645, 40.046803 ], [ -75.090068, 40.046482 ], [ -75.08943, 40.046132 ], [ -75.089081, 40.045935 ], [ -75.088992, 40.045885 ], [ -75.088762, 40.045758 ], [ -75.088312, 40.045505 ], [ -75.087623, 40.045126 ], [ -75.087094, 40.044834 ], [ -75.086736, 40.044637 ], [ -75.086576, 40.044549 ], [ -75.085774, 40.044107 ], [ -75.085533, 40.04397 ], [ -75.085265, 40.043819 ], [ -75.085196, 40.043808 ], [ -75.08513, 40.04379 ], [ -75.085081, 40.043758 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.080365, 40.044882 ], [ -75.080002, 40.044686 ], [ -75.078591, 40.043886 ], [ -75.076675, 40.042843 ], [ -75.076571, 40.042781 ], [ -75.075018, 40.041937 ], [ -75.074818, 40.041818 ], [ -75.074529, 40.041657 ], [ -75.074216, 40.041485 ], [ -75.073937, 40.041314 ], [ -75.073646, 40.041152 ], [ -75.073338, 40.04098 ], [ -75.072998, 40.040783 ], [ -75.072674, 40.040599 ], [ -75.072394, 40.040437 ], [ -75.072102, 40.040278 ], [ -75.07182, 40.040124 ], [ -75.071531, 40.039969 ], [ -75.07122, 40.039784 ], [ -75.070905, 40.039607 ], [ -75.070615, 40.039439 ], [ -75.070324, 40.039283 ], [ -75.070028, 40.039125 ], [ -75.069746, 40.038959 ], [ -75.069431, 40.038779 ], [ -75.069104, 40.038593 ], [ -75.068975, 40.038522 ], [ -75.068784, 40.038424 ], [ -75.068466, 40.038238 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065539, 40.040363 ], [ -75.065508, 40.040299 ], [ -75.065478, 40.0402 ], [ -75.065507, 40.040094 ], [ -75.065426, 40.039808 ], [ -75.065231, 40.039122 ], [ -75.065136, 40.038781 ], [ -75.065088, 40.038616 ], [ -75.064962, 40.038199 ], [ -75.06483, 40.037808 ], [ -75.064775, 40.037638 ], [ -75.064743, 40.037527 ], [ -75.064653, 40.037211 ], [ -75.06463, 40.03714 ], [ -75.064505, 40.03673 ], [ -75.06447, 40.036611 ], [ -75.06437, 40.036308 ], [ -75.064331, 40.036187 ], [ -75.064253, 40.035877 ], [ -75.06424, 40.035816 ], [ -75.064225, 40.035751 ], [ -75.064179, 40.035548 ], [ -75.064084, 40.035095 ], [ -75.064002, 40.034721 ], [ -75.063901, 40.034251 ], [ -75.063795, 40.033761 ], [ -75.063762, 40.033623 ], [ -75.063729, 40.033476 ], [ -75.063654, 40.033134 ], [ -75.063568, 40.032741 ], [ -75.063436, 40.032112 ], [ -75.063378, 40.031839 ], [ -75.063326, 40.031586 ], [ -75.063312, 40.03152 ], [ -75.063189, 40.030957 ], [ -75.063142, 40.030746 ], [ -75.063037, 40.030248 ], [ -75.062983, 40.029986 ], [ -75.062952, 40.029832 ], [ -75.062869, 40.029449 ], [ -75.062859, 40.029388 ], [ -75.063219, 40.028999 ], [ -75.063388, 40.028822 ], [ -75.063581, 40.028621 ], [ -75.064014, 40.028163 ], [ -75.064625, 40.027512 ], [ -75.065022, 40.027094 ], [ -75.065076, 40.027085 ], [ -75.065246, 40.027061 ], [ -75.065424, 40.027035 ], [ -75.065521, 40.027019 ], [ -75.066046, 40.026939 ], [ -75.066276, 40.026904 ], [ -75.066679, 40.026843 ], [ -75.067127, 40.02677 ], [ -75.067181, 40.026756 ], [ -75.06721, 40.026748 ], [ -75.067303, 40.02673 ], [ -75.067331, 40.026723 ], [ -75.067979, 40.026581 ], [ -75.068378, 40.026495 ], [ -75.068803, 40.0264 ], [ -75.069441, 40.02626 ], [ -75.06987, 40.026165 ], [ -75.072045, 40.025672 ], [ -75.072507, 40.025567 ], [ -75.07325, 40.025398 ], [ -75.073379, 40.025371 ], [ -75.073849, 40.025788 ], [ -75.074165, 40.026052 ], [ -75.074983, 40.026686 ], [ -75.075205, 40.026877 ], [ -75.075324, 40.026975 ], [ -75.075401, 40.027017 ], [ -75.075454, 40.027038 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307475", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.180877, 40.02982 ], [ -75.180972, 40.029725 ], [ -75.18146, 40.02925 ], [ -75.182284, 40.029751 ], [ -75.182892, 40.03011 ], [ -75.183689, 40.030589 ], [ -75.183736, 40.030611 ], [ -75.183701, 40.030651 ], [ -75.183225, 40.031147 ], [ -75.18306, 40.031307 ], [ -75.182926, 40.031438 ], [ -75.182572, 40.031783 ], [ -75.180909, 40.030775 ], [ -75.180285, 40.030411 ], [ -75.179386, 40.031282 ], [ -75.178915, 40.031754 ], [ -75.178506, 40.032146 ], [ -75.178354, 40.032292 ], [ -75.177728, 40.032893 ], [ -75.177047, 40.033576 ], [ -75.176812, 40.033812 ], [ -75.176519, 40.034107 ], [ -75.175932, 40.034644 ], [ -75.175472, 40.035095 ], [ -75.174711, 40.035831 ], [ -75.173856, 40.036671 ], [ -75.173098, 40.037408 ], [ -75.172085, 40.038391 ], [ -75.171624, 40.038844 ], [ -75.169866, 40.040558 ], [ -75.169795, 40.040628 ], [ -75.168703, 40.041695 ], [ -75.16721, 40.043155 ], [ -75.166097, 40.044239 ], [ -75.165302, 40.045006 ], [ -75.165064, 40.045236 ], [ -75.164823, 40.045469 ], [ -75.163756, 40.044813 ], [ -75.163338, 40.044554 ], [ -75.162723, 40.044173 ], [ -75.161317, 40.043307 ], [ -75.160353, 40.042713 ], [ -75.160067, 40.042545 ], [ -75.159568, 40.042232 ], [ -75.159183, 40.041998 ], [ -75.158706, 40.041702 ], [ -75.158621, 40.041652 ], [ -75.158542, 40.041604 ], [ -75.158368, 40.041495 ], [ -75.158235, 40.041416 ], [ -75.15799, 40.041269 ], [ -75.157051, 40.040794 ], [ -75.15641, 40.04049 ], [ -75.154964, 40.039774 ], [ -75.154634, 40.039609 ], [ -75.154518, 40.039553 ], [ -75.154504, 40.039547 ], [ -75.154412, 40.039514 ], [ -75.154356, 40.039501 ], [ -75.154293, 40.03949 ], [ -75.15363, 40.039404 ], [ -75.152827, 40.039297 ], [ -75.15205, 40.0392 ], [ -75.151482, 40.039128 ], [ -75.15078, 40.039041 ], [ -75.150607, 40.039021 ], [ -75.150212, 40.038998 ], [ -75.150015, 40.038981 ], [ -75.149418, 40.038986 ], [ -75.148557, 40.039002 ], [ -75.147528, 40.039027 ], [ -75.147347, 40.039032 ], [ -75.147016, 40.039041 ], [ -75.146587, 40.039049 ], [ -75.145265, 40.039075 ], [ -75.144992, 40.039081 ], [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115388, 40.034524 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114875, 40.034423 ], [ -75.114845, 40.034391 ], [ -75.114814, 40.03435 ], [ -75.114421, 40.033874 ], [ -75.113486, 40.03273 ], [ -75.112882, 40.031996 ], [ -75.112203, 40.031196 ], [ -75.112157, 40.031127 ], [ -75.112113, 40.031054 ], [ -75.112059, 40.030941 ], [ -75.112012, 40.030817 ], [ -75.112001, 40.030736 ], [ -75.111901, 40.030753 ], [ -75.111839, 40.030769 ], [ -75.1118, 40.030784 ], [ -75.111749, 40.03084 ], [ -75.111659, 40.030868 ], [ -75.111123, 40.031054 ], [ -75.11, 40.031428 ], [ -75.109056, 40.03176 ], [ -75.108449, 40.031962 ], [ -75.108376, 40.031986 ], [ -75.108, 40.032131 ], [ -75.107925, 40.03216 ], [ -75.107856, 40.0322 ], [ -75.107767, 40.032263 ], [ -75.107677, 40.032343 ], [ -75.107579, 40.032438 ], [ -75.107244, 40.032778 ], [ -75.106912, 40.033121 ], [ -75.105944, 40.034105 ], [ -75.104723, 40.035329 ], [ -75.104061, 40.035987 ], [ -75.103192, 40.036781 ], [ -75.102353, 40.037574 ], [ -75.102132, 40.037782 ], [ -75.10188, 40.038014 ], [ -75.101576, 40.038289 ], [ -75.101334, 40.038503 ], [ -75.101154, 40.03866 ], [ -75.100939, 40.038844 ], [ -75.100914, 40.038865 ], [ -75.100726, 40.039029 ], [ -75.100479, 40.039231 ], [ -75.100274, 40.039404 ], [ -75.10004, 40.039605 ], [ -75.099814, 40.039801 ], [ -75.099589, 40.039984 ], [ -75.099346, 40.040196 ], [ -75.099088, 40.040409 ], [ -75.098868, 40.040593 ], [ -75.098655, 40.040768 ], [ -75.09844, 40.040954 ], [ -75.098233, 40.041128 ], [ -75.097955, 40.041367 ], [ -75.096582, 40.042524 ], [ -75.096532, 40.042565 ], [ -75.096488, 40.042601 ], [ -75.0964, 40.042685 ], [ -75.096129, 40.042969 ], [ -75.095946, 40.043161 ], [ -75.095385, 40.043746 ], [ -75.094197, 40.044998 ], [ -75.093032, 40.046234 ], [ -75.092193, 40.047134 ], [ -75.09187, 40.047488 ], [ -75.091616, 40.047343 ], [ -75.091493, 40.047274 ], [ -75.091042, 40.047018 ], [ -75.090645, 40.046803 ], [ -75.090068, 40.046482 ], [ -75.08943, 40.046132 ], [ -75.089081, 40.045935 ], [ -75.088992, 40.045885 ], [ -75.088762, 40.045758 ], [ -75.088312, 40.045505 ], [ -75.087623, 40.045126 ], [ -75.087094, 40.044834 ], [ -75.086736, 40.044637 ], [ -75.086576, 40.044549 ], [ -75.085774, 40.044107 ], [ -75.085533, 40.04397 ], [ -75.085265, 40.043819 ], [ -75.085196, 40.043808 ], [ -75.08513, 40.04379 ], [ -75.085081, 40.043758 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.080365, 40.044882 ], [ -75.080002, 40.044686 ], [ -75.078591, 40.043886 ], [ -75.076675, 40.042843 ], [ -75.076571, 40.042781 ], [ -75.075018, 40.041937 ], [ -75.074818, 40.041818 ], [ -75.074529, 40.041657 ], [ -75.074216, 40.041485 ], [ -75.073937, 40.041314 ], [ -75.073646, 40.041152 ], [ -75.073338, 40.04098 ], [ -75.072998, 40.040783 ], [ -75.072674, 40.040599 ], [ -75.072394, 40.040437 ], [ -75.072102, 40.040278 ], [ -75.07182, 40.040124 ], [ -75.071531, 40.039969 ], [ -75.07122, 40.039784 ], [ -75.070905, 40.039607 ], [ -75.070615, 40.039439 ], [ -75.070324, 40.039283 ], [ -75.070028, 40.039125 ], [ -75.069746, 40.038959 ], [ -75.069431, 40.038779 ], [ -75.069104, 40.038593 ], [ -75.068975, 40.038522 ], [ -75.068784, 40.038424 ], [ -75.068466, 40.038238 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065539, 40.040363 ], [ -75.065508, 40.040299 ], [ -75.065478, 40.0402 ], [ -75.065507, 40.040094 ], [ -75.065426, 40.039808 ], [ -75.065231, 40.039122 ], [ -75.065136, 40.038781 ], [ -75.065088, 40.038616 ], [ -75.064962, 40.038199 ], [ -75.06483, 40.037808 ], [ -75.064775, 40.037638 ], [ -75.064743, 40.037527 ], [ -75.064653, 40.037211 ], [ -75.06463, 40.03714 ], [ -75.064505, 40.03673 ], [ -75.06447, 40.036611 ], [ -75.06437, 40.036308 ], [ -75.064331, 40.036187 ], [ -75.064253, 40.035877 ], [ -75.06424, 40.035816 ], [ -75.064225, 40.035751 ], [ -75.064179, 40.035548 ], [ -75.064084, 40.035095 ], [ -75.064002, 40.034721 ], [ -75.063901, 40.034251 ], [ -75.063795, 40.033761 ], [ -75.063762, 40.033623 ], [ -75.063729, 40.033476 ], [ -75.063654, 40.033134 ], [ -75.063568, 40.032741 ], [ -75.063436, 40.032112 ], [ -75.063378, 40.031839 ], [ -75.063326, 40.031586 ], [ -75.063312, 40.03152 ], [ -75.063189, 40.030957 ], [ -75.063142, 40.030746 ], [ -75.063037, 40.030248 ], [ -75.062983, 40.029986 ], [ -75.062952, 40.029832 ], [ -75.062869, 40.029449 ], [ -75.062859, 40.029388 ], [ -75.062745, 40.028847 ], [ -75.062693, 40.028594 ], [ -75.062671, 40.028489 ], [ -75.062629, 40.028288 ], [ -75.062596, 40.028135 ], [ -75.062553, 40.02794 ], [ -75.062544, 40.027896 ], [ -75.062513, 40.027747 ], [ -75.062503, 40.027697 ], [ -75.0625, 40.027651 ], [ -75.062496, 40.027614 ], [ -75.062497, 40.027572 ], [ -75.0625, 40.027528 ], [ -75.062505, 40.02748 ], [ -75.062539, 40.027194 ], [ -75.062552, 40.027099 ], [ -75.062581, 40.026958 ], [ -75.062623, 40.026644 ], [ -75.062642, 40.026502 ], [ -75.062715, 40.025982 ], [ -75.062764, 40.025636 ], [ -75.062778, 40.025549 ], [ -75.062829, 40.025149 ], [ -75.062868, 40.024875 ], [ -75.062893, 40.024696 ], [ -75.062917, 40.02453 ], [ -75.062961, 40.024246 ], [ -75.063037, 40.023694 ], [ -75.063084, 40.023373 ], [ -75.06311, 40.023164 ], [ -75.063189, 40.022628 ], [ -75.063204, 40.022523 ], [ -75.063254, 40.022147 ], [ -75.06329, 40.021896 ], [ -75.06325, 40.021812 ], [ -75.063269, 40.021675 ], [ -75.063281, 40.021592 ], [ -75.063296, 40.021474 ], [ -75.063306, 40.021411 ], [ -75.063422, 40.020548 ], [ -75.063475, 40.02017 ], [ -75.063479, 40.020123 ], [ -75.063508, 40.019903 ], [ -75.063532, 40.01974 ], [ -75.063631, 40.019073 ], [ -75.063655, 40.018913 ], [ -75.063668, 40.018823 ], [ -75.063682, 40.01873 ], [ -75.063743, 40.018667 ], [ -75.063752, 40.01862 ], [ -75.063765, 40.018569 ], [ -75.063772, 40.018538 ], [ -75.06378, 40.018502 ], [ -75.063791, 40.018454 ], [ -75.0638, 40.018426 ], [ -75.063813, 40.018395 ], [ -75.063836, 40.018352 ], [ -75.063856, 40.018325 ], [ -75.06388, 40.018302 ], [ -75.06391, 40.018277 ], [ -75.063935, 40.018257 ], [ -75.063982, 40.018229 ], [ -75.064104, 40.018162 ], [ -75.064633, 40.017882 ], [ -75.064763, 40.017816 ], [ -75.064898, 40.017747 ], [ -75.065201, 40.017592 ], [ -75.065775, 40.017294 ], [ -75.066155, 40.0171 ], [ -75.066265, 40.017044 ], [ -75.066412, 40.016966 ], [ -75.066538, 40.0169 ], [ -75.066639, 40.016844 ], [ -75.066784, 40.016751 ], [ -75.066817, 40.016729 ], [ -75.066852, 40.016703 ], [ -75.06693, 40.016636 ], [ -75.067011, 40.016549 ], [ -75.067152, 40.01638 ], [ -75.067196, 40.016323 ], [ -75.067376, 40.016088 ], [ -75.067857, 40.015485 ], [ -75.067976, 40.015333 ], [ -75.0681, 40.015175 ], [ -75.068176, 40.015063 ], [ -75.0682, 40.015025 ], [ -75.068251, 40.014939 ], [ -75.068268, 40.014904 ], [ -75.06834, 40.014705 ], [ -75.068362, 40.014624 ], [ -75.068396, 40.014522 ], [ -75.068472, 40.01423 ], [ -75.068536, 40.014013 ], [ -75.068671, 40.013566 ], [ -75.068883, 40.013518 ], [ -75.069133, 40.013464 ], [ -75.069746, 40.013327 ], [ -75.069979, 40.013276 ], [ -75.070433, 40.013176 ], [ -75.070881, 40.014347 ], [ -75.070978, 40.014596 ], [ -75.071067, 40.014841 ], [ -75.071227, 40.015277 ], [ -75.071304, 40.015465 ], [ -75.071463, 40.015924 ], [ -75.071655, 40.016428 ], [ -75.071852, 40.016945 ], [ -75.072083, 40.017542 ], [ -75.072181, 40.017812 ], [ -75.072278, 40.018082 ], [ -75.07239, 40.018369 ], [ -75.072502, 40.018643 ], [ -75.072544, 40.01875 ], [ -75.072555, 40.018778 ], [ -75.072592, 40.018848 ], [ -75.072643, 40.018912 ], [ -75.072676, 40.018943 ], [ -75.072785, 40.019043 ], [ -75.072918, 40.019161 ], [ -75.073105, 40.019327 ], [ -75.073148, 40.019366 ], [ -75.073186, 40.019408 ], [ -75.073214, 40.019442 ], [ -75.073376, 40.019639 ], [ -75.073634, 40.019946 ], [ -75.073811, 40.020156 ], [ -75.07386, 40.020213 ], [ -75.07409, 40.020491 ], [ -75.074304, 40.020739 ], [ -75.074432, 40.02089 ], [ -75.07448, 40.020945 ], [ -75.074593, 40.021082 ], [ -75.074691, 40.021198 ], [ -75.074859, 40.021386 ], [ -75.074998, 40.021525 ], [ -75.07533, 40.021837 ], [ -75.075698, 40.022175 ], [ -75.076058, 40.022521 ], [ -75.076836, 40.023246 ], [ -75.07685, 40.023261 ], [ -75.076866, 40.023297 ], [ -75.076872, 40.023325 ], [ -75.076873, 40.023356 ], [ -75.076852, 40.023534 ], [ -75.076833, 40.023703 ], [ -75.076827, 40.023769 ], [ -75.076819, 40.023858 ], [ -75.076795, 40.024107 ], [ -75.077018, 40.024113 ], [ -75.077115, 40.024115 ], [ -75.077335, 40.024124 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307476", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.077385, 40.024124 ], [ -75.077335, 40.024124 ], [ -75.077115, 40.024115 ], [ -75.077018, 40.024113 ], [ -75.076795, 40.024107 ], [ -75.076819, 40.023858 ], [ -75.076827, 40.023769 ], [ -75.076833, 40.023703 ], [ -75.076853, 40.023534 ], [ -75.076873, 40.023356 ], [ -75.076871, 40.023324 ], [ -75.076866, 40.023297 ], [ -75.07685, 40.023261 ], [ -75.076836, 40.023246 ], [ -75.076058, 40.022521 ], [ -75.075698, 40.022175 ], [ -75.07533, 40.021837 ], [ -75.074998, 40.021525 ], [ -75.074859, 40.021386 ], [ -75.074691, 40.021198 ], [ -75.074593, 40.021082 ], [ -75.07448, 40.020945 ], [ -75.074432, 40.02089 ], [ -75.074304, 40.020739 ], [ -75.07409, 40.020491 ], [ -75.07386, 40.020213 ], [ -75.073811, 40.020156 ], [ -75.073634, 40.019946 ], [ -75.073376, 40.019639 ], [ -75.073214, 40.019442 ], [ -75.073186, 40.019408 ], [ -75.073148, 40.019366 ], [ -75.073105, 40.019327 ], [ -75.072918, 40.019161 ], [ -75.072785, 40.019043 ], [ -75.072676, 40.018943 ], [ -75.072643, 40.018912 ], [ -75.072592, 40.018848 ], [ -75.072555, 40.018778 ], [ -75.072544, 40.01875 ], [ -75.072502, 40.018643 ], [ -75.07239, 40.018369 ], [ -75.072278, 40.018082 ], [ -75.072181, 40.017812 ], [ -75.072083, 40.017542 ], [ -75.071852, 40.016945 ], [ -75.071655, 40.016428 ], [ -75.071463, 40.015924 ], [ -75.071304, 40.015465 ], [ -75.071227, 40.015277 ], [ -75.071067, 40.014841 ], [ -75.070978, 40.014596 ], [ -75.070881, 40.014347 ], [ -75.070433, 40.013176 ], [ -75.069979, 40.013276 ], [ -75.069746, 40.013327 ], [ -75.069133, 40.013464 ], [ -75.068883, 40.013518 ], [ -75.068671, 40.013566 ], [ -75.068531, 40.013596 ], [ -75.068375, 40.014222 ], [ -75.068263, 40.014576 ], [ -75.068214, 40.014731 ], [ -75.0682, 40.014773 ], [ -75.068137, 40.014908 ], [ -75.068108, 40.014966 ], [ -75.068075, 40.015018 ], [ -75.068024, 40.015094 ], [ -75.067933, 40.015218 ], [ -75.067861, 40.015313 ], [ -75.067763, 40.015437 ], [ -75.06729, 40.016042 ], [ -75.06705, 40.016342 ], [ -75.066931, 40.016489 ], [ -75.066823, 40.016599 ], [ -75.066792, 40.016627 ], [ -75.066752, 40.016656 ], [ -75.066656, 40.016726 ], [ -75.066401, 40.016872 ], [ -75.06622, 40.016964 ], [ -75.065704, 40.017232 ], [ -75.065522, 40.017322 ], [ -75.06513, 40.017514 ], [ -75.064839, 40.017669 ], [ -75.064556, 40.01782 ], [ -75.064016, 40.018102 ], [ -75.063953, 40.018135 ], [ -75.063906, 40.018161 ], [ -75.06387, 40.018184 ], [ -75.063836, 40.01821 ], [ -75.063803, 40.01824 ], [ -75.063763, 40.018279 ], [ -75.063738, 40.01831 ], [ -75.063722, 40.018335 ], [ -75.063707, 40.01836 ], [ -75.063694, 40.018403 ], [ -75.063675, 40.018442 ], [ -75.063668, 40.018466 ], [ -75.063656, 40.018511 ], [ -75.063639, 40.018654 ], [ -75.063682, 40.01873 ], [ -75.063668, 40.018823 ], [ -75.063655, 40.018913 ], [ -75.063631, 40.019073 ], [ -75.063532, 40.01974 ], [ -75.063508, 40.019903 ], [ -75.063479, 40.020123 ], [ -75.063475, 40.02017 ], [ -75.063422, 40.020548 ], [ -75.063306, 40.021411 ], [ -75.063296, 40.021474 ], [ -75.063281, 40.021592 ], [ -75.063269, 40.021675 ], [ -75.06325, 40.021812 ], [ -75.063178, 40.021886 ], [ -75.063166, 40.021955 ], [ -75.063155, 40.022037 ], [ -75.063119, 40.022341 ], [ -75.0631, 40.022464 ], [ -75.063022, 40.023021 ], [ -75.062977, 40.02334 ], [ -75.062946, 40.023568 ], [ -75.062901, 40.02389 ], [ -75.062863, 40.024156 ], [ -75.062826, 40.024409 ], [ -75.0628, 40.024595 ], [ -75.062775, 40.024716 ], [ -75.062714, 40.025209 ], [ -75.062666, 40.025549 ], [ -75.062655, 40.025625 ], [ -75.062647, 40.025676 ], [ -75.062581, 40.026139 ], [ -75.062527, 40.026506 ], [ -75.062467, 40.026928 ], [ -75.062455, 40.02702 ], [ -75.062445, 40.027091 ], [ -75.062437, 40.027156 ], [ -75.062384, 40.027493 ], [ -75.062377, 40.02753 ], [ -75.062375, 40.027569 ], [ -75.062375, 40.027608 ], [ -75.062378, 40.027645 ], [ -75.062386, 40.027705 ], [ -75.062398, 40.027766 ], [ -75.062405, 40.027798 ], [ -75.062485, 40.028147 ], [ -75.062518, 40.0283 ], [ -75.062558, 40.02849 ], [ -75.062573, 40.028558 ], [ -75.062638, 40.028864 ], [ -75.062694, 40.029137 ], [ -75.062744, 40.029375 ], [ -75.062767, 40.029492 ], [ -75.062878, 40.030004 ], [ -75.063075, 40.030904 ], [ -75.063092, 40.03098 ], [ -75.063201, 40.031515 ], [ -75.063225, 40.031641 ], [ -75.063369, 40.032316 ], [ -75.063484, 40.032872 ], [ -75.063541, 40.033152 ], [ -75.06361, 40.033491 ], [ -75.063644, 40.033657 ], [ -75.063657, 40.033746 ], [ -75.063713, 40.034034 ], [ -75.063862, 40.034735 ], [ -75.063972, 40.035267 ], [ -75.064082, 40.035787 ], [ -75.064096, 40.035841 ], [ -75.064107, 40.035882 ], [ -75.06416, 40.036068 ], [ -75.064205, 40.036215 ], [ -75.064246, 40.036336 ], [ -75.064346, 40.036645 ], [ -75.064381, 40.036761 ], [ -75.064481, 40.03711 ], [ -75.064517, 40.03724 ], [ -75.064602, 40.037552 ], [ -75.064638, 40.037695 ], [ -75.064705, 40.037943 ], [ -75.064767, 40.038107 ], [ -75.064847, 40.038367 ], [ -75.064967, 40.038768 ], [ -75.065092, 40.039204 ], [ -75.065245, 40.039767 ], [ -75.065283, 40.039899 ], [ -75.065317, 40.040016 ], [ -75.06537, 40.040126 ], [ -75.065478, 40.0402 ], [ -75.065508, 40.040299 ], [ -75.065539, 40.040363 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068466, 40.038238 ], [ -75.068784, 40.038424 ], [ -75.068975, 40.038522 ], [ -75.069104, 40.038593 ], [ -75.069431, 40.038779 ], [ -75.069746, 40.038959 ], [ -75.070028, 40.039125 ], [ -75.070324, 40.039283 ], [ -75.070615, 40.039439 ], [ -75.070905, 40.039607 ], [ -75.07122, 40.039784 ], [ -75.071531, 40.039969 ], [ -75.07182, 40.040124 ], [ -75.072102, 40.040278 ], [ -75.072394, 40.040437 ], [ -75.072674, 40.040599 ], [ -75.072998, 40.040783 ], [ -75.073338, 40.04098 ], [ -75.073646, 40.041152 ], [ -75.073937, 40.041314 ], [ -75.074216, 40.041485 ], [ -75.074529, 40.041657 ], [ -75.074818, 40.041818 ], [ -75.075018, 40.041937 ], [ -75.076571, 40.042781 ], [ -75.076675, 40.042843 ], [ -75.078591, 40.043886 ], [ -75.080002, 40.044686 ], [ -75.080365, 40.044882 ], [ -75.082334, 40.045997 ], [ -75.083052, 40.045411 ], [ -75.083755, 40.044858 ], [ -75.084424, 40.044289 ], [ -75.084957, 40.043864 ], [ -75.085078, 40.043834 ], [ -75.08513, 40.04379 ], [ -75.085196, 40.043808 ], [ -75.085265, 40.043819 ], [ -75.085533, 40.04397 ], [ -75.085774, 40.044107 ], [ -75.086576, 40.044549 ], [ -75.086736, 40.044637 ], [ -75.087094, 40.044834 ], [ -75.087623, 40.045126 ], [ -75.088312, 40.045505 ], [ -75.088762, 40.045758 ], [ -75.088992, 40.045885 ], [ -75.089081, 40.045935 ], [ -75.08943, 40.046132 ], [ -75.090068, 40.046482 ], [ -75.090645, 40.046803 ], [ -75.091042, 40.047018 ], [ -75.091493, 40.047274 ], [ -75.091616, 40.047343 ], [ -75.09187, 40.047488 ], [ -75.092193, 40.047134 ], [ -75.093032, 40.046234 ], [ -75.094197, 40.044998 ], [ -75.095385, 40.043746 ], [ -75.095946, 40.043161 ], [ -75.096129, 40.042969 ], [ -75.0964, 40.042685 ], [ -75.096488, 40.042601 ], [ -75.096532, 40.042565 ], [ -75.096582, 40.042524 ], [ -75.097955, 40.041367 ], [ -75.098233, 40.041128 ], [ -75.09844, 40.040954 ], [ -75.098655, 40.040768 ], [ -75.098868, 40.040593 ], [ -75.099088, 40.040409 ], [ -75.099346, 40.040196 ], [ -75.099589, 40.039984 ], [ -75.099814, 40.039801 ], [ -75.10004, 40.039605 ], [ -75.100274, 40.039404 ], [ -75.100479, 40.039231 ], [ -75.100726, 40.039029 ], [ -75.100914, 40.038865 ], [ -75.100939, 40.038844 ], [ -75.101154, 40.03866 ], [ -75.101334, 40.038503 ], [ -75.101576, 40.038289 ], [ -75.10188, 40.038014 ], [ -75.102132, 40.037782 ], [ -75.102353, 40.037574 ], [ -75.103192, 40.036781 ], [ -75.104061, 40.035987 ], [ -75.104723, 40.035329 ], [ -75.105944, 40.034105 ], [ -75.106912, 40.033121 ], [ -75.107244, 40.032778 ], [ -75.107579, 40.032438 ], [ -75.107677, 40.032343 ], [ -75.107767, 40.032263 ], [ -75.107856, 40.0322 ], [ -75.107925, 40.03216 ], [ -75.108, 40.032131 ], [ -75.108376, 40.031986 ], [ -75.108449, 40.031962 ], [ -75.109056, 40.03176 ], [ -75.11, 40.031428 ], [ -75.111123, 40.031054 ], [ -75.111659, 40.030868 ], [ -75.111749, 40.03084 ], [ -75.111829, 40.030846 ], [ -75.111938, 40.030826 ], [ -75.112012, 40.030817 ], [ -75.112059, 40.030941 ], [ -75.112113, 40.031054 ], [ -75.112157, 40.031127 ], [ -75.112203, 40.031196 ], [ -75.112882, 40.031996 ], [ -75.113486, 40.03273 ], [ -75.114421, 40.033874 ], [ -75.114814, 40.03435 ], [ -75.114845, 40.034391 ], [ -75.114875, 40.034423 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115388, 40.034524 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.14463, 40.039037 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150015, 40.038981 ], [ -75.150212, 40.038998 ], [ -75.150608, 40.039022 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165064, 40.045236 ], [ -75.165302, 40.045006 ], [ -75.166097, 40.044239 ], [ -75.16721, 40.043155 ], [ -75.168703, 40.041695 ], [ -75.169795, 40.040628 ], [ -75.169866, 40.040558 ], [ -75.171624, 40.038844 ], [ -75.172085, 40.038391 ], [ -75.173098, 40.037408 ], [ -75.173856, 40.036671 ], [ -75.174711, 40.035831 ], [ -75.175472, 40.035095 ], [ -75.175932, 40.034644 ], [ -75.176519, 40.034107 ], [ -75.176812, 40.033812 ], [ -75.177047, 40.033576 ], [ -75.177728, 40.032893 ], [ -75.178354, 40.032292 ], [ -75.178506, 40.032146 ], [ -75.178915, 40.031754 ], [ -75.179386, 40.031282 ], [ -75.180285, 40.030411 ], [ -75.180776, 40.02992 ], [ -75.180877, 40.02982 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307477", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.118937, 40.037274 ], [ -75.118633, 40.037497 ], [ -75.117253, 40.038467 ], [ -75.116863, 40.038762 ], [ -75.116853, 40.038943 ], [ -75.117034, 40.039057 ], [ -75.117396, 40.039248 ], [ -75.117614, 40.039391 ], [ -75.117814, 40.039353 ], [ -75.118791, 40.038654 ], [ -75.119919, 40.03784 ], [ -75.120126, 40.036891 ], [ -75.120337, 40.036745 ], [ -75.121077, 40.036856 ], [ -75.12128, 40.035947 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.14463, 40.039037 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150015, 40.038981 ], [ -75.150212, 40.038998 ], [ -75.150608, 40.039022 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165064, 40.045236 ], [ -75.165302, 40.045006 ], [ -75.166097, 40.044239 ], [ -75.16721, 40.043155 ], [ -75.168703, 40.041695 ], [ -75.169795, 40.040628 ], [ -75.169866, 40.040558 ], [ -75.171624, 40.038844 ], [ -75.172085, 40.038391 ], [ -75.173098, 40.037408 ], [ -75.173856, 40.036671 ], [ -75.174711, 40.035831 ], [ -75.175472, 40.035095 ], [ -75.175932, 40.034644 ], [ -75.176519, 40.034107 ], [ -75.176812, 40.033812 ], [ -75.177047, 40.033576 ], [ -75.177728, 40.032893 ], [ -75.178354, 40.032292 ], [ -75.178506, 40.032146 ], [ -75.178915, 40.031754 ], [ -75.179386, 40.031282 ], [ -75.180285, 40.030411 ], [ -75.180776, 40.02992 ], [ -75.180877, 40.02982 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307479", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.115388, 40.034524 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.14463, 40.039037 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150015, 40.038981 ], [ -75.150212, 40.038998 ], [ -75.150608, 40.039022 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165064, 40.045236 ], [ -75.165302, 40.045006 ], [ -75.166097, 40.044239 ], [ -75.16721, 40.043155 ], [ -75.168703, 40.041695 ], [ -75.169795, 40.040628 ], [ -75.169866, 40.040558 ], [ -75.171624, 40.038844 ], [ -75.172085, 40.038391 ], [ -75.173098, 40.037408 ], [ -75.173856, 40.036671 ], [ -75.174711, 40.035831 ], [ -75.175472, 40.035095 ], [ -75.175932, 40.034644 ], [ -75.176519, 40.034107 ], [ -75.176812, 40.033812 ], [ -75.177047, 40.033576 ], [ -75.177728, 40.032893 ], [ -75.178354, 40.032292 ], [ -75.178506, 40.032146 ], [ -75.178915, 40.031754 ], [ -75.179386, 40.031282 ], [ -75.180285, 40.030411 ], [ -75.180776, 40.02992 ], [ -75.180877, 40.02982 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307482", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.093277, 40.03503 ], [ -75.09333, 40.035102 ], [ -75.09343, 40.035097 ], [ -75.093477, 40.03504 ], [ -75.093482, 40.034949 ], [ -75.093292, 40.034876 ], [ -75.092263, 40.034328 ], [ -75.092495, 40.034113 ], [ -75.092683, 40.033918 ], [ -75.092875, 40.033721 ], [ -75.093081, 40.033502 ], [ -75.093252, 40.033319 ], [ -75.093492, 40.033068 ], [ -75.093698, 40.032869 ], [ -75.09389, 40.032672 ], [ -75.094236, 40.032311 ], [ -75.094287, 40.03223 ], [ -75.094287, 40.032174 ], [ -75.094258, 40.032108 ], [ -75.093768, 40.03149 ], [ -75.093482, 40.031126 ], [ -75.093027, 40.030894 ], [ -75.092798, 40.03113 ], [ -75.092627, 40.031304 ], [ -75.092413, 40.031527 ], [ -75.092231, 40.031718 ], [ -75.092032, 40.031921 ], [ -75.091822, 40.032142 ], [ -75.091568, 40.032394 ], [ -75.091404, 40.032565 ], [ -75.091192, 40.032787 ], [ -75.091006, 40.032979 ], [ -75.090811, 40.033183 ], [ -75.090595, 40.033398 ], [ -75.090366, 40.033643 ], [ -75.090171, 40.033836 ], [ -75.089975, 40.03404 ], [ -75.089782, 40.034239 ], [ -75.089567, 40.034445 ], [ -75.089377, 40.034658 ], [ -75.089154, 40.034889 ], [ -75.088951, 40.035087 ], [ -75.088762, 40.035287 ], [ -75.088586, 40.035464 ], [ -75.088479, 40.035581 ], [ -75.088393, 40.035666 ], [ -75.088338, 40.035708 ], [ -75.088134, 40.035917 ], [ -75.088081, 40.035955 ], [ -75.088025, 40.03599 ], [ -75.087944, 40.036029 ], [ -75.087856, 40.036077 ], [ -75.087792, 40.036122 ], [ -75.087694, 40.036207 ], [ -75.087608, 40.03624 ], [ -75.086784, 40.037071 ], [ -75.085565, 40.038305 ], [ -75.084822, 40.03904 ], [ -75.084666, 40.039194 ], [ -75.084544, 40.039331 ], [ -75.08453, 40.039418 ], [ -75.084418, 40.039531 ], [ -75.084252, 40.039772 ], [ -75.084057, 40.040065 ], [ -75.083928, 40.040296 ], [ -75.083552, 40.040987 ], [ -75.082856, 40.042242 ], [ -75.082831, 40.04229 ], [ -75.082804, 40.042327 ], [ -75.082776, 40.042363 ], [ -75.082718, 40.042421 ], [ -75.083306, 40.042757 ], [ -75.083916, 40.043098 ], [ -75.084502, 40.04343 ], [ -75.085024, 40.043724 ], [ -75.085081, 40.043758 ], [ -75.08513, 40.04379 ], [ -75.085196, 40.043808 ], [ -75.085265, 40.043819 ], [ -75.085533, 40.04397 ], [ -75.085774, 40.044107 ], [ -75.086576, 40.044549 ], [ -75.086736, 40.044637 ], [ -75.087094, 40.044834 ], [ -75.087623, 40.045126 ], [ -75.088312, 40.045505 ], [ -75.088762, 40.045758 ], [ -75.088992, 40.045885 ], [ -75.089081, 40.045935 ], [ -75.08943, 40.046132 ], [ -75.090068, 40.046482 ], [ -75.090645, 40.046803 ], [ -75.091042, 40.047018 ], [ -75.091493, 40.047274 ], [ -75.091616, 40.047343 ], [ -75.09187, 40.047488 ], [ -75.092193, 40.047134 ], [ -75.093032, 40.046234 ], [ -75.094197, 40.044998 ], [ -75.095385, 40.043746 ], [ -75.095946, 40.043161 ], [ -75.096129, 40.042969 ], [ -75.0964, 40.042685 ], [ -75.096488, 40.042601 ], [ -75.096532, 40.042565 ], [ -75.096582, 40.042524 ], [ -75.097955, 40.041367 ], [ -75.098233, 40.041128 ], [ -75.09844, 40.040954 ], [ -75.098655, 40.040768 ], [ -75.098868, 40.040593 ], [ -75.099088, 40.040409 ], [ -75.099346, 40.040196 ], [ -75.099589, 40.039984 ], [ -75.099814, 40.039801 ], [ -75.10004, 40.039605 ], [ -75.100274, 40.039404 ], [ -75.100479, 40.039231 ], [ -75.100726, 40.039029 ], [ -75.100914, 40.038865 ], [ -75.100939, 40.038844 ], [ -75.101154, 40.03866 ], [ -75.101334, 40.038503 ], [ -75.101576, 40.038289 ], [ -75.10188, 40.038014 ], [ -75.102132, 40.037782 ], [ -75.102353, 40.037574 ], [ -75.103192, 40.036781 ], [ -75.104061, 40.035987 ], [ -75.104723, 40.035329 ], [ -75.105944, 40.034105 ], [ -75.106912, 40.033121 ], [ -75.107244, 40.032778 ], [ -75.107579, 40.032438 ], [ -75.107677, 40.032343 ], [ -75.107767, 40.032263 ], [ -75.107856, 40.0322 ], [ -75.107925, 40.03216 ], [ -75.108, 40.032131 ], [ -75.108376, 40.031986 ], [ -75.108449, 40.031962 ], [ -75.109056, 40.03176 ], [ -75.11, 40.031428 ], [ -75.111123, 40.031054 ], [ -75.111659, 40.030868 ], [ -75.111749, 40.03084 ], [ -75.111829, 40.030846 ], [ -75.111938, 40.030826 ], [ -75.112012, 40.030817 ], [ -75.112059, 40.030941 ], [ -75.112113, 40.031054 ], [ -75.112157, 40.031127 ], [ -75.112203, 40.031196 ], [ -75.112882, 40.031996 ], [ -75.113486, 40.03273 ], [ -75.114421, 40.033874 ], [ -75.114814, 40.03435 ], [ -75.114845, 40.034391 ], [ -75.114875, 40.034423 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115388, 40.034524 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.14463, 40.039037 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150015, 40.038981 ], [ -75.150212, 40.038998 ], [ -75.150608, 40.039022 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165064, 40.045236 ], [ -75.165302, 40.045006 ], [ -75.166097, 40.044239 ], [ -75.16721, 40.043155 ], [ -75.168703, 40.041695 ], [ -75.169795, 40.040628 ], [ -75.169866, 40.040558 ], [ -75.171624, 40.038844 ], [ -75.172085, 40.038391 ], [ -75.173098, 40.037408 ], [ -75.173856, 40.036671 ], [ -75.174711, 40.035831 ], [ -75.175472, 40.035095 ], [ -75.175932, 40.034644 ], [ -75.176519, 40.034107 ], [ -75.176812, 40.033812 ], [ -75.177047, 40.033576 ], [ -75.177728, 40.032893 ], [ -75.178354, 40.032292 ], [ -75.178506, 40.032146 ], [ -75.178915, 40.031754 ], [ -75.179386, 40.031282 ], [ -75.180285, 40.030411 ], [ -75.180776, 40.02992 ], [ -75.180877, 40.02982 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307484", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075454, 40.027038 ], [ -75.075401, 40.027017 ], [ -75.075324, 40.026975 ], [ -75.075205, 40.026877 ], [ -75.074983, 40.026686 ], [ -75.074165, 40.026052 ], [ -75.073849, 40.025788 ], [ -75.073379, 40.025371 ], [ -75.07325, 40.025398 ], [ -75.072507, 40.025567 ], [ -75.072045, 40.025672 ], [ -75.06987, 40.026165 ], [ -75.069441, 40.02626 ], [ -75.068803, 40.0264 ], [ -75.068378, 40.026495 ], [ -75.067979, 40.026581 ], [ -75.067331, 40.026723 ], [ -75.067303, 40.02673 ], [ -75.06721, 40.026748 ], [ -75.067181, 40.026756 ], [ -75.067127, 40.02677 ], [ -75.066679, 40.026843 ], [ -75.066276, 40.026904 ], [ -75.066046, 40.026939 ], [ -75.065521, 40.027019 ], [ -75.065424, 40.027035 ], [ -75.065246, 40.027061 ], [ -75.065076, 40.027085 ], [ -75.065022, 40.027094 ], [ -75.064625, 40.027512 ], [ -75.064014, 40.028163 ], [ -75.063581, 40.028621 ], [ -75.063388, 40.028822 ], [ -75.063219, 40.028999 ], [ -75.062859, 40.029388 ], [ -75.062827, 40.029424 ], [ -75.062767, 40.029492 ], [ -75.062878, 40.030004 ], [ -75.063075, 40.030904 ], [ -75.063092, 40.03098 ], [ -75.063201, 40.031515 ], [ -75.063225, 40.031641 ], [ -75.063369, 40.032316 ], [ -75.063484, 40.032872 ], [ -75.063541, 40.033152 ], [ -75.06361, 40.033491 ], [ -75.063644, 40.033657 ], [ -75.063657, 40.033746 ], [ -75.063713, 40.034034 ], [ -75.063862, 40.034735 ], [ -75.063972, 40.035267 ], [ -75.064082, 40.035787 ], [ -75.064096, 40.035841 ], [ -75.064107, 40.035882 ], [ -75.06416, 40.036068 ], [ -75.064205, 40.036215 ], [ -75.064246, 40.036336 ], [ -75.064346, 40.036645 ], [ -75.064381, 40.036761 ], [ -75.064481, 40.03711 ], [ -75.064517, 40.03724 ], [ -75.064602, 40.037552 ], [ -75.064638, 40.037695 ], [ -75.064705, 40.037943 ], [ -75.064767, 40.038107 ], [ -75.064847, 40.038367 ], [ -75.064967, 40.038768 ], [ -75.065092, 40.039204 ], [ -75.065245, 40.039767 ], [ -75.065283, 40.039899 ], [ -75.065317, 40.040016 ], [ -75.06537, 40.040126 ], [ -75.065478, 40.0402 ], [ -75.065508, 40.040299 ], [ -75.065539, 40.040363 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068466, 40.038238 ], [ -75.068784, 40.038424 ], [ -75.068975, 40.038522 ], [ -75.069104, 40.038593 ], [ -75.069431, 40.038779 ], [ -75.069746, 40.038959 ], [ -75.070028, 40.039125 ], [ -75.070324, 40.039283 ], [ -75.070615, 40.039439 ], [ -75.070905, 40.039607 ], [ -75.07122, 40.039784 ], [ -75.071531, 40.039969 ], [ -75.07182, 40.040124 ], [ -75.072102, 40.040278 ], [ -75.072394, 40.040437 ], [ -75.072674, 40.040599 ], [ -75.072998, 40.040783 ], [ -75.073338, 40.04098 ], [ -75.073646, 40.041152 ], [ -75.073937, 40.041314 ], [ -75.074216, 40.041485 ], [ -75.074529, 40.041657 ], [ -75.074818, 40.041818 ], [ -75.075018, 40.041937 ], [ -75.076571, 40.042781 ], [ -75.076675, 40.042843 ], [ -75.078591, 40.043886 ], [ -75.080002, 40.044686 ], [ -75.080365, 40.044882 ], [ -75.082334, 40.045997 ], [ -75.083052, 40.045411 ], [ -75.083755, 40.044858 ], [ -75.084424, 40.044289 ], [ -75.084957, 40.043864 ], [ -75.085078, 40.043834 ], [ -75.08513, 40.04379 ], [ -75.085196, 40.043808 ], [ -75.085265, 40.043819 ], [ -75.085533, 40.04397 ], [ -75.085774, 40.044107 ], [ -75.086576, 40.044549 ], [ -75.086736, 40.044637 ], [ -75.087094, 40.044834 ], [ -75.087623, 40.045126 ], [ -75.088312, 40.045505 ], [ -75.088762, 40.045758 ], [ -75.088992, 40.045885 ], [ -75.089081, 40.045935 ], [ -75.08943, 40.046132 ], [ -75.090068, 40.046482 ], [ -75.090645, 40.046803 ], [ -75.091042, 40.047018 ], [ -75.091493, 40.047274 ], [ -75.091616, 40.047343 ], [ -75.09187, 40.047488 ], [ -75.092193, 40.047134 ], [ -75.093032, 40.046234 ], [ -75.094197, 40.044998 ], [ -75.095385, 40.043746 ], [ -75.095946, 40.043161 ], [ -75.096129, 40.042969 ], [ -75.0964, 40.042685 ], [ -75.096488, 40.042601 ], [ -75.096532, 40.042565 ], [ -75.096582, 40.042524 ], [ -75.097955, 40.041367 ], [ -75.098233, 40.041128 ], [ -75.09844, 40.040954 ], [ -75.098655, 40.040768 ], [ -75.098868, 40.040593 ], [ -75.099088, 40.040409 ], [ -75.099346, 40.040196 ], [ -75.099589, 40.039984 ], [ -75.099814, 40.039801 ], [ -75.10004, 40.039605 ], [ -75.100274, 40.039404 ], [ -75.100479, 40.039231 ], [ -75.100726, 40.039029 ], [ -75.100914, 40.038865 ], [ -75.100939, 40.038844 ], [ -75.101154, 40.03866 ], [ -75.101334, 40.038503 ], [ -75.101576, 40.038289 ], [ -75.10188, 40.038014 ], [ -75.102132, 40.037782 ], [ -75.102353, 40.037574 ], [ -75.103192, 40.036781 ], [ -75.104061, 40.035987 ], [ -75.104723, 40.035329 ], [ -75.105944, 40.034105 ], [ -75.106912, 40.033121 ], [ -75.107244, 40.032778 ], [ -75.107579, 40.032438 ], [ -75.107677, 40.032343 ], [ -75.107767, 40.032263 ], [ -75.107856, 40.0322 ], [ -75.107925, 40.03216 ], [ -75.108, 40.032131 ], [ -75.108376, 40.031986 ], [ -75.108449, 40.031962 ], [ -75.109056, 40.03176 ], [ -75.11, 40.031428 ], [ -75.111123, 40.031054 ], [ -75.111659, 40.030868 ], [ -75.111749, 40.03084 ], [ -75.111829, 40.030846 ], [ -75.111938, 40.030826 ], [ -75.112012, 40.030817 ], [ -75.112059, 40.030941 ], [ -75.112113, 40.031054 ], [ -75.112157, 40.031127 ], [ -75.112203, 40.031196 ], [ -75.112882, 40.031996 ], [ -75.113486, 40.03273 ], [ -75.114421, 40.033874 ], [ -75.114814, 40.03435 ], [ -75.114845, 40.034391 ], [ -75.114875, 40.034423 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115388, 40.034524 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.123879, 40.035593 ], [ -75.124849, 40.035714 ], [ -75.125384, 40.035782 ], [ -75.126522, 40.03593 ], [ -75.12765, 40.036076 ], [ -75.128638, 40.036204 ], [ -75.129498, 40.03631 ], [ -75.130507, 40.036438 ], [ -75.131521, 40.03657 ], [ -75.132479, 40.036694 ], [ -75.13331, 40.036802 ], [ -75.134129, 40.036896 ], [ -75.134761, 40.036972 ], [ -75.135328, 40.03705 ], [ -75.135997, 40.037132 ], [ -75.136265, 40.037169 ], [ -75.136367, 40.037184 ], [ -75.136436, 40.037195 ], [ -75.136507, 40.037211 ], [ -75.136584, 40.03723 ], [ -75.137935, 40.037547 ], [ -75.138359, 40.037638 ], [ -75.138696, 40.037718 ], [ -75.139068, 40.037804 ], [ -75.139489, 40.037901 ], [ -75.139895, 40.037991 ], [ -75.140248, 40.03807 ], [ -75.140628, 40.038154 ], [ -75.141036, 40.038247 ], [ -75.141182, 40.038284 ], [ -75.141425, 40.038337 ], [ -75.141809, 40.038424 ], [ -75.142181, 40.038506 ], [ -75.142573, 40.038592 ], [ -75.142961, 40.038683 ], [ -75.143569, 40.038822 ], [ -75.14463, 40.039037 ], [ -75.144696, 40.039054 ], [ -75.144784, 40.039076 ], [ -75.144992, 40.039081 ], [ -75.145265, 40.039075 ], [ -75.146586, 40.03905 ], [ -75.147016, 40.039041 ], [ -75.147347, 40.039032 ], [ -75.147528, 40.039027 ], [ -75.148557, 40.039002 ], [ -75.149419, 40.038986 ], [ -75.150015, 40.038981 ], [ -75.150212, 40.038998 ], [ -75.150608, 40.039022 ], [ -75.15078, 40.039041 ], [ -75.151482, 40.039128 ], [ -75.15205, 40.0392 ], [ -75.152827, 40.039297 ], [ -75.15363, 40.039404 ], [ -75.154293, 40.03949 ], [ -75.154356, 40.039501 ], [ -75.154412, 40.039514 ], [ -75.154504, 40.039547 ], [ -75.154518, 40.039553 ], [ -75.154634, 40.039609 ], [ -75.154964, 40.039774 ], [ -75.15641, 40.04049 ], [ -75.157051, 40.040794 ], [ -75.15799, 40.041269 ], [ -75.158235, 40.041416 ], [ -75.158368, 40.041495 ], [ -75.158542, 40.041604 ], [ -75.158621, 40.041652 ], [ -75.158706, 40.041702 ], [ -75.159183, 40.041998 ], [ -75.159568, 40.042232 ], [ -75.160067, 40.042545 ], [ -75.160353, 40.042713 ], [ -75.161317, 40.043307 ], [ -75.162723, 40.044173 ], [ -75.163338, 40.044554 ], [ -75.163756, 40.044813 ], [ -75.164823, 40.045469 ], [ -75.165064, 40.045236 ], [ -75.165302, 40.045006 ], [ -75.166097, 40.044239 ], [ -75.16721, 40.043155 ], [ -75.168703, 40.041695 ], [ -75.169795, 40.040628 ], [ -75.169866, 40.040558 ], [ -75.171624, 40.038844 ], [ -75.172085, 40.038391 ], [ -75.173098, 40.037408 ], [ -75.173856, 40.036671 ], [ -75.174711, 40.035831 ], [ -75.175472, 40.035095 ], [ -75.175932, 40.034644 ], [ -75.176519, 40.034107 ], [ -75.176812, 40.033812 ], [ -75.177047, 40.033576 ], [ -75.177728, 40.032893 ], [ -75.178354, 40.032292 ], [ -75.178506, 40.032146 ], [ -75.178915, 40.031754 ], [ -75.179386, 40.031282 ], [ -75.180285, 40.030411 ], [ -75.180776, 40.02992 ], [ -75.180877, 40.02982 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307505", "route_id": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.084937, 40.077081 ], [ -75.085028, 40.077102 ], [ -75.085077, 40.077107 ], [ -75.085212, 40.077076 ], [ -75.085219, 40.077116 ], [ -75.085225, 40.077155 ], [ -75.085237, 40.077194 ], [ -75.085642, 40.077537 ], [ -75.086134, 40.077965 ], [ -75.086451, 40.078258 ], [ -75.086722, 40.078481 ], [ -75.086917, 40.078646 ], [ -75.087107, 40.078815 ], [ -75.0873, 40.07899 ], [ -75.087711, 40.079352 ], [ -75.087782, 40.079414 ], [ -75.087981, 40.079587 ], [ -75.088123, 40.079716 ], [ -75.088428, 40.079977 ], [ -75.088641, 40.080169 ], [ -75.088708, 40.080229 ], [ -75.088794, 40.080303 ], [ -75.088963, 40.080452 ], [ -75.08927, 40.080712 ], [ -75.089673, 40.081055 ], [ -75.090012, 40.081343 ], [ -75.090738, 40.081961 ], [ -75.091063, 40.082236 ], [ -75.091477, 40.082587 ], [ -75.091527, 40.082629 ], [ -75.092204, 40.083205 ], [ -75.092565, 40.083507 ], [ -75.092652, 40.083579 ], [ -75.092709, 40.083626 ], [ -75.092728, 40.083686 ], [ -75.092868, 40.08388 ], [ -75.093042, 40.084114 ], [ -75.09314, 40.084242 ], [ -75.093202, 40.084324 ], [ -75.093298, 40.084471 ], [ -75.093375, 40.084633 ], [ -75.093385, 40.084655 ], [ -75.093393, 40.084668 ], [ -75.093505, 40.084779 ], [ -75.093514, 40.084828 ], [ -75.093559, 40.085093 ], [ -75.093599, 40.085396 ], [ -75.093615, 40.085536 ], [ -75.093655, 40.085817 ], [ -75.093674, 40.086034 ], [ -75.0937, 40.086306 ], [ -75.093707, 40.086465 ], [ -75.093738, 40.087122 ], [ -75.093769, 40.087787 ], [ -75.093797, 40.088511 ], [ -75.093818, 40.088918 ], [ -75.093771, 40.088991 ], [ -75.093742, 40.089282 ], [ -75.093727, 40.08944 ], [ -75.093702, 40.089558 ], [ -75.0936, 40.090045 ], [ -75.093553, 40.090221 ], [ -75.093692, 40.090215 ], [ -75.093789, 40.09021 ], [ -75.093914, 40.090196 ], [ -75.094006, 40.090181 ], [ -75.094062, 40.090159 ], [ -75.094107, 40.090142 ], [ -75.094143, 40.090121 ], [ -75.09419, 40.090089 ], [ -75.094237, 40.090052 ], [ -75.094293, 40.089994 ], [ -75.094366, 40.089922 ], [ -75.095394, 40.088861 ], [ -75.09612, 40.088127 ], [ -75.09701, 40.087213 ], [ -75.097112, 40.087115 ], [ -75.097538, 40.086692 ], [ -75.0985, 40.085705 ], [ -75.099758, 40.086084 ], [ -75.100392, 40.086268 ], [ -75.10126, 40.086517 ], [ -75.1016, 40.086613 ], [ -75.102038, 40.086805 ], [ -75.102212, 40.086887 ], [ -75.102476, 40.087026 ], [ -75.102587, 40.087084 ], [ -75.102991, 40.08735 ], [ -75.10323, 40.087554 ], [ -75.103842, 40.088163 ], [ -75.104562, 40.088927 ], [ -75.104742, 40.089105 ], [ -75.105099, 40.089386 ], [ -75.105369, 40.08958 ], [ -75.105533, 40.089503 ], [ -75.106627, 40.088921 ], [ -75.110519, 40.08683 ], [ -75.111378, 40.086374 ], [ -75.111508, 40.086299 ], [ -75.111569, 40.086271 ], [ -75.111623, 40.086247 ], [ -75.111721, 40.086211 ], [ -75.112014, 40.086141 ], [ -75.112937, 40.085916 ], [ -75.113379, 40.085811 ], [ -75.113811, 40.085705 ], [ -75.114826, 40.085448 ], [ -75.114246, 40.084714 ], [ -75.114198, 40.084635 ], [ -75.114148, 40.084534 ], [ -75.114023, 40.084232 ], [ -75.113951, 40.084077 ], [ -75.113678, 40.083461 ], [ -75.113588, 40.083259 ], [ -75.116419, 40.08177 ], [ -75.116468, 40.08171 ], [ -75.116917, 40.081232 ], [ -75.117205, 40.08096 ], [ -75.117516, 40.080642 ], [ -75.118257, 40.079884 ], [ -75.119149, 40.079021 ], [ -75.119432, 40.078717 ], [ -75.119559, 40.078551 ], [ -75.119626, 40.078432 ], [ -75.119736, 40.07826 ], [ -75.120436, 40.076701 ], [ -75.120524, 40.076535 ], [ -75.120601, 40.076412 ], [ -75.120734, 40.076273 ], [ -75.120905, 40.076091 ], [ -75.121805, 40.075207 ], [ -75.122425, 40.074549 ], [ -75.123811, 40.073164 ], [ -75.123205, 40.072735 ], [ -75.123004, 40.072606 ], [ -75.124062, 40.072002 ], [ -75.124113, 40.071977 ], [ -75.124251, 40.071935 ], [ -75.124302, 40.071923 ], [ -75.124366, 40.071915 ], [ -75.124406, 40.071912 ], [ -75.124445, 40.071915 ], [ -75.124509, 40.07192 ], [ -75.124838, 40.071949 ], [ -75.125064, 40.071967 ], [ -75.126098, 40.072071 ], [ -75.126188, 40.072071 ], [ -75.126275, 40.072064 ], [ -75.126356, 40.072053 ], [ -75.126432, 40.072029 ], [ -75.126573, 40.071982 ], [ -75.126674, 40.071943 ], [ -75.126773, 40.071903 ], [ -75.126837, 40.071878 ], [ -75.126908, 40.071844 ], [ -75.127025, 40.071785 ], [ -75.127166, 40.071722 ], [ -75.12722, 40.071697 ], [ -75.127284, 40.07168 ], [ -75.127426, 40.07165 ], [ -75.127184, 40.071492 ], [ -75.126724, 40.071127 ], [ -75.12657, 40.071044 ], [ -75.126772, 40.070313 ], [ -75.126775, 40.070138 ], [ -75.126772, 40.070042 ], [ -75.126741, 40.069894 ], [ -75.126292, 40.068403 ], [ -75.125796, 40.066643 ], [ -75.125738, 40.066292 ], [ -75.126359, 40.066148 ], [ -75.126514, 40.066148 ], [ -75.12671, 40.066145 ], [ -75.127237, 40.066143 ], [ -75.127213, 40.065301 ], [ -75.127189, 40.064879 ], [ -75.127161, 40.064693 ], [ -75.127102, 40.064524 ], [ -75.127026, 40.064164 ], [ -75.127026, 40.064077 ], [ -75.127084, 40.063755 ], [ -75.12717, 40.063376 ], [ -75.127285, 40.062988 ], [ -75.12795, 40.062295 ], [ -75.128819, 40.061417 ], [ -75.129162, 40.061094 ], [ -75.129494, 40.060865 ], [ -75.129618, 40.060798 ], [ -75.130015, 40.060683 ], [ -75.130907, 40.060461 ], [ -75.132989, 40.059937 ], [ -75.13315, 40.059892 ], [ -75.133282, 40.05986 ], [ -75.13344, 40.059827 ], [ -75.136192, 40.059266 ], [ -75.136538, 40.059204 ], [ -75.13678, 40.059135 ], [ -75.136898, 40.059048 ], [ -75.136956, 40.058971 ], [ -75.136991, 40.058868 ], [ -75.136991, 40.058751 ], [ -75.136887, 40.05871 ], [ -75.136808, 40.058651 ], [ -75.136732, 40.058571 ], [ -75.13668, 40.058481 ], [ -75.136654, 40.058388 ], [ -75.136665, 40.058234 ], [ -75.136704, 40.05804 ], [ -75.136849, 40.057351 ], [ -75.13573, 40.057311 ], [ -75.136257, 40.054936 ], [ -75.136681, 40.052977 ], [ -75.137034, 40.051454 ], [ -75.137422, 40.0496 ], [ -75.13761, 40.048708 ], [ -75.137644, 40.048403 ], [ -75.137653, 40.048339 ], [ -75.137652, 40.048286 ], [ -75.137594, 40.047697 ], [ -75.137531, 40.047014 ], [ -75.137525, 40.046937 ], [ -75.137528, 40.046865 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307506", "route_id": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.036155, 40.029992 ], [ -75.036304, 40.029909 ], [ -75.036331, 40.029835 ], [ -75.036289, 40.02976 ], [ -75.036245, 40.029701 ], [ -75.036172, 40.029605 ], [ -75.035811, 40.029792 ], [ -75.03578, 40.029809 ], [ -75.035578, 40.029915 ], [ -75.035165, 40.030134 ], [ -75.033875, 40.030787 ], [ -75.03358, 40.030943 ], [ -75.033043, 40.031223 ], [ -75.032454, 40.031518 ], [ -75.031939, 40.03179 ], [ -75.03145, 40.032039 ], [ -75.030909, 40.032323 ], [ -75.030295, 40.032641 ], [ -75.029748, 40.032923 ], [ -75.029127, 40.033243 ], [ -75.028804, 40.033409 ], [ -75.028517, 40.033558 ], [ -75.028247, 40.033698 ], [ -75.027993, 40.033831 ], [ -75.02771, 40.033975 ], [ -75.02739, 40.034137 ], [ -75.027071, 40.034301 ], [ -75.026819, 40.034438 ], [ -75.02654, 40.034583 ], [ -75.02628, 40.034718 ], [ -75.025903, 40.034913 ], [ -75.025595, 40.035073 ], [ -75.025157, 40.0353 ], [ -75.025359, 40.035608 ], [ -75.025476, 40.035787 ], [ -75.025812, 40.036277 ], [ -75.025883, 40.036396 ], [ -75.025958, 40.036544 ], [ -75.026121, 40.036894 ], [ -75.026594, 40.037867 ], [ -75.026676, 40.038041 ], [ -75.026759, 40.038211 ], [ -75.027014, 40.038753 ], [ -75.027312, 40.039401 ], [ -75.027587, 40.040037 ], [ -75.027838, 40.040602 ], [ -75.027866, 40.040666 ], [ -75.027896, 40.040734 ], [ -75.02794, 40.040833 ], [ -75.028278, 40.04135 ], [ -75.028599, 40.041806 ], [ -75.028941, 40.042279 ], [ -75.029417, 40.042897 ], [ -75.0298, 40.04341 ], [ -75.030177, 40.043898 ], [ -75.030537, 40.04437 ], [ -75.030986, 40.044961 ], [ -75.031352, 40.045449 ], [ -75.031521, 40.045674 ], [ -75.03157, 40.045747 ], [ -75.031596, 40.045788 ], [ -75.03163, 40.04585 ], [ -75.031664, 40.045913 ], [ -75.031705, 40.046006 ], [ -75.031736, 40.046084 ], [ -75.031747, 40.04611 ], [ -75.031769, 40.04618 ], [ -75.031791, 40.046254 ], [ -75.031807, 40.046324 ], [ -75.031815, 40.046406 ], [ -75.031825, 40.046492 ], [ -75.03183, 40.046603 ], [ -75.031832, 40.04669 ], [ -75.03183, 40.046744 ], [ -75.031821, 40.046813 ], [ -75.031797, 40.046944 ], [ -75.03177, 40.047087 ], [ -75.03172, 40.047303 ], [ -75.031654, 40.047582 ], [ -75.031619, 40.047733 ], [ -75.0316, 40.047837 ], [ -75.031589, 40.04791 ], [ -75.031582, 40.047978 ], [ -75.031583, 40.048044 ], [ -75.031596, 40.048134 ], [ -75.031618, 40.0482 ], [ -75.031641, 40.048261 ], [ -75.031692, 40.048356 ], [ -75.031764, 40.04846 ], [ -75.031827, 40.048539 ], [ -75.031905, 40.048618 ], [ -75.032009, 40.048699 ], [ -75.032152, 40.048789 ], [ -75.032315, 40.048879 ], [ -75.032752, 40.049116 ], [ -75.034698, 40.050167 ], [ -75.035056, 40.05036 ], [ -75.035347, 40.050516 ], [ -75.036052, 40.050897 ], [ -75.036211, 40.050978 ], [ -75.036574, 40.051176 ], [ -75.039065, 40.052541 ], [ -75.039715, 40.052882 ], [ -75.040278, 40.053177 ], [ -75.040611, 40.05336 ], [ -75.040665, 40.053364 ], [ -75.040755, 40.05341 ], [ -75.041001, 40.053529 ], [ -75.041016, 40.053537 ], [ -75.041053, 40.053598 ], [ -75.041123, 40.053636 ], [ -75.041534, 40.05386 ], [ -75.041978, 40.0541 ], [ -75.042707, 40.054493 ], [ -75.042838, 40.054561 ], [ -75.043641, 40.054998 ], [ -75.044495, 40.055461 ], [ -75.045264, 40.055878 ], [ -75.045506, 40.056011 ], [ -75.04604, 40.056305 ], [ -75.046384, 40.056495 ], [ -75.04652, 40.056568 ], [ -75.046694, 40.056657 ], [ -75.046854, 40.056746 ], [ -75.046994, 40.056819 ], [ -75.047455, 40.057067 ], [ -75.04759, 40.05714 ], [ -75.04773, 40.057216 ], [ -75.047803, 40.057255 ], [ -75.048166, 40.057449 ], [ -75.04856, 40.057662 ], [ -75.048657, 40.057714 ], [ -75.05059, 40.058761 ], [ -75.0516, 40.059303 ], [ -75.051683, 40.059349 ], [ -75.052033, 40.059543 ], [ -75.052397, 40.059737 ], [ -75.053347, 40.060263 ], [ -75.05418, 40.060725 ], [ -75.055005, 40.061177 ], [ -75.056062, 40.061762 ], [ -75.056154, 40.061816 ], [ -75.05638, 40.06196 ], [ -75.057293, 40.062532 ], [ -75.057696, 40.062785 ], [ -75.058995, 40.063607 ], [ -75.059629, 40.064007 ], [ -75.060358, 40.06446 ], [ -75.061326, 40.06507 ], [ -75.061687, 40.06529 ], [ -75.062178, 40.065601 ], [ -75.06251, 40.065808 ], [ -75.062646, 40.065892 ], [ -75.063047, 40.066142 ], [ -75.063429, 40.066387 ], [ -75.063454, 40.066418 ], [ -75.06367, 40.066548 ], [ -75.063898, 40.066691 ], [ -75.063951, 40.0667 ], [ -75.064076, 40.066776 ], [ -75.064483, 40.067015 ], [ -75.065856, 40.067842 ], [ -75.066791, 40.068394 ], [ -75.066943, 40.068484 ], [ -75.06707, 40.068559 ], [ -75.067355, 40.068725 ], [ -75.067523, 40.068816 ], [ -75.067839, 40.068971 ], [ -75.068125, 40.069114 ], [ -75.06893, 40.069506 ], [ -75.070433, 40.070236 ], [ -75.071438, 40.070726 ], [ -75.072299, 40.071141 ], [ -75.073173, 40.071563 ], [ -75.074045, 40.071996 ], [ -75.074496, 40.07221 ], [ -75.075038, 40.072472 ], [ -75.075298, 40.072601 ], [ -75.07588, 40.072892 ], [ -75.075913, 40.072912 ], [ -75.076157, 40.07306 ], [ -75.076301, 40.073143 ], [ -75.076546, 40.073284 ], [ -75.07694, 40.073512 ], [ -75.077598, 40.073913 ], [ -75.078316, 40.074346 ], [ -75.078665, 40.074543 ], [ -75.079036, 40.074761 ], [ -75.079185, 40.074847 ], [ -75.080171, 40.075455 ], [ -75.080914, 40.07589 ], [ -75.081621, 40.076315 ], [ -75.081668, 40.076342 ], [ -75.081698, 40.076356 ], [ -75.08178, 40.076384 ], [ -75.081935, 40.076421 ], [ -75.082461, 40.076533 ], [ -75.082597, 40.076564 ], [ -75.082862, 40.076627 ], [ -75.083238, 40.076716 ], [ -75.083385, 40.076747 ], [ -75.083799, 40.07684 ], [ -75.083858, 40.076885 ], [ -75.084347, 40.076986 ], [ -75.084482, 40.077009 ], [ -75.0845, 40.077008 ], [ -75.084555, 40.076999 ], [ -75.084797, 40.077048 ], [ -75.084937, 40.077081 ], [ -75.085028, 40.077102 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307507", "route_id": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.036155, 40.029992 ], [ -75.036304, 40.029909 ], [ -75.036331, 40.029835 ], [ -75.036289, 40.02976 ], [ -75.036245, 40.029701 ], [ -75.036172, 40.029605 ], [ -75.035811, 40.029792 ], [ -75.03578, 40.029809 ], [ -75.035578, 40.029915 ], [ -75.035165, 40.030134 ], [ -75.033875, 40.030787 ], [ -75.03358, 40.030943 ], [ -75.033043, 40.031223 ], [ -75.032454, 40.031518 ], [ -75.031939, 40.03179 ], [ -75.03145, 40.032039 ], [ -75.030909, 40.032323 ], [ -75.030295, 40.032641 ], [ -75.029748, 40.032923 ], [ -75.029127, 40.033243 ], [ -75.028804, 40.033409 ], [ -75.028517, 40.033558 ], [ -75.028247, 40.033698 ], [ -75.027993, 40.033831 ], [ -75.02771, 40.033975 ], [ -75.02739, 40.034137 ], [ -75.027071, 40.034301 ], [ -75.026819, 40.034438 ], [ -75.02654, 40.034583 ], [ -75.02628, 40.034718 ], [ -75.025903, 40.034913 ], [ -75.025595, 40.035073 ], [ -75.025157, 40.0353 ], [ -75.025359, 40.035608 ], [ -75.025476, 40.035787 ], [ -75.025812, 40.036277 ], [ -75.025883, 40.036396 ], [ -75.025958, 40.036544 ], [ -75.026121, 40.036894 ], [ -75.026594, 40.037867 ], [ -75.026676, 40.038041 ], [ -75.026759, 40.038211 ], [ -75.027014, 40.038753 ], [ -75.027312, 40.039401 ], [ -75.027587, 40.040037 ], [ -75.027838, 40.040602 ], [ -75.027866, 40.040666 ], [ -75.027896, 40.040734 ], [ -75.02794, 40.040833 ], [ -75.028278, 40.04135 ], [ -75.028599, 40.041806 ], [ -75.028941, 40.042279 ], [ -75.029417, 40.042897 ], [ -75.0298, 40.04341 ], [ -75.030177, 40.043898 ], [ -75.030537, 40.04437 ], [ -75.030986, 40.044961 ], [ -75.031352, 40.045449 ], [ -75.031521, 40.045674 ], [ -75.03157, 40.045747 ], [ -75.031596, 40.045788 ], [ -75.03163, 40.04585 ], [ -75.031664, 40.045913 ], [ -75.031705, 40.046006 ], [ -75.031736, 40.046084 ], [ -75.031747, 40.04611 ], [ -75.031769, 40.04618 ], [ -75.031791, 40.046254 ], [ -75.031807, 40.046324 ], [ -75.031815, 40.046406 ], [ -75.031825, 40.046492 ], [ -75.03183, 40.046603 ], [ -75.031832, 40.04669 ], [ -75.03183, 40.046744 ], [ -75.031821, 40.046813 ], [ -75.031797, 40.046944 ], [ -75.03177, 40.047087 ], [ -75.03172, 40.047303 ], [ -75.031654, 40.047582 ], [ -75.031619, 40.047733 ], [ -75.0316, 40.047837 ], [ -75.031589, 40.04791 ], [ -75.031582, 40.047978 ], [ -75.031583, 40.048044 ], [ -75.031596, 40.048134 ], [ -75.031618, 40.0482 ], [ -75.031641, 40.048261 ], [ -75.031692, 40.048356 ], [ -75.031764, 40.04846 ], [ -75.031827, 40.048539 ], [ -75.031905, 40.048618 ], [ -75.032009, 40.048699 ], [ -75.032152, 40.048789 ], [ -75.032315, 40.048879 ], [ -75.032752, 40.049116 ], [ -75.034698, 40.050167 ], [ -75.035056, 40.05036 ], [ -75.035347, 40.050516 ], [ -75.036052, 40.050897 ], [ -75.036211, 40.050978 ], [ -75.036574, 40.051176 ], [ -75.039065, 40.052541 ], [ -75.039715, 40.052882 ], [ -75.040278, 40.053177 ], [ -75.040611, 40.05336 ], [ -75.040665, 40.053364 ], [ -75.040755, 40.05341 ], [ -75.041001, 40.053529 ], [ -75.041016, 40.053537 ], [ -75.041053, 40.053598 ], [ -75.041123, 40.053636 ], [ -75.041534, 40.05386 ], [ -75.041978, 40.0541 ], [ -75.042707, 40.054493 ], [ -75.042838, 40.054561 ], [ -75.043641, 40.054998 ], [ -75.044495, 40.055461 ], [ -75.045264, 40.055878 ], [ -75.045506, 40.056011 ], [ -75.04604, 40.056305 ], [ -75.046384, 40.056495 ], [ -75.04652, 40.056568 ], [ -75.046694, 40.056657 ], [ -75.046854, 40.056746 ], [ -75.046994, 40.056819 ], [ -75.047455, 40.057067 ], [ -75.04759, 40.05714 ], [ -75.04773, 40.057216 ], [ -75.047803, 40.057255 ], [ -75.048166, 40.057449 ], [ -75.04856, 40.057662 ], [ -75.048657, 40.057714 ], [ -75.05059, 40.058761 ], [ -75.0516, 40.059303 ], [ -75.051683, 40.059349 ], [ -75.052033, 40.059543 ], [ -75.052397, 40.059737 ], [ -75.053347, 40.060263 ], [ -75.05418, 40.060725 ], [ -75.055005, 40.061177 ], [ -75.056062, 40.061762 ], [ -75.056154, 40.061816 ], [ -75.05638, 40.06196 ], [ -75.057293, 40.062532 ], [ -75.057696, 40.062785 ], [ -75.058995, 40.063607 ], [ -75.059629, 40.064007 ], [ -75.060358, 40.06446 ], [ -75.061326, 40.06507 ], [ -75.061687, 40.06529 ], [ -75.062178, 40.065601 ], [ -75.06251, 40.065808 ], [ -75.062646, 40.065892 ], [ -75.063047, 40.066142 ], [ -75.063429, 40.066387 ], [ -75.063454, 40.066418 ], [ -75.06367, 40.066548 ], [ -75.063898, 40.066691 ], [ -75.063951, 40.0667 ], [ -75.064076, 40.066776 ], [ -75.064483, 40.067015 ], [ -75.065856, 40.067842 ], [ -75.066791, 40.068394 ], [ -75.066943, 40.068484 ], [ -75.06707, 40.068559 ], [ -75.067355, 40.068725 ], [ -75.067523, 40.068816 ], [ -75.067839, 40.068971 ], [ -75.068125, 40.069114 ], [ -75.06893, 40.069506 ], [ -75.070433, 40.070236 ], [ -75.071438, 40.070726 ], [ -75.072299, 40.071141 ], [ -75.073173, 40.071563 ], [ -75.074045, 40.071996 ], [ -75.074496, 40.07221 ], [ -75.075038, 40.072472 ], [ -75.075298, 40.072601 ], [ -75.07588, 40.072892 ], [ -75.075913, 40.072912 ], [ -75.076157, 40.07306 ], [ -75.076301, 40.073143 ], [ -75.076546, 40.073284 ], [ -75.07694, 40.073512 ], [ -75.077598, 40.073913 ], [ -75.078316, 40.074346 ], [ -75.078665, 40.074543 ], [ -75.079036, 40.074761 ], [ -75.079185, 40.074847 ], [ -75.080171, 40.075455 ], [ -75.080914, 40.07589 ], [ -75.081621, 40.076315 ], [ -75.081668, 40.076342 ], [ -75.081698, 40.076356 ], [ -75.08178, 40.076384 ], [ -75.081935, 40.076421 ], [ -75.082461, 40.076533 ], [ -75.082597, 40.076564 ], [ -75.082862, 40.076627 ], [ -75.083238, 40.076716 ], [ -75.083385, 40.076747 ], [ -75.083799, 40.07684 ], [ -75.083858, 40.076885 ], [ -75.084347, 40.076986 ], [ -75.084482, 40.077009 ], [ -75.0845, 40.077008 ], [ -75.084555, 40.076999 ], [ -75.084797, 40.077048 ], [ -75.084937, 40.077081 ], [ -75.085028, 40.077102 ], [ -75.085077, 40.077107 ], [ -75.085212, 40.077076 ], [ -75.085219, 40.077116 ], [ -75.085225, 40.077155 ], [ -75.085237, 40.077194 ], [ -75.085642, 40.077537 ], [ -75.086134, 40.077965 ], [ -75.086451, 40.078258 ], [ -75.086722, 40.078481 ], [ -75.086917, 40.078646 ], [ -75.087107, 40.078815 ], [ -75.0873, 40.07899 ], [ -75.087711, 40.079352 ], [ -75.087782, 40.079414 ], [ -75.087981, 40.079587 ], [ -75.088123, 40.079716 ], [ -75.088428, 40.079977 ], [ -75.088641, 40.080169 ], [ -75.088708, 40.080229 ], [ -75.088794, 40.080303 ], [ -75.088963, 40.080452 ], [ -75.08927, 40.080712 ], [ -75.089673, 40.081055 ], [ -75.090012, 40.081343 ], [ -75.090738, 40.081961 ], [ -75.091063, 40.082236 ], [ -75.091477, 40.082587 ], [ -75.091527, 40.082629 ], [ -75.092204, 40.083205 ], [ -75.092565, 40.083507 ], [ -75.092652, 40.083579 ], [ -75.092709, 40.083626 ], [ -75.092728, 40.083686 ], [ -75.092868, 40.08388 ], [ -75.093042, 40.084114 ], [ -75.09314, 40.084242 ], [ -75.093202, 40.084324 ], [ -75.093298, 40.084471 ], [ -75.093375, 40.084633 ], [ -75.093385, 40.084655 ], [ -75.093393, 40.084668 ], [ -75.093505, 40.084779 ], [ -75.093514, 40.084828 ], [ -75.093559, 40.085093 ], [ -75.093599, 40.085396 ], [ -75.093615, 40.085536 ], [ -75.093655, 40.085817 ], [ -75.093674, 40.086034 ], [ -75.0937, 40.086306 ], [ -75.093707, 40.086465 ], [ -75.093738, 40.087122 ], [ -75.093769, 40.087787 ], [ -75.093797, 40.088511 ], [ -75.093818, 40.088918 ], [ -75.093771, 40.088991 ], [ -75.093742, 40.089282 ], [ -75.093727, 40.08944 ], [ -75.093702, 40.089558 ], [ -75.0936, 40.090045 ], [ -75.093553, 40.090221 ], [ -75.093692, 40.090215 ], [ -75.093789, 40.09021 ], [ -75.093914, 40.090196 ], [ -75.094006, 40.090181 ], [ -75.094062, 40.090159 ], [ -75.094107, 40.090142 ], [ -75.094143, 40.090121 ], [ -75.09419, 40.090089 ], [ -75.094237, 40.090052 ], [ -75.094293, 40.089994 ], [ -75.094366, 40.089922 ], [ -75.095394, 40.088861 ], [ -75.09612, 40.088127 ], [ -75.09701, 40.087213 ], [ -75.097112, 40.087115 ], [ -75.097538, 40.086692 ], [ -75.0985, 40.085705 ], [ -75.099758, 40.086084 ], [ -75.100392, 40.086268 ], [ -75.10126, 40.086517 ], [ -75.1016, 40.086613 ], [ -75.102038, 40.086805 ], [ -75.102212, 40.086887 ], [ -75.102476, 40.087026 ], [ -75.102587, 40.087084 ], [ -75.102991, 40.08735 ], [ -75.10323, 40.087554 ], [ -75.103842, 40.088163 ], [ -75.104562, 40.088927 ], [ -75.104742, 40.089105 ], [ -75.105099, 40.089386 ], [ -75.105369, 40.08958 ], [ -75.105533, 40.089503 ], [ -75.106627, 40.088921 ], [ -75.110519, 40.08683 ], [ -75.111378, 40.086374 ], [ -75.111508, 40.086299 ], [ -75.111569, 40.086271 ], [ -75.111623, 40.086247 ], [ -75.111721, 40.086211 ], [ -75.112014, 40.086141 ], [ -75.112937, 40.085916 ], [ -75.113379, 40.085811 ], [ -75.113811, 40.085705 ], [ -75.114826, 40.085448 ], [ -75.114246, 40.084714 ], [ -75.114198, 40.084635 ], [ -75.114148, 40.084534 ], [ -75.114023, 40.084232 ], [ -75.113951, 40.084077 ], [ -75.113678, 40.083461 ], [ -75.113588, 40.083259 ], [ -75.116419, 40.08177 ], [ -75.116468, 40.08171 ], [ -75.116917, 40.081232 ], [ -75.117205, 40.08096 ], [ -75.117516, 40.080642 ], [ -75.118257, 40.079884 ], [ -75.119149, 40.079021 ], [ -75.119432, 40.078717 ], [ -75.119559, 40.078551 ], [ -75.119626, 40.078432 ], [ -75.119736, 40.07826 ], [ -75.120436, 40.076701 ], [ -75.120524, 40.076535 ], [ -75.120601, 40.076412 ], [ -75.120734, 40.076273 ], [ -75.120905, 40.076091 ], [ -75.121805, 40.075207 ], [ -75.122425, 40.074549 ], [ -75.123811, 40.073164 ], [ -75.123205, 40.072735 ], [ -75.123004, 40.072606 ], [ -75.124062, 40.072002 ], [ -75.124113, 40.071977 ], [ -75.124251, 40.071935 ], [ -75.124302, 40.071923 ], [ -75.124366, 40.071915 ], [ -75.124406, 40.071912 ], [ -75.124445, 40.071915 ], [ -75.124509, 40.07192 ], [ -75.124838, 40.071949 ], [ -75.125064, 40.071967 ], [ -75.126098, 40.072071 ], [ -75.126188, 40.072071 ], [ -75.126275, 40.072064 ], [ -75.126356, 40.072053 ], [ -75.126432, 40.072029 ], [ -75.126573, 40.071982 ], [ -75.126674, 40.071943 ], [ -75.126773, 40.071903 ], [ -75.126837, 40.071878 ], [ -75.126908, 40.071844 ], [ -75.127025, 40.071785 ], [ -75.127166, 40.071722 ], [ -75.12722, 40.071697 ], [ -75.127284, 40.07168 ], [ -75.127426, 40.07165 ], [ -75.127184, 40.071492 ], [ -75.126724, 40.071127 ], [ -75.12657, 40.071044 ], [ -75.126772, 40.070313 ], [ -75.126775, 40.070138 ], [ -75.126772, 40.070042 ], [ -75.126741, 40.069894 ], [ -75.126292, 40.068403 ], [ -75.125796, 40.066643 ], [ -75.125738, 40.066292 ], [ -75.126359, 40.066148 ], [ -75.126514, 40.066148 ], [ -75.12671, 40.066145 ], [ -75.127237, 40.066143 ], [ -75.127213, 40.065301 ], [ -75.127189, 40.064879 ], [ -75.127161, 40.064693 ], [ -75.127102, 40.064524 ], [ -75.127026, 40.064164 ], [ -75.127026, 40.064077 ], [ -75.127084, 40.063755 ], [ -75.12717, 40.063376 ], [ -75.127285, 40.062988 ], [ -75.12795, 40.062295 ], [ -75.128819, 40.061417 ], [ -75.129162, 40.061094 ], [ -75.129494, 40.060865 ], [ -75.129618, 40.060798 ], [ -75.130015, 40.060683 ], [ -75.130907, 40.060461 ], [ -75.132989, 40.059937 ], [ -75.13315, 40.059892 ], [ -75.133282, 40.05986 ], [ -75.13344, 40.059827 ], [ -75.136192, 40.059266 ], [ -75.136538, 40.059204 ], [ -75.13678, 40.059135 ], [ -75.136898, 40.059048 ], [ -75.136956, 40.058971 ], [ -75.136991, 40.058868 ], [ -75.136991, 40.058751 ], [ -75.136887, 40.05871 ], [ -75.136808, 40.058651 ], [ -75.136732, 40.058571 ], [ -75.13668, 40.058481 ], [ -75.136654, 40.058388 ], [ -75.136665, 40.058234 ], [ -75.136704, 40.05804 ], [ -75.136849, 40.057351 ], [ -75.13573, 40.057311 ], [ -75.136257, 40.054936 ], [ -75.136681, 40.052977 ], [ -75.137034, 40.051454 ], [ -75.137422, 40.0496 ], [ -75.13761, 40.048708 ], [ -75.137644, 40.048403 ], [ -75.137653, 40.048339 ], [ -75.137652, 40.048286 ], [ -75.137594, 40.047697 ], [ -75.137531, 40.047014 ], [ -75.137525, 40.046937 ], [ -75.137528, 40.046865 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307508", "route_id": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.083385, 40.076747 ], [ -75.083238, 40.076716 ], [ -75.082862, 40.076627 ], [ -75.082597, 40.076564 ], [ -75.082461, 40.076533 ], [ -75.081935, 40.076421 ], [ -75.08178, 40.076384 ], [ -75.081698, 40.076356 ], [ -75.081668, 40.076342 ], [ -75.081621, 40.076315 ], [ -75.080914, 40.07589 ], [ -75.080171, 40.075455 ], [ -75.079185, 40.074847 ], [ -75.079036, 40.074761 ], [ -75.078665, 40.074543 ], [ -75.078316, 40.074346 ], [ -75.077598, 40.073913 ], [ -75.07694, 40.073512 ], [ -75.076546, 40.073284 ], [ -75.076301, 40.073143 ], [ -75.076157, 40.07306 ], [ -75.075913, 40.072912 ], [ -75.07588, 40.072892 ], [ -75.075298, 40.072601 ], [ -75.075038, 40.072472 ], [ -75.074496, 40.07221 ], [ -75.074045, 40.071996 ], [ -75.073173, 40.071563 ], [ -75.072299, 40.071141 ], [ -75.071438, 40.070726 ], [ -75.070433, 40.070236 ], [ -75.06893, 40.069506 ], [ -75.068125, 40.069114 ], [ -75.067839, 40.068971 ], [ -75.067523, 40.068816 ], [ -75.067355, 40.068725 ], [ -75.06707, 40.068559 ], [ -75.066943, 40.068484 ], [ -75.066791, 40.068394 ], [ -75.065856, 40.067842 ], [ -75.064483, 40.067015 ], [ -75.064076, 40.066776 ], [ -75.063951, 40.0667 ], [ -75.063935, 40.066662 ], [ -75.06382, 40.066579 ], [ -75.063623, 40.066455 ], [ -75.063596, 40.066438 ], [ -75.063546, 40.066412 ], [ -75.063487, 40.066387 ], [ -75.063429, 40.066387 ], [ -75.063047, 40.066142 ], [ -75.062646, 40.065892 ], [ -75.06251, 40.065808 ], [ -75.062178, 40.065601 ], [ -75.061687, 40.06529 ], [ -75.061326, 40.06507 ], [ -75.060358, 40.06446 ], [ -75.059629, 40.064007 ], [ -75.058995, 40.063607 ], [ -75.057696, 40.062785 ], [ -75.057293, 40.062532 ], [ -75.05638, 40.06196 ], [ -75.056154, 40.061816 ], [ -75.056062, 40.061762 ], [ -75.055005, 40.061177 ], [ -75.05418, 40.060725 ], [ -75.053347, 40.060263 ], [ -75.052397, 40.059737 ], [ -75.052033, 40.059543 ], [ -75.051683, 40.059349 ], [ -75.0516, 40.059303 ], [ -75.05059, 40.058761 ], [ -75.048657, 40.057714 ], [ -75.04856, 40.057662 ], [ -75.048166, 40.057449 ], [ -75.047803, 40.057255 ], [ -75.04773, 40.057216 ], [ -75.04759, 40.05714 ], [ -75.047455, 40.057067 ], [ -75.046994, 40.056819 ], [ -75.046854, 40.056746 ], [ -75.046694, 40.056657 ], [ -75.04652, 40.056568 ], [ -75.046384, 40.056495 ], [ -75.04604, 40.056305 ], [ -75.045506, 40.056011 ], [ -75.045264, 40.055878 ], [ -75.044495, 40.055461 ], [ -75.043641, 40.054998 ], [ -75.042838, 40.054561 ], [ -75.042707, 40.054493 ], [ -75.041978, 40.0541 ], [ -75.041534, 40.05386 ], [ -75.041123, 40.053636 ], [ -75.041053, 40.053598 ], [ -75.041016, 40.053537 ], [ -75.041001, 40.053529 ], [ -75.040755, 40.05341 ], [ -75.040665, 40.053364 ], [ -75.040611, 40.05336 ], [ -75.040278, 40.053177 ], [ -75.039715, 40.052882 ], [ -75.039065, 40.052541 ], [ -75.036574, 40.051176 ], [ -75.036211, 40.050978 ], [ -75.036052, 40.050897 ], [ -75.035347, 40.050516 ], [ -75.035056, 40.05036 ], [ -75.034698, 40.050167 ], [ -75.032752, 40.049116 ], [ -75.032315, 40.048879 ], [ -75.032152, 40.048789 ], [ -75.032009, 40.048699 ], [ -75.031905, 40.048618 ], [ -75.031827, 40.048539 ], [ -75.031764, 40.04846 ], [ -75.031692, 40.048356 ], [ -75.031641, 40.048261 ], [ -75.031618, 40.0482 ], [ -75.031596, 40.048134 ], [ -75.031583, 40.048044 ], [ -75.031582, 40.047978 ], [ -75.031589, 40.04791 ], [ -75.0316, 40.047837 ], [ -75.031619, 40.047733 ], [ -75.031654, 40.047582 ], [ -75.03172, 40.047303 ], [ -75.03177, 40.047087 ], [ -75.031797, 40.046944 ], [ -75.031821, 40.046813 ], [ -75.03183, 40.046744 ], [ -75.031832, 40.04669 ], [ -75.03183, 40.046603 ], [ -75.031825, 40.046492 ], [ -75.031815, 40.046406 ], [ -75.031807, 40.046324 ], [ -75.031791, 40.046254 ], [ -75.031769, 40.04618 ], [ -75.031747, 40.04611 ], [ -75.031736, 40.046084 ], [ -75.031705, 40.046006 ], [ -75.031664, 40.045913 ], [ -75.03163, 40.04585 ], [ -75.031596, 40.045788 ], [ -75.03157, 40.045747 ], [ -75.031521, 40.045674 ], [ -75.031352, 40.045449 ], [ -75.030986, 40.044961 ], [ -75.030537, 40.04437 ], [ -75.030177, 40.043898 ], [ -75.0298, 40.04341 ], [ -75.029417, 40.042897 ], [ -75.028941, 40.042279 ], [ -75.028599, 40.041806 ], [ -75.028278, 40.04135 ], [ -75.02794, 40.040833 ], [ -75.027896, 40.040734 ], [ -75.027866, 40.040666 ], [ -75.027838, 40.040602 ], [ -75.027587, 40.040037 ], [ -75.027312, 40.039401 ], [ -75.027014, 40.038753 ], [ -75.026759, 40.038211 ], [ -75.026676, 40.038041 ], [ -75.026594, 40.037867 ], [ -75.026121, 40.036894 ], [ -75.025958, 40.036544 ], [ -75.025883, 40.036396 ], [ -75.025812, 40.036277 ], [ -75.025476, 40.035787 ], [ -75.025359, 40.035608 ], [ -75.025157, 40.0353 ], [ -75.025595, 40.035073 ], [ -75.025903, 40.034913 ], [ -75.02628, 40.034718 ], [ -75.02654, 40.034583 ], [ -75.026819, 40.034438 ], [ -75.027071, 40.034301 ], [ -75.02739, 40.034137 ], [ -75.02771, 40.033975 ], [ -75.027993, 40.033831 ], [ -75.028247, 40.033698 ], [ -75.028517, 40.033558 ], [ -75.028804, 40.033409 ], [ -75.029127, 40.033243 ], [ -75.029748, 40.032923 ], [ -75.030295, 40.032641 ], [ -75.030909, 40.032323 ], [ -75.03145, 40.032039 ], [ -75.031939, 40.03179 ], [ -75.032454, 40.031518 ], [ -75.033043, 40.031223 ], [ -75.03358, 40.030943 ], [ -75.033875, 40.030787 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.03584, 40.029894 ], [ -75.035863, 40.029928 ], [ -75.0359, 40.02998 ], [ -75.036036, 40.030016 ], [ -75.036155, 40.029992 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307509", "route_id": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.136952, 40.041995 ], [ -75.136653, 40.04353 ], [ -75.137396, 40.043628 ], [ -75.13821, 40.043735 ], [ -75.137862, 40.045245 ], [ -75.137564, 40.046633 ], [ -75.137546, 40.046727 ], [ -75.137536, 40.046806 ], [ -75.137528, 40.046865 ], [ -75.137525, 40.046937 ], [ -75.137531, 40.047014 ], [ -75.137594, 40.047697 ], [ -75.137652, 40.048286 ], [ -75.137653, 40.048339 ], [ -75.137644, 40.048403 ], [ -75.13761, 40.048708 ], [ -75.137422, 40.0496 ], [ -75.137034, 40.051454 ], [ -75.136681, 40.052977 ], [ -75.136257, 40.054936 ], [ -75.13573, 40.057311 ], [ -75.136849, 40.057351 ], [ -75.136704, 40.05804 ], [ -75.136665, 40.058234 ], [ -75.136654, 40.058388 ], [ -75.13668, 40.058481 ], [ -75.136732, 40.058571 ], [ -75.136808, 40.058651 ], [ -75.136887, 40.05871 ], [ -75.136991, 40.058751 ], [ -75.136991, 40.058868 ], [ -75.136956, 40.058971 ], [ -75.136898, 40.059048 ], [ -75.13678, 40.059135 ], [ -75.136538, 40.059204 ], [ -75.136192, 40.059266 ], [ -75.13344, 40.059827 ], [ -75.133282, 40.05986 ], [ -75.13315, 40.059892 ], [ -75.132989, 40.059937 ], [ -75.130907, 40.060461 ], [ -75.130015, 40.060683 ], [ -75.129618, 40.060798 ], [ -75.129494, 40.060865 ], [ -75.129162, 40.061094 ], [ -75.128819, 40.061417 ], [ -75.12795, 40.062295 ], [ -75.127285, 40.062988 ], [ -75.12717, 40.063376 ], [ -75.127084, 40.063755 ], [ -75.127026, 40.064077 ], [ -75.127026, 40.064164 ], [ -75.127102, 40.064524 ], [ -75.127161, 40.064693 ], [ -75.127189, 40.064879 ], [ -75.127213, 40.065301 ], [ -75.127237, 40.066143 ], [ -75.12671, 40.066145 ], [ -75.126514, 40.066148 ], [ -75.126359, 40.066148 ], [ -75.125738, 40.066292 ], [ -75.125796, 40.066643 ], [ -75.126292, 40.068403 ], [ -75.126741, 40.069894 ], [ -75.126772, 40.070042 ], [ -75.126775, 40.070138 ], [ -75.126772, 40.070313 ], [ -75.12657, 40.071044 ], [ -75.126474, 40.07138 ], [ -75.126447, 40.071508 ], [ -75.126449, 40.07165 ], [ -75.126474, 40.071805 ], [ -75.126573, 40.071982 ], [ -75.126432, 40.072029 ], [ -75.126356, 40.072053 ], [ -75.126275, 40.072064 ], [ -75.126188, 40.072071 ], [ -75.126098, 40.072071 ], [ -75.125064, 40.071967 ], [ -75.124838, 40.071949 ], [ -75.124509, 40.07192 ], [ -75.124445, 40.071915 ], [ -75.124406, 40.071912 ], [ -75.124366, 40.071915 ], [ -75.124302, 40.071923 ], [ -75.124251, 40.071935 ], [ -75.124113, 40.071977 ], [ -75.124062, 40.072002 ], [ -75.123004, 40.072606 ], [ -75.123205, 40.072735 ], [ -75.123811, 40.073164 ], [ -75.122425, 40.074549 ], [ -75.121805, 40.075207 ], [ -75.120905, 40.076091 ], [ -75.120734, 40.076273 ], [ -75.120601, 40.076412 ], [ -75.120524, 40.076535 ], [ -75.120436, 40.076701 ], [ -75.119736, 40.07826 ], [ -75.119626, 40.078432 ], [ -75.119559, 40.078551 ], [ -75.119432, 40.078717 ], [ -75.119149, 40.079021 ], [ -75.118257, 40.079884 ], [ -75.117516, 40.080642 ], [ -75.117205, 40.08096 ], [ -75.116917, 40.081232 ], [ -75.116468, 40.08171 ], [ -75.116419, 40.08177 ], [ -75.113588, 40.083259 ], [ -75.113678, 40.083461 ], [ -75.113951, 40.084077 ], [ -75.114023, 40.084232 ], [ -75.114148, 40.084534 ], [ -75.114198, 40.084635 ], [ -75.114246, 40.084714 ], [ -75.114826, 40.085448 ], [ -75.113811, 40.085705 ], [ -75.113379, 40.085811 ], [ -75.112937, 40.085916 ], [ -75.112014, 40.086141 ], [ -75.111721, 40.086211 ], [ -75.111623, 40.086247 ], [ -75.111569, 40.086271 ], [ -75.111508, 40.086299 ], [ -75.111378, 40.086374 ], [ -75.110519, 40.08683 ], [ -75.106627, 40.088921 ], [ -75.105533, 40.089503 ], [ -75.105369, 40.08958 ], [ -75.105099, 40.089386 ], [ -75.104742, 40.089105 ], [ -75.104562, 40.088927 ], [ -75.103842, 40.088163 ], [ -75.10323, 40.087554 ], [ -75.102991, 40.08735 ], [ -75.102587, 40.087084 ], [ -75.102476, 40.087026 ], [ -75.102212, 40.086887 ], [ -75.102038, 40.086805 ], [ -75.1016, 40.086613 ], [ -75.10126, 40.086517 ], [ -75.100392, 40.086268 ], [ -75.099758, 40.086084 ], [ -75.0985, 40.085705 ], [ -75.097538, 40.086692 ], [ -75.097112, 40.087115 ], [ -75.09701, 40.087213 ], [ -75.09612, 40.088127 ], [ -75.095394, 40.088861 ], [ -75.094366, 40.089922 ], [ -75.094293, 40.089994 ], [ -75.094237, 40.090052 ], [ -75.09419, 40.090089 ], [ -75.094143, 40.090121 ], [ -75.094107, 40.090142 ], [ -75.094062, 40.090159 ], [ -75.094006, 40.090181 ], [ -75.093953, 40.089718 ], [ -75.093936, 40.089566 ], [ -75.093918, 40.089455 ], [ -75.093868, 40.089237 ], [ -75.093868, 40.088991 ], [ -75.093818, 40.088918 ], [ -75.093797, 40.088511 ], [ -75.093769, 40.087787 ], [ -75.093738, 40.087122 ], [ -75.093707, 40.086465 ], [ -75.0937, 40.086306 ], [ -75.093674, 40.086034 ], [ -75.093655, 40.085817 ], [ -75.093615, 40.085536 ], [ -75.093599, 40.085396 ], [ -75.093559, 40.085093 ], [ -75.093514, 40.084828 ], [ -75.093505, 40.084779 ], [ -75.093536, 40.084714 ], [ -75.093532, 40.084695 ], [ -75.093484, 40.08459 ], [ -75.093432, 40.084475 ], [ -75.093355, 40.084334 ], [ -75.093223, 40.084165 ], [ -75.09293, 40.083825 ], [ -75.092862, 40.083744 ], [ -75.092791, 40.083655 ], [ -75.092772, 40.083643 ], [ -75.092709, 40.083626 ], [ -75.092652, 40.083579 ], [ -75.092565, 40.083507 ], [ -75.092204, 40.083205 ], [ -75.091527, 40.082629 ], [ -75.091477, 40.082587 ], [ -75.091063, 40.082236 ], [ -75.090738, 40.081961 ], [ -75.090012, 40.081343 ], [ -75.089673, 40.081055 ], [ -75.08927, 40.080712 ], [ -75.088963, 40.080452 ], [ -75.088794, 40.080303 ], [ -75.088708, 40.080229 ], [ -75.088641, 40.080169 ], [ -75.088428, 40.079977 ], [ -75.088123, 40.079716 ], [ -75.087981, 40.079587 ], [ -75.087782, 40.079414 ], [ -75.087711, 40.079352 ], [ -75.0873, 40.07899 ], [ -75.087107, 40.078815 ], [ -75.086917, 40.078646 ], [ -75.086722, 40.078481 ], [ -75.086451, 40.078258 ], [ -75.086134, 40.077965 ], [ -75.085642, 40.077537 ], [ -75.085237, 40.077194 ], [ -75.085225, 40.077155 ], [ -75.085219, 40.077116 ], [ -75.085212, 40.077076 ], [ -75.085077, 40.077107 ], [ -75.085028, 40.077102 ], [ -75.084937, 40.077081 ], [ -75.084797, 40.077048 ], [ -75.084555, 40.076999 ], [ -75.084506, 40.076964 ], [ -75.084493, 40.076959 ], [ -75.083864, 40.07683 ], [ -75.083799, 40.07684 ], [ -75.083385, 40.076747 ], [ -75.083238, 40.076716 ], [ -75.082862, 40.076627 ], [ -75.082597, 40.076564 ], [ -75.082461, 40.076533 ], [ -75.081935, 40.076421 ], [ -75.08178, 40.076384 ], [ -75.081698, 40.076356 ], [ -75.081668, 40.076342 ], [ -75.081621, 40.076315 ], [ -75.080914, 40.07589 ], [ -75.080171, 40.075455 ], [ -75.079185, 40.074847 ], [ -75.079036, 40.074761 ], [ -75.078665, 40.074543 ], [ -75.078316, 40.074346 ], [ -75.077598, 40.073913 ], [ -75.07694, 40.073512 ], [ -75.076546, 40.073284 ], [ -75.076301, 40.073143 ], [ -75.076157, 40.07306 ], [ -75.075913, 40.072912 ], [ -75.07588, 40.072892 ], [ -75.075298, 40.072601 ], [ -75.075038, 40.072472 ], [ -75.074496, 40.07221 ], [ -75.074045, 40.071996 ], [ -75.073173, 40.071563 ], [ -75.072299, 40.071141 ], [ -75.071438, 40.070726 ], [ -75.070433, 40.070236 ], [ -75.06893, 40.069506 ], [ -75.068125, 40.069114 ], [ -75.067839, 40.068971 ], [ -75.067523, 40.068816 ], [ -75.067355, 40.068725 ], [ -75.06707, 40.068559 ], [ -75.066943, 40.068484 ], [ -75.066791, 40.068394 ], [ -75.065856, 40.067842 ], [ -75.064483, 40.067015 ], [ -75.064076, 40.066776 ], [ -75.063951, 40.0667 ], [ -75.063935, 40.066662 ], [ -75.06382, 40.066579 ], [ -75.063623, 40.066455 ], [ -75.063596, 40.066438 ], [ -75.063546, 40.066412 ], [ -75.063487, 40.066387 ], [ -75.063429, 40.066387 ], [ -75.063047, 40.066142 ], [ -75.062646, 40.065892 ], [ -75.06251, 40.065808 ], [ -75.062178, 40.065601 ], [ -75.061687, 40.06529 ], [ -75.061326, 40.06507 ], [ -75.060358, 40.06446 ], [ -75.059629, 40.064007 ], [ -75.058995, 40.063607 ], [ -75.057696, 40.062785 ], [ -75.057293, 40.062532 ], [ -75.05638, 40.06196 ], [ -75.056154, 40.061816 ], [ -75.056062, 40.061762 ], [ -75.055005, 40.061177 ], [ -75.05418, 40.060725 ], [ -75.053347, 40.060263 ], [ -75.052397, 40.059737 ], [ -75.052033, 40.059543 ], [ -75.051683, 40.059349 ], [ -75.0516, 40.059303 ], [ -75.05059, 40.058761 ], [ -75.048657, 40.057714 ], [ -75.04856, 40.057662 ], [ -75.048166, 40.057449 ], [ -75.047803, 40.057255 ], [ -75.04773, 40.057216 ], [ -75.04759, 40.05714 ], [ -75.047455, 40.057067 ], [ -75.046994, 40.056819 ], [ -75.046854, 40.056746 ], [ -75.046694, 40.056657 ], [ -75.04652, 40.056568 ], [ -75.046384, 40.056495 ], [ -75.04604, 40.056305 ], [ -75.045506, 40.056011 ], [ -75.045264, 40.055878 ], [ -75.044495, 40.055461 ], [ -75.043641, 40.054998 ], [ -75.042838, 40.054561 ], [ -75.042707, 40.054493 ], [ -75.041978, 40.0541 ], [ -75.041534, 40.05386 ], [ -75.041123, 40.053636 ], [ -75.041053, 40.053598 ], [ -75.041016, 40.053537 ], [ -75.041001, 40.053529 ], [ -75.040755, 40.05341 ], [ -75.040665, 40.053364 ], [ -75.040611, 40.05336 ], [ -75.040278, 40.053177 ], [ -75.039715, 40.052882 ], [ -75.039065, 40.052541 ], [ -75.036574, 40.051176 ], [ -75.036211, 40.050978 ], [ -75.036052, 40.050897 ], [ -75.035347, 40.050516 ], [ -75.035056, 40.05036 ], [ -75.034698, 40.050167 ], [ -75.032752, 40.049116 ], [ -75.032315, 40.048879 ], [ -75.032152, 40.048789 ], [ -75.032009, 40.048699 ], [ -75.031905, 40.048618 ], [ -75.031827, 40.048539 ], [ -75.031764, 40.04846 ], [ -75.031692, 40.048356 ], [ -75.031641, 40.048261 ], [ -75.031618, 40.0482 ], [ -75.031596, 40.048134 ], [ -75.031583, 40.048044 ], [ -75.031582, 40.047978 ], [ -75.031589, 40.04791 ], [ -75.0316, 40.047837 ], [ -75.031619, 40.047733 ], [ -75.031654, 40.047582 ], [ -75.03172, 40.047303 ], [ -75.03177, 40.047087 ], [ -75.031797, 40.046944 ], [ -75.031821, 40.046813 ], [ -75.03183, 40.046744 ], [ -75.031832, 40.04669 ], [ -75.03183, 40.046603 ], [ -75.031825, 40.046492 ], [ -75.031815, 40.046406 ], [ -75.031807, 40.046324 ], [ -75.031791, 40.046254 ], [ -75.031769, 40.04618 ], [ -75.031747, 40.04611 ], [ -75.031736, 40.046084 ], [ -75.031705, 40.046006 ], [ -75.031664, 40.045913 ], [ -75.03163, 40.04585 ], [ -75.031596, 40.045788 ], [ -75.03157, 40.045747 ], [ -75.031521, 40.045674 ], [ -75.031352, 40.045449 ], [ -75.030986, 40.044961 ], [ -75.030537, 40.04437 ], [ -75.030177, 40.043898 ], [ -75.0298, 40.04341 ], [ -75.029417, 40.042897 ], [ -75.028941, 40.042279 ], [ -75.028599, 40.041806 ], [ -75.028278, 40.04135 ], [ -75.02794, 40.040833 ], [ -75.027896, 40.040734 ], [ -75.027866, 40.040666 ], [ -75.027838, 40.040602 ], [ -75.027587, 40.040037 ], [ -75.027312, 40.039401 ], [ -75.027014, 40.038753 ], [ -75.026759, 40.038211 ], [ -75.026676, 40.038041 ], [ -75.026594, 40.037867 ], [ -75.026121, 40.036894 ], [ -75.025958, 40.036544 ], [ -75.025883, 40.036396 ], [ -75.025812, 40.036277 ], [ -75.025476, 40.035787 ], [ -75.025359, 40.035608 ], [ -75.025157, 40.0353 ], [ -75.025595, 40.035073 ], [ -75.025903, 40.034913 ], [ -75.02628, 40.034718 ], [ -75.02654, 40.034583 ], [ -75.026819, 40.034438 ], [ -75.027071, 40.034301 ], [ -75.02739, 40.034137 ], [ -75.02771, 40.033975 ], [ -75.027993, 40.033831 ], [ -75.028247, 40.033698 ], [ -75.028517, 40.033558 ], [ -75.028804, 40.033409 ], [ -75.029127, 40.033243 ], [ -75.029748, 40.032923 ], [ -75.030295, 40.032641 ], [ -75.030909, 40.032323 ], [ -75.03145, 40.032039 ], [ -75.031939, 40.03179 ], [ -75.032454, 40.031518 ], [ -75.033043, 40.031223 ], [ -75.03358, 40.030943 ], [ -75.033875, 40.030787 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.03584, 40.029894 ], [ -75.035863, 40.029928 ], [ -75.0359, 40.02998 ], [ -75.036036, 40.030016 ], [ -75.036155, 40.029992 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307542", "route_id": "33" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.166115, 40.009829 ], [ -75.166031, 40.010195 ], [ -75.165959, 40.010329 ], [ -75.165339, 40.010619 ], [ -75.165119, 40.01072 ], [ -75.165019, 40.01076 ], [ -75.16454, 40.010979 ], [ -75.16424, 40.0109 ], [ -75.16431, 40.010519 ], [ -75.164439, 40.010049 ], [ -75.1646, 40.009329 ], [ -75.16477, 40.00859 ], [ -75.164929, 40.007819 ], [ -75.16508, 40.007099 ], [ -75.165199, 40.006549 ], [ -75.165249, 40.00634 ], [ -75.16541, 40.00561 ], [ -75.16559, 40.00497 ], [ -75.165599, 40.004919 ], [ -75.165609, 40.004859 ], [ -75.165749, 40.004129 ], [ -75.165779, 40.00398 ], [ -75.165789, 40.00389 ], [ -75.165819, 40.003759 ], [ -75.165829, 40.003669 ], [ -75.165909, 40.00329 ], [ -75.166009, 40.002849 ], [ -75.166109, 40.002429 ], [ -75.16625, 40.001709 ], [ -75.166419, 40.000949 ], [ -75.16653, 40.00047 ], [ -75.166549, 40.00039 ], [ -75.166589, 40.0002 ], [ -75.16667, 39.99983 ], [ -75.166899, 39.9987 ], [ -75.167049, 39.99804 ], [ -75.16725, 39.997209 ], [ -75.16739, 39.996459 ], [ -75.16756, 39.995639 ], [ -75.167719, 39.99498 ], [ -75.16778, 39.99471 ], [ -75.167819, 39.99455 ], [ -75.16787, 39.994329 ], [ -75.167939, 39.994029 ], [ -75.16806, 39.99347 ], [ -75.168129, 39.993069 ], [ -75.16824, 39.99256 ], [ -75.168439, 39.991589 ], [ -75.16855, 39.991059 ], [ -75.16865, 39.99056 ], [ -75.16881, 39.98995 ], [ -75.16892, 39.989559 ], [ -75.168969, 39.989279 ], [ -75.168979, 39.98924 ], [ -75.16899, 39.989199 ], [ -75.16913, 39.9885 ], [ -75.169159, 39.98832 ], [ -75.169199, 39.988119 ], [ -75.16923, 39.98796 ], [ -75.169289, 39.98768 ], [ -75.169299, 39.987639 ], [ -75.169419, 39.987039 ], [ -75.169569, 39.98643 ], [ -75.169839, 39.985 ], [ -75.169869, 39.984859 ], [ -75.17017, 39.983609 ], [ -75.170229, 39.98337 ], [ -75.170559, 39.981909 ], [ -75.17089, 39.980369 ], [ -75.17099, 39.97985 ], [ -75.171049, 39.979569 ], [ -75.170649, 39.979289 ], [ -75.170509, 39.979179 ], [ -75.17035, 39.978999 ], [ -75.17026, 39.978839 ], [ -75.169969, 39.978299 ], [ -75.16977, 39.977939 ], [ -75.1694, 39.97727 ], [ -75.1691, 39.976759 ], [ -75.16883, 39.97627 ], [ -75.16856, 39.975759 ], [ -75.168249, 39.975249 ], [ -75.168129, 39.97503 ], [ -75.16775, 39.974309 ], [ -75.167229, 39.97339 ], [ -75.167409, 39.972519 ], [ -75.167539, 39.97205 ], [ -75.167589, 39.971799 ], [ -75.16765, 39.97151 ], [ -75.167719, 39.97122 ], [ -75.167759, 39.971009 ], [ -75.16792, 39.970289 ], [ -75.167979, 39.969989 ], [ -75.168209, 39.96887 ], [ -75.16829, 39.96844 ], [ -75.168479, 39.96764 ], [ -75.168569, 39.967229 ], [ -75.16868, 39.96673 ], [ -75.168799, 39.966159 ], [ -75.16895, 39.965419 ], [ -75.168979, 39.96529 ], [ -75.16909, 39.964769 ], [ -75.169159, 39.964439 ], [ -75.16923, 39.96411 ], [ -75.169299, 39.96387 ], [ -75.16937, 39.9635 ], [ -75.169389, 39.9634 ], [ -75.169479, 39.96296 ], [ -75.16954, 39.9627 ], [ -75.16968, 39.96206 ], [ -75.16982, 39.961449 ], [ -75.16985, 39.961299 ], [ -75.169879, 39.961179 ], [ -75.169919, 39.960999 ], [ -75.170009, 39.96059 ], [ -75.17004, 39.96044 ], [ -75.170099, 39.960109 ], [ -75.17012, 39.960039 ], [ -75.17017, 39.95982 ], [ -75.17026, 39.959409 ], [ -75.170329, 39.9591 ], [ -75.17036, 39.958949 ], [ -75.170379, 39.95883 ], [ -75.17045, 39.95852 ], [ -75.170509, 39.95852 ], [ -75.170639, 39.958509 ], [ -75.170739, 39.958489 ], [ -75.17081, 39.95847 ], [ -75.17088, 39.95844 ], [ -75.170949, 39.958409 ], [ -75.17103, 39.95837 ], [ -75.17108, 39.95834 ], [ -75.171129, 39.958299 ], [ -75.171179, 39.95825 ], [ -75.171229, 39.95819 ], [ -75.171269, 39.958129 ], [ -75.1713, 39.958059 ], [ -75.171319, 39.957969 ], [ -75.17133, 39.95791 ], [ -75.17133, 39.957869 ], [ -75.171319, 39.95782 ], [ -75.171309, 39.957789 ], [ -75.1713, 39.95775 ], [ -75.17129, 39.95772 ], [ -75.171269, 39.957669 ], [ -75.17124, 39.95762 ], [ -75.17121, 39.957579 ], [ -75.171179, 39.95755 ], [ -75.17115, 39.95753 ], [ -75.171099, 39.957499 ], [ -75.171049, 39.95747 ], [ -75.171009, 39.95745 ], [ -75.17097, 39.957429 ], [ -75.17089, 39.957399 ], [ -75.170829, 39.95738 ], [ -75.1708, 39.95737 ], [ -75.17076, 39.95736 ], [ -75.17071, 39.95735 ], [ -75.17093, 39.956309 ], [ -75.17098, 39.95609 ], [ -75.171009, 39.955949 ], [ -75.171089, 39.955539 ], [ -75.171129, 39.95539 ], [ -75.17126, 39.95484 ], [ -75.1713, 39.95468 ], [ -75.171309, 39.954619 ], [ -75.171359, 39.95439 ], [ -75.17143, 39.95403 ], [ -75.17157, 39.953359 ], [ -75.17049, 39.95323 ], [ -75.170009, 39.953169 ], [ -75.16931, 39.953079 ], [ -75.16904, 39.95305 ], [ -75.16845, 39.952989 ], [ -75.16801, 39.95294 ], [ -75.16778, 39.952909 ], [ -75.167619, 39.95289 ], [ -75.16724, 39.95285 ], [ -75.16685, 39.9528 ], [ -75.165839, 39.95268 ], [ -75.16522, 39.95259 ], [ -75.165239, 39.95249 ], [ -75.165279, 39.95232 ], [ -75.165289, 39.95224 ], [ -75.165289, 39.952179 ], [ -75.165279, 39.952099 ], [ -75.16526, 39.952019 ], [ -75.165239, 39.95197 ], [ -75.165199, 39.951919 ], [ -75.165149, 39.95187 ], [ -75.165099, 39.951839 ], [ -75.165059, 39.951819 ], [ -75.165009, 39.9518 ], [ -75.16495, 39.95178 ], [ -75.16491, 39.95177 ], [ -75.164789, 39.951749 ], [ -75.164619, 39.951729 ], [ -75.16451, 39.951719 ], [ -75.16436, 39.95171 ], [ -75.164019, 39.95169 ], [ -75.16388, 39.95168 ], [ -75.16378, 39.951669 ], [ -75.163719, 39.951659 ], [ -75.163479, 39.95162 ], [ -75.163269, 39.95159 ], [ -75.16307, 39.951559 ], [ -75.162999, 39.951559 ], [ -75.16296, 39.951559 ], [ -75.162909, 39.951569 ], [ -75.16288, 39.951579 ], [ -75.16284, 39.9516 ], [ -75.162809, 39.95162 ], [ -75.16278, 39.951649 ], [ -75.16275, 39.95169 ], [ -75.162729, 39.951729 ], [ -75.1627, 39.951819 ], [ -75.162679, 39.95189 ], [ -75.16266, 39.951939 ], [ -75.162629, 39.952109 ], [ -75.162579, 39.95216 ], [ -75.16253, 39.952189 ], [ -75.162489, 39.952209 ], [ -75.16242, 39.95223 ], [ -75.16234, 39.95224 ], [ -75.16203, 39.952209 ], [ -75.161409, 39.95213 ], [ -75.15987, 39.951939 ], [ -75.158269, 39.951739 ], [ -75.15671, 39.951539 ], [ -75.1559, 39.95144 ], [ -75.15515, 39.95135 ], [ -75.15434, 39.95125 ], [ -75.15356, 39.95115 ], [ -75.15199, 39.95096 ], [ -75.151239, 39.950849 ], [ -75.150979, 39.95082 ], [ -75.15037, 39.950739 ], [ -75.149889, 39.950669 ], [ -75.149619, 39.95063 ], [ -75.149219, 39.950579 ], [ -75.14906, 39.950559 ], [ -75.148949, 39.95055 ], [ -75.14883, 39.951065 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307544", "route_id": "33" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.167577, 39.99563 ], [ -75.167457, 39.996188 ], [ -75.167228, 39.997205 ], [ -75.167047, 39.998055 ], [ -75.166884, 39.998705 ], [ -75.166572, 40.000187 ], [ -75.166528, 40.000402 ], [ -75.166489, 40.000578 ], [ -75.166407, 40.000935 ], [ -75.166397, 40.000997 ], [ -75.166252, 40.001669 ], [ -75.16608, 40.002416 ], [ -75.165896, 40.003267 ], [ -75.165894, 40.003279 ], [ -75.165816, 40.00364 ], [ -75.165756, 40.003926 ], [ -75.165566, 40.004838 ], [ -75.165388, 40.005603 ], [ -75.165233, 40.00635 ], [ -75.165067, 40.007101 ], [ -75.164909, 40.007844 ], [ -75.164741, 40.008593 ], [ -75.16458, 40.00933 ], [ -75.166182, 40.00954 ], [ -75.166115, 40.009829 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307545", "route_id": "33" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.14883, 39.951065 ], [ -75.14879, 39.95126 ], [ -75.148769, 39.951369 ], [ -75.148559, 39.952269 ], [ -75.14849, 39.95258 ], [ -75.148779, 39.95261 ], [ -75.149349, 39.95268 ], [ -75.149489, 39.9527 ], [ -75.14993, 39.95276 ], [ -75.150029, 39.95232 ], [ -75.15006, 39.952169 ], [ -75.1502, 39.95153 ], [ -75.150269, 39.951179 ], [ -75.150299, 39.95105 ], [ -75.15037, 39.950739 ], [ -75.150979, 39.95082 ], [ -75.151239, 39.950849 ], [ -75.15199, 39.95096 ], [ -75.15356, 39.95115 ], [ -75.15434, 39.95125 ], [ -75.15515, 39.95135 ], [ -75.1559, 39.95144 ], [ -75.15671, 39.951539 ], [ -75.158269, 39.951739 ], [ -75.15987, 39.951939 ], [ -75.161409, 39.95213 ], [ -75.16203, 39.952209 ], [ -75.16234, 39.95224 ], [ -75.162409, 39.952269 ], [ -75.16248, 39.95231 ], [ -75.16253, 39.952359 ], [ -75.162579, 39.952439 ], [ -75.162539, 39.952649 ], [ -75.16248, 39.952909 ], [ -75.16247, 39.952989 ], [ -75.16247, 39.95305 ], [ -75.16248, 39.953099 ], [ -75.162499, 39.95314 ], [ -75.16252, 39.953179 ], [ -75.16257, 39.95322 ], [ -75.162629, 39.953259 ], [ -75.16271, 39.953289 ], [ -75.162809, 39.95331 ], [ -75.162949, 39.95333 ], [ -75.16332, 39.95339 ], [ -75.163809, 39.953449 ], [ -75.164559, 39.953539 ], [ -75.16505, 39.95359 ], [ -75.16523, 39.953629 ], [ -75.16544, 39.95367 ], [ -75.16554, 39.95369 ], [ -75.166089, 39.95376 ], [ -75.16635, 39.95379 ], [ -75.166629, 39.953819 ], [ -75.16721, 39.95388 ], [ -75.167619, 39.95393 ], [ -75.16828, 39.954009 ], [ -75.16836, 39.95402 ], [ -75.168799, 39.954069 ], [ -75.169059, 39.954099 ], [ -75.16936, 39.95414 ], [ -75.169559, 39.954169 ], [ -75.169739, 39.954189 ], [ -75.170829, 39.95432 ], [ -75.171359, 39.95439 ], [ -75.17234, 39.954519 ], [ -75.173019, 39.954609 ], [ -75.172979, 39.95483 ], [ -75.17296, 39.954909 ], [ -75.172929, 39.955069 ], [ -75.17282, 39.955589 ], [ -75.1727, 39.95609 ], [ -75.17259, 39.95654 ], [ -75.172399, 39.95744 ], [ -75.17225, 39.958049 ], [ -75.172179, 39.958319 ], [ -75.172039, 39.95888 ], [ -75.172029, 39.958949 ], [ -75.17201, 39.959039 ], [ -75.17197, 39.95918 ], [ -75.171949, 39.959299 ], [ -75.171809, 39.959929 ], [ -75.171769, 39.960029 ], [ -75.171729, 39.960189 ], [ -75.171679, 39.96035 ], [ -75.1716, 39.9608 ], [ -75.17152, 39.961169 ], [ -75.171449, 39.96149 ], [ -75.17143, 39.96159 ], [ -75.171269, 39.962259 ], [ -75.17117, 39.962739 ], [ -75.17108, 39.963189 ], [ -75.17097, 39.9636 ], [ -75.170949, 39.96369 ], [ -75.170869, 39.964089 ], [ -75.17081, 39.964329 ], [ -75.17075, 39.964619 ], [ -75.170679, 39.964979 ], [ -75.17054, 39.965589 ], [ -75.170379, 39.96635 ], [ -75.17031, 39.96664 ], [ -75.170239, 39.9669 ], [ -75.170229, 39.96699 ], [ -75.170199, 39.967119 ], [ -75.17017, 39.967239 ], [ -75.16977, 39.96907 ], [ -75.16954, 39.970179 ], [ -75.16941, 39.970719 ], [ -75.16926, 39.9714 ], [ -75.169199, 39.971709 ], [ -75.16913, 39.97202 ], [ -75.16908, 39.972269 ], [ -75.168969, 39.972719 ], [ -75.16887, 39.9732 ], [ -75.168669, 39.97322 ], [ -75.167909, 39.97331 ], [ -75.167579, 39.973349 ], [ -75.167229, 39.97339 ], [ -75.167139, 39.973789 ], [ -75.167049, 39.974239 ], [ -75.16697, 39.974599 ], [ -75.166899, 39.974879 ], [ -75.16685, 39.975129 ], [ -75.166769, 39.975509 ], [ -75.166679, 39.97591 ], [ -75.16662, 39.97618 ], [ -75.166459, 39.97688 ], [ -75.166149, 39.978299 ], [ -75.166049, 39.978759 ], [ -75.16595, 39.979199 ], [ -75.16585, 39.979729 ], [ -75.165519, 39.981249 ], [ -75.165429, 39.981639 ], [ -75.165389, 39.98184 ], [ -75.16536, 39.98195 ], [ -75.16517, 39.982709 ], [ -75.16508, 39.98311 ], [ -75.164839, 39.98421 ], [ -75.164749, 39.984669 ], [ -75.16464, 39.985149 ], [ -75.16451, 39.98579 ], [ -75.165289, 39.98589 ], [ -75.166089, 39.986 ], [ -75.16675, 39.98607 ], [ -75.1673, 39.986139 ], [ -75.16797, 39.986209 ], [ -75.167619, 39.987749 ], [ -75.167259, 39.98934 ], [ -75.16694, 39.990899 ], [ -75.167529, 39.99095 ], [ -75.167729, 39.990969 ], [ -75.167849, 39.990979 ], [ -75.16855, 39.991059 ], [ -75.168439, 39.991589 ], [ -75.16824, 39.99256 ], [ -75.168129, 39.993069 ], [ -75.16806, 39.99347 ], [ -75.167939, 39.994029 ], [ -75.16787, 39.994329 ], [ -75.167819, 39.99455 ], [ -75.16778, 39.99471 ], [ -75.167719, 39.99498 ], [ -75.16756, 39.995639 ], [ -75.16739, 39.996459 ], [ -75.16725, 39.997209 ], [ -75.167049, 39.99804 ], [ -75.166899, 39.9987 ], [ -75.16667, 39.99983 ], [ -75.166589, 40.0002 ], [ -75.166549, 40.00039 ], [ -75.16653, 40.00047 ], [ -75.166419, 40.000949 ], [ -75.16625, 40.001709 ], [ -75.166109, 40.002429 ], [ -75.166009, 40.002849 ], [ -75.165909, 40.00329 ], [ -75.165829, 40.003669 ], [ -75.165819, 40.003759 ], [ -75.165789, 40.00389 ], [ -75.165779, 40.00398 ], [ -75.165749, 40.004129 ], [ -75.165609, 40.004859 ], [ -75.165599, 40.004919 ], [ -75.16559, 40.00497 ], [ -75.16541, 40.00561 ], [ -75.165249, 40.00634 ], [ -75.165199, 40.006549 ], [ -75.16508, 40.007099 ], [ -75.164929, 40.007819 ], [ -75.16477, 40.00859 ], [ -75.1646, 40.009329 ], [ -75.166179, 40.009529 ], [ -75.166115, 40.009838 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307546", "route_id": "33" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.14883, 39.951065 ], [ -75.14879, 39.95126 ], [ -75.148769, 39.951369 ], [ -75.148559, 39.952269 ], [ -75.14849, 39.95258 ], [ -75.148779, 39.95261 ], [ -75.149349, 39.95268 ], [ -75.149489, 39.9527 ], [ -75.14993, 39.95276 ], [ -75.150029, 39.95232 ], [ -75.15006, 39.952169 ], [ -75.1502, 39.95153 ], [ -75.150269, 39.951179 ], [ -75.150299, 39.95105 ], [ -75.15037, 39.950739 ], [ -75.150979, 39.95082 ], [ -75.151239, 39.950849 ], [ -75.15199, 39.95096 ], [ -75.15356, 39.95115 ], [ -75.15434, 39.95125 ], [ -75.15515, 39.95135 ], [ -75.1559, 39.95144 ], [ -75.15671, 39.951539 ], [ -75.158269, 39.951739 ], [ -75.15987, 39.951939 ], [ -75.161409, 39.95213 ], [ -75.16203, 39.952209 ], [ -75.16234, 39.95224 ], [ -75.162409, 39.952269 ], [ -75.16248, 39.95231 ], [ -75.16253, 39.952359 ], [ -75.162579, 39.952439 ], [ -75.162539, 39.952649 ], [ -75.16248, 39.952909 ], [ -75.16247, 39.952989 ], [ -75.16247, 39.95305 ], [ -75.16248, 39.953099 ], [ -75.162499, 39.95314 ], [ -75.16252, 39.953179 ], [ -75.16257, 39.95322 ], [ -75.162629, 39.953259 ], [ -75.16271, 39.953289 ], [ -75.162809, 39.95331 ], [ -75.162949, 39.95333 ], [ -75.16332, 39.95339 ], [ -75.163809, 39.953449 ], [ -75.164559, 39.953539 ], [ -75.16505, 39.95359 ], [ -75.16523, 39.953629 ], [ -75.16544, 39.95367 ], [ -75.16554, 39.95369 ], [ -75.166089, 39.95376 ], [ -75.16635, 39.95379 ], [ -75.166629, 39.953819 ], [ -75.16721, 39.95388 ], [ -75.167619, 39.95393 ], [ -75.16828, 39.954009 ], [ -75.16836, 39.95402 ], [ -75.168799, 39.954069 ], [ -75.169059, 39.954099 ], [ -75.16936, 39.95414 ], [ -75.169559, 39.954169 ], [ -75.169739, 39.954189 ], [ -75.170829, 39.95432 ], [ -75.171359, 39.95439 ], [ -75.17234, 39.954519 ], [ -75.173019, 39.954609 ], [ -75.172979, 39.95483 ], [ -75.17296, 39.954909 ], [ -75.172929, 39.955069 ], [ -75.17282, 39.955589 ], [ -75.1727, 39.95609 ], [ -75.17259, 39.95654 ], [ -75.172399, 39.95744 ], [ -75.17225, 39.958049 ], [ -75.172179, 39.958319 ], [ -75.172039, 39.95888 ], [ -75.172029, 39.958949 ], [ -75.17201, 39.959039 ], [ -75.17197, 39.95918 ], [ -75.171949, 39.959299 ], [ -75.171809, 39.959929 ], [ -75.171769, 39.960029 ], [ -75.171729, 39.960189 ], [ -75.171679, 39.96035 ], [ -75.1716, 39.9608 ], [ -75.17152, 39.961169 ], [ -75.171449, 39.96149 ], [ -75.17143, 39.96159 ], [ -75.171269, 39.962259 ], [ -75.17117, 39.962739 ], [ -75.17108, 39.963189 ], [ -75.17097, 39.9636 ], [ -75.170949, 39.96369 ], [ -75.170869, 39.964089 ], [ -75.17081, 39.964329 ], [ -75.17075, 39.964619 ], [ -75.170679, 39.964979 ], [ -75.17054, 39.965589 ], [ -75.170379, 39.96635 ], [ -75.17031, 39.96664 ], [ -75.170239, 39.9669 ], [ -75.170229, 39.96699 ], [ -75.170199, 39.967119 ], [ -75.17017, 39.967239 ], [ -75.16977, 39.96907 ], [ -75.16954, 39.970179 ], [ -75.16941, 39.970719 ], [ -75.16926, 39.9714 ], [ -75.169199, 39.971709 ], [ -75.16913, 39.97202 ], [ -75.16908, 39.972269 ], [ -75.168969, 39.972719 ], [ -75.16887, 39.9732 ], [ -75.168669, 39.97322 ], [ -75.167909, 39.97331 ], [ -75.167579, 39.973349 ], [ -75.167229, 39.97339 ], [ -75.167139, 39.973789 ], [ -75.167049, 39.974239 ], [ -75.16697, 39.974599 ], [ -75.166899, 39.974879 ], [ -75.16685, 39.975129 ], [ -75.166769, 39.975509 ], [ -75.166679, 39.97591 ], [ -75.16662, 39.97618 ], [ -75.166459, 39.97688 ], [ -75.166149, 39.978299 ], [ -75.166049, 39.978759 ], [ -75.16595, 39.979199 ], [ -75.16585, 39.979729 ], [ -75.165519, 39.981249 ], [ -75.165429, 39.981639 ], [ -75.165389, 39.98184 ], [ -75.16536, 39.98195 ], [ -75.16517, 39.982709 ], [ -75.16508, 39.98311 ], [ -75.164839, 39.98421 ], [ -75.164749, 39.984669 ], [ -75.16464, 39.985149 ], [ -75.16451, 39.98579 ], [ -75.165289, 39.98589 ], [ -75.166089, 39.986 ], [ -75.16675, 39.98607 ], [ -75.1673, 39.986139 ], [ -75.16797, 39.986209 ], [ -75.167619, 39.987749 ], [ -75.167259, 39.98934 ], [ -75.16694, 39.990899 ], [ -75.167529, 39.99095 ], [ -75.167729, 39.990969 ], [ -75.167849, 39.990979 ], [ -75.16855, 39.991059 ], [ -75.168439, 39.991589 ], [ -75.16824, 39.99256 ], [ -75.168129, 39.993069 ], [ -75.16806, 39.99347 ], [ -75.167939, 39.994029 ], [ -75.16787, 39.994329 ], [ -75.167819, 39.99455 ], [ -75.16778, 39.99471 ], [ -75.167719, 39.99498 ], [ -75.16756, 39.995639 ], [ -75.16739, 39.996459 ], [ -75.16725, 39.997209 ], [ -75.167049, 39.99804 ], [ -75.166899, 39.9987 ], [ -75.16667, 39.99983 ], [ -75.166589, 40.0002 ], [ -75.166549, 40.00039 ], [ -75.16653, 40.00047 ], [ -75.166419, 40.000949 ], [ -75.16625, 40.001709 ], [ -75.166109, 40.002429 ], [ -75.166009, 40.002849 ], [ -75.165909, 40.00329 ], [ -75.165829, 40.003669 ], [ -75.165819, 40.003759 ], [ -75.165789, 40.00389 ], [ -75.165779, 40.00398 ], [ -75.165749, 40.004129 ], [ -75.165609, 40.004859 ], [ -75.165599, 40.004919 ], [ -75.16559, 40.00497 ], [ -75.16541, 40.00561 ], [ -75.165249, 40.00634 ], [ -75.165199, 40.006549 ], [ -75.16508, 40.007099 ], [ -75.164929, 40.007819 ], [ -75.16477, 40.00859 ], [ -75.1646, 40.009329 ], [ -75.166179, 40.009529 ], [ -75.166115, 40.009847 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307567", "route_id": "39" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.186043, 39.992006 ], [ -75.186032, 39.991982 ], [ -75.185914, 39.991726 ], [ -75.18584, 39.99172 ], [ -75.185782, 39.991715 ], [ -75.185614, 39.9917 ], [ -75.184697, 39.991606 ], [ -75.183934, 39.991505 ], [ -75.183107, 39.991427 ], [ -75.182949, 39.991413 ], [ -75.18151, 39.991205 ], [ -75.180943, 39.991129 ], [ -75.18045, 39.991057 ], [ -75.179893, 39.990983 ], [ -75.179402, 39.990929 ], [ -75.17826, 39.99077 ], [ -75.177208, 39.990627 ], [ -75.176865, 39.990589 ], [ -75.175248, 39.990385 ], [ -75.174588, 39.990303 ], [ -75.17365, 39.990182 ], [ -75.173191, 39.990117 ], [ -75.172704, 39.99004 ], [ -75.17213, 39.989968 ], [ -75.171848, 39.989931 ], [ -75.171638, 39.989903 ], [ -75.171134, 39.989833 ], [ -75.170238, 39.989725 ], [ -75.169466, 39.989627 ], [ -75.168904, 39.989556 ], [ -75.168322, 39.989491 ], [ -75.168146, 39.98947 ], [ -75.167868, 39.989433 ], [ -75.167301, 39.989359 ], [ -75.166652, 39.989273 ], [ -75.166433, 39.989239 ], [ -75.166078, 39.989174 ], [ -75.165414, 39.989081 ], [ -75.164847, 39.989007 ], [ -75.1646, 39.988977 ], [ -75.164412, 39.988956 ], [ -75.163845, 39.98889 ], [ -75.163288, 39.988817 ], [ -75.162832, 39.988758 ], [ -75.162285, 39.988687 ], [ -75.161726, 39.988614 ], [ -75.161256, 39.988554 ], [ -75.160729, 39.988485 ], [ -75.160201, 39.988425 ], [ -75.159909, 39.988389 ], [ -75.159688, 39.988357 ], [ -75.159131, 39.988276 ], [ -75.158341, 39.988178 ], [ -75.157562, 39.988085 ], [ -75.156761, 39.987981 ], [ -75.155868, 39.987899 ], [ -75.155493, 39.98784 ], [ -75.155098, 39.987781 ], [ -75.154578, 39.987708 ], [ -75.154175, 39.987646 ], [ -75.153723, 39.98759 ], [ -75.153412, 39.987551 ], [ -75.153134, 39.987521 ], [ -75.152928, 39.987496 ], [ -75.152678, 39.987466 ], [ -75.152142, 39.987395 ], [ -75.150921, 39.987235 ], [ -75.150576, 39.987196 ], [ -75.148992, 39.987002 ], [ -75.148247, 39.986905 ], [ -75.147415, 39.986792 ], [ -75.146438, 39.986661 ], [ -75.145808, 39.986574 ], [ -75.145386, 39.986529 ], [ -75.145134, 39.986498 ], [ -75.14432, 39.986377 ], [ -75.143512, 39.98627 ], [ -75.142838, 39.986191 ], [ -75.142489, 39.986146 ], [ -75.142192, 39.986111 ], [ -75.141516, 39.986011 ], [ -75.141258, 39.987249 ], [ -75.141221, 39.987423 ], [ -75.141205, 39.987511 ], [ -75.141129, 39.987838 ], [ -75.140874, 39.989011 ], [ -75.140546, 39.990508 ], [ -75.140281, 39.991738 ], [ -75.140198, 39.992132 ], [ -75.139961, 39.992105 ], [ -75.139697, 39.992076 ], [ -75.139258, 39.992014 ], [ -75.13913, 39.991998 ], [ -75.138793, 39.991955 ], [ -75.138533, 39.991921 ], [ -75.138329, 39.991895 ], [ -75.138181, 39.991875 ], [ -75.137836, 39.991828 ], [ -75.137333, 39.991764 ], [ -75.137069, 39.991726 ], [ -75.136913, 39.991704 ], [ -75.136288, 39.991614 ], [ -75.136152, 39.991592 ], [ -75.136383, 39.990536 ], [ -75.136505, 39.989971 ], [ -75.136568, 39.98965 ], [ -75.136626, 39.98936 ], [ -75.136665, 39.989149 ], [ -75.136813, 39.988482 ], [ -75.13713, 39.98699 ], [ -75.137445, 39.985487 ], [ -75.137363, 39.985478 ], [ -75.136771, 39.985397 ], [ -75.136173, 39.985327 ], [ -75.135631, 39.985256 ], [ -75.135082, 39.985188 ], [ -75.134664, 39.985132 ], [ -75.13417, 39.98507 ], [ -75.134023, 39.985048 ], [ -75.133706, 39.985003 ], [ -75.133479, 39.984975 ], [ -75.133237, 39.984947 ], [ -75.132724, 39.984874 ], [ -75.132415, 39.984826 ], [ -75.132241, 39.984798 ], [ -75.132145, 39.984777 ], [ -75.131594, 39.985026 ], [ -75.131063, 39.985334 ], [ -75.130457, 39.985613 ], [ -75.12987, 39.985907 ], [ -75.129291, 39.986215 ], [ -75.129033, 39.986357 ], [ -75.128714, 39.986528 ], [ -75.127862, 39.985572 ], [ -75.127021, 39.984608 ], [ -75.126213, 39.983691 ], [ -75.126018, 39.983467 ], [ -75.125845, 39.983244 ], [ -75.125427, 39.982862 ], [ -75.125309, 39.982693 ], [ -75.12508, 39.982372 ], [ -75.12444, 39.981659 ], [ -75.124217, 39.981425 ], [ -75.123882, 39.981018 ], [ -75.12331, 39.980343 ], [ -75.122461, 39.979417 ], [ -75.1216, 39.978449 ], [ -75.121039, 39.97782 ], [ -75.1203, 39.976982 ], [ -75.119779, 39.976365 ], [ -75.119525, 39.976085 ], [ -75.119295, 39.975821 ], [ -75.11904, 39.975531 ], [ -75.118759, 39.975215 ], [ -75.118479, 39.974886 ], [ -75.118459, 39.974829 ], [ -75.118357, 39.974606 ], [ -75.118313, 39.97454 ], [ -75.118284, 39.974491 ], [ -75.118206, 39.974376 ], [ -75.118181, 39.974343 ], [ -75.118112, 39.974238 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307568", "route_id": "39" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.118112, 39.974238 ], [ -75.118033, 39.974284 ], [ -75.117313, 39.974658 ], [ -75.116714, 39.97497 ], [ -75.116192, 39.975238 ], [ -75.116115, 39.975279 ], [ -75.115631, 39.975535 ], [ -75.115732, 39.975645 ], [ -75.115854, 39.975774 ], [ -75.115931, 39.975854 ], [ -75.116168, 39.97611 ], [ -75.116458, 39.976424 ], [ -75.116744, 39.976748 ], [ -75.11723, 39.977298 ], [ -75.117505, 39.977618 ], [ -75.117932, 39.978111 ], [ -75.118269, 39.97847 ], [ -75.118625, 39.978868 ], [ -75.119147, 39.979518 ], [ -75.11926, 39.979645 ], [ -75.120131, 39.98063 ], [ -75.120967, 39.981552 ], [ -75.121268, 39.981898 ], [ -75.121558, 39.982215 ], [ -75.122087, 39.982853 ], [ -75.122734, 39.983503 ], [ -75.12335, 39.984215 ], [ -75.123657, 39.984559 ], [ -75.12377, 39.984707 ], [ -75.123919, 39.984902 ], [ -75.124119, 39.985158 ], [ -75.124192, 39.985246 ], [ -75.124288, 39.985333 ], [ -75.124384, 39.985417 ], [ -75.124755, 39.985814 ], [ -75.124896, 39.985988 ], [ -75.125135, 39.986312 ], [ -75.125564, 39.986776 ], [ -75.126299, 39.987579 ], [ -75.12643, 39.987746 ], [ -75.127294, 39.988823 ], [ -75.127913, 39.988479 ], [ -75.128478, 39.988174 ], [ -75.129599, 39.987544 ], [ -75.129911, 39.987378 ], [ -75.130218, 39.987216 ], [ -75.130479, 39.987066 ], [ -75.130723, 39.986929 ], [ -75.13101, 39.986775 ], [ -75.131335, 39.986601 ], [ -75.131609, 39.986452 ], [ -75.131641, 39.986435 ], [ -75.131739, 39.986362 ], [ -75.131834, 39.986284 ], [ -75.131852, 39.986238 ], [ -75.131872, 39.986183 ], [ -75.131896, 39.986098 ], [ -75.131909, 39.986047 ], [ -75.132044, 39.985277 ], [ -75.132145, 39.984777 ], [ -75.132155, 39.984723 ], [ -75.132171, 39.98467 ], [ -75.132505, 39.983208 ], [ -75.132686, 39.983232 ], [ -75.133074, 39.983284 ], [ -75.133588, 39.983352 ], [ -75.13452, 39.983477 ], [ -75.13543, 39.983591 ], [ -75.135972, 39.983667 ], [ -75.136511, 39.983737 ], [ -75.137098, 39.983813 ], [ -75.137723, 39.983892 ], [ -75.137795, 39.9839 ], [ -75.137884, 39.983913 ], [ -75.138442, 39.983981 ], [ -75.139031, 39.984058 ], [ -75.139527, 39.984124 ], [ -75.140027, 39.984193 ], [ -75.140486, 39.984255 ], [ -75.140945, 39.984317 ], [ -75.141387, 39.984365 ], [ -75.141868, 39.984427 ], [ -75.142384, 39.984491 ], [ -75.142518, 39.984528 ], [ -75.142809, 39.984567 ], [ -75.143177, 39.984618 ], [ -75.143867, 39.984705 ], [ -75.144049, 39.984727 ], [ -75.14465, 39.9848 ], [ -75.145468, 39.984902 ], [ -75.146093, 39.984981 ], [ -75.146778, 39.985073 ], [ -75.147272, 39.985139 ], [ -75.147759, 39.985205 ], [ -75.148274, 39.985273 ], [ -75.148557, 39.985293 ], [ -75.149341, 39.985394 ], [ -75.150185, 39.985503 ], [ -75.150911, 39.985595 ], [ -75.151718, 39.985699 ], [ -75.152481, 39.985817 ], [ -75.153272, 39.985928 ], [ -75.153716, 39.985986 ], [ -75.154058, 39.986031 ], [ -75.154966, 39.986123 ], [ -75.155198, 39.986168 ], [ -75.155424, 39.98618 ], [ -75.156219, 39.98628 ], [ -75.157139, 39.986396 ], [ -75.157493, 39.986459 ], [ -75.157894, 39.986534 ], [ -75.158684, 39.986632 ], [ -75.159106, 39.986683 ], [ -75.159493, 39.98673 ], [ -75.160032, 39.986796 ], [ -75.160506, 39.986855 ], [ -75.161045, 39.986923 ], [ -75.16162, 39.986996 ], [ -75.162067, 39.987054 ], [ -75.162617, 39.987125 ], [ -75.163172, 39.987193 ], [ -75.163429, 39.987224 ], [ -75.163629, 39.987247 ], [ -75.164181, 39.987311 ], [ -75.164964, 39.98741 ], [ -75.165765, 39.987519 ], [ -75.166442, 39.987612 ], [ -75.166981, 39.987694 ], [ -75.167648, 39.987778 ], [ -75.167301, 39.989359 ], [ -75.166963, 39.990843 ], [ -75.167532, 39.990925 ], [ -75.167868, 39.990961 ], [ -75.168557, 39.991043 ], [ -75.169227, 39.991126 ], [ -75.16944, 39.99115 ], [ -75.170793, 39.991335 ], [ -75.171745, 39.991464 ], [ -75.173319, 39.991669 ], [ -75.174911, 39.991873 ], [ -75.176523, 39.992087 ], [ -75.177337, 39.992188 ], [ -75.177939, 39.99227 ], [ -75.17848, 39.99234 ], [ -75.178962, 39.9924 ], [ -75.179102, 39.992419 ], [ -75.179571, 39.992475 ], [ -75.180143, 39.992554 ], [ -75.180624, 39.992618 ], [ -75.181185, 39.992692 ], [ -75.18176, 39.992768 ], [ -75.182183, 39.992824 ], [ -75.182784, 39.992895 ], [ -75.183317, 39.99296 ], [ -75.183801, 39.993018 ], [ -75.184373, 39.993092 ], [ -75.184908, 39.993173 ], [ -75.185164, 39.993207 ], [ -75.185403, 39.993238 ], [ -75.186024, 39.993309 ], [ -75.186177, 39.99275 ], [ -75.186154, 39.992246 ], [ -75.186043, 39.992006 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307581", "route_id": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.073506, 39.997304 ], [ -75.072946, 39.997586 ], [ -75.072396, 39.997879 ], [ -75.071837, 39.998166 ], [ -75.070998, 39.998591 ], [ -75.071606, 39.999407 ], [ -75.072105, 40.000081 ], [ -75.072513, 40.000643 ], [ -75.072857, 40.001104 ], [ -75.073176, 40.001525 ], [ -75.073543, 40.002026 ], [ -75.073606, 40.002114 ], [ -75.073732, 40.002283 ], [ -75.074019, 40.002683 ], [ -75.074322, 40.00309 ], [ -75.074378, 40.003164 ], [ -75.075316, 40.004433 ], [ -75.075405, 40.004546 ], [ -75.075473, 40.004652 ], [ -75.075488, 40.004683 ], [ -75.075533, 40.004791 ], [ -75.07555, 40.004856 ], [ -75.075561, 40.004901 ], [ -75.07558, 40.004971 ], [ -75.075627, 40.005168 ], [ -75.07564, 40.005222 ], [ -75.075661, 40.005319 ], [ -75.075674, 40.005386 ], [ -75.075685, 40.005424 ], [ -75.075696, 40.005461 ], [ -75.075715, 40.005525 ], [ -75.075732, 40.005579 ], [ -75.075755, 40.005654 ], [ -75.075775, 40.005733 ], [ -75.075893, 40.006234 ], [ -75.075914, 40.006315 ], [ -75.076055, 40.006997 ], [ -75.076191, 40.007655 ], [ -75.076354, 40.008334 ], [ -75.076511, 40.009091 ], [ -75.076535, 40.009197 ], [ -75.076683, 40.009834 ], [ -75.076867, 40.010498 ], [ -75.077013, 40.011113 ], [ -75.077069, 40.011334 ], [ -75.077334, 40.012474 ], [ -75.07743, 40.012886 ], [ -75.077517, 40.013334 ], [ -75.077527, 40.01336 ], [ -75.077547, 40.01339 ], [ -75.077578, 40.013414 ], [ -75.077652, 40.013456 ], [ -75.078299, 40.013822 ], [ -75.079469, 40.01446 ], [ -75.080174, 40.014855 ], [ -75.080958, 40.01529 ], [ -75.082355, 40.016062 ], [ -75.083651, 40.016767 ], [ -75.083779, 40.016749 ], [ -75.083857, 40.01674 ], [ -75.083955, 40.016742 ], [ -75.084054, 40.016752 ], [ -75.084147, 40.016774 ], [ -75.084234, 40.01681 ], [ -75.084711, 40.01704 ], [ -75.085539, 40.017483 ], [ -75.086309, 40.017908 ], [ -75.087666, 40.018688 ], [ -75.088562, 40.019189 ], [ -75.089711, 40.019853 ], [ -75.090769, 40.020541 ], [ -75.091495, 40.021015 ], [ -75.091805, 40.021222 ], [ -75.091996, 40.021353 ], [ -75.092135, 40.021436 ], [ -75.092933, 40.021949 ], [ -75.093358, 40.022237 ], [ -75.093431, 40.022284 ], [ -75.09377, 40.022504 ], [ -75.09503, 40.023333 ], [ -75.095536, 40.024164 ], [ -75.095762, 40.024549 ], [ -75.095822, 40.024643 ], [ -75.095883, 40.02473 ], [ -75.095912, 40.024768 ], [ -75.095948, 40.024806 ], [ -75.096027, 40.024884 ], [ -75.096584, 40.02541 ], [ -75.096912, 40.025711 ], [ -75.09697, 40.025873 ], [ -75.096965, 40.025932 ], [ -75.096944, 40.025996 ], [ -75.096935, 40.026016 ], [ -75.096871, 40.026147 ], [ -75.096817, 40.026267 ], [ -75.096741, 40.026469 ], [ -75.09673, 40.026519 ], [ -75.096728, 40.02657 ], [ -75.096733, 40.02662 ], [ -75.096743, 40.026665 ], [ -75.09676, 40.026717 ], [ -75.096885, 40.026759 ], [ -75.097019, 40.02681 ], [ -75.097218, 40.026897 ], [ -75.097315, 40.026948 ], [ -75.097397, 40.026993 ], [ -75.097586, 40.027106 ], [ -75.098164, 40.027492 ], [ -75.098688, 40.027843 ], [ -75.099618, 40.028447 ], [ -75.099898, 40.028635 ], [ -75.100507, 40.029045 ], [ -75.100814, 40.029244 ], [ -75.10121, 40.029491 ], [ -75.101339, 40.029561 ], [ -75.101481, 40.029634 ], [ -75.101592, 40.029685 ], [ -75.101716, 40.029737 ], [ -75.101869, 40.029793 ], [ -75.102053, 40.029855 ], [ -75.102221, 40.029903 ], [ -75.102277, 40.029917 ], [ -75.102398, 40.029948 ], [ -75.102554, 40.029989 ], [ -75.102736, 40.03001 ], [ -75.102902, 40.030028 ], [ -75.103214, 40.030051 ], [ -75.103332, 40.030055 ], [ -75.103522, 40.030058 ], [ -75.10372, 40.030048 ], [ -75.103757, 40.030046 ], [ -75.104, 40.030028 ], [ -75.104181, 40.030004 ], [ -75.104343, 40.029975 ], [ -75.104397, 40.029964 ], [ -75.104466, 40.029951 ], [ -75.104569, 40.029934 ], [ -75.104728, 40.029891 ], [ -75.104944, 40.029821 ], [ -75.105293, 40.029709 ], [ -75.10571, 40.029576 ], [ -75.106554, 40.029309 ], [ -75.10667, 40.02927 ], [ -75.106757, 40.029242 ], [ -75.107196, 40.029106 ], [ -75.107604, 40.02897 ], [ -75.108071, 40.028824 ], [ -75.109307, 40.028431 ], [ -75.110035, 40.0282 ], [ -75.111241, 40.027818 ], [ -75.111528, 40.027733 ], [ -75.111734, 40.027682 ], [ -75.111943, 40.027631 ], [ -75.112124, 40.027595 ], [ -75.112293, 40.027564 ], [ -75.112511, 40.02753 ], [ -75.112859, 40.027484 ], [ -75.113642, 40.02736 ], [ -75.113923, 40.027316 ], [ -75.114346, 40.027259 ], [ -75.114661, 40.02721 ], [ -75.115585, 40.027072 ], [ -75.116536, 40.026932 ], [ -75.117138, 40.026844 ], [ -75.11729, 40.026821 ], [ -75.117308, 40.026896 ], [ -75.117459, 40.027569 ], [ -75.117578, 40.028068 ], [ -75.117735, 40.028673 ], [ -75.118023, 40.029813 ], [ -75.11805, 40.029888 ], [ -75.11809, 40.029966 ], [ -75.118138, 40.030028 ], [ -75.118212, 40.030094 ], [ -75.11828, 40.030142 ], [ -75.118367, 40.030187 ], [ -75.118455, 40.030227 ], [ -75.118496, 40.030235 ], [ -75.11862, 40.030251 ], [ -75.119723, 40.030377 ], [ -75.120446, 40.030488 ], [ -75.121409, 40.030586 ], [ -75.1224, 40.030713 ], [ -75.123325, 40.030854 ], [ -75.123663, 40.030895 ], [ -75.124369, 40.03098 ], [ -75.124742, 40.031034 ], [ -75.125208, 40.031065 ], [ -75.126358, 40.031234 ], [ -75.126691, 40.029661 ], [ -75.126825, 40.029092 ], [ -75.126888, 40.028907 ], [ -75.127011, 40.028636 ], [ -75.12718, 40.028268 ], [ -75.127595, 40.027497 ], [ -75.127776, 40.027704 ], [ -75.128053, 40.027946 ], [ -75.128261, 40.028091 ], [ -75.128469, 40.028209 ], [ -75.128689, 40.028292 ], [ -75.128926, 40.02834 ], [ -75.12933, 40.028396 ], [ -75.130316, 40.028526 ], [ -75.130729, 40.028585 ], [ -75.131121, 40.028644 ], [ -75.132182, 40.028791 ], [ -75.133197, 40.028912 ], [ -75.133603, 40.028956 ], [ -75.134154, 40.029014 ], [ -75.135066, 40.029132 ], [ -75.13526, 40.029157 ], [ -75.135838, 40.02923 ], [ -75.13647, 40.029309 ], [ -75.13709, 40.029419 ], [ -75.13803, 40.029545 ], [ -75.138813, 40.029644 ], [ -75.139647, 40.029728 ], [ -75.140436, 40.029829 ], [ -75.14123, 40.029928 ], [ -75.142007, 40.030023 ], [ -75.14233, 40.03006 ], [ -75.142827, 40.03008 ], [ -75.143604, 40.030148 ], [ -75.144425, 40.030176 ], [ -75.1449, 40.030204 ], [ -75.145381, 40.030235 ], [ -75.145952, 40.030254 ], [ -75.146095, 40.030268 ], [ -75.146134, 40.030286 ], [ -75.146165, 40.030307 ], [ -75.146229, 40.030364 ], [ -75.146307, 40.030434 ], [ -75.14638, 40.030502 ], [ -75.146456, 40.030569 ], [ -75.146492, 40.030592 ], [ -75.146532, 40.030611 ], [ -75.14657, 40.030623 ], [ -75.146614, 40.030636 ], [ -75.146701, 40.030656 ], [ -75.147449, 40.030744 ], [ -75.148217, 40.030847 ], [ -75.148977, 40.03095 ], [ -75.14979, 40.031057 ], [ -75.150585, 40.031151 ], [ -75.151371, 40.031256 ], [ -75.152378, 40.031392 ], [ -75.153508, 40.031538 ], [ -75.153713, 40.031554 ], [ -75.15392, 40.031562 ], [ -75.1541, 40.031554 ], [ -75.1543, 40.031537 ], [ -75.154466, 40.03151 ], [ -75.154617, 40.031482 ], [ -75.154772, 40.03145 ], [ -75.155397, 40.032053 ], [ -75.155518, 40.032179 ], [ -75.155616, 40.032298 ], [ -75.155694, 40.032418 ], [ -75.155754, 40.032534 ], [ -75.155796, 40.032649 ], [ -75.155825, 40.032765 ], [ -75.155836, 40.032883 ], [ -75.155839, 40.033001 ], [ -75.155825, 40.033122 ], [ -75.155743, 40.033477 ], [ -75.155615, 40.034068 ], [ -75.155489, 40.034662 ], [ -75.155371, 40.035195 ], [ -75.155332, 40.0354 ], [ -75.155324, 40.035536 ], [ -75.155335, 40.035653 ], [ -75.155358, 40.035762 ], [ -75.155397, 40.035869 ], [ -75.155451, 40.035973 ], [ -75.155517, 40.036072 ], [ -75.15553, 40.036088 ], [ -75.155609, 40.036189 ], [ -75.15565, 40.036228 ], [ -75.155733, 40.0363 ], [ -75.155829, 40.036373 ], [ -75.155911, 40.036425 ], [ -75.155992, 40.036474 ], [ -75.156077, 40.036519 ], [ -75.156163, 40.036558 ], [ -75.156278, 40.036598 ], [ -75.156427, 40.03664 ], [ -75.156594, 40.036674 ], [ -75.156782, 40.036696 ], [ -75.157012, 40.036708 ], [ -75.157322, 40.036714 ], [ -75.157651, 40.036713 ], [ -75.15769, 40.036711 ], [ -75.157862, 40.036702 ], [ -75.158384, 40.036694 ], [ -75.158496, 40.0367 ], [ -75.15865, 40.036708 ], [ -75.159444, 40.036772 ], [ -75.160586, 40.036843 ], [ -75.162459, 40.036969 ], [ -75.16264, 40.036975 ], [ -75.162737, 40.036977 ], [ -75.162846, 40.036968 ], [ -75.163035, 40.036949 ], [ -75.163309, 40.036916 ], [ -75.163809, 40.036857 ], [ -75.163939, 40.036843 ], [ -75.164048, 40.036835 ], [ -75.164175, 40.036833 ], [ -75.164237, 40.036836 ], [ -75.1643, 40.036845 ], [ -75.165301, 40.037014 ], [ -75.167052, 40.037351 ], [ -75.167188, 40.037372 ], [ -75.16729, 40.037388 ], [ -75.167407, 40.037399 ], [ -75.167515, 40.037403 ], [ -75.167588, 40.037403 ], [ -75.167707, 40.037393 ], [ -75.167821, 40.037375 ], [ -75.167952, 40.03735 ], [ -75.168064, 40.037318 ], [ -75.168177, 40.037281 ], [ -75.168368, 40.037228 ], [ -75.168489, 40.0372 ], [ -75.168629, 40.037172 ], [ -75.168735, 40.037158 ], [ -75.168855, 40.037147 ], [ -75.168983, 40.037143 ], [ -75.169057, 40.037143 ], [ -75.169173, 40.037146 ], [ -75.16926, 40.037158 ], [ -75.169336, 40.037181 ], [ -75.169418, 40.037219 ], [ -75.169524, 40.037286 ], [ -75.169838, 40.037509 ], [ -75.169986, 40.037617 ], [ -75.170585, 40.038084 ], [ -75.171624, 40.038844 ], [ -75.172085, 40.038391 ], [ -75.173098, 40.037408 ], [ -75.173856, 40.036671 ], [ -75.174711, 40.035831 ], [ -75.175472, 40.035095 ], [ -75.175932, 40.034644 ], [ -75.176519, 40.034107 ], [ -75.176812, 40.033812 ], [ -75.177047, 40.033576 ], [ -75.177728, 40.032893 ], [ -75.178354, 40.032292 ], [ -75.178506, 40.032146 ], [ -75.178915, 40.031754 ], [ -75.179386, 40.031282 ], [ -75.180285, 40.030411 ], [ -75.180776, 40.02992 ], [ -75.180877, 40.02982 ], [ -75.180972, 40.029725 ], [ -75.18146, 40.02925 ], [ -75.18269, 40.028061 ], [ -75.182811, 40.027945 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307582", "route_id": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.182811, 40.027945 ], [ -75.183512, 40.027241 ], [ -75.18289, 40.026683 ], [ -75.181911, 40.025862 ], [ -75.181659, 40.025651 ], [ -75.181624, 40.025673 ], [ -75.18159, 40.0257 ], [ -75.181525, 40.025762 ], [ -75.181373, 40.025894 ], [ -75.180883, 40.02637 ], [ -75.179979, 40.027246 ], [ -75.179267, 40.02793 ], [ -75.178838, 40.028382 ], [ -75.178767, 40.02845 ], [ -75.178683, 40.028532 ], [ -75.178133, 40.029072 ], [ -75.179735, 40.030065 ], [ -75.180285, 40.030411 ], [ -75.179386, 40.031282 ], [ -75.178915, 40.031754 ], [ -75.178506, 40.032146 ], [ -75.178354, 40.032292 ], [ -75.177728, 40.032893 ], [ -75.177047, 40.033576 ], [ -75.176812, 40.033812 ], [ -75.176519, 40.034107 ], [ -75.175932, 40.034644 ], [ -75.175472, 40.035095 ], [ -75.174711, 40.035831 ], [ -75.173856, 40.036671 ], [ -75.173098, 40.037408 ], [ -75.172085, 40.038391 ], [ -75.171624, 40.038844 ], [ -75.170585, 40.038084 ], [ -75.169986, 40.037617 ], [ -75.169838, 40.037509 ], [ -75.169524, 40.037286 ], [ -75.169418, 40.037219 ], [ -75.169336, 40.037181 ], [ -75.16926, 40.037158 ], [ -75.169173, 40.037146 ], [ -75.169057, 40.037143 ], [ -75.168983, 40.037143 ], [ -75.168855, 40.037147 ], [ -75.168735, 40.037158 ], [ -75.168629, 40.037172 ], [ -75.168489, 40.0372 ], [ -75.168368, 40.037228 ], [ -75.168177, 40.037281 ], [ -75.168064, 40.037318 ], [ -75.167952, 40.03735 ], [ -75.167821, 40.037375 ], [ -75.167707, 40.037393 ], [ -75.167588, 40.037403 ], [ -75.167515, 40.037403 ], [ -75.167407, 40.037399 ], [ -75.16729, 40.037388 ], [ -75.167188, 40.037372 ], [ -75.167052, 40.037351 ], [ -75.165301, 40.037014 ], [ -75.1643, 40.036845 ], [ -75.164237, 40.036836 ], [ -75.164175, 40.036833 ], [ -75.164048, 40.036835 ], [ -75.163939, 40.036843 ], [ -75.163809, 40.036857 ], [ -75.163309, 40.036916 ], [ -75.163035, 40.036949 ], [ -75.162846, 40.036968 ], [ -75.162737, 40.036977 ], [ -75.16264, 40.036975 ], [ -75.162459, 40.036969 ], [ -75.160586, 40.036843 ], [ -75.159444, 40.036772 ], [ -75.15865, 40.036708 ], [ -75.158496, 40.0367 ], [ -75.158384, 40.036694 ], [ -75.157862, 40.036702 ], [ -75.15769, 40.036711 ], [ -75.157651, 40.036713 ], [ -75.157322, 40.036714 ], [ -75.157012, 40.036708 ], [ -75.156782, 40.036696 ], [ -75.156594, 40.036674 ], [ -75.156427, 40.03664 ], [ -75.156278, 40.036598 ], [ -75.156163, 40.036558 ], [ -75.156077, 40.036519 ], [ -75.155992, 40.036474 ], [ -75.155911, 40.036425 ], [ -75.155829, 40.036373 ], [ -75.155733, 40.0363 ], [ -75.15565, 40.036228 ], [ -75.155609, 40.036189 ], [ -75.15553, 40.036088 ], [ -75.155517, 40.036072 ], [ -75.155451, 40.035973 ], [ -75.155397, 40.035869 ], [ -75.155358, 40.035762 ], [ -75.155335, 40.035653 ], [ -75.155324, 40.035536 ], [ -75.155332, 40.0354 ], [ -75.155371, 40.035195 ], [ -75.155489, 40.034662 ], [ -75.155615, 40.034068 ], [ -75.155743, 40.033477 ], [ -75.155825, 40.033122 ], [ -75.155839, 40.033001 ], [ -75.155836, 40.032883 ], [ -75.155825, 40.032765 ], [ -75.155796, 40.032649 ], [ -75.155754, 40.032534 ], [ -75.155694, 40.032418 ], [ -75.155616, 40.032298 ], [ -75.155518, 40.032179 ], [ -75.155397, 40.032053 ], [ -75.154772, 40.03145 ], [ -75.154617, 40.031482 ], [ -75.154466, 40.03151 ], [ -75.1543, 40.031537 ], [ -75.1541, 40.031554 ], [ -75.15392, 40.031562 ], [ -75.153713, 40.031554 ], [ -75.153508, 40.031538 ], [ -75.152378, 40.031392 ], [ -75.151371, 40.031256 ], [ -75.150585, 40.031151 ], [ -75.14979, 40.031057 ], [ -75.148977, 40.03095 ], [ -75.148217, 40.030847 ], [ -75.147449, 40.030744 ], [ -75.146701, 40.030656 ], [ -75.146614, 40.030636 ], [ -75.14657, 40.030623 ], [ -75.146532, 40.030611 ], [ -75.146492, 40.030592 ], [ -75.146456, 40.030569 ], [ -75.14638, 40.030502 ], [ -75.146307, 40.030434 ], [ -75.146229, 40.030364 ], [ -75.146165, 40.030307 ], [ -75.146134, 40.030286 ], [ -75.146095, 40.030268 ], [ -75.145952, 40.030254 ], [ -75.145381, 40.030235 ], [ -75.1449, 40.030204 ], [ -75.144425, 40.030176 ], [ -75.143604, 40.030148 ], [ -75.142827, 40.03008 ], [ -75.14233, 40.03006 ], [ -75.142007, 40.030023 ], [ -75.14123, 40.029928 ], [ -75.140436, 40.029829 ], [ -75.139647, 40.029728 ], [ -75.138813, 40.029644 ], [ -75.13803, 40.029545 ], [ -75.13709, 40.029419 ], [ -75.13647, 40.029309 ], [ -75.135838, 40.02923 ], [ -75.13526, 40.029157 ], [ -75.135066, 40.029132 ], [ -75.134154, 40.029014 ], [ -75.133603, 40.028956 ], [ -75.133197, 40.028912 ], [ -75.132182, 40.028791 ], [ -75.131121, 40.028644 ], [ -75.130729, 40.028585 ], [ -75.130316, 40.028526 ], [ -75.12933, 40.028396 ], [ -75.128926, 40.02834 ], [ -75.128689, 40.028292 ], [ -75.128469, 40.028209 ], [ -75.128261, 40.028091 ], [ -75.128053, 40.027946 ], [ -75.127776, 40.027704 ], [ -75.127595, 40.027497 ], [ -75.12718, 40.028268 ], [ -75.127011, 40.028636 ], [ -75.126888, 40.028907 ], [ -75.126825, 40.029092 ], [ -75.126691, 40.029661 ], [ -75.126358, 40.031234 ], [ -75.125208, 40.031065 ], [ -75.124742, 40.031034 ], [ -75.124369, 40.03098 ], [ -75.123663, 40.030895 ], [ -75.123325, 40.030854 ], [ -75.1224, 40.030713 ], [ -75.121409, 40.030586 ], [ -75.120446, 40.030488 ], [ -75.119723, 40.030377 ], [ -75.11862, 40.030251 ], [ -75.118496, 40.030235 ], [ -75.118455, 40.030227 ], [ -75.118367, 40.030187 ], [ -75.11828, 40.030142 ], [ -75.118212, 40.030094 ], [ -75.118138, 40.030028 ], [ -75.11809, 40.029966 ], [ -75.11805, 40.029888 ], [ -75.118023, 40.029813 ], [ -75.117735, 40.028673 ], [ -75.117578, 40.028068 ], [ -75.117459, 40.027569 ], [ -75.117308, 40.026896 ], [ -75.11729, 40.026821 ], [ -75.117257, 40.026695 ], [ -75.117229, 40.026572 ], [ -75.117183, 40.026385 ], [ -75.117167, 40.026261 ], [ -75.116568, 40.026351 ], [ -75.115783, 40.026461 ], [ -75.115381, 40.026517 ], [ -75.115158, 40.026548 ], [ -75.114789, 40.026607 ], [ -75.114429, 40.02666 ], [ -75.11393, 40.026737 ], [ -75.113512, 40.026802 ], [ -75.112783, 40.02691 ], [ -75.112278, 40.026979 ], [ -75.111922, 40.027035 ], [ -75.11164, 40.027094 ], [ -75.110802, 40.027339 ], [ -75.110549, 40.027419 ], [ -75.109983, 40.027598 ], [ -75.109625, 40.027705 ], [ -75.108995, 40.027909 ], [ -75.107655, 40.02834 ], [ -75.106739, 40.028627 ], [ -75.106004, 40.028859 ], [ -75.105272, 40.029103 ], [ -75.104951, 40.029209 ], [ -75.104618, 40.029315 ], [ -75.104481, 40.029351 ], [ -75.104357, 40.029385 ], [ -75.104147, 40.029433 ], [ -75.103946, 40.029464 ], [ -75.103746, 40.029485 ], [ -75.103628, 40.029491 ], [ -75.103475, 40.029498 ], [ -75.103286, 40.029492 ], [ -75.103158, 40.029484 ], [ -75.103051, 40.029478 ], [ -75.102932, 40.029469 ], [ -75.102839, 40.029455 ], [ -75.102751, 40.029441 ], [ -75.10266, 40.029424 ], [ -75.102571, 40.029407 ], [ -75.102466, 40.029378 ], [ -75.102322, 40.029332 ], [ -75.102206, 40.029288 ], [ -75.102058, 40.02923 ], [ -75.101918, 40.029171 ], [ -75.101801, 40.029112 ], [ -75.101655, 40.029032 ], [ -75.101515, 40.028946 ], [ -75.101318, 40.028828 ], [ -75.100931, 40.028568 ], [ -75.100445, 40.028242 ], [ -75.099765, 40.027794 ], [ -75.099645, 40.027715 ], [ -75.099152, 40.027395 ], [ -75.098524, 40.02697 ], [ -75.098252, 40.026792 ], [ -75.098208, 40.026764 ], [ -75.097991, 40.026621 ], [ -75.097786, 40.0265 ], [ -75.097596, 40.026402 ], [ -75.09749, 40.026356 ], [ -75.097466, 40.026287 ], [ -75.097439, 40.026243 ], [ -75.097409, 40.026205 ], [ -75.097201, 40.026001 ], [ -75.096912, 40.025711 ], [ -75.096584, 40.02541 ], [ -75.096027, 40.024884 ], [ -75.095948, 40.024806 ], [ -75.095912, 40.024768 ], [ -75.095883, 40.02473 ], [ -75.095822, 40.024643 ], [ -75.095762, 40.024549 ], [ -75.095536, 40.024164 ], [ -75.09503, 40.023333 ], [ -75.094458, 40.022433 ], [ -75.094355, 40.022281 ], [ -75.094214, 40.022045 ], [ -75.094196, 40.022006 ], [ -75.09413, 40.021823 ], [ -75.094047, 40.021549 ], [ -75.093859, 40.021142 ], [ -75.093778, 40.020949 ], [ -75.093766, 40.020911 ], [ -75.093758, 40.020876 ], [ -75.093756, 40.020844 ], [ -75.093761, 40.02081 ], [ -75.093774, 40.020773 ], [ -75.093806, 40.020697 ], [ -75.093847, 40.020613 ], [ -75.093995, 40.020361 ], [ -75.094359, 40.019722 ], [ -75.094376, 40.01969 ], [ -75.094387, 40.019661 ], [ -75.094396, 40.019618 ], [ -75.094408, 40.019513 ], [ -75.09436, 40.019509 ], [ -75.094326, 40.0195 ], [ -75.094291, 40.019483 ], [ -75.093358, 40.018988 ], [ -75.092552, 40.018555 ], [ -75.092405, 40.018468 ], [ -75.092176, 40.018353 ], [ -75.091944, 40.018229 ], [ -75.091312, 40.017899 ], [ -75.090335, 40.017368 ], [ -75.089417, 40.016869 ], [ -75.088048, 40.016147 ], [ -75.087204, 40.015696 ], [ -75.086376, 40.015254 ], [ -75.085483, 40.014765 ], [ -75.084639, 40.014317 ], [ -75.083965, 40.013966 ], [ -75.083227, 40.013573 ], [ -75.082636, 40.013258 ], [ -75.082172, 40.013014 ], [ -75.081826, 40.01282 ], [ -75.081696, 40.012724 ], [ -75.080828, 40.011905 ], [ -75.080306, 40.01139 ], [ -75.07959, 40.010684 ], [ -75.079284, 40.010394 ], [ -75.078857, 40.010009 ], [ -75.078811, 40.009966 ], [ -75.078763, 40.009915 ], [ -75.078729, 40.009859 ], [ -75.078716, 40.009823 ], [ -75.078606, 40.009369 ], [ -75.07849, 40.008738 ], [ -75.078473, 40.008659 ], [ -75.078463, 40.008607 ], [ -75.078339, 40.008055 ], [ -75.07818, 40.007414 ], [ -75.078026, 40.00674 ], [ -75.077882, 40.006063 ], [ -75.077717, 40.005381 ], [ -75.077573, 40.004698 ], [ -75.077492, 40.004259 ], [ -75.077469, 40.004135 ], [ -75.077429, 40.003927 ], [ -75.077415, 40.003851 ], [ -75.077406, 40.003797 ], [ -75.077377, 40.003668 ], [ -75.077351, 40.003551 ], [ -75.077304, 40.003341 ], [ -75.077244, 40.003098 ], [ -75.077219, 40.002987 ], [ -75.077181, 40.00282 ], [ -75.076994, 40.00205 ], [ -75.076842, 40.001304 ], [ -75.076809, 40.001142 ], [ -75.076802, 40.001106 ], [ -75.076793, 40.001073 ], [ -75.076786, 40.001047 ], [ -75.076771, 40.001021 ], [ -75.076754, 40.000996 ], [ -75.076582, 40.000793 ], [ -75.075954, 40.000063 ], [ -75.075214, 39.999241 ], [ -75.074726, 39.998695 ], [ -75.074167, 39.998061 ], [ -75.073506, 39.997304 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307585", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.26778, 39.951749 ], [ -75.26773, 39.95187 ], [ -75.267609, 39.951839 ], [ -75.26746, 39.951809 ], [ -75.26682, 39.951669 ], [ -75.266489, 39.9516 ], [ -75.26642, 39.95153 ], [ -75.26628, 39.951379 ], [ -75.26607, 39.951469 ], [ -75.265859, 39.951559 ], [ -75.265629, 39.951659 ], [ -75.26543, 39.951739 ], [ -75.26467, 39.952089 ], [ -75.264339, 39.952259 ], [ -75.263659, 39.95259 ], [ -75.263469, 39.9527 ], [ -75.263069, 39.95288 ], [ -75.263, 39.952909 ], [ -75.262849, 39.95298 ], [ -75.262629, 39.95304 ], [ -75.262319, 39.953089 ], [ -75.262169, 39.95312 ], [ -75.26193, 39.95316 ], [ -75.261459, 39.95324 ], [ -75.261279, 39.953269 ], [ -75.26067, 39.953379 ], [ -75.26003, 39.95348 ], [ -75.259299, 39.95358 ], [ -75.25914, 39.9536 ], [ -75.25891, 39.953629 ], [ -75.258669, 39.953709 ], [ -75.2585, 39.95376 ], [ -75.25828, 39.953889 ], [ -75.25819, 39.95394 ], [ -75.257949, 39.954079 ], [ -75.257759, 39.954189 ], [ -75.25756, 39.9543 ], [ -75.25737, 39.95441 ], [ -75.25728, 39.954459 ], [ -75.256989, 39.9546 ], [ -75.25679, 39.954619 ], [ -75.256599, 39.9546 ], [ -75.255869, 39.95442 ], [ -75.255419, 39.9543 ], [ -75.255209, 39.954279 ], [ -75.255, 39.954279 ], [ -75.254759, 39.954349 ], [ -75.25328, 39.95492 ], [ -75.252669, 39.955159 ], [ -75.251959, 39.955429 ], [ -75.251739, 39.955499 ], [ -75.251649, 39.955529 ], [ -75.25145, 39.955609 ], [ -75.25116, 39.955709 ], [ -75.250919, 39.955889 ], [ -75.25072, 39.956129 ], [ -75.25031, 39.95664 ], [ -75.25014, 39.956859 ], [ -75.25, 39.95699 ], [ -75.24983, 39.9571 ], [ -75.249489, 39.957249 ], [ -75.249389, 39.95729 ], [ -75.249249, 39.957329 ], [ -75.2491, 39.95736 ], [ -75.24891, 39.95738 ], [ -75.2486, 39.95737 ], [ -75.24793, 39.95728 ], [ -75.24716, 39.95721 ], [ -75.24659, 39.957129 ], [ -75.245839, 39.957049 ], [ -75.243859, 39.956799 ], [ -75.243459, 39.95675 ], [ -75.24189, 39.95655 ], [ -75.24137, 39.956489 ], [ -75.23991, 39.956319 ], [ -75.239449, 39.956259 ], [ -75.23929, 39.956239 ], [ -75.239169, 39.956219 ], [ -75.23834, 39.95611 ], [ -75.237929, 39.956069 ], [ -75.23726, 39.955989 ], [ -75.236699, 39.95592 ], [ -75.235989, 39.95583 ], [ -75.235269, 39.95573 ], [ -75.23471, 39.95565 ], [ -75.23399, 39.95558 ], [ -75.23353, 39.955519 ], [ -75.232879, 39.955439 ], [ -75.23192, 39.95532 ], [ -75.229769, 39.95505 ], [ -75.227979, 39.95483 ], [ -75.226029, 39.95458 ], [ -75.224049, 39.954339 ], [ -75.22305, 39.95421 ], [ -75.22206, 39.954089 ], [ -75.22106, 39.95397 ], [ -75.220099, 39.95384 ], [ -75.2199, 39.953819 ], [ -75.219659, 39.95379 ], [ -75.219119, 39.953739 ], [ -75.218119, 39.95361 ], [ -75.216909, 39.953459 ], [ -75.21612, 39.953359 ], [ -75.21513, 39.95323 ], [ -75.21413, 39.953099 ], [ -75.21324, 39.952989 ], [ -75.212179, 39.95287 ], [ -75.210999, 39.952719 ], [ -75.210549, 39.952659 ], [ -75.20924, 39.95252 ], [ -75.20793, 39.952349 ], [ -75.20784, 39.95233 ], [ -75.206909, 39.95223 ], [ -75.205569, 39.95206 ], [ -75.204249, 39.951919 ], [ -75.203079, 39.951749 ], [ -75.201919, 39.9516 ], [ -75.201609, 39.951559 ], [ -75.200749, 39.951449 ], [ -75.19988, 39.95135 ], [ -75.199209, 39.951279 ], [ -75.199299, 39.9509 ], [ -75.199359, 39.950659 ], [ -75.199449, 39.95036 ], [ -75.199479, 39.95026 ], [ -75.199579, 39.950039 ], [ -75.199629, 39.949839 ], [ -75.19965, 39.94973 ], [ -75.19965, 39.94961 ], [ -75.199629, 39.94947 ], [ -75.19961, 39.949399 ], [ -75.19955, 39.94926 ], [ -75.199489, 39.94919 ], [ -75.199439, 39.949119 ], [ -75.199309, 39.948939 ], [ -75.19924, 39.94884 ], [ -75.19915, 39.948689 ], [ -75.199079, 39.94857 ], [ -75.198999, 39.948429 ], [ -75.19887, 39.9482 ], [ -75.19884, 39.948139 ], [ -75.198809, 39.948059 ], [ -75.198669, 39.94772 ], [ -75.1986, 39.947499 ], [ -75.19856, 39.94727 ], [ -75.19856, 39.94701 ], [ -75.19853, 39.946769 ], [ -75.19853, 39.94673 ], [ -75.198539, 39.94656 ], [ -75.19856, 39.946089 ], [ -75.198399, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.19772, 39.946079 ], [ -75.19757, 39.94612 ], [ -75.19694, 39.94637 ], [ -75.19658, 39.945799 ], [ -75.19649, 39.945629 ], [ -75.196419, 39.94556 ], [ -75.196329, 39.94549 ], [ -75.19623, 39.94547 ], [ -75.19614, 39.94547 ], [ -75.19595, 39.94549 ], [ -75.19559, 39.94558 ], [ -75.195129, 39.945699 ], [ -75.194259, 39.945999 ], [ -75.1937, 39.946259 ], [ -75.193629, 39.94629 ], [ -75.193049, 39.946539 ], [ -75.192879, 39.94664 ], [ -75.19199, 39.947069 ], [ -75.191559, 39.947259 ], [ -75.19145, 39.947329 ], [ -75.191379, 39.94739 ], [ -75.191299, 39.947579 ], [ -75.19142, 39.947609 ], [ -75.1915, 39.94765 ], [ -75.191569, 39.947699 ], [ -75.19164, 39.947759 ], [ -75.19222, 39.94847 ], [ -75.192299, 39.94856 ], [ -75.192419, 39.948609 ], [ -75.1929, 39.948689 ], [ -75.1929, 39.94871 ], [ -75.192789, 39.94917 ], [ -75.19276, 39.949309 ], [ -75.19253, 39.949589 ], [ -75.19232, 39.94979 ], [ -75.192109, 39.94998 ], [ -75.191709, 39.950319 ], [ -75.191399, 39.950559 ], [ -75.19131, 39.95064 ], [ -75.19033, 39.95142 ], [ -75.19028, 39.95151 ], [ -75.190209, 39.95171 ], [ -75.190039, 39.952559 ], [ -75.189909, 39.953179 ], [ -75.189899, 39.953259 ], [ -75.189859, 39.953469 ], [ -75.189819, 39.953649 ], [ -75.189729, 39.95412 ], [ -75.189369, 39.954069 ], [ -75.1878, 39.95386 ], [ -75.18744, 39.953809 ], [ -75.18736, 39.953799 ], [ -75.186, 39.95361 ], [ -75.1856, 39.953559 ], [ -75.18529, 39.95352 ], [ -75.183739, 39.9533 ], [ -75.182759, 39.953189 ], [ -75.182569, 39.953169 ], [ -75.18246, 39.95316 ], [ -75.182339, 39.95315 ], [ -75.18195, 39.953099 ], [ -75.181889, 39.953089 ], [ -75.181839, 39.953089 ], [ -75.1817, 39.953079 ], [ -75.18152, 39.95307 ], [ -75.18097, 39.952999 ], [ -75.18042, 39.952929 ], [ -75.180269, 39.952909 ], [ -75.18011, 39.95289 ], [ -75.17917, 39.95277 ], [ -75.1785, 39.95269 ], [ -75.17818, 39.952639 ], [ -75.177839, 39.9526 ], [ -75.177479, 39.952559 ], [ -75.17702, 39.95251 ], [ -75.176189, 39.9524 ], [ -75.17539, 39.95231 ], [ -75.17507, 39.952269 ], [ -75.173469, 39.95206 ], [ -75.173069, 39.952009 ], [ -75.171909, 39.95186 ], [ -75.17134, 39.95179 ], [ -75.17036, 39.951659 ], [ -75.16877, 39.951469 ], [ -75.167179, 39.95125 ], [ -75.165609, 39.95107 ], [ -75.164889, 39.95098 ], [ -75.16455, 39.950939 ], [ -75.164029, 39.95088 ], [ -75.16395, 39.95087 ], [ -75.163309, 39.95079 ], [ -75.162819, 39.95073 ], [ -75.16176, 39.9506 ], [ -75.160199, 39.950379 ], [ -75.159569, 39.950309 ], [ -75.158619, 39.950209 ], [ -75.15704, 39.950019 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307586", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.244423, 39.955785 ], [ -75.24407, 39.95574 ], [ -75.24397, 39.956259 ], [ -75.243859, 39.956799 ], [ -75.243459, 39.95675 ], [ -75.24189, 39.95655 ], [ -75.24137, 39.956489 ], [ -75.23991, 39.956319 ], [ -75.239449, 39.956259 ], [ -75.23929, 39.956239 ], [ -75.239169, 39.956219 ], [ -75.23834, 39.95611 ], [ -75.237929, 39.956069 ], [ -75.23726, 39.955989 ], [ -75.236699, 39.95592 ], [ -75.235989, 39.95583 ], [ -75.235269, 39.95573 ], [ -75.23471, 39.95565 ], [ -75.23399, 39.95558 ], [ -75.23353, 39.955519 ], [ -75.232879, 39.955439 ], [ -75.23192, 39.95532 ], [ -75.229769, 39.95505 ], [ -75.227979, 39.95483 ], [ -75.226029, 39.95458 ], [ -75.224049, 39.954339 ], [ -75.22305, 39.95421 ], [ -75.22206, 39.954089 ], [ -75.22106, 39.95397 ], [ -75.220099, 39.95384 ], [ -75.2199, 39.953819 ], [ -75.219659, 39.95379 ], [ -75.219119, 39.953739 ], [ -75.218119, 39.95361 ], [ -75.216909, 39.953459 ], [ -75.21612, 39.953359 ], [ -75.21513, 39.95323 ], [ -75.21413, 39.953099 ], [ -75.21324, 39.952989 ], [ -75.212179, 39.95287 ], [ -75.210999, 39.952719 ], [ -75.210549, 39.952659 ], [ -75.20924, 39.95252 ], [ -75.20793, 39.952349 ], [ -75.20784, 39.95233 ], [ -75.206909, 39.95223 ], [ -75.205569, 39.95206 ], [ -75.204249, 39.951919 ], [ -75.203079, 39.951749 ], [ -75.201919, 39.9516 ], [ -75.201609, 39.951559 ], [ -75.200749, 39.951449 ], [ -75.19988, 39.95135 ], [ -75.199209, 39.951279 ], [ -75.199299, 39.9509 ], [ -75.199359, 39.950659 ], [ -75.199449, 39.95036 ], [ -75.199479, 39.95026 ], [ -75.199579, 39.950039 ], [ -75.199629, 39.949839 ], [ -75.19965, 39.94973 ], [ -75.19965, 39.94961 ], [ -75.199629, 39.94947 ], [ -75.19961, 39.949399 ], [ -75.19955, 39.94926 ], [ -75.199489, 39.94919 ], [ -75.199439, 39.949119 ], [ -75.199309, 39.948939 ], [ -75.19924, 39.94884 ], [ -75.19915, 39.948689 ], [ -75.199079, 39.94857 ], [ -75.198999, 39.948429 ], [ -75.19887, 39.9482 ], [ -75.19884, 39.948139 ], [ -75.198809, 39.948059 ], [ -75.198669, 39.94772 ], [ -75.1986, 39.947499 ], [ -75.19856, 39.94727 ], [ -75.19856, 39.94701 ], [ -75.19853, 39.946769 ], [ -75.19853, 39.94673 ], [ -75.198539, 39.94656 ], [ -75.19856, 39.946089 ], [ -75.198399, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.19772, 39.946079 ], [ -75.19757, 39.94612 ], [ -75.19694, 39.94637 ], [ -75.19658, 39.945799 ], [ -75.19649, 39.945629 ], [ -75.196419, 39.94556 ], [ -75.196329, 39.94549 ], [ -75.19623, 39.94547 ], [ -75.19614, 39.94547 ], [ -75.19595, 39.94549 ], [ -75.19559, 39.94558 ], [ -75.195129, 39.945699 ], [ -75.194259, 39.945999 ], [ -75.1937, 39.946259 ], [ -75.193629, 39.94629 ], [ -75.193049, 39.946539 ], [ -75.192879, 39.94664 ], [ -75.19199, 39.947069 ], [ -75.191559, 39.947259 ], [ -75.19145, 39.947329 ], [ -75.191379, 39.94739 ], [ -75.191299, 39.947579 ], [ -75.19142, 39.947609 ], [ -75.1915, 39.94765 ], [ -75.191569, 39.947699 ], [ -75.19164, 39.947759 ], [ -75.19222, 39.94847 ], [ -75.192299, 39.94856 ], [ -75.192419, 39.948609 ], [ -75.1929, 39.948689 ], [ -75.1929, 39.94871 ], [ -75.192789, 39.94917 ], [ -75.19276, 39.949309 ], [ -75.19253, 39.949589 ], [ -75.19232, 39.94979 ], [ -75.192109, 39.94998 ], [ -75.191709, 39.950319 ], [ -75.191399, 39.950559 ], [ -75.19131, 39.95064 ], [ -75.19033, 39.95142 ], [ -75.19028, 39.95151 ], [ -75.190209, 39.95171 ], [ -75.190039, 39.952559 ], [ -75.189909, 39.953179 ], [ -75.189899, 39.953259 ], [ -75.189859, 39.953469 ], [ -75.189819, 39.953649 ], [ -75.189729, 39.95412 ], [ -75.189369, 39.954069 ], [ -75.1878, 39.95386 ], [ -75.18744, 39.953809 ], [ -75.18736, 39.953799 ], [ -75.186, 39.95361 ], [ -75.1856, 39.953559 ], [ -75.18529, 39.95352 ], [ -75.183739, 39.9533 ], [ -75.182759, 39.953189 ], [ -75.182569, 39.953169 ], [ -75.18246, 39.95316 ], [ -75.182339, 39.95315 ], [ -75.18195, 39.953099 ], [ -75.181889, 39.953089 ], [ -75.181839, 39.953089 ], [ -75.1817, 39.953079 ], [ -75.18152, 39.95307 ], [ -75.18097, 39.952999 ], [ -75.18042, 39.952929 ], [ -75.180269, 39.952909 ], [ -75.18011, 39.95289 ], [ -75.17917, 39.95277 ], [ -75.1785, 39.95269 ], [ -75.17818, 39.952639 ], [ -75.177839, 39.9526 ], [ -75.177479, 39.952559 ], [ -75.17702, 39.95251 ], [ -75.176189, 39.9524 ], [ -75.17539, 39.95231 ], [ -75.17507, 39.952269 ], [ -75.173469, 39.95206 ], [ -75.173069, 39.952009 ], [ -75.171909, 39.95186 ], [ -75.17134, 39.95179 ], [ -75.17036, 39.951659 ], [ -75.16877, 39.951469 ], [ -75.167179, 39.95125 ], [ -75.165609, 39.95107 ], [ -75.164889, 39.95098 ], [ -75.16455, 39.950939 ], [ -75.164029, 39.95088 ], [ -75.16395, 39.95087 ], [ -75.163309, 39.95079 ], [ -75.162819, 39.95073 ], [ -75.16176, 39.9506 ], [ -75.160199, 39.950379 ], [ -75.159569, 39.950309 ], [ -75.158619, 39.950209 ], [ -75.15704, 39.950019 ], [ -75.156209, 39.94992 ], [ -75.155469, 39.94982 ], [ -75.1546, 39.94971 ], [ -75.153899, 39.94962 ], [ -75.15288, 39.949479 ], [ -75.15234, 39.949409 ], [ -75.150759, 39.949219 ], [ -75.15059, 39.9492 ], [ -75.15047, 39.94918 ], [ -75.1502, 39.949149 ], [ -75.149589, 39.94907 ], [ -75.14933, 39.949039 ], [ -75.14921, 39.94902 ], [ -75.14888, 39.94898 ], [ -75.148559, 39.948939 ], [ -75.147959, 39.948869 ], [ -75.14759, 39.94883 ], [ -75.147609, 39.94872 ], [ -75.147729, 39.948159 ], [ -75.14781, 39.94773 ], [ -75.1479, 39.9473 ], [ -75.148559, 39.94737 ], [ -75.148919, 39.947409 ], [ -75.149549, 39.94748 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307587", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.244423, 39.955785 ], [ -75.24407, 39.95574 ], [ -75.24397, 39.956259 ], [ -75.243859, 39.956799 ], [ -75.243459, 39.95675 ], [ -75.24189, 39.95655 ], [ -75.24137, 39.956489 ], [ -75.23991, 39.956319 ], [ -75.239449, 39.956259 ], [ -75.23929, 39.956239 ], [ -75.239169, 39.956219 ], [ -75.23834, 39.95611 ], [ -75.237929, 39.956069 ], [ -75.23726, 39.955989 ], [ -75.236699, 39.95592 ], [ -75.235989, 39.95583 ], [ -75.235269, 39.95573 ], [ -75.23471, 39.95565 ], [ -75.23399, 39.95558 ], [ -75.23353, 39.955519 ], [ -75.232879, 39.955439 ], [ -75.23192, 39.95532 ], [ -75.229769, 39.95505 ], [ -75.227979, 39.95483 ], [ -75.226029, 39.95458 ], [ -75.224049, 39.954339 ], [ -75.22305, 39.95421 ], [ -75.22206, 39.954089 ], [ -75.22106, 39.95397 ], [ -75.220099, 39.95384 ], [ -75.2199, 39.953819 ], [ -75.219659, 39.95379 ], [ -75.219119, 39.953739 ], [ -75.218119, 39.95361 ], [ -75.216909, 39.953459 ], [ -75.21612, 39.953359 ], [ -75.21513, 39.95323 ], [ -75.21413, 39.953099 ], [ -75.21324, 39.952989 ], [ -75.212179, 39.95287 ], [ -75.210999, 39.952719 ], [ -75.210549, 39.952659 ], [ -75.20924, 39.95252 ], [ -75.20793, 39.952349 ], [ -75.20784, 39.95233 ], [ -75.206909, 39.95223 ], [ -75.205569, 39.95206 ], [ -75.204249, 39.951919 ], [ -75.203079, 39.951749 ], [ -75.201919, 39.9516 ], [ -75.201609, 39.951559 ], [ -75.200749, 39.951449 ], [ -75.19988, 39.95135 ], [ -75.199209, 39.951279 ], [ -75.199299, 39.9509 ], [ -75.199359, 39.950659 ], [ -75.199449, 39.95036 ], [ -75.199479, 39.95026 ], [ -75.199579, 39.950039 ], [ -75.199629, 39.949839 ], [ -75.19965, 39.94973 ], [ -75.19965, 39.94961 ], [ -75.199629, 39.94947 ], [ -75.19961, 39.949399 ], [ -75.19955, 39.94926 ], [ -75.199489, 39.94919 ], [ -75.199439, 39.949119 ], [ -75.199309, 39.948939 ], [ -75.19924, 39.94884 ], [ -75.19915, 39.948689 ], [ -75.199079, 39.94857 ], [ -75.198999, 39.948429 ], [ -75.19887, 39.9482 ], [ -75.19884, 39.948139 ], [ -75.198809, 39.948059 ], [ -75.198669, 39.94772 ], [ -75.1986, 39.947499 ], [ -75.19856, 39.94727 ], [ -75.19856, 39.94701 ], [ -75.19853, 39.946769 ], [ -75.19853, 39.94673 ], [ -75.198539, 39.94656 ], [ -75.19856, 39.946089 ], [ -75.198399, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.19772, 39.946079 ], [ -75.19757, 39.94612 ], [ -75.19694, 39.94637 ], [ -75.19658, 39.945799 ], [ -75.19649, 39.945629 ], [ -75.196419, 39.94556 ], [ -75.196329, 39.94549 ], [ -75.19623, 39.94547 ], [ -75.19614, 39.94547 ], [ -75.19595, 39.94549 ], [ -75.19559, 39.94558 ], [ -75.195129, 39.945699 ], [ -75.194259, 39.945999 ], [ -75.1937, 39.946259 ], [ -75.193629, 39.94629 ], [ -75.193049, 39.946539 ], [ -75.192879, 39.94664 ], [ -75.19199, 39.947069 ], [ -75.191559, 39.947259 ], [ -75.19145, 39.947329 ], [ -75.191379, 39.94739 ], [ -75.191299, 39.947579 ], [ -75.19142, 39.947609 ], [ -75.1915, 39.94765 ], [ -75.191569, 39.947699 ], [ -75.19164, 39.947759 ], [ -75.19222, 39.94847 ], [ -75.192299, 39.94856 ], [ -75.192419, 39.948609 ], [ -75.1929, 39.948689 ], [ -75.1929, 39.94871 ], [ -75.192789, 39.94917 ], [ -75.19276, 39.949309 ], [ -75.19253, 39.949589 ], [ -75.19232, 39.94979 ], [ -75.192109, 39.94998 ], [ -75.191709, 39.950319 ], [ -75.191399, 39.950559 ], [ -75.19131, 39.95064 ], [ -75.19033, 39.95142 ], [ -75.19028, 39.95151 ], [ -75.190209, 39.95171 ], [ -75.190039, 39.952559 ], [ -75.189909, 39.953179 ], [ -75.189899, 39.953259 ], [ -75.189859, 39.953469 ], [ -75.189819, 39.953649 ], [ -75.189729, 39.95412 ], [ -75.189369, 39.954069 ], [ -75.1878, 39.95386 ], [ -75.18744, 39.953809 ], [ -75.18736, 39.953799 ], [ -75.186, 39.95361 ], [ -75.1856, 39.953559 ], [ -75.18529, 39.95352 ], [ -75.183739, 39.9533 ], [ -75.182759, 39.953189 ], [ -75.182569, 39.953169 ], [ -75.18246, 39.95316 ], [ -75.182339, 39.95315 ], [ -75.18195, 39.953099 ], [ -75.181889, 39.953089 ], [ -75.181839, 39.953089 ], [ -75.1817, 39.953079 ], [ -75.18152, 39.95307 ], [ -75.18097, 39.952999 ], [ -75.18042, 39.952929 ], [ -75.180269, 39.952909 ], [ -75.18011, 39.95289 ], [ -75.17917, 39.95277 ], [ -75.1785, 39.95269 ], [ -75.17818, 39.952639 ], [ -75.177839, 39.9526 ], [ -75.177479, 39.952559 ], [ -75.17702, 39.95251 ], [ -75.176189, 39.9524 ], [ -75.17539, 39.95231 ], [ -75.17507, 39.952269 ], [ -75.173469, 39.95206 ], [ -75.173069, 39.952009 ], [ -75.171909, 39.95186 ], [ -75.17134, 39.95179 ], [ -75.17036, 39.951659 ], [ -75.16877, 39.951469 ], [ -75.167179, 39.95125 ], [ -75.165609, 39.95107 ], [ -75.164889, 39.95098 ], [ -75.16455, 39.950939 ], [ -75.164029, 39.95088 ], [ -75.16395, 39.95087 ], [ -75.163309, 39.95079 ], [ -75.162819, 39.95073 ], [ -75.16176, 39.9506 ], [ -75.160199, 39.950379 ], [ -75.159569, 39.950309 ], [ -75.158619, 39.950209 ], [ -75.15704, 39.950019 ], [ -75.156209, 39.94992 ], [ -75.155469, 39.94982 ], [ -75.1546, 39.94971 ], [ -75.153899, 39.94962 ], [ -75.15288, 39.949479 ], [ -75.15234, 39.949409 ], [ -75.150759, 39.949219 ], [ -75.15059, 39.9492 ], [ -75.15047, 39.94918 ], [ -75.1502, 39.949149 ], [ -75.149589, 39.94907 ], [ -75.14933, 39.949039 ], [ -75.14921, 39.94902 ], [ -75.14888, 39.94898 ], [ -75.148559, 39.948939 ], [ -75.147959, 39.948869 ], [ -75.14759, 39.94883 ], [ -75.14709, 39.948759 ], [ -75.14686, 39.94873 ], [ -75.146789, 39.94872 ], [ -75.146019, 39.94862 ], [ -75.145219, 39.948519 ], [ -75.14496, 39.948489 ], [ -75.144669, 39.94845 ], [ -75.144049, 39.94837 ], [ -75.144189, 39.94791 ], [ -75.144219, 39.94764 ], [ -75.14424, 39.947529 ], [ -75.14425, 39.94745 ], [ -75.14429, 39.947239 ], [ -75.144399, 39.94685 ], [ -75.14442, 39.94676 ], [ -75.14447, 39.94655 ], [ -75.144489, 39.94647 ], [ -75.144399, 39.94646 ], [ -75.144319, 39.946429 ], [ -75.14424, 39.94638 ], [ -75.14416, 39.94629 ], [ -75.144099, 39.94619 ], [ -75.14398, 39.94601 ], [ -75.14389, 39.945819 ], [ -75.14385, 39.945709 ], [ -75.14384, 39.94559 ], [ -75.143829, 39.94547 ], [ -75.143829, 39.945339 ], [ -75.1439, 39.945069 ], [ -75.143909, 39.94496 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307588", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.26778, 39.951749 ], [ -75.26773, 39.95187 ], [ -75.267609, 39.951839 ], [ -75.26746, 39.951809 ], [ -75.26682, 39.951669 ], [ -75.266489, 39.9516 ], [ -75.26642, 39.95153 ], [ -75.26628, 39.951379 ], [ -75.26607, 39.951469 ], [ -75.265859, 39.951559 ], [ -75.265629, 39.951659 ], [ -75.26543, 39.951739 ], [ -75.26467, 39.952089 ], [ -75.264339, 39.952259 ], [ -75.263659, 39.95259 ], [ -75.263469, 39.9527 ], [ -75.263069, 39.95288 ], [ -75.263, 39.952909 ], [ -75.262849, 39.95298 ], [ -75.262629, 39.95304 ], [ -75.262319, 39.953089 ], [ -75.262169, 39.95312 ], [ -75.26193, 39.95316 ], [ -75.261459, 39.95324 ], [ -75.261279, 39.953269 ], [ -75.26067, 39.953379 ], [ -75.26003, 39.95348 ], [ -75.259299, 39.95358 ], [ -75.25914, 39.9536 ], [ -75.25891, 39.953629 ], [ -75.258669, 39.953709 ], [ -75.2585, 39.95376 ], [ -75.25828, 39.953889 ], [ -75.25819, 39.95394 ], [ -75.257949, 39.954079 ], [ -75.257759, 39.954189 ], [ -75.25756, 39.9543 ], [ -75.25737, 39.95441 ], [ -75.25728, 39.954459 ], [ -75.256989, 39.9546 ], [ -75.25679, 39.954619 ], [ -75.256599, 39.9546 ], [ -75.255869, 39.95442 ], [ -75.255419, 39.9543 ], [ -75.255209, 39.954279 ], [ -75.255, 39.954279 ], [ -75.254759, 39.954349 ], [ -75.25328, 39.95492 ], [ -75.252669, 39.955159 ], [ -75.251959, 39.955429 ], [ -75.251739, 39.955499 ], [ -75.251649, 39.955529 ], [ -75.25145, 39.955609 ], [ -75.25116, 39.955709 ], [ -75.250919, 39.955889 ], [ -75.25072, 39.956129 ], [ -75.25031, 39.95664 ], [ -75.25014, 39.956859 ], [ -75.25, 39.95699 ], [ -75.24983, 39.9571 ], [ -75.249489, 39.957249 ], [ -75.249389, 39.95729 ], [ -75.249249, 39.957329 ], [ -75.2491, 39.95736 ], [ -75.24891, 39.95738 ], [ -75.2486, 39.95737 ], [ -75.24793, 39.95728 ], [ -75.24716, 39.95721 ], [ -75.24659, 39.957129 ], [ -75.245839, 39.957049 ], [ -75.243859, 39.956799 ], [ -75.243459, 39.95675 ], [ -75.24189, 39.95655 ], [ -75.24137, 39.956489 ], [ -75.23991, 39.956319 ], [ -75.239449, 39.956259 ], [ -75.23929, 39.956239 ], [ -75.239169, 39.956219 ], [ -75.23834, 39.95611 ], [ -75.237929, 39.956069 ], [ -75.23726, 39.955989 ], [ -75.236699, 39.95592 ], [ -75.235989, 39.95583 ], [ -75.235269, 39.95573 ], [ -75.23471, 39.95565 ], [ -75.23399, 39.95558 ], [ -75.23353, 39.955519 ], [ -75.232879, 39.955439 ], [ -75.23192, 39.95532 ], [ -75.229769, 39.95505 ], [ -75.227979, 39.95483 ], [ -75.226029, 39.95458 ], [ -75.224049, 39.954339 ], [ -75.22305, 39.95421 ], [ -75.22206, 39.954089 ], [ -75.22106, 39.95397 ], [ -75.220099, 39.95384 ], [ -75.2199, 39.953819 ], [ -75.219659, 39.95379 ], [ -75.219119, 39.953739 ], [ -75.218119, 39.95361 ], [ -75.216909, 39.953459 ], [ -75.21612, 39.953359 ], [ -75.21513, 39.95323 ], [ -75.21413, 39.953099 ], [ -75.21324, 39.952989 ], [ -75.212179, 39.95287 ], [ -75.210999, 39.952719 ], [ -75.210549, 39.952659 ], [ -75.20924, 39.95252 ], [ -75.20793, 39.952349 ], [ -75.20784, 39.95233 ], [ -75.206909, 39.95223 ], [ -75.205569, 39.95206 ], [ -75.204249, 39.951919 ], [ -75.203079, 39.951749 ], [ -75.201919, 39.9516 ], [ -75.201609, 39.951559 ], [ -75.200749, 39.951449 ], [ -75.19988, 39.95135 ], [ -75.199209, 39.951279 ], [ -75.199299, 39.9509 ], [ -75.199359, 39.950659 ], [ -75.199449, 39.95036 ], [ -75.199479, 39.95026 ], [ -75.199579, 39.950039 ], [ -75.199629, 39.949839 ], [ -75.19965, 39.94973 ], [ -75.19965, 39.94961 ], [ -75.199629, 39.94947 ], [ -75.19961, 39.949399 ], [ -75.19955, 39.94926 ], [ -75.199489, 39.94919 ], [ -75.199439, 39.949119 ], [ -75.199309, 39.948939 ], [ -75.19924, 39.94884 ], [ -75.19915, 39.948689 ], [ -75.199079, 39.94857 ], [ -75.198999, 39.948429 ], [ -75.19887, 39.9482 ], [ -75.19884, 39.948139 ], [ -75.198809, 39.948059 ], [ -75.198669, 39.94772 ], [ -75.1986, 39.947499 ], [ -75.19856, 39.94727 ], [ -75.19856, 39.94701 ], [ -75.19853, 39.946769 ], [ -75.19853, 39.94673 ], [ -75.198539, 39.94656 ], [ -75.19856, 39.946089 ], [ -75.198399, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.19772, 39.946079 ], [ -75.19757, 39.94612 ], [ -75.19694, 39.94637 ], [ -75.19658, 39.945799 ], [ -75.19649, 39.945629 ], [ -75.196419, 39.94556 ], [ -75.196329, 39.94549 ], [ -75.19623, 39.94547 ], [ -75.19614, 39.94547 ], [ -75.19595, 39.94549 ], [ -75.19559, 39.94558 ], [ -75.195129, 39.945699 ], [ -75.194259, 39.945999 ], [ -75.1937, 39.946259 ], [ -75.193629, 39.94629 ], [ -75.193049, 39.946539 ], [ -75.192879, 39.94664 ], [ -75.19199, 39.947069 ], [ -75.191559, 39.947259 ], [ -75.19145, 39.947329 ], [ -75.191379, 39.94739 ], [ -75.191299, 39.947579 ], [ -75.19142, 39.947609 ], [ -75.1915, 39.94765 ], [ -75.191569, 39.947699 ], [ -75.19164, 39.947759 ], [ -75.19222, 39.94847 ], [ -75.192299, 39.94856 ], [ -75.192419, 39.948609 ], [ -75.1929, 39.948689 ], [ -75.1929, 39.94871 ], [ -75.192789, 39.94917 ], [ -75.19276, 39.949309 ], [ -75.19253, 39.949589 ], [ -75.19232, 39.94979 ], [ -75.192109, 39.94998 ], [ -75.191709, 39.950319 ], [ -75.191399, 39.950559 ], [ -75.19131, 39.95064 ], [ -75.19033, 39.95142 ], [ -75.19028, 39.95151 ], [ -75.190209, 39.95171 ], [ -75.190039, 39.952559 ], [ -75.189909, 39.953179 ], [ -75.189899, 39.953259 ], [ -75.189859, 39.953469 ], [ -75.189819, 39.953649 ], [ -75.189729, 39.95412 ], [ -75.189369, 39.954069 ], [ -75.1878, 39.95386 ], [ -75.18744, 39.953809 ], [ -75.18736, 39.953799 ], [ -75.186, 39.95361 ], [ -75.1856, 39.953559 ], [ -75.18529, 39.95352 ], [ -75.183739, 39.9533 ], [ -75.182759, 39.953189 ], [ -75.182569, 39.953169 ], [ -75.18246, 39.95316 ], [ -75.182339, 39.95315 ], [ -75.18195, 39.953099 ], [ -75.181889, 39.953089 ], [ -75.181839, 39.953089 ], [ -75.1817, 39.953079 ], [ -75.18152, 39.95307 ], [ -75.18097, 39.952999 ], [ -75.18042, 39.952929 ], [ -75.180269, 39.952909 ], [ -75.18011, 39.95289 ], [ -75.17917, 39.95277 ], [ -75.1785, 39.95269 ], [ -75.17818, 39.952639 ], [ -75.177839, 39.9526 ], [ -75.177479, 39.952559 ], [ -75.17702, 39.95251 ], [ -75.176189, 39.9524 ], [ -75.17539, 39.95231 ], [ -75.17507, 39.952269 ], [ -75.173469, 39.95206 ], [ -75.173069, 39.952009 ], [ -75.171909, 39.95186 ], [ -75.17134, 39.95179 ], [ -75.17036, 39.951659 ], [ -75.16877, 39.951469 ], [ -75.167179, 39.95125 ], [ -75.165609, 39.95107 ], [ -75.164889, 39.95098 ], [ -75.16455, 39.950939 ], [ -75.164029, 39.95088 ], [ -75.16395, 39.95087 ], [ -75.163309, 39.95079 ], [ -75.162819, 39.95073 ], [ -75.16176, 39.9506 ], [ -75.160199, 39.950379 ], [ -75.159569, 39.950309 ], [ -75.158619, 39.950209 ], [ -75.15704, 39.950019 ], [ -75.156209, 39.94992 ], [ -75.155469, 39.94982 ], [ -75.1546, 39.94971 ], [ -75.153899, 39.94962 ], [ -75.15288, 39.949479 ], [ -75.15234, 39.949409 ], [ -75.150759, 39.949219 ], [ -75.15059, 39.9492 ], [ -75.15047, 39.94918 ], [ -75.1502, 39.949149 ], [ -75.149589, 39.94907 ], [ -75.14933, 39.949039 ], [ -75.14921, 39.94902 ], [ -75.14888, 39.94898 ], [ -75.148559, 39.948939 ], [ -75.147959, 39.948869 ], [ -75.14759, 39.94883 ], [ -75.14709, 39.948759 ], [ -75.14686, 39.94873 ], [ -75.146789, 39.94872 ], [ -75.146019, 39.94862 ], [ -75.145219, 39.948519 ], [ -75.14496, 39.948489 ], [ -75.144669, 39.94845 ], [ -75.144049, 39.94837 ], [ -75.144189, 39.94791 ], [ -75.144219, 39.94764 ], [ -75.14424, 39.947529 ], [ -75.14425, 39.94745 ], [ -75.14429, 39.947239 ], [ -75.144399, 39.94685 ], [ -75.14442, 39.94676 ], [ -75.14447, 39.94655 ], [ -75.144489, 39.94647 ], [ -75.144399, 39.94646 ], [ -75.144319, 39.946429 ], [ -75.14424, 39.94638 ], [ -75.14416, 39.94629 ], [ -75.144099, 39.94619 ], [ -75.14398, 39.94601 ], [ -75.14389, 39.945819 ], [ -75.14385, 39.945709 ], [ -75.14384, 39.94559 ], [ -75.143829, 39.94547 ], [ -75.143829, 39.945339 ], [ -75.1439, 39.945069 ], [ -75.143909, 39.94496 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307589", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.149549, 39.94748 ], [ -75.15028, 39.947579 ], [ -75.1511, 39.947689 ], [ -75.15158, 39.947759 ], [ -75.15267, 39.9479 ], [ -75.15317, 39.947959 ], [ -75.15425, 39.94809 ], [ -75.15505, 39.94819 ], [ -75.15582, 39.94828 ], [ -75.156459, 39.94835 ], [ -75.157379, 39.94846 ], [ -75.157809, 39.948519 ], [ -75.15816, 39.94857 ], [ -75.15833, 39.948599 ], [ -75.158489, 39.94862 ], [ -75.15896, 39.948689 ], [ -75.159759, 39.948789 ], [ -75.16055, 39.948879 ], [ -75.16121, 39.94898 ], [ -75.1613, 39.94899 ], [ -75.161409, 39.949 ], [ -75.162099, 39.94909 ], [ -75.16314, 39.949219 ], [ -75.16369, 39.94928 ], [ -75.16428, 39.94934 ], [ -75.164339, 39.94935 ], [ -75.16518, 39.94946 ], [ -75.16594, 39.94955 ], [ -75.16675, 39.94965 ], [ -75.167539, 39.949749 ], [ -75.167949, 39.9498 ], [ -75.16908, 39.949949 ], [ -75.17066, 39.95015 ], [ -75.17126, 39.950219 ], [ -75.172169, 39.950319 ], [ -75.17224, 39.95033 ], [ -75.172759, 39.950409 ], [ -75.17359, 39.95051 ], [ -75.173789, 39.95054 ], [ -75.175319, 39.950739 ], [ -75.175729, 39.9508 ], [ -75.176529, 39.9509 ], [ -75.177339, 39.951 ], [ -75.177939, 39.95108 ], [ -75.17849, 39.95115 ], [ -75.17885, 39.951189 ], [ -75.1789, 39.951199 ], [ -75.179009, 39.951209 ], [ -75.17949, 39.951269 ], [ -75.18034, 39.951379 ], [ -75.18069, 39.95142 ], [ -75.180989, 39.951459 ], [ -75.181179, 39.951479 ], [ -75.181489, 39.951489 ], [ -75.182079, 39.951569 ], [ -75.182259, 39.95159 ], [ -75.182579, 39.95162 ], [ -75.18268, 39.951629 ], [ -75.18277, 39.951639 ], [ -75.182979, 39.951669 ], [ -75.18309, 39.95168 ], [ -75.18341, 39.951729 ], [ -75.18386, 39.9518 ], [ -75.184059, 39.951829 ], [ -75.184919, 39.951939 ], [ -75.185579, 39.952019 ], [ -75.1857, 39.95204 ], [ -75.185949, 39.95207 ], [ -75.18624, 39.952099 ], [ -75.186619, 39.95215 ], [ -75.18759, 39.952259 ], [ -75.187689, 39.952269 ], [ -75.187739, 39.952279 ], [ -75.18781, 39.952289 ], [ -75.18786, 39.952299 ], [ -75.18789, 39.952299 ], [ -75.18813, 39.95233 ], [ -75.18845, 39.952369 ], [ -75.188689, 39.9524 ], [ -75.190039, 39.952559 ], [ -75.19114, 39.95269 ], [ -75.191569, 39.952739 ], [ -75.191649, 39.952749 ], [ -75.192099, 39.952809 ], [ -75.192199, 39.952299 ], [ -75.19231, 39.951809 ], [ -75.192329, 39.95169 ], [ -75.1924, 39.951369 ], [ -75.192459, 39.951109 ], [ -75.1925, 39.950929 ], [ -75.192599, 39.95044 ], [ -75.19258, 39.95019 ], [ -75.192599, 39.94991 ], [ -75.19276, 39.949309 ], [ -75.192789, 39.94917 ], [ -75.1929, 39.94871 ], [ -75.1929, 39.948689 ], [ -75.19299, 39.948309 ], [ -75.193059, 39.94817 ], [ -75.193189, 39.948069 ], [ -75.19343, 39.947959 ], [ -75.193649, 39.947859 ], [ -75.193909, 39.947759 ], [ -75.19492, 39.94729 ], [ -75.19533, 39.9471 ], [ -75.195969, 39.946809 ], [ -75.19694, 39.94637 ], [ -75.19757, 39.94612 ], [ -75.19772, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.198399, 39.946079 ], [ -75.198409, 39.946349 ], [ -75.19843, 39.946789 ], [ -75.198459, 39.94694 ], [ -75.19848, 39.947049 ], [ -75.19856, 39.94727 ], [ -75.1986, 39.947499 ], [ -75.198669, 39.94772 ], [ -75.198809, 39.948059 ], [ -75.19884, 39.948139 ], [ -75.19887, 39.9482 ], [ -75.198999, 39.948429 ], [ -75.199079, 39.94857 ], [ -75.19915, 39.948689 ], [ -75.19924, 39.94884 ], [ -75.199309, 39.948939 ], [ -75.199439, 39.949119 ], [ -75.199489, 39.94919 ], [ -75.19955, 39.94926 ], [ -75.19961, 39.949399 ], [ -75.199629, 39.94947 ], [ -75.19965, 39.94961 ], [ -75.19965, 39.94973 ], [ -75.199629, 39.949839 ], [ -75.199579, 39.950039 ], [ -75.199479, 39.95026 ], [ -75.199449, 39.95036 ], [ -75.199359, 39.950659 ], [ -75.199299, 39.9509 ], [ -75.199209, 39.951279 ], [ -75.19988, 39.95135 ], [ -75.200749, 39.951449 ], [ -75.201609, 39.951559 ], [ -75.201919, 39.9516 ], [ -75.203079, 39.951749 ], [ -75.204249, 39.951919 ], [ -75.205569, 39.95206 ], [ -75.206909, 39.95223 ], [ -75.20784, 39.95233 ], [ -75.20793, 39.952349 ], [ -75.20924, 39.95252 ], [ -75.210549, 39.952659 ], [ -75.210999, 39.952719 ], [ -75.212179, 39.95287 ], [ -75.21324, 39.952989 ], [ -75.21413, 39.953099 ], [ -75.21513, 39.95323 ], [ -75.21612, 39.953359 ], [ -75.216909, 39.953459 ], [ -75.218119, 39.95361 ], [ -75.219119, 39.953739 ], [ -75.219659, 39.95379 ], [ -75.2199, 39.953819 ], [ -75.220099, 39.95384 ], [ -75.22106, 39.95397 ], [ -75.22206, 39.954089 ], [ -75.22305, 39.95421 ], [ -75.224049, 39.954339 ], [ -75.226029, 39.95458 ], [ -75.227979, 39.95483 ], [ -75.229769, 39.95505 ], [ -75.23192, 39.95532 ], [ -75.232879, 39.955439 ], [ -75.23353, 39.955519 ], [ -75.23399, 39.95558 ], [ -75.23471, 39.95565 ], [ -75.235269, 39.95573 ], [ -75.235989, 39.95583 ], [ -75.236699, 39.95592 ], [ -75.23726, 39.955989 ], [ -75.237929, 39.956069 ], [ -75.23834, 39.95611 ], [ -75.239169, 39.956219 ], [ -75.23929, 39.956239 ], [ -75.239449, 39.956259 ], [ -75.23991, 39.956319 ], [ -75.24137, 39.956489 ], [ -75.24189, 39.95655 ], [ -75.243459, 39.95675 ], [ -75.243859, 39.956799 ], [ -75.24397, 39.956259 ], [ -75.24407, 39.95574 ], [ -75.244229, 39.954979 ], [ -75.244566, 39.955018 ], [ -75.244423, 39.955785 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307590", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.157379, 39.94846 ], [ -75.157809, 39.948519 ], [ -75.15816, 39.94857 ], [ -75.15833, 39.948599 ], [ -75.158489, 39.94862 ], [ -75.15896, 39.948689 ], [ -75.159759, 39.948789 ], [ -75.16055, 39.948879 ], [ -75.16121, 39.94898 ], [ -75.1613, 39.94899 ], [ -75.161409, 39.949 ], [ -75.162099, 39.94909 ], [ -75.16314, 39.949219 ], [ -75.16369, 39.94928 ], [ -75.16428, 39.94934 ], [ -75.164339, 39.94935 ], [ -75.16518, 39.94946 ], [ -75.16594, 39.94955 ], [ -75.16675, 39.94965 ], [ -75.167539, 39.949749 ], [ -75.167949, 39.9498 ], [ -75.16908, 39.949949 ], [ -75.17066, 39.95015 ], [ -75.17126, 39.950219 ], [ -75.172169, 39.950319 ], [ -75.17224, 39.95033 ], [ -75.172759, 39.950409 ], [ -75.17359, 39.95051 ], [ -75.173789, 39.95054 ], [ -75.175319, 39.950739 ], [ -75.175729, 39.9508 ], [ -75.176529, 39.9509 ], [ -75.177339, 39.951 ], [ -75.177939, 39.95108 ], [ -75.17849, 39.95115 ], [ -75.17885, 39.951189 ], [ -75.1789, 39.951199 ], [ -75.179009, 39.951209 ], [ -75.17949, 39.951269 ], [ -75.18034, 39.951379 ], [ -75.18069, 39.95142 ], [ -75.180989, 39.951459 ], [ -75.181179, 39.951479 ], [ -75.181489, 39.951489 ], [ -75.182079, 39.951569 ], [ -75.182259, 39.95159 ], [ -75.182579, 39.95162 ], [ -75.18268, 39.951629 ], [ -75.18277, 39.951639 ], [ -75.182979, 39.951669 ], [ -75.18309, 39.95168 ], [ -75.18341, 39.951729 ], [ -75.18386, 39.9518 ], [ -75.184059, 39.951829 ], [ -75.184919, 39.951939 ], [ -75.185579, 39.952019 ], [ -75.1857, 39.95204 ], [ -75.185949, 39.95207 ], [ -75.18624, 39.952099 ], [ -75.186619, 39.95215 ], [ -75.18759, 39.952259 ], [ -75.187689, 39.952269 ], [ -75.187739, 39.952279 ], [ -75.18781, 39.952289 ], [ -75.18786, 39.952299 ], [ -75.18789, 39.952299 ], [ -75.18813, 39.95233 ], [ -75.18845, 39.952369 ], [ -75.188689, 39.9524 ], [ -75.190039, 39.952559 ], [ -75.19114, 39.95269 ], [ -75.191569, 39.952739 ], [ -75.191649, 39.952749 ], [ -75.192099, 39.952809 ], [ -75.192199, 39.952299 ], [ -75.19231, 39.951809 ], [ -75.192329, 39.95169 ], [ -75.1924, 39.951369 ], [ -75.192459, 39.951109 ], [ -75.1925, 39.950929 ], [ -75.192599, 39.95044 ], [ -75.19258, 39.95019 ], [ -75.192599, 39.94991 ], [ -75.19276, 39.949309 ], [ -75.192789, 39.94917 ], [ -75.1929, 39.94871 ], [ -75.1929, 39.948689 ], [ -75.19299, 39.948309 ], [ -75.193059, 39.94817 ], [ -75.193189, 39.948069 ], [ -75.19343, 39.947959 ], [ -75.193649, 39.947859 ], [ -75.193909, 39.947759 ], [ -75.19492, 39.94729 ], [ -75.19533, 39.9471 ], [ -75.195969, 39.946809 ], [ -75.19694, 39.94637 ], [ -75.19757, 39.94612 ], [ -75.19772, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.198399, 39.946079 ], [ -75.198409, 39.946349 ], [ -75.19843, 39.946789 ], [ -75.198459, 39.94694 ], [ -75.19848, 39.947049 ], [ -75.19856, 39.94727 ], [ -75.1986, 39.947499 ], [ -75.198669, 39.94772 ], [ -75.198809, 39.948059 ], [ -75.19884, 39.948139 ], [ -75.19887, 39.9482 ], [ -75.198999, 39.948429 ], [ -75.199079, 39.94857 ], [ -75.19915, 39.948689 ], [ -75.19924, 39.94884 ], [ -75.199309, 39.948939 ], [ -75.199439, 39.949119 ], [ -75.199489, 39.94919 ], [ -75.19955, 39.94926 ], [ -75.19961, 39.949399 ], [ -75.199629, 39.94947 ], [ -75.19965, 39.94961 ], [ -75.19965, 39.94973 ], [ -75.199629, 39.949839 ], [ -75.199579, 39.950039 ], [ -75.199479, 39.95026 ], [ -75.199449, 39.95036 ], [ -75.199359, 39.950659 ], [ -75.199299, 39.9509 ], [ -75.199209, 39.951279 ], [ -75.19988, 39.95135 ], [ -75.200749, 39.951449 ], [ -75.201609, 39.951559 ], [ -75.201919, 39.9516 ], [ -75.203079, 39.951749 ], [ -75.204249, 39.951919 ], [ -75.205569, 39.95206 ], [ -75.206909, 39.95223 ], [ -75.20784, 39.95233 ], [ -75.20793, 39.952349 ], [ -75.20924, 39.95252 ], [ -75.210549, 39.952659 ], [ -75.210999, 39.952719 ], [ -75.212179, 39.95287 ], [ -75.21324, 39.952989 ], [ -75.21413, 39.953099 ], [ -75.21513, 39.95323 ], [ -75.21612, 39.953359 ], [ -75.216909, 39.953459 ], [ -75.218119, 39.95361 ], [ -75.219119, 39.953739 ], [ -75.219659, 39.95379 ], [ -75.2199, 39.953819 ], [ -75.220099, 39.95384 ], [ -75.22106, 39.95397 ], [ -75.22206, 39.954089 ], [ -75.22305, 39.95421 ], [ -75.224049, 39.954339 ], [ -75.226029, 39.95458 ], [ -75.227979, 39.95483 ], [ -75.229769, 39.95505 ], [ -75.23192, 39.95532 ], [ -75.232879, 39.955439 ], [ -75.23353, 39.955519 ], [ -75.23399, 39.95558 ], [ -75.23471, 39.95565 ], [ -75.235269, 39.95573 ], [ -75.235989, 39.95583 ], [ -75.236699, 39.95592 ], [ -75.23726, 39.955989 ], [ -75.237929, 39.956069 ], [ -75.23834, 39.95611 ], [ -75.239169, 39.956219 ], [ -75.23929, 39.956239 ], [ -75.239449, 39.956259 ], [ -75.23991, 39.956319 ], [ -75.24137, 39.956489 ], [ -75.24189, 39.95655 ], [ -75.243459, 39.95675 ], [ -75.243859, 39.956799 ], [ -75.245839, 39.957049 ], [ -75.24659, 39.957129 ], [ -75.24716, 39.95721 ], [ -75.24793, 39.95728 ], [ -75.2486, 39.95737 ], [ -75.24891, 39.95738 ], [ -75.2491, 39.95736 ], [ -75.249249, 39.957329 ], [ -75.249389, 39.95729 ], [ -75.249489, 39.957249 ], [ -75.24983, 39.9571 ], [ -75.25, 39.95699 ], [ -75.25014, 39.956859 ], [ -75.25031, 39.95664 ], [ -75.25072, 39.956129 ], [ -75.250919, 39.955889 ], [ -75.25116, 39.955709 ], [ -75.25145, 39.955609 ], [ -75.251649, 39.955529 ], [ -75.251739, 39.955499 ], [ -75.251959, 39.955429 ], [ -75.252669, 39.955159 ], [ -75.25328, 39.95492 ], [ -75.254759, 39.954349 ], [ -75.255, 39.954279 ], [ -75.255209, 39.954279 ], [ -75.255419, 39.9543 ], [ -75.255869, 39.95442 ], [ -75.256599, 39.9546 ], [ -75.25679, 39.954619 ], [ -75.256989, 39.9546 ], [ -75.25728, 39.954459 ], [ -75.25737, 39.95441 ], [ -75.25756, 39.9543 ], [ -75.257759, 39.954189 ], [ -75.257949, 39.954079 ], [ -75.25819, 39.95394 ], [ -75.25828, 39.953889 ], [ -75.2585, 39.95376 ], [ -75.258669, 39.953709 ], [ -75.25891, 39.953629 ], [ -75.25914, 39.9536 ], [ -75.259299, 39.95358 ], [ -75.26003, 39.95348 ], [ -75.26067, 39.953379 ], [ -75.261279, 39.953269 ], [ -75.261459, 39.95324 ], [ -75.26193, 39.95316 ], [ -75.262169, 39.95312 ], [ -75.262319, 39.953089 ], [ -75.262629, 39.95304 ], [ -75.262849, 39.95298 ], [ -75.263, 39.952909 ], [ -75.263069, 39.95288 ], [ -75.263469, 39.9527 ], [ -75.263659, 39.95259 ], [ -75.264339, 39.952259 ], [ -75.26467, 39.952089 ], [ -75.26543, 39.951739 ], [ -75.265629, 39.951659 ], [ -75.265859, 39.951559 ], [ -75.26607, 39.951469 ], [ -75.26628, 39.951379 ], [ -75.26642, 39.95153 ], [ -75.266489, 39.9516 ], [ -75.26682, 39.951669 ], [ -75.26746, 39.951809 ], [ -75.267609, 39.951839 ], [ -75.26773, 39.95187 ], [ -75.26836, 39.951999 ], [ -75.26837, 39.951909 ], [ -75.26778, 39.951749 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307591", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143909, 39.94496 ], [ -75.14397, 39.944619 ], [ -75.14402, 39.94439 ], [ -75.14492, 39.9445 ], [ -75.14569, 39.94461 ], [ -75.14605, 39.944649 ], [ -75.146919, 39.94477 ], [ -75.14767, 39.94487 ], [ -75.14844, 39.94497 ], [ -75.149229, 39.945069 ], [ -75.150069, 39.945179 ], [ -75.149999, 39.94551 ], [ -75.149819, 39.946239 ], [ -75.149769, 39.94649 ], [ -75.14969, 39.946799 ], [ -75.149549, 39.94748 ], [ -75.15028, 39.947579 ], [ -75.1511, 39.947689 ], [ -75.15158, 39.947759 ], [ -75.15267, 39.9479 ], [ -75.15317, 39.947959 ], [ -75.15425, 39.94809 ], [ -75.15505, 39.94819 ], [ -75.15582, 39.94828 ], [ -75.156459, 39.94835 ], [ -75.157379, 39.94846 ], [ -75.157809, 39.948519 ], [ -75.15816, 39.94857 ], [ -75.15833, 39.948599 ], [ -75.158489, 39.94862 ], [ -75.15896, 39.948689 ], [ -75.159759, 39.948789 ], [ -75.16055, 39.948879 ], [ -75.16121, 39.94898 ], [ -75.1613, 39.94899 ], [ -75.161409, 39.949 ], [ -75.162099, 39.94909 ], [ -75.16314, 39.949219 ], [ -75.16369, 39.94928 ], [ -75.16428, 39.94934 ], [ -75.164339, 39.94935 ], [ -75.16518, 39.94946 ], [ -75.16594, 39.94955 ], [ -75.16675, 39.94965 ], [ -75.167539, 39.949749 ], [ -75.167949, 39.9498 ], [ -75.16908, 39.949949 ], [ -75.17066, 39.95015 ], [ -75.17126, 39.950219 ], [ -75.172169, 39.950319 ], [ -75.17224, 39.95033 ], [ -75.172759, 39.950409 ], [ -75.17359, 39.95051 ], [ -75.173789, 39.95054 ], [ -75.175319, 39.950739 ], [ -75.175729, 39.9508 ], [ -75.176529, 39.9509 ], [ -75.177339, 39.951 ], [ -75.177939, 39.95108 ], [ -75.17849, 39.95115 ], [ -75.17885, 39.951189 ], [ -75.1789, 39.951199 ], [ -75.179009, 39.951209 ], [ -75.17949, 39.951269 ], [ -75.18034, 39.951379 ], [ -75.18069, 39.95142 ], [ -75.180989, 39.951459 ], [ -75.181179, 39.951479 ], [ -75.181489, 39.951489 ], [ -75.182079, 39.951569 ], [ -75.182259, 39.95159 ], [ -75.182579, 39.95162 ], [ -75.18268, 39.951629 ], [ -75.18277, 39.951639 ], [ -75.182979, 39.951669 ], [ -75.18309, 39.95168 ], [ -75.18341, 39.951729 ], [ -75.18386, 39.9518 ], [ -75.184059, 39.951829 ], [ -75.184919, 39.951939 ], [ -75.185579, 39.952019 ], [ -75.1857, 39.95204 ], [ -75.185949, 39.95207 ], [ -75.18624, 39.952099 ], [ -75.186619, 39.95215 ], [ -75.18759, 39.952259 ], [ -75.187689, 39.952269 ], [ -75.187739, 39.952279 ], [ -75.18781, 39.952289 ], [ -75.18786, 39.952299 ], [ -75.18789, 39.952299 ], [ -75.18813, 39.95233 ], [ -75.18845, 39.952369 ], [ -75.188689, 39.9524 ], [ -75.190039, 39.952559 ], [ -75.19114, 39.95269 ], [ -75.191569, 39.952739 ], [ -75.191649, 39.952749 ], [ -75.192099, 39.952809 ], [ -75.192199, 39.952299 ], [ -75.19231, 39.951809 ], [ -75.192329, 39.95169 ], [ -75.1924, 39.951369 ], [ -75.192459, 39.951109 ], [ -75.1925, 39.950929 ], [ -75.192599, 39.95044 ], [ -75.19258, 39.95019 ], [ -75.192599, 39.94991 ], [ -75.19276, 39.949309 ], [ -75.192789, 39.94917 ], [ -75.1929, 39.94871 ], [ -75.1929, 39.948689 ], [ -75.19299, 39.948309 ], [ -75.193059, 39.94817 ], [ -75.193189, 39.948069 ], [ -75.19343, 39.947959 ], [ -75.193649, 39.947859 ], [ -75.193909, 39.947759 ], [ -75.19492, 39.94729 ], [ -75.19533, 39.9471 ], [ -75.195969, 39.946809 ], [ -75.19694, 39.94637 ], [ -75.19757, 39.94612 ], [ -75.19772, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.198399, 39.946079 ], [ -75.198409, 39.946349 ], [ -75.19843, 39.946789 ], [ -75.198459, 39.94694 ], [ -75.19848, 39.947049 ], [ -75.19856, 39.94727 ], [ -75.1986, 39.947499 ], [ -75.198669, 39.94772 ], [ -75.198809, 39.948059 ], [ -75.19884, 39.948139 ], [ -75.19887, 39.9482 ], [ -75.198999, 39.948429 ], [ -75.199079, 39.94857 ], [ -75.19915, 39.948689 ], [ -75.19924, 39.94884 ], [ -75.199309, 39.948939 ], [ -75.199439, 39.949119 ], [ -75.199489, 39.94919 ], [ -75.19955, 39.94926 ], [ -75.19961, 39.949399 ], [ -75.199629, 39.94947 ], [ -75.19965, 39.94961 ], [ -75.19965, 39.94973 ], [ -75.199629, 39.949839 ], [ -75.199579, 39.950039 ], [ -75.199479, 39.95026 ], [ -75.199449, 39.95036 ], [ -75.199359, 39.950659 ], [ -75.199299, 39.9509 ], [ -75.199209, 39.951279 ], [ -75.19988, 39.95135 ], [ -75.200749, 39.951449 ], [ -75.201609, 39.951559 ], [ -75.201919, 39.9516 ], [ -75.203079, 39.951749 ], [ -75.204249, 39.951919 ], [ -75.205569, 39.95206 ], [ -75.206909, 39.95223 ], [ -75.20784, 39.95233 ], [ -75.20793, 39.952349 ], [ -75.20924, 39.95252 ], [ -75.210549, 39.952659 ], [ -75.210999, 39.952719 ], [ -75.212179, 39.95287 ], [ -75.21324, 39.952989 ], [ -75.21413, 39.953099 ], [ -75.21513, 39.95323 ], [ -75.21612, 39.953359 ], [ -75.216909, 39.953459 ], [ -75.218119, 39.95361 ], [ -75.219119, 39.953739 ], [ -75.219659, 39.95379 ], [ -75.2199, 39.953819 ], [ -75.220099, 39.95384 ], [ -75.22106, 39.95397 ], [ -75.22206, 39.954089 ], [ -75.22305, 39.95421 ], [ -75.224049, 39.954339 ], [ -75.226029, 39.95458 ], [ -75.227979, 39.95483 ], [ -75.229769, 39.95505 ], [ -75.23192, 39.95532 ], [ -75.232879, 39.955439 ], [ -75.23353, 39.955519 ], [ -75.23399, 39.95558 ], [ -75.23471, 39.95565 ], [ -75.235269, 39.95573 ], [ -75.235989, 39.95583 ], [ -75.236699, 39.95592 ], [ -75.23726, 39.955989 ], [ -75.237929, 39.956069 ], [ -75.23834, 39.95611 ], [ -75.239169, 39.956219 ], [ -75.23929, 39.956239 ], [ -75.239449, 39.956259 ], [ -75.23991, 39.956319 ], [ -75.24137, 39.956489 ], [ -75.24189, 39.95655 ], [ -75.243459, 39.95675 ], [ -75.243859, 39.956799 ], [ -75.24397, 39.956259 ], [ -75.24407, 39.95574 ], [ -75.244229, 39.954979 ], [ -75.244566, 39.955018 ], [ -75.244423, 39.955785 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307592", "route_id": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143909, 39.94496 ], [ -75.14397, 39.944619 ], [ -75.14402, 39.94439 ], [ -75.14492, 39.9445 ], [ -75.14569, 39.94461 ], [ -75.14605, 39.944649 ], [ -75.146919, 39.94477 ], [ -75.14767, 39.94487 ], [ -75.14844, 39.94497 ], [ -75.149229, 39.945069 ], [ -75.150069, 39.945179 ], [ -75.149999, 39.94551 ], [ -75.149819, 39.946239 ], [ -75.149769, 39.94649 ], [ -75.14969, 39.946799 ], [ -75.149549, 39.94748 ], [ -75.15028, 39.947579 ], [ -75.1511, 39.947689 ], [ -75.15158, 39.947759 ], [ -75.15267, 39.9479 ], [ -75.15317, 39.947959 ], [ -75.15425, 39.94809 ], [ -75.15505, 39.94819 ], [ -75.15582, 39.94828 ], [ -75.156459, 39.94835 ], [ -75.157379, 39.94846 ], [ -75.157809, 39.948519 ], [ -75.15816, 39.94857 ], [ -75.15833, 39.948599 ], [ -75.158489, 39.94862 ], [ -75.15896, 39.948689 ], [ -75.159759, 39.948789 ], [ -75.16055, 39.948879 ], [ -75.16121, 39.94898 ], [ -75.1613, 39.94899 ], [ -75.161409, 39.949 ], [ -75.162099, 39.94909 ], [ -75.16314, 39.949219 ], [ -75.16369, 39.94928 ], [ -75.16428, 39.94934 ], [ -75.164339, 39.94935 ], [ -75.16518, 39.94946 ], [ -75.16594, 39.94955 ], [ -75.16675, 39.94965 ], [ -75.167539, 39.949749 ], [ -75.167949, 39.9498 ], [ -75.16908, 39.949949 ], [ -75.17066, 39.95015 ], [ -75.17126, 39.950219 ], [ -75.172169, 39.950319 ], [ -75.17224, 39.95033 ], [ -75.172759, 39.950409 ], [ -75.17359, 39.95051 ], [ -75.173789, 39.95054 ], [ -75.175319, 39.950739 ], [ -75.175729, 39.9508 ], [ -75.176529, 39.9509 ], [ -75.177339, 39.951 ], [ -75.177939, 39.95108 ], [ -75.17849, 39.95115 ], [ -75.17885, 39.951189 ], [ -75.1789, 39.951199 ], [ -75.179009, 39.951209 ], [ -75.17949, 39.951269 ], [ -75.18034, 39.951379 ], [ -75.18069, 39.95142 ], [ -75.180989, 39.951459 ], [ -75.181179, 39.951479 ], [ -75.181489, 39.951489 ], [ -75.182079, 39.951569 ], [ -75.182259, 39.95159 ], [ -75.182579, 39.95162 ], [ -75.18268, 39.951629 ], [ -75.18277, 39.951639 ], [ -75.182979, 39.951669 ], [ -75.18309, 39.95168 ], [ -75.18341, 39.951729 ], [ -75.18386, 39.9518 ], [ -75.184059, 39.951829 ], [ -75.184919, 39.951939 ], [ -75.185579, 39.952019 ], [ -75.1857, 39.95204 ], [ -75.185949, 39.95207 ], [ -75.18624, 39.952099 ], [ -75.186619, 39.95215 ], [ -75.18759, 39.952259 ], [ -75.187689, 39.952269 ], [ -75.187739, 39.952279 ], [ -75.18781, 39.952289 ], [ -75.18786, 39.952299 ], [ -75.18789, 39.952299 ], [ -75.18813, 39.95233 ], [ -75.18845, 39.952369 ], [ -75.188689, 39.9524 ], [ -75.190039, 39.952559 ], [ -75.19114, 39.95269 ], [ -75.191569, 39.952739 ], [ -75.191649, 39.952749 ], [ -75.192099, 39.952809 ], [ -75.192199, 39.952299 ], [ -75.19231, 39.951809 ], [ -75.192329, 39.95169 ], [ -75.1924, 39.951369 ], [ -75.192459, 39.951109 ], [ -75.1925, 39.950929 ], [ -75.192599, 39.95044 ], [ -75.19258, 39.95019 ], [ -75.192599, 39.94991 ], [ -75.19276, 39.949309 ], [ -75.192789, 39.94917 ], [ -75.1929, 39.94871 ], [ -75.1929, 39.948689 ], [ -75.19299, 39.948309 ], [ -75.193059, 39.94817 ], [ -75.193189, 39.948069 ], [ -75.19343, 39.947959 ], [ -75.193649, 39.947859 ], [ -75.193909, 39.947759 ], [ -75.19492, 39.94729 ], [ -75.19533, 39.9471 ], [ -75.195969, 39.946809 ], [ -75.19694, 39.94637 ], [ -75.19757, 39.94612 ], [ -75.19772, 39.946079 ], [ -75.19788, 39.946069 ], [ -75.198399, 39.946079 ], [ -75.198409, 39.946349 ], [ -75.19843, 39.946789 ], [ -75.198459, 39.94694 ], [ -75.19848, 39.947049 ], [ -75.19856, 39.94727 ], [ -75.1986, 39.947499 ], [ -75.198669, 39.94772 ], [ -75.198809, 39.948059 ], [ -75.19884, 39.948139 ], [ -75.19887, 39.9482 ], [ -75.198999, 39.948429 ], [ -75.199079, 39.94857 ], [ -75.19915, 39.948689 ], [ -75.19924, 39.94884 ], [ -75.199309, 39.948939 ], [ -75.199439, 39.949119 ], [ -75.199489, 39.94919 ], [ -75.19955, 39.94926 ], [ -75.19961, 39.949399 ], [ -75.199629, 39.94947 ], [ -75.19965, 39.94961 ], [ -75.19965, 39.94973 ], [ -75.199629, 39.949839 ], [ -75.199579, 39.950039 ], [ -75.199479, 39.95026 ], [ -75.199449, 39.95036 ], [ -75.199359, 39.950659 ], [ -75.199299, 39.9509 ], [ -75.199209, 39.951279 ], [ -75.19988, 39.95135 ], [ -75.200749, 39.951449 ], [ -75.201609, 39.951559 ], [ -75.201919, 39.9516 ], [ -75.203079, 39.951749 ], [ -75.204249, 39.951919 ], [ -75.205569, 39.95206 ], [ -75.206909, 39.95223 ], [ -75.20784, 39.95233 ], [ -75.20793, 39.952349 ], [ -75.20924, 39.95252 ], [ -75.210549, 39.952659 ], [ -75.210999, 39.952719 ], [ -75.212179, 39.95287 ], [ -75.21324, 39.952989 ], [ -75.21413, 39.953099 ], [ -75.21513, 39.95323 ], [ -75.21612, 39.953359 ], [ -75.216909, 39.953459 ], [ -75.218119, 39.95361 ], [ -75.219119, 39.953739 ], [ -75.219659, 39.95379 ], [ -75.2199, 39.953819 ], [ -75.220099, 39.95384 ], [ -75.22106, 39.95397 ], [ -75.22206, 39.954089 ], [ -75.22305, 39.95421 ], [ -75.224049, 39.954339 ], [ -75.226029, 39.95458 ], [ -75.227979, 39.95483 ], [ -75.229769, 39.95505 ], [ -75.23192, 39.95532 ], [ -75.232879, 39.955439 ], [ -75.23353, 39.955519 ], [ -75.23399, 39.95558 ], [ -75.23471, 39.95565 ], [ -75.235269, 39.95573 ], [ -75.235989, 39.95583 ], [ -75.236699, 39.95592 ], [ -75.23726, 39.955989 ], [ -75.237929, 39.956069 ], [ -75.23834, 39.95611 ], [ -75.239169, 39.956219 ], [ -75.23929, 39.956239 ], [ -75.239449, 39.956259 ], [ -75.23991, 39.956319 ], [ -75.24137, 39.956489 ], [ -75.24189, 39.95655 ], [ -75.243459, 39.95675 ], [ -75.243859, 39.956799 ], [ -75.245839, 39.957049 ], [ -75.24659, 39.957129 ], [ -75.24716, 39.95721 ], [ -75.24793, 39.95728 ], [ -75.2486, 39.95737 ], [ -75.24891, 39.95738 ], [ -75.2491, 39.95736 ], [ -75.249249, 39.957329 ], [ -75.249389, 39.95729 ], [ -75.249489, 39.957249 ], [ -75.24983, 39.9571 ], [ -75.25, 39.95699 ], [ -75.25014, 39.956859 ], [ -75.25031, 39.95664 ], [ -75.25072, 39.956129 ], [ -75.250919, 39.955889 ], [ -75.25116, 39.955709 ], [ -75.25145, 39.955609 ], [ -75.251649, 39.955529 ], [ -75.251739, 39.955499 ], [ -75.251959, 39.955429 ], [ -75.252669, 39.955159 ], [ -75.25328, 39.95492 ], [ -75.254759, 39.954349 ], [ -75.255, 39.954279 ], [ -75.255209, 39.954279 ], [ -75.255419, 39.9543 ], [ -75.255869, 39.95442 ], [ -75.256599, 39.9546 ], [ -75.25679, 39.954619 ], [ -75.256989, 39.9546 ], [ -75.25728, 39.954459 ], [ -75.25737, 39.95441 ], [ -75.25756, 39.9543 ], [ -75.257759, 39.954189 ], [ -75.257949, 39.954079 ], [ -75.25819, 39.95394 ], [ -75.25828, 39.953889 ], [ -75.2585, 39.95376 ], [ -75.258669, 39.953709 ], [ -75.25891, 39.953629 ], [ -75.25914, 39.9536 ], [ -75.259299, 39.95358 ], [ -75.26003, 39.95348 ], [ -75.26067, 39.953379 ], [ -75.261279, 39.953269 ], [ -75.261459, 39.95324 ], [ -75.26193, 39.95316 ], [ -75.262169, 39.95312 ], [ -75.262319, 39.953089 ], [ -75.262629, 39.95304 ], [ -75.262849, 39.95298 ], [ -75.263, 39.952909 ], [ -75.263069, 39.95288 ], [ -75.263469, 39.9527 ], [ -75.263659, 39.95259 ], [ -75.264339, 39.952259 ], [ -75.26467, 39.952089 ], [ -75.26543, 39.951739 ], [ -75.265629, 39.951659 ], [ -75.265859, 39.951559 ], [ -75.26607, 39.951469 ], [ -75.26628, 39.951379 ], [ -75.26642, 39.95153 ], [ -75.266489, 39.9516 ], [ -75.26682, 39.951669 ], [ -75.26746, 39.951809 ], [ -75.267609, 39.951839 ], [ -75.26773, 39.95187 ], [ -75.26836, 39.951999 ], [ -75.26837, 39.951909 ], [ -75.26778, 39.951749 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307614", "route_id": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.286329, 40.00793 ], [ -75.286209, 40.00793 ], [ -75.2861, 40.00793 ], [ -75.28587, 40.00793 ], [ -75.28564, 40.00793 ], [ -75.28554, 40.00793 ], [ -75.28518, 40.007899 ], [ -75.28492, 40.007899 ], [ -75.28461, 40.007899 ], [ -75.28415, 40.00785 ], [ -75.284139, 40.00804 ], [ -75.28411, 40.008359 ], [ -75.2841, 40.008519 ], [ -75.284089, 40.008629 ], [ -75.284079, 40.008699 ], [ -75.284049, 40.008979 ], [ -75.284039, 40.00913 ], [ -75.28371, 40.00912 ], [ -75.283449, 40.00911 ], [ -75.283279, 40.009089 ], [ -75.283189, 40.009089 ], [ -75.28299, 40.009069 ], [ -75.28272, 40.00903 ], [ -75.28241, 40.008959 ], [ -75.282149, 40.008889 ], [ -75.2819, 40.00883 ], [ -75.281799, 40.008809 ], [ -75.281529, 40.00874 ], [ -75.28105, 40.008629 ], [ -75.28087, 40.00859 ], [ -75.280749, 40.00857 ], [ -75.280629, 40.008549 ], [ -75.280409, 40.008529 ], [ -75.28024, 40.008529 ], [ -75.28015, 40.008539 ], [ -75.28006, 40.00857 ], [ -75.27983, 40.00867 ], [ -75.279489, 40.008809 ], [ -75.279369, 40.00886 ], [ -75.279309, 40.008889 ], [ -75.278909, 40.009059 ], [ -75.27831, 40.00931 ], [ -75.27768, 40.009589 ], [ -75.27728, 40.009769 ], [ -75.276969, 40.00991 ], [ -75.27674, 40.01004 ], [ -75.276609, 40.01011 ], [ -75.27647, 40.0102 ], [ -75.27632, 40.0103 ], [ -75.27615, 40.01047 ], [ -75.276039, 40.010599 ], [ -75.275669, 40.011059 ], [ -75.275439, 40.011309 ], [ -75.27515, 40.011579 ], [ -75.27494, 40.01175 ], [ -75.274819, 40.011849 ], [ -75.27444, 40.012129 ], [ -75.27413, 40.01236 ], [ -75.27402, 40.01244 ], [ -75.2738, 40.012579 ], [ -75.273559, 40.01271 ], [ -75.273509, 40.01273 ], [ -75.272939, 40.01298 ], [ -75.27259, 40.013119 ], [ -75.27241, 40.013189 ], [ -75.27223, 40.01326 ], [ -75.271979, 40.01334 ], [ -75.27187, 40.013369 ], [ -75.271669, 40.01342 ], [ -75.27151, 40.01345 ], [ -75.27124, 40.013479 ], [ -75.27006, 40.013469 ], [ -75.269499, 40.013479 ], [ -75.26927, 40.013489 ], [ -75.269239, 40.013489 ], [ -75.268789, 40.013499 ], [ -75.26846, 40.013499 ], [ -75.26795, 40.013499 ], [ -75.267209, 40.013499 ], [ -75.26682, 40.013489 ], [ -75.266489, 40.013459 ], [ -75.26579, 40.013379 ], [ -75.265409, 40.013299 ], [ -75.26508, 40.013219 ], [ -75.264479, 40.013039 ], [ -75.263969, 40.012839 ], [ -75.26373, 40.012739 ], [ -75.263659, 40.01271 ], [ -75.26314, 40.012489 ], [ -75.262359, 40.01218 ], [ -75.262299, 40.01216 ], [ -75.26192, 40.01202 ], [ -75.261679, 40.01193 ], [ -75.261539, 40.011879 ], [ -75.26116, 40.01175 ], [ -75.26099, 40.011689 ], [ -75.260859, 40.01164 ], [ -75.26076, 40.011599 ], [ -75.260689, 40.011579 ], [ -75.260639, 40.01156 ], [ -75.26036, 40.01146 ], [ -75.259959, 40.011319 ], [ -75.259739, 40.011249 ], [ -75.259469, 40.011139 ], [ -75.25941, 40.01112 ], [ -75.25932, 40.01109 ], [ -75.25901, 40.010979 ], [ -75.258879, 40.01094 ], [ -75.25854, 40.01082 ], [ -75.258439, 40.010789 ], [ -75.25811, 40.010679 ], [ -75.257939, 40.010619 ], [ -75.257859, 40.010589 ], [ -75.257809, 40.01057 ], [ -75.257629, 40.010509 ], [ -75.25694, 40.01027 ], [ -75.25688, 40.010249 ], [ -75.25679, 40.01021 ], [ -75.256539, 40.01012 ], [ -75.25643, 40.010079 ], [ -75.25631, 40.01004 ], [ -75.25625, 40.01002 ], [ -75.25616, 40.009989 ], [ -75.255479, 40.00974 ], [ -75.255209, 40.00964 ], [ -75.25464, 40.009409 ], [ -75.254609, 40.0094 ], [ -75.254159, 40.00922 ], [ -75.25391, 40.00912 ], [ -75.253799, 40.009079 ], [ -75.253719, 40.009049 ], [ -75.25351, 40.008969 ], [ -75.253409, 40.00893 ], [ -75.253219, 40.00885 ], [ -75.253119, 40.008809 ], [ -75.252989, 40.00876 ], [ -75.252849, 40.008709 ], [ -75.252759, 40.00867 ], [ -75.252409, 40.008529 ], [ -75.251499, 40.008259 ], [ -75.250919, 40.008089 ], [ -75.25071, 40.00802 ], [ -75.249979, 40.007799 ], [ -75.24942, 40.0076 ], [ -75.248939, 40.00743 ], [ -75.247769, 40.00706 ], [ -75.2474, 40.00694 ], [ -75.246729, 40.006719 ], [ -75.246209, 40.006569 ], [ -75.245609, 40.006389 ], [ -75.24492, 40.00616 ], [ -75.244799, 40.006119 ], [ -75.2446, 40.00605 ], [ -75.244499, 40.006019 ], [ -75.244349, 40.00597 ], [ -75.244039, 40.00587 ], [ -75.24383, 40.0058 ], [ -75.24362, 40.00571 ], [ -75.243399, 40.00559 ], [ -75.24325, 40.0055 ], [ -75.2432, 40.005479 ], [ -75.243049, 40.005399 ], [ -75.242919, 40.00526 ], [ -75.24289, 40.00523 ], [ -75.2428, 40.00515 ], [ -75.24271, 40.00507 ], [ -75.24267, 40.005039 ], [ -75.242639, 40.005019 ], [ -75.242549, 40.00497 ], [ -75.24248, 40.00489 ], [ -75.24236, 40.004759 ], [ -75.24227, 40.004669 ], [ -75.241689, 40.00409 ], [ -75.24154, 40.003929 ], [ -75.24146, 40.003839 ], [ -75.24136, 40.00372 ], [ -75.241289, 40.00363 ], [ -75.24123, 40.00355 ], [ -75.24096, 40.00317 ], [ -75.240709, 40.00281 ], [ -75.24059, 40.00264 ], [ -75.24041, 40.00239 ], [ -75.24019, 40.00209 ], [ -75.239939, 40.00176 ], [ -75.23974, 40.001499 ], [ -75.23965, 40.00138 ], [ -75.2396, 40.00131 ], [ -75.23943, 40.00109 ], [ -75.23938, 40.00103 ], [ -75.2393, 40.00092 ], [ -75.239219, 40.00082 ], [ -75.239039, 40.000609 ], [ -75.238869, 40.000429 ], [ -75.23879, 40.000339 ], [ -75.2383, 39.999819 ], [ -75.23808, 39.999599 ], [ -75.23753, 39.999079 ], [ -75.237329, 39.998899 ], [ -75.23699, 39.99858 ], [ -75.236439, 39.998099 ], [ -75.23632, 39.997989 ], [ -75.23592, 39.997629 ], [ -75.235809, 39.99753 ], [ -75.23565, 39.997379 ], [ -75.23529, 39.99706 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307615", "route_id": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.286329, 40.00793 ], [ -75.286209, 40.00793 ], [ -75.2861, 40.00793 ], [ -75.28587, 40.00793 ], [ -75.28564, 40.00793 ], [ -75.28554, 40.00793 ], [ -75.28518, 40.007899 ], [ -75.28492, 40.007899 ], [ -75.28461, 40.007899 ], [ -75.28415, 40.00785 ], [ -75.284139, 40.00804 ], [ -75.28411, 40.008359 ], [ -75.2841, 40.008519 ], [ -75.284089, 40.008629 ], [ -75.284079, 40.008699 ], [ -75.284049, 40.008979 ], [ -75.284039, 40.00913 ], [ -75.28371, 40.00912 ], [ -75.283449, 40.00911 ], [ -75.283279, 40.009089 ], [ -75.283189, 40.009089 ], [ -75.28299, 40.009069 ], [ -75.28272, 40.00903 ], [ -75.28241, 40.008959 ], [ -75.282149, 40.008889 ], [ -75.2819, 40.00883 ], [ -75.281799, 40.008809 ], [ -75.281529, 40.00874 ], [ -75.28105, 40.008629 ], [ -75.28087, 40.00859 ], [ -75.280749, 40.00857 ], [ -75.280629, 40.008549 ], [ -75.280409, 40.008529 ], [ -75.28024, 40.008529 ], [ -75.28015, 40.008539 ], [ -75.28006, 40.00857 ], [ -75.27983, 40.00867 ], [ -75.279489, 40.008809 ], [ -75.279369, 40.00886 ], [ -75.279309, 40.008889 ], [ -75.278909, 40.009059 ], [ -75.27831, 40.00931 ], [ -75.27768, 40.009589 ], [ -75.27728, 40.009769 ], [ -75.276969, 40.00991 ], [ -75.27674, 40.01004 ], [ -75.276609, 40.01011 ], [ -75.27647, 40.0102 ], [ -75.27632, 40.0103 ], [ -75.27615, 40.01047 ], [ -75.276039, 40.010599 ], [ -75.275669, 40.011059 ], [ -75.275439, 40.011309 ], [ -75.27515, 40.011579 ], [ -75.27494, 40.01175 ], [ -75.274819, 40.011849 ], [ -75.27444, 40.012129 ], [ -75.27413, 40.01236 ], [ -75.27402, 40.01244 ], [ -75.2738, 40.012579 ], [ -75.273559, 40.01271 ], [ -75.273509, 40.01273 ], [ -75.272939, 40.01298 ], [ -75.27259, 40.013119 ], [ -75.27241, 40.013189 ], [ -75.27223, 40.01326 ], [ -75.271979, 40.01334 ], [ -75.27187, 40.013369 ], [ -75.271669, 40.01342 ], [ -75.27151, 40.01345 ], [ -75.27124, 40.013479 ], [ -75.27006, 40.013469 ], [ -75.269499, 40.013479 ], [ -75.26927, 40.013489 ], [ -75.269239, 40.013489 ], [ -75.268789, 40.013499 ], [ -75.26846, 40.013499 ], [ -75.26795, 40.013499 ], [ -75.267209, 40.013499 ], [ -75.26682, 40.013489 ], [ -75.266489, 40.013459 ], [ -75.26579, 40.013379 ], [ -75.265409, 40.013299 ], [ -75.26508, 40.013219 ], [ -75.264479, 40.013039 ], [ -75.263969, 40.012839 ], [ -75.26373, 40.012739 ], [ -75.263659, 40.01271 ], [ -75.26314, 40.012489 ], [ -75.262359, 40.01218 ], [ -75.262299, 40.01216 ], [ -75.26192, 40.01202 ], [ -75.261679, 40.01193 ], [ -75.261539, 40.011879 ], [ -75.26116, 40.01175 ], [ -75.26099, 40.011689 ], [ -75.260859, 40.01164 ], [ -75.26076, 40.011599 ], [ -75.260689, 40.011579 ], [ -75.260639, 40.01156 ], [ -75.26036, 40.01146 ], [ -75.259959, 40.011319 ], [ -75.259739, 40.011249 ], [ -75.259469, 40.011139 ], [ -75.25941, 40.01112 ], [ -75.25932, 40.01109 ], [ -75.25901, 40.010979 ], [ -75.258879, 40.01094 ], [ -75.25854, 40.01082 ], [ -75.258439, 40.010789 ], [ -75.25811, 40.010679 ], [ -75.257939, 40.010619 ], [ -75.257859, 40.010589 ], [ -75.257809, 40.01057 ], [ -75.257629, 40.010509 ], [ -75.25694, 40.01027 ], [ -75.25688, 40.010249 ], [ -75.25679, 40.01021 ], [ -75.256539, 40.01012 ], [ -75.25643, 40.010079 ], [ -75.25631, 40.01004 ], [ -75.25625, 40.01002 ], [ -75.25616, 40.009989 ], [ -75.255479, 40.00974 ], [ -75.255209, 40.00964 ], [ -75.25464, 40.009409 ], [ -75.254609, 40.0094 ], [ -75.254159, 40.00922 ], [ -75.25391, 40.00912 ], [ -75.253799, 40.009079 ], [ -75.253719, 40.009049 ], [ -75.25351, 40.008969 ], [ -75.253409, 40.00893 ], [ -75.253219, 40.00885 ], [ -75.253119, 40.008809 ], [ -75.252989, 40.00876 ], [ -75.252849, 40.008709 ], [ -75.252759, 40.00867 ], [ -75.252409, 40.008529 ], [ -75.251499, 40.008259 ], [ -75.250919, 40.008089 ], [ -75.25071, 40.00802 ], [ -75.249979, 40.007799 ], [ -75.24942, 40.0076 ], [ -75.248939, 40.00743 ], [ -75.247769, 40.00706 ], [ -75.2474, 40.00694 ], [ -75.246729, 40.006719 ], [ -75.246209, 40.006569 ], [ -75.245609, 40.006389 ], [ -75.24492, 40.00616 ], [ -75.244799, 40.006119 ], [ -75.2446, 40.00605 ], [ -75.244499, 40.006019 ], [ -75.244349, 40.00597 ], [ -75.244039, 40.00587 ], [ -75.24383, 40.0058 ], [ -75.24362, 40.00571 ], [ -75.243399, 40.00559 ], [ -75.24325, 40.0055 ], [ -75.2432, 40.005479 ], [ -75.243049, 40.005399 ], [ -75.242919, 40.00526 ], [ -75.24289, 40.00523 ], [ -75.2428, 40.00515 ], [ -75.24271, 40.00507 ], [ -75.24267, 40.005039 ], [ -75.242639, 40.005019 ], [ -75.242549, 40.00497 ], [ -75.24248, 40.00489 ], [ -75.24236, 40.004759 ], [ -75.24227, 40.004669 ], [ -75.241689, 40.00409 ], [ -75.24154, 40.003929 ], [ -75.24146, 40.003839 ], [ -75.24136, 40.00372 ], [ -75.241289, 40.00363 ], [ -75.24123, 40.00355 ], [ -75.24096, 40.00317 ], [ -75.240709, 40.00281 ], [ -75.24059, 40.00264 ], [ -75.24041, 40.00239 ], [ -75.24019, 40.00209 ], [ -75.239939, 40.00176 ], [ -75.23974, 40.001499 ], [ -75.23965, 40.00138 ], [ -75.2396, 40.00131 ], [ -75.23943, 40.00109 ], [ -75.23938, 40.00103 ], [ -75.2393, 40.00092 ], [ -75.239219, 40.00082 ], [ -75.239039, 40.000609 ], [ -75.238869, 40.000429 ], [ -75.23879, 40.000339 ], [ -75.2383, 39.999819 ], [ -75.23808, 39.999599 ], [ -75.23753, 39.999079 ], [ -75.237329, 39.998899 ], [ -75.23699, 39.99858 ], [ -75.236439, 39.998099 ], [ -75.23632, 39.997989 ], [ -75.23592, 39.997629 ], [ -75.235809, 39.99753 ], [ -75.23565, 39.997379 ], [ -75.23529, 39.99706 ], [ -75.234999, 39.997189 ], [ -75.23466, 39.99735 ], [ -75.23434, 39.9975 ], [ -75.2342, 39.997569 ], [ -75.233229, 39.997999 ], [ -75.23308, 39.998079 ], [ -75.232919, 39.99815 ], [ -75.23268, 39.998269 ], [ -75.23255, 39.99833 ], [ -75.23249, 39.998359 ], [ -75.232429, 39.99839 ], [ -75.23232, 39.998439 ], [ -75.232069, 39.998559 ], [ -75.23173, 39.998719 ], [ -75.231529, 39.998809 ], [ -75.23129, 39.99893 ], [ -75.230889, 39.99911 ], [ -75.2307, 39.9992 ], [ -75.230529, 39.99929 ], [ -75.23042, 39.999339 ], [ -75.230309, 39.99939 ], [ -75.230219, 39.999439 ], [ -75.229959, 39.99956 ], [ -75.229869, 39.999599 ], [ -75.229649, 39.999699 ], [ -75.22958, 39.999729 ], [ -75.229499, 39.99977 ], [ -75.22944, 39.999799 ], [ -75.22931, 39.999869 ], [ -75.229149, 39.99995 ], [ -75.229059, 39.999989 ], [ -75.22895, 40.00003 ], [ -75.22881, 40.000089 ], [ -75.22871, 40.000149 ], [ -75.22836, 40.00031 ], [ -75.227789, 40.00058 ], [ -75.2275, 40.000719 ], [ -75.22733, 40.000799 ], [ -75.227209, 40.000859 ], [ -75.227129, 40.000899 ], [ -75.226989, 40.000969 ], [ -75.22688, 40.00102 ], [ -75.226709, 40.0011 ], [ -75.226569, 40.001169 ], [ -75.22638, 40.001259 ], [ -75.226079, 40.0014 ], [ -75.225819, 40.001509 ], [ -75.22565, 40.001589 ], [ -75.225489, 40.00166 ], [ -75.22467, 40.002039 ], [ -75.22418, 40.00227 ], [ -75.223649, 40.00253 ], [ -75.223599, 40.00255 ], [ -75.223149, 40.002759 ], [ -75.22299, 40.00284 ], [ -75.22277, 40.002939 ], [ -75.22215, 40.003239 ], [ -75.221679, 40.00345 ], [ -75.221409, 40.003579 ], [ -75.221309, 40.00363 ], [ -75.221229, 40.003669 ], [ -75.220949, 40.0038 ], [ -75.220679, 40.003929 ], [ -75.220189, 40.00416 ], [ -75.219819, 40.00433 ], [ -75.219689, 40.004389 ], [ -75.21922, 40.00462 ], [ -75.218849, 40.00479 ], [ -75.218379, 40.005019 ], [ -75.217929, 40.00523 ], [ -75.21742, 40.005479 ], [ -75.21693, 40.00571 ], [ -75.21656, 40.00589 ], [ -75.21576, 40.00625 ], [ -75.215499, 40.006359 ], [ -75.21418, 40.006929 ], [ -75.213709, 40.00713 ], [ -75.21363, 40.00716 ], [ -75.213079, 40.00741 ], [ -75.21284, 40.00752 ], [ -75.212759, 40.007559 ], [ -75.21266, 40.00761 ], [ -75.212489, 40.00769 ], [ -75.211959, 40.00794 ], [ -75.211769, 40.00804 ], [ -75.21158, 40.00813 ], [ -75.21143, 40.0082 ], [ -75.21116, 40.008339 ], [ -75.21107, 40.0084 ], [ -75.210919, 40.00848 ], [ -75.210749, 40.00857 ], [ -75.210609, 40.008599 ], [ -75.21045, 40.00866 ], [ -75.210329, 40.008719 ], [ -75.210189, 40.00876 ], [ -75.209829, 40.008889 ], [ -75.209519, 40.008979 ], [ -75.209119, 40.009089 ], [ -75.20887, 40.009149 ], [ -75.208659, 40.0092 ], [ -75.20819, 40.00928 ], [ -75.207939, 40.0093 ], [ -75.20748, 40.009319 ], [ -75.207179, 40.00929 ], [ -75.20693, 40.009249 ], [ -75.20657, 40.009169 ], [ -75.20617, 40.009049 ], [ -75.204659, 40.008639 ], [ -75.204039, 40.008429 ], [ -75.2032, 40.00813 ], [ -75.201779, 40.00761 ], [ -75.201199, 40.00741 ], [ -75.200919, 40.0073 ], [ -75.200749, 40.00723 ], [ -75.200159, 40.006999 ], [ -75.19986, 40.006819 ], [ -75.19969, 40.006719 ], [ -75.199039, 40.00626 ], [ -75.198729, 40.00597 ], [ -75.198539, 40.005829 ], [ -75.19835, 40.00571 ], [ -75.1982, 40.005639 ], [ -75.19803, 40.005569 ], [ -75.197199, 40.005309 ], [ -75.196959, 40.00523 ], [ -75.19662, 40.005089 ], [ -75.196469, 40.005019 ], [ -75.19636, 40.00496 ], [ -75.19618, 40.004849 ], [ -75.195839, 40.00461 ], [ -75.1956, 40.004319 ], [ -75.195489, 40.004129 ], [ -75.19538, 40.003939 ], [ -75.195219, 40.003569 ], [ -75.195159, 40.00338 ], [ -75.19514, 40.003299 ], [ -75.1951, 40.00319 ], [ -75.19506, 40.003029 ], [ -75.195029, 40.0028 ], [ -75.19502, 40.00272 ], [ -75.19501, 40.002609 ], [ -75.19496, 40.00219 ], [ -75.19496, 40.002 ], [ -75.19496, 40.001789 ], [ -75.194979, 40.00138 ], [ -75.195, 40.001229 ], [ -75.19501, 40.00118 ], [ -75.195069, 40.000769 ], [ -75.19511, 40.00055 ], [ -75.19515, 40.00039 ], [ -75.195209, 40.00011 ], [ -75.19527, 39.999889 ], [ -75.19541, 39.999459 ], [ -75.195659, 39.998809 ], [ -75.19595, 39.99814 ], [ -75.19618, 39.99769 ], [ -75.196299, 39.997469 ], [ -75.196519, 39.997109 ], [ -75.19676, 39.996749 ], [ -75.19689, 39.99659 ], [ -75.197279, 39.996039 ], [ -75.19754, 39.99571 ], [ -75.19781, 39.995399 ], [ -75.198139, 39.995039 ], [ -75.19853, 39.99463 ], [ -75.19889, 39.99428 ], [ -75.199259, 39.993959 ], [ -75.19951, 39.993759 ], [ -75.19965, 39.99365 ], [ -75.20004, 39.993339 ], [ -75.20019, 39.993229 ], [ -75.20087, 39.992779 ], [ -75.201119, 39.99263 ], [ -75.20158, 39.99236 ], [ -75.201919, 39.992169 ], [ -75.202289, 39.991979 ], [ -75.202899, 39.991679 ], [ -75.203279, 39.991499 ], [ -75.20391, 39.991179 ], [ -75.204079, 39.991089 ], [ -75.2042, 39.99102 ], [ -75.204519, 39.99084 ], [ -75.204799, 39.99066 ], [ -75.205069, 39.99047 ], [ -75.205469, 39.990169 ], [ -75.20567, 39.990009 ], [ -75.20586, 39.98985 ], [ -75.206099, 39.989629 ], [ -75.206239, 39.9895 ], [ -75.206379, 39.989349 ], [ -75.20685, 39.988819 ], [ -75.206999, 39.988629 ], [ -75.207139, 39.988449 ], [ -75.20739, 39.98806 ], [ -75.20762, 39.987649 ], [ -75.20771, 39.987469 ], [ -75.20783, 39.98723 ], [ -75.20792, 39.987019 ], [ -75.20801, 39.98681 ], [ -75.20805, 39.98669 ], [ -75.208089, 39.986549 ], [ -75.20819, 39.986139 ], [ -75.20824, 39.98592 ], [ -75.208259, 39.98581 ], [ -75.20829, 39.98563 ], [ -75.20833, 39.985239 ], [ -75.208349, 39.98489 ], [ -75.20834, 39.98445 ], [ -75.20832, 39.984139 ], [ -75.20829, 39.983879 ], [ -75.208259, 39.98367 ], [ -75.20823, 39.983499 ], [ -75.2082, 39.98338 ], [ -75.20816, 39.983229 ], [ -75.2081, 39.983049 ], [ -75.20805, 39.98291 ], [ -75.207999, 39.982789 ], [ -75.20793, 39.98264 ], [ -75.20784, 39.98246 ], [ -75.20774, 39.98228 ], [ -75.207639, 39.98213 ], [ -75.207539, 39.981989 ], [ -75.20744, 39.98186 ], [ -75.207319, 39.981709 ], [ -75.20716, 39.981539 ], [ -75.20698, 39.981359 ], [ -75.20679, 39.981189 ], [ -75.206589, 39.98103 ], [ -75.206329, 39.98084 ], [ -75.20604, 39.980639 ], [ -75.20531, 39.98016 ], [ -75.20429, 39.9795 ], [ -75.203769, 39.97916 ], [ -75.202919, 39.97861 ], [ -75.202469, 39.97832 ], [ -75.20222, 39.97817 ], [ -75.20198, 39.978029 ], [ -75.201749, 39.977909 ], [ -75.201469, 39.97778 ], [ -75.20127, 39.97769 ], [ -75.200969, 39.977569 ], [ -75.20086, 39.97753 ], [ -75.200529, 39.977409 ], [ -75.20028, 39.97733 ], [ -75.19997, 39.97724 ], [ -75.19974, 39.97718 ], [ -75.199439, 39.977109 ], [ -75.1991, 39.977039 ], [ -75.198729, 39.97697 ], [ -75.19829, 39.97689 ], [ -75.19808, 39.976849 ], [ -75.197559, 39.976749 ], [ -75.197199, 39.976679 ], [ -75.1969, 39.97662 ], [ -75.19663, 39.97656 ], [ -75.19641, 39.976499 ], [ -75.196199, 39.97643 ], [ -75.196019, 39.97636 ], [ -75.195849, 39.97629 ], [ -75.19573, 39.976229 ], [ -75.19559, 39.976149 ], [ -75.195429, 39.976049 ], [ -75.19529, 39.975949 ], [ -75.19519, 39.975869 ], [ -75.195069, 39.975769 ], [ -75.194989, 39.975689 ], [ -75.194899, 39.975599 ], [ -75.194799, 39.97548 ], [ -75.19473, 39.97539 ], [ -75.194679, 39.975319 ], [ -75.19461, 39.97521 ], [ -75.19451, 39.975 ], [ -75.19442, 39.974789 ], [ -75.194369, 39.97466 ], [ -75.19433, 39.97454 ], [ -75.194279, 39.97438 ], [ -75.19424, 39.974249 ], [ -75.194179, 39.974059 ], [ -75.194129, 39.973879 ], [ -75.194089, 39.97375 ], [ -75.19397, 39.973359 ], [ -75.193409, 39.97157 ], [ -75.193269, 39.97113 ], [ -75.193229, 39.971009 ], [ -75.193139, 39.97077 ], [ -75.192929, 39.97032 ], [ -75.19271, 39.96996 ], [ -75.192569, 39.969749 ], [ -75.1924, 39.969549 ], [ -75.192199, 39.96934 ], [ -75.19186, 39.96899 ], [ -75.191439, 39.968649 ], [ -75.19118, 39.96845 ], [ -75.190709, 39.96815 ], [ -75.190629, 39.9681 ], [ -75.190539, 39.968049 ], [ -75.190119, 39.967839 ], [ -75.18979, 39.967689 ], [ -75.1893, 39.967489 ], [ -75.18894, 39.96735 ], [ -75.18867, 39.967229 ], [ -75.188419, 39.967119 ], [ -75.18808, 39.966939 ], [ -75.187839, 39.9668 ], [ -75.18759, 39.96664 ], [ -75.18732, 39.96645 ], [ -75.187, 39.9662 ], [ -75.186519, 39.965799 ], [ -75.186349, 39.96566 ], [ -75.18597, 39.965349 ], [ -75.18556, 39.965 ], [ -75.185179, 39.96465 ], [ -75.184859, 39.964319 ], [ -75.184559, 39.96401 ], [ -75.18431, 39.963719 ], [ -75.18425, 39.963639 ], [ -75.18416, 39.963539 ], [ -75.183969, 39.96331 ], [ -75.183879, 39.9632 ], [ -75.183789, 39.962979 ], [ -75.18363, 39.9627 ], [ -75.18341, 39.96234 ], [ -75.183109, 39.96188 ], [ -75.1829, 39.961569 ], [ -75.182699, 39.961299 ], [ -75.182619, 39.961209 ], [ -75.18255, 39.96114 ], [ -75.182429, 39.961029 ], [ -75.182299, 39.96087 ], [ -75.18213, 39.960659 ], [ -75.182019, 39.96053 ], [ -75.18188, 39.960379 ], [ -75.18168, 39.96017 ], [ -75.18146, 39.959929 ], [ -75.18125, 39.9597 ], [ -75.18114, 39.959579 ], [ -75.18105, 39.959469 ], [ -75.18096, 39.95935 ], [ -75.18087, 39.959119 ], [ -75.180819, 39.95899 ], [ -75.18078, 39.958849 ], [ -75.18075, 39.9587 ], [ -75.18074, 39.95854 ], [ -75.18074, 39.95843 ], [ -75.18075, 39.958299 ], [ -75.18079, 39.95809 ], [ -75.18087, 39.95771 ], [ -75.181039, 39.956889 ], [ -75.18141, 39.95692 ], [ -75.181579, 39.956939 ], [ -75.181749, 39.956959 ], [ -75.181889, 39.956979 ], [ -75.18206, 39.957 ], [ -75.182439, 39.957059 ], [ -75.182529, 39.957069 ], [ -75.1826, 39.957069 ], [ -75.182669, 39.957059 ], [ -75.182709, 39.957049 ], [ -75.182749, 39.957029 ], [ -75.182789, 39.957 ], [ -75.18282, 39.956969 ], [ -75.182839, 39.956939 ], [ -75.182849, 39.956879 ], [ -75.18286, 39.95684 ], [ -75.1829, 39.95664 ], [ -75.182929, 39.956489 ], [ -75.18296, 39.956339 ], [ -75.182979, 39.956249 ], [ -75.18305, 39.95585 ], [ -75.18309, 39.955629 ], [ -75.183119, 39.955449 ], [ -75.18317, 39.95522 ], [ -75.183199, 39.95505 ], [ -75.183239, 39.95485 ], [ -75.18296, 39.954809 ], [ -75.182519, 39.95475 ], [ -75.18228, 39.954719 ], [ -75.181989, 39.95468 ], [ -75.18125, 39.95458 ], [ -75.18116, 39.95457 ], [ -75.180909, 39.954539 ], [ -75.18053, 39.95449 ], [ -75.17981, 39.95441 ], [ -75.179639, 39.95438 ], [ -75.179499, 39.954359 ], [ -75.17832, 39.95421 ], [ -75.17782, 39.95415 ], [ -75.177609, 39.95412 ], [ -75.17738, 39.954089 ], [ -75.177119, 39.95406 ], [ -75.1767, 39.954009 ], [ -75.17616, 39.95394 ], [ -75.175549, 39.95386 ], [ -75.17508, 39.953809 ], [ -75.17441, 39.953719 ], [ -75.17417, 39.95369 ], [ -75.173739, 39.953639 ], [ -75.173169, 39.953559 ], [ -75.17207, 39.95343 ], [ -75.17157, 39.953359 ], [ -75.17049, 39.95323 ], [ -75.170009, 39.953169 ], [ -75.16931, 39.953079 ], [ -75.16904, 39.95305 ], [ -75.16845, 39.952989 ], [ -75.16801, 39.95294 ], [ -75.16778, 39.952909 ], [ -75.167619, 39.95289 ], [ -75.16724, 39.95285 ], [ -75.16685, 39.9528 ], [ -75.165839, 39.95268 ], [ -75.16522, 39.95259 ], [ -75.165239, 39.95249 ], [ -75.165279, 39.95232 ], [ -75.165289, 39.95224 ], [ -75.165289, 39.952179 ], [ -75.165279, 39.952099 ], [ -75.16526, 39.952019 ], [ -75.165239, 39.95197 ], [ -75.165199, 39.951919 ], [ -75.165149, 39.95187 ], [ -75.165099, 39.951839 ], [ -75.165059, 39.951819 ], [ -75.165009, 39.9518 ], [ -75.16495, 39.95178 ], [ -75.16491, 39.95177 ], [ -75.164789, 39.951749 ], [ -75.164619, 39.951729 ], [ -75.16451, 39.951719 ], [ -75.16436, 39.95171 ], [ -75.164019, 39.95169 ], [ -75.16388, 39.95168 ], [ -75.16378, 39.951669 ], [ -75.163719, 39.951659 ], [ -75.163479, 39.95162 ], [ -75.163269, 39.95159 ], [ -75.16307, 39.951559 ], [ -75.162999, 39.951559 ], [ -75.16296, 39.951559 ], [ -75.162909, 39.951569 ], [ -75.16288, 39.951579 ], [ -75.16284, 39.9516 ], [ -75.162809, 39.95162 ], [ -75.16278, 39.951649 ], [ -75.16275, 39.95169 ], [ -75.162729, 39.951729 ], [ -75.1627, 39.951819 ], [ -75.162679, 39.95189 ], [ -75.16266, 39.951939 ], [ -75.162629, 39.952109 ], [ -75.162579, 39.95216 ], [ -75.16253, 39.952189 ], [ -75.162489, 39.952209 ], [ -75.16242, 39.95223 ], [ -75.16234, 39.95224 ], [ -75.16203, 39.952209 ], [ -75.161409, 39.95213 ], [ -75.15987, 39.951939 ], [ -75.158269, 39.951739 ], [ -75.15671, 39.951539 ], [ -75.1559, 39.95144 ], [ -75.15515, 39.95135 ], [ -75.15434, 39.95125 ], [ -75.15356, 39.95115 ], [ -75.15199, 39.95096 ], [ -75.151239, 39.950849 ], [ -75.150979, 39.95082 ], [ -75.15037, 39.950739 ], [ -75.149889, 39.950669 ], [ -75.149619, 39.95063 ], [ -75.149219, 39.950579 ], [ -75.14906, 39.950559 ], [ -75.148949, 39.95055 ], [ -75.148279, 39.950469 ], [ -75.147929, 39.95043 ], [ -75.14727, 39.95035 ], [ -75.1457, 39.95017 ], [ -75.145259, 39.950109 ], [ -75.14488, 39.95007 ], [ -75.14434, 39.95 ], [ -75.143739, 39.94991 ], [ -75.14298, 39.94979 ], [ -75.14273, 39.949759 ], [ -75.142671, 39.949819 ], [ -75.142305, 39.949792 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307617", "route_id": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.142305, 39.949792 ], [ -75.14214, 39.949774 ], [ -75.142116, 39.949809 ], [ -75.14208, 39.949939 ], [ -75.142059, 39.95007 ], [ -75.14201, 39.950309 ], [ -75.14182, 39.951089 ], [ -75.14168, 39.9516 ], [ -75.141659, 39.951749 ], [ -75.14259, 39.951849 ], [ -75.14331, 39.951929 ], [ -75.14397, 39.952019 ], [ -75.144139, 39.95204 ], [ -75.14426, 39.95206 ], [ -75.144589, 39.952099 ], [ -75.14493, 39.95214 ], [ -75.14524, 39.952179 ], [ -75.14559, 39.95222 ], [ -75.14627, 39.95231 ], [ -75.14681, 39.952369 ], [ -75.14795, 39.95251 ], [ -75.14849, 39.95258 ], [ -75.148779, 39.95261 ], [ -75.149349, 39.95268 ], [ -75.149489, 39.9527 ], [ -75.14993, 39.95276 ], [ -75.150029, 39.95232 ], [ -75.15006, 39.952169 ], [ -75.1502, 39.95153 ], [ -75.150269, 39.951179 ], [ -75.150299, 39.95105 ], [ -75.15037, 39.950739 ], [ -75.150979, 39.95082 ], [ -75.151239, 39.950849 ], [ -75.15199, 39.95096 ], [ -75.15356, 39.95115 ], [ -75.15434, 39.95125 ], [ -75.15515, 39.95135 ], [ -75.1559, 39.95144 ], [ -75.15671, 39.951539 ], [ -75.158269, 39.951739 ], [ -75.15987, 39.951939 ], [ -75.161409, 39.95213 ], [ -75.16203, 39.952209 ], [ -75.16234, 39.95224 ], [ -75.162409, 39.952269 ], [ -75.16248, 39.95231 ], [ -75.16253, 39.952359 ], [ -75.162579, 39.952439 ], [ -75.162539, 39.952649 ], [ -75.16248, 39.952909 ], [ -75.16247, 39.952989 ], [ -75.16247, 39.95305 ], [ -75.16248, 39.953099 ], [ -75.162499, 39.95314 ], [ -75.16252, 39.953179 ], [ -75.16257, 39.95322 ], [ -75.162629, 39.953259 ], [ -75.16271, 39.953289 ], [ -75.162809, 39.95331 ], [ -75.162949, 39.95333 ], [ -75.16332, 39.95339 ], [ -75.163809, 39.953449 ], [ -75.164559, 39.953539 ], [ -75.16505, 39.95359 ], [ -75.16523, 39.953629 ], [ -75.16544, 39.95367 ], [ -75.16554, 39.95369 ], [ -75.166089, 39.95376 ], [ -75.16635, 39.95379 ], [ -75.166629, 39.953819 ], [ -75.16721, 39.95388 ], [ -75.167619, 39.95393 ], [ -75.16828, 39.954009 ], [ -75.16836, 39.95402 ], [ -75.168799, 39.954069 ], [ -75.169059, 39.954099 ], [ -75.16936, 39.95414 ], [ -75.169559, 39.954169 ], [ -75.169739, 39.954189 ], [ -75.170829, 39.95432 ], [ -75.171359, 39.95439 ], [ -75.17234, 39.954519 ], [ -75.173019, 39.954609 ], [ -75.173079, 39.954249 ], [ -75.173119, 39.954009 ], [ -75.173169, 39.953559 ], [ -75.173739, 39.953639 ], [ -75.17417, 39.95369 ], [ -75.17441, 39.953719 ], [ -75.17508, 39.953809 ], [ -75.175549, 39.95386 ], [ -75.17616, 39.95394 ], [ -75.1767, 39.954009 ], [ -75.177119, 39.95406 ], [ -75.17738, 39.954089 ], [ -75.177609, 39.95412 ], [ -75.17782, 39.95415 ], [ -75.17832, 39.95421 ], [ -75.179499, 39.954359 ], [ -75.179639, 39.95438 ], [ -75.17981, 39.95441 ], [ -75.18053, 39.95449 ], [ -75.180909, 39.954539 ], [ -75.18116, 39.95457 ], [ -75.18105, 39.954799 ], [ -75.18089, 39.95514 ], [ -75.180819, 39.95531 ], [ -75.180719, 39.95556 ], [ -75.18065, 39.955769 ], [ -75.180579, 39.955989 ], [ -75.18048, 39.956339 ], [ -75.18043, 39.956529 ], [ -75.18039, 39.956669 ], [ -75.18034, 39.956859 ], [ -75.180309, 39.95699 ], [ -75.18026, 39.957239 ], [ -75.18024, 39.95735 ], [ -75.180219, 39.95753 ], [ -75.18021, 39.957689 ], [ -75.18021, 39.95793 ], [ -75.180219, 39.958049 ], [ -75.180229, 39.958149 ], [ -75.18024, 39.958239 ], [ -75.180279, 39.95844 ], [ -75.18033, 39.958599 ], [ -75.180399, 39.958779 ], [ -75.18048, 39.958959 ], [ -75.180549, 39.95909 ], [ -75.18075, 39.95944 ], [ -75.18089, 39.959679 ], [ -75.181039, 39.959949 ], [ -75.181129, 39.960099 ], [ -75.18124, 39.96026 ], [ -75.18129, 39.96034 ], [ -75.181439, 39.960559 ], [ -75.181719, 39.96095 ], [ -75.181989, 39.96132 ], [ -75.18218, 39.96158 ], [ -75.18236, 39.961809 ], [ -75.18249, 39.96196 ], [ -75.18263, 39.96212 ], [ -75.182799, 39.96231 ], [ -75.18304, 39.962559 ], [ -75.183299, 39.962829 ], [ -75.183739, 39.963279 ], [ -75.183839, 39.96338 ], [ -75.18394, 39.96349 ], [ -75.18413, 39.963699 ], [ -75.18443, 39.96405 ], [ -75.184769, 39.964449 ], [ -75.185039, 39.964719 ], [ -75.185139, 39.964809 ], [ -75.185529, 39.965159 ], [ -75.186389, 39.965869 ], [ -75.186849, 39.966249 ], [ -75.18705, 39.966409 ], [ -75.18723, 39.96655 ], [ -75.18737, 39.96665 ], [ -75.187519, 39.96675 ], [ -75.18768, 39.966849 ], [ -75.18785, 39.966949 ], [ -75.188009, 39.967039 ], [ -75.18818, 39.967129 ], [ -75.18834, 39.967209 ], [ -75.188559, 39.967309 ], [ -75.18948, 39.9677 ], [ -75.18974, 39.96781 ], [ -75.190029, 39.967939 ], [ -75.19024, 39.968039 ], [ -75.190399, 39.968119 ], [ -75.19051, 39.96818 ], [ -75.190619, 39.96824 ], [ -75.19074, 39.968309 ], [ -75.19087, 39.968389 ], [ -75.19097, 39.96846 ], [ -75.19119, 39.96862 ], [ -75.19142, 39.96878 ], [ -75.19168, 39.969009 ], [ -75.191969, 39.96926 ], [ -75.19223, 39.969569 ], [ -75.192419, 39.96979 ], [ -75.19268, 39.970179 ], [ -75.19289, 39.970539 ], [ -75.192969, 39.97071 ], [ -75.193099, 39.97107 ], [ -75.193149, 39.971189 ], [ -75.193189, 39.9713 ], [ -75.193239, 39.971459 ], [ -75.193629, 39.97277 ], [ -75.19388, 39.973629 ], [ -75.193919, 39.973779 ], [ -75.19398, 39.973969 ], [ -75.19406, 39.974239 ], [ -75.194129, 39.97446 ], [ -75.19421, 39.974699 ], [ -75.194269, 39.974869 ], [ -75.19433, 39.97503 ], [ -75.19442, 39.975229 ], [ -75.194489, 39.97536 ], [ -75.194529, 39.975429 ], [ -75.1946, 39.97553 ], [ -75.194679, 39.97563 ], [ -75.19475, 39.97571 ], [ -75.194859, 39.97582 ], [ -75.194949, 39.97591 ], [ -75.195039, 39.97599 ], [ -75.19515, 39.97608 ], [ -75.19527, 39.97617 ], [ -75.19537, 39.976239 ], [ -75.195479, 39.976309 ], [ -75.19559, 39.97637 ], [ -75.195709, 39.97643 ], [ -75.195879, 39.976509 ], [ -75.196029, 39.976569 ], [ -75.196209, 39.97663 ], [ -75.19635, 39.976669 ], [ -75.19654, 39.97672 ], [ -75.19672, 39.976759 ], [ -75.19703, 39.97682 ], [ -75.19745, 39.97689 ], [ -75.198269, 39.977019 ], [ -75.198629, 39.97708 ], [ -75.198949, 39.977139 ], [ -75.19928, 39.977209 ], [ -75.199569, 39.97728 ], [ -75.199839, 39.97735 ], [ -75.20009, 39.97742 ], [ -75.20037, 39.97751 ], [ -75.200569, 39.977579 ], [ -75.200789, 39.977659 ], [ -75.201069, 39.977759 ], [ -75.201199, 39.97781 ], [ -75.20131, 39.977859 ], [ -75.20144, 39.977919 ], [ -75.20162, 39.977999 ], [ -75.201839, 39.978109 ], [ -75.20204, 39.978219 ], [ -75.20225, 39.97834 ], [ -75.202469, 39.978469 ], [ -75.202629, 39.978569 ], [ -75.202899, 39.978739 ], [ -75.203359, 39.979029 ], [ -75.203679, 39.97924 ], [ -75.204429, 39.979739 ], [ -75.20464, 39.97987 ], [ -75.20474, 39.97994 ], [ -75.205919, 39.980709 ], [ -75.20634, 39.980999 ], [ -75.206739, 39.98132 ], [ -75.207089, 39.98165 ], [ -75.20742, 39.982059 ], [ -75.207639, 39.98237 ], [ -75.20774, 39.98256 ], [ -75.207909, 39.98294 ], [ -75.20796, 39.9831 ], [ -75.207989, 39.98318 ], [ -75.20807, 39.98347 ], [ -75.2081, 39.98365 ], [ -75.208119, 39.98382 ], [ -75.20816, 39.98401 ], [ -75.208179, 39.98421 ], [ -75.2082, 39.98466 ], [ -75.2082, 39.984879 ], [ -75.20819, 39.9851 ], [ -75.20814, 39.98555 ], [ -75.2081, 39.98579 ], [ -75.20806, 39.986 ], [ -75.20801, 39.986219 ], [ -75.207859, 39.98671 ], [ -75.207639, 39.98726 ], [ -75.207539, 39.987469 ], [ -75.20733, 39.98787 ], [ -75.20708, 39.98826 ], [ -75.206959, 39.988449 ], [ -75.206819, 39.988629 ], [ -75.20625, 39.9893 ], [ -75.205929, 39.989619 ], [ -75.20562, 39.98987 ], [ -75.205289, 39.99013 ], [ -75.205159, 39.99022 ], [ -75.20477, 39.9905 ], [ -75.20454, 39.99065 ], [ -75.20432, 39.990779 ], [ -75.20396, 39.990979 ], [ -75.20361, 39.991159 ], [ -75.203269, 39.991329 ], [ -75.2028, 39.99156 ], [ -75.202639, 39.99164 ], [ -75.202189, 39.991859 ], [ -75.201689, 39.99212 ], [ -75.201189, 39.9924 ], [ -75.200709, 39.992699 ], [ -75.20023, 39.99302 ], [ -75.19978, 39.99335 ], [ -75.19934, 39.993679 ], [ -75.198939, 39.99401 ], [ -75.19852, 39.994399 ], [ -75.198129, 39.99479 ], [ -75.197909, 39.995029 ], [ -75.19775, 39.995199 ], [ -75.19739, 39.99562 ], [ -75.197059, 39.99605 ], [ -75.196829, 39.99635 ], [ -75.196699, 39.99652 ], [ -75.196599, 39.996669 ], [ -75.19644, 39.996909 ], [ -75.19619, 39.99732 ], [ -75.195969, 39.997719 ], [ -75.19591, 39.997829 ], [ -75.195759, 39.99814 ], [ -75.195659, 39.998359 ], [ -75.195479, 39.998799 ], [ -75.195309, 39.999249 ], [ -75.19505, 39.99994 ], [ -75.19493, 40.000349 ], [ -75.194849, 40.000609 ], [ -75.19473, 40.001049 ], [ -75.194629, 40.00149 ], [ -75.19461, 40.001879 ], [ -75.1946, 40.00229 ], [ -75.1946, 40.00263 ], [ -75.19466, 40.00308 ], [ -75.19473, 40.00338 ], [ -75.194849, 40.00372 ], [ -75.19492, 40.003849 ], [ -75.195, 40.004019 ], [ -75.19509, 40.004199 ], [ -75.19519, 40.004379 ], [ -75.19541, 40.00469 ], [ -75.195579, 40.0049 ], [ -75.195929, 40.005209 ], [ -75.19641, 40.005569 ], [ -75.196689, 40.005729 ], [ -75.197009, 40.005909 ], [ -75.198009, 40.00643 ], [ -75.198449, 40.00669 ], [ -75.19916, 40.00697 ], [ -75.19951, 40.007099 ], [ -75.201109, 40.00769 ], [ -75.201609, 40.00787 ], [ -75.20311, 40.008449 ], [ -75.20375, 40.008719 ], [ -75.203989, 40.00883 ], [ -75.20427, 40.008989 ], [ -75.205289, 40.009429 ], [ -75.205829, 40.009689 ], [ -75.20604, 40.009789 ], [ -75.207049, 40.01031 ], [ -75.2073, 40.010439 ], [ -75.20756, 40.01058 ], [ -75.207809, 40.010679 ], [ -75.20787, 40.010699 ], [ -75.2081, 40.010769 ], [ -75.20828, 40.01081 ], [ -75.20837, 40.01082 ], [ -75.20851, 40.01082 ], [ -75.20864, 40.010799 ], [ -75.20877, 40.010769 ], [ -75.208889, 40.010709 ], [ -75.209, 40.01064 ], [ -75.20906, 40.01058 ], [ -75.209129, 40.01049 ], [ -75.209219, 40.01036 ], [ -75.20927, 40.01028 ], [ -75.209399, 40.010079 ], [ -75.209479, 40.00991 ], [ -75.20955, 40.00976 ], [ -75.209609, 40.009589 ], [ -75.20964, 40.009449 ], [ -75.209659, 40.00937 ], [ -75.20969, 40.00931 ], [ -75.20972, 40.009269 ], [ -75.20981, 40.009179 ], [ -75.210189, 40.008979 ], [ -75.2104, 40.008869 ], [ -75.2105, 40.008809 ], [ -75.210609, 40.00874 ], [ -75.210689, 40.00867 ], [ -75.210749, 40.00857 ], [ -75.210919, 40.00848 ], [ -75.21107, 40.0084 ], [ -75.21116, 40.008339 ], [ -75.21143, 40.0082 ], [ -75.21158, 40.00813 ], [ -75.211769, 40.00804 ], [ -75.211959, 40.00794 ], [ -75.212489, 40.00769 ], [ -75.21266, 40.00761 ], [ -75.212759, 40.007559 ], [ -75.21284, 40.00752 ], [ -75.213079, 40.00741 ], [ -75.21363, 40.00716 ], [ -75.213709, 40.00713 ], [ -75.21418, 40.006929 ], [ -75.215499, 40.006359 ], [ -75.21576, 40.00625 ], [ -75.21656, 40.00589 ], [ -75.21693, 40.00571 ], [ -75.21742, 40.005479 ], [ -75.217929, 40.00523 ], [ -75.218379, 40.005019 ], [ -75.218849, 40.00479 ], [ -75.21922, 40.00462 ], [ -75.219689, 40.004389 ], [ -75.219819, 40.00433 ], [ -75.220189, 40.00416 ], [ -75.220679, 40.003929 ], [ -75.220949, 40.0038 ], [ -75.221229, 40.003669 ], [ -75.221309, 40.00363 ], [ -75.221409, 40.003579 ], [ -75.221679, 40.00345 ], [ -75.22215, 40.003239 ], [ -75.22277, 40.002939 ], [ -75.22299, 40.00284 ], [ -75.223149, 40.002759 ], [ -75.223599, 40.00255 ], [ -75.223649, 40.00253 ], [ -75.22418, 40.00227 ], [ -75.22467, 40.002039 ], [ -75.225489, 40.00166 ], [ -75.22565, 40.001589 ], [ -75.225819, 40.001509 ], [ -75.226079, 40.0014 ], [ -75.22638, 40.001259 ], [ -75.226569, 40.001169 ], [ -75.226709, 40.0011 ], [ -75.22688, 40.00102 ], [ -75.226989, 40.000969 ], [ -75.227129, 40.000899 ], [ -75.227209, 40.000859 ], [ -75.22733, 40.000799 ], [ -75.2275, 40.000719 ], [ -75.227789, 40.00058 ], [ -75.22836, 40.00031 ], [ -75.22871, 40.000149 ], [ -75.22881, 40.000089 ], [ -75.22895, 40.00003 ], [ -75.229059, 39.999989 ], [ -75.229149, 39.99995 ], [ -75.22931, 39.999869 ], [ -75.22944, 39.999799 ], [ -75.229499, 39.99977 ], [ -75.22958, 39.999729 ], [ -75.229649, 39.999699 ], [ -75.229869, 39.999599 ], [ -75.229959, 39.99956 ], [ -75.230219, 39.999439 ], [ -75.230309, 39.99939 ], [ -75.23042, 39.999339 ], [ -75.230529, 39.99929 ], [ -75.2307, 39.9992 ], [ -75.230889, 39.99911 ], [ -75.23129, 39.99893 ], [ -75.231529, 39.998809 ], [ -75.23173, 39.998719 ], [ -75.232069, 39.998559 ], [ -75.23232, 39.998439 ], [ -75.232429, 39.99839 ], [ -75.23249, 39.998359 ], [ -75.23255, 39.99833 ], [ -75.23268, 39.998269 ], [ -75.232919, 39.99815 ], [ -75.23308, 39.998079 ], [ -75.233229, 39.997999 ], [ -75.23303, 39.997749 ], [ -75.23294, 39.997629 ], [ -75.23285, 39.99753 ], [ -75.232649, 39.99731 ], [ -75.232339, 39.996909 ], [ -75.23205, 39.996479 ], [ -75.23132, 39.99535 ], [ -75.232659, 39.99506 ], [ -75.23308, 39.99497 ], [ -75.23354, 39.994869 ], [ -75.233829, 39.99481 ], [ -75.233999, 39.994769 ], [ -75.23407, 39.995189 ], [ -75.23411, 39.995369 ], [ -75.234139, 39.995559 ], [ -75.234179, 39.995639 ], [ -75.23424, 39.995729 ], [ -75.23429, 39.99581 ], [ -75.23448, 39.996039 ], [ -75.23475, 39.996359 ], [ -75.23483, 39.99651 ], [ -75.234989, 39.99671 ], [ -75.235179, 39.996939 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307618", "route_id": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.234989, 39.99671 ], [ -75.235179, 39.996939 ], [ -75.23529, 39.99706 ], [ -75.23565, 39.997379 ], [ -75.235809, 39.99753 ], [ -75.23592, 39.997629 ], [ -75.23632, 39.997989 ], [ -75.236439, 39.998099 ], [ -75.23699, 39.99858 ], [ -75.237329, 39.998899 ], [ -75.23753, 39.999079 ], [ -75.23808, 39.999599 ], [ -75.2383, 39.999819 ], [ -75.23879, 40.000339 ], [ -75.238869, 40.000429 ], [ -75.239039, 40.000609 ], [ -75.239219, 40.00082 ], [ -75.2393, 40.00092 ], [ -75.23938, 40.00103 ], [ -75.23943, 40.00109 ], [ -75.2396, 40.00131 ], [ -75.23965, 40.00138 ], [ -75.23974, 40.001499 ], [ -75.239939, 40.00176 ], [ -75.24019, 40.00209 ], [ -75.24041, 40.00239 ], [ -75.24059, 40.00264 ], [ -75.240709, 40.00281 ], [ -75.24096, 40.00317 ], [ -75.24123, 40.00355 ], [ -75.241289, 40.00363 ], [ -75.24136, 40.00372 ], [ -75.24146, 40.003839 ], [ -75.24154, 40.003929 ], [ -75.241689, 40.00409 ], [ -75.24227, 40.004669 ], [ -75.24236, 40.004759 ], [ -75.24248, 40.00489 ], [ -75.242549, 40.00497 ], [ -75.242639, 40.005019 ], [ -75.24267, 40.005039 ], [ -75.24271, 40.00507 ], [ -75.2428, 40.00515 ], [ -75.24289, 40.00523 ], [ -75.242919, 40.00526 ], [ -75.243049, 40.005399 ], [ -75.2432, 40.005479 ], [ -75.24325, 40.0055 ], [ -75.243399, 40.00559 ], [ -75.24362, 40.00571 ], [ -75.24383, 40.0058 ], [ -75.244039, 40.00587 ], [ -75.244349, 40.00597 ], [ -75.244499, 40.006019 ], [ -75.2446, 40.00605 ], [ -75.244799, 40.006119 ], [ -75.24492, 40.00616 ], [ -75.245609, 40.006389 ], [ -75.246209, 40.006569 ], [ -75.246729, 40.006719 ], [ -75.2474, 40.00694 ], [ -75.247769, 40.00706 ], [ -75.248939, 40.00743 ], [ -75.24942, 40.0076 ], [ -75.249979, 40.007799 ], [ -75.25071, 40.00802 ], [ -75.250919, 40.008089 ], [ -75.251499, 40.008259 ], [ -75.252409, 40.008529 ], [ -75.252759, 40.00867 ], [ -75.252849, 40.008709 ], [ -75.252989, 40.00876 ], [ -75.253119, 40.008809 ], [ -75.253219, 40.00885 ], [ -75.253409, 40.00893 ], [ -75.25351, 40.008969 ], [ -75.253719, 40.009049 ], [ -75.253799, 40.009079 ], [ -75.25391, 40.00912 ], [ -75.254159, 40.00922 ], [ -75.254609, 40.0094 ], [ -75.25464, 40.009409 ], [ -75.255209, 40.00964 ], [ -75.255479, 40.00974 ], [ -75.25616, 40.009989 ], [ -75.25625, 40.01002 ], [ -75.25631, 40.01004 ], [ -75.25643, 40.010079 ], [ -75.256539, 40.01012 ], [ -75.25679, 40.01021 ], [ -75.25688, 40.010249 ], [ -75.25694, 40.01027 ], [ -75.257629, 40.010509 ], [ -75.257809, 40.01057 ], [ -75.257859, 40.010589 ], [ -75.257939, 40.010619 ], [ -75.25811, 40.010679 ], [ -75.258439, 40.010789 ], [ -75.25854, 40.01082 ], [ -75.258879, 40.01094 ], [ -75.25901, 40.010979 ], [ -75.25932, 40.01109 ], [ -75.25941, 40.01112 ], [ -75.259469, 40.011139 ], [ -75.259739, 40.011249 ], [ -75.259959, 40.011319 ], [ -75.26036, 40.01146 ], [ -75.260639, 40.01156 ], [ -75.260689, 40.011579 ], [ -75.26076, 40.011599 ], [ -75.260859, 40.01164 ], [ -75.26099, 40.011689 ], [ -75.26116, 40.01175 ], [ -75.261539, 40.011879 ], [ -75.261679, 40.01193 ], [ -75.26192, 40.01202 ], [ -75.262299, 40.01216 ], [ -75.262359, 40.01218 ], [ -75.26314, 40.012489 ], [ -75.263659, 40.01271 ], [ -75.26373, 40.012739 ], [ -75.263969, 40.012839 ], [ -75.264479, 40.013039 ], [ -75.26508, 40.013219 ], [ -75.265409, 40.013299 ], [ -75.26579, 40.013379 ], [ -75.266489, 40.013459 ], [ -75.26682, 40.013489 ], [ -75.267209, 40.013499 ], [ -75.26795, 40.013499 ], [ -75.26846, 40.013499 ], [ -75.268789, 40.013499 ], [ -75.269239, 40.013489 ], [ -75.26927, 40.013489 ], [ -75.269499, 40.013479 ], [ -75.27006, 40.013469 ], [ -75.27124, 40.013479 ], [ -75.27151, 40.01345 ], [ -75.271669, 40.01342 ], [ -75.27187, 40.013369 ], [ -75.271979, 40.01334 ], [ -75.27223, 40.01326 ], [ -75.27241, 40.013189 ], [ -75.27259, 40.013119 ], [ -75.272939, 40.01298 ], [ -75.273509, 40.01273 ], [ -75.273559, 40.01271 ], [ -75.2738, 40.012579 ], [ -75.27402, 40.01244 ], [ -75.27413, 40.01236 ], [ -75.27444, 40.012129 ], [ -75.274819, 40.011849 ], [ -75.27494, 40.01175 ], [ -75.27515, 40.011579 ], [ -75.275439, 40.011309 ], [ -75.275669, 40.011059 ], [ -75.276039, 40.010599 ], [ -75.27615, 40.01047 ], [ -75.27632, 40.0103 ], [ -75.27647, 40.0102 ], [ -75.276609, 40.01011 ], [ -75.27674, 40.01004 ], [ -75.276969, 40.00991 ], [ -75.27728, 40.009769 ], [ -75.27768, 40.009589 ], [ -75.27831, 40.00931 ], [ -75.278909, 40.009059 ], [ -75.279309, 40.008889 ], [ -75.279369, 40.00886 ], [ -75.279489, 40.008809 ], [ -75.27983, 40.00867 ], [ -75.28006, 40.00857 ], [ -75.28015, 40.008539 ], [ -75.28024, 40.008529 ], [ -75.280409, 40.008529 ], [ -75.280629, 40.008549 ], [ -75.280749, 40.00857 ], [ -75.28087, 40.00859 ], [ -75.28105, 40.008629 ], [ -75.281529, 40.00874 ], [ -75.281799, 40.008809 ], [ -75.2819, 40.00883 ], [ -75.282149, 40.008889 ], [ -75.28241, 40.008959 ], [ -75.28272, 40.00903 ], [ -75.28299, 40.009069 ], [ -75.283189, 40.009089 ], [ -75.283279, 40.009089 ], [ -75.283449, 40.00911 ], [ -75.28371, 40.00912 ], [ -75.284039, 40.00913 ], [ -75.284449, 40.009149 ], [ -75.28451, 40.009149 ], [ -75.28474, 40.009159 ], [ -75.284859, 40.009169 ], [ -75.28536, 40.00919 ], [ -75.2855, 40.0092 ], [ -75.285609, 40.0092 ], [ -75.286119, 40.00921 ], [ -75.28619, 40.00921 ], [ -75.286479, 40.009229 ], [ -75.2869, 40.009249 ], [ -75.287369, 40.00929 ], [ -75.287549, 40.0093 ], [ -75.28781, 40.00931 ], [ -75.28843, 40.009319 ], [ -75.2888, 40.009339 ], [ -75.289209, 40.009359 ], [ -75.28937, 40.00937 ], [ -75.28961, 40.0094 ], [ -75.289839, 40.00946 ], [ -75.289889, 40.00948 ], [ -75.28997, 40.009509 ], [ -75.290259, 40.009139 ], [ -75.290399, 40.008989 ], [ -75.289759, 40.008629 ], [ -75.289669, 40.00858 ], [ -75.288809, 40.008159 ], [ -75.2883, 40.007909 ], [ -75.28811, 40.007889 ], [ -75.28797, 40.007889 ], [ -75.287729, 40.007889 ], [ -75.28757, 40.007889 ], [ -75.28685, 40.00793 ], [ -75.286509, 40.00793 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307620", "route_id": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.142305, 39.949792 ], [ -75.14214, 39.949774 ], [ -75.142116, 39.949809 ], [ -75.14208, 39.949939 ], [ -75.142059, 39.95007 ], [ -75.14201, 39.950309 ], [ -75.14182, 39.951089 ], [ -75.14168, 39.9516 ], [ -75.141659, 39.951749 ], [ -75.14259, 39.951849 ], [ -75.14331, 39.951929 ], [ -75.14397, 39.952019 ], [ -75.144139, 39.95204 ], [ -75.14426, 39.95206 ], [ -75.144589, 39.952099 ], [ -75.14493, 39.95214 ], [ -75.14524, 39.952179 ], [ -75.14559, 39.95222 ], [ -75.14627, 39.95231 ], [ -75.14681, 39.952369 ], [ -75.14795, 39.95251 ], [ -75.14849, 39.95258 ], [ -75.148779, 39.95261 ], [ -75.149349, 39.95268 ], [ -75.149489, 39.9527 ], [ -75.14993, 39.95276 ], [ -75.150029, 39.95232 ], [ -75.15006, 39.952169 ], [ -75.1502, 39.95153 ], [ -75.150269, 39.951179 ], [ -75.150299, 39.95105 ], [ -75.15037, 39.950739 ], [ -75.150979, 39.95082 ], [ -75.151239, 39.950849 ], [ -75.15199, 39.95096 ], [ -75.15356, 39.95115 ], [ -75.15434, 39.95125 ], [ -75.15515, 39.95135 ], [ -75.1559, 39.95144 ], [ -75.15671, 39.951539 ], [ -75.158269, 39.951739 ], [ -75.15987, 39.951939 ], [ -75.161409, 39.95213 ], [ -75.16203, 39.952209 ], [ -75.16234, 39.95224 ], [ -75.162409, 39.952269 ], [ -75.16248, 39.95231 ], [ -75.16253, 39.952359 ], [ -75.162579, 39.952439 ], [ -75.162539, 39.952649 ], [ -75.16248, 39.952909 ], [ -75.16247, 39.952989 ], [ -75.16247, 39.95305 ], [ -75.16248, 39.953099 ], [ -75.162499, 39.95314 ], [ -75.16252, 39.953179 ], [ -75.16257, 39.95322 ], [ -75.162629, 39.953259 ], [ -75.16271, 39.953289 ], [ -75.162809, 39.95331 ], [ -75.162949, 39.95333 ], [ -75.16332, 39.95339 ], [ -75.163809, 39.953449 ], [ -75.164559, 39.953539 ], [ -75.16505, 39.95359 ], [ -75.16523, 39.953629 ], [ -75.16544, 39.95367 ], [ -75.16554, 39.95369 ], [ -75.166089, 39.95376 ], [ -75.16635, 39.95379 ], [ -75.166629, 39.953819 ], [ -75.16721, 39.95388 ], [ -75.167619, 39.95393 ], [ -75.16828, 39.954009 ], [ -75.16836, 39.95402 ], [ -75.168799, 39.954069 ], [ -75.169059, 39.954099 ], [ -75.16936, 39.95414 ], [ -75.169559, 39.954169 ], [ -75.169739, 39.954189 ], [ -75.170829, 39.95432 ], [ -75.171359, 39.95439 ], [ -75.17234, 39.954519 ], [ -75.173019, 39.954609 ], [ -75.173079, 39.954249 ], [ -75.173119, 39.954009 ], [ -75.173169, 39.953559 ], [ -75.173739, 39.953639 ], [ -75.17417, 39.95369 ], [ -75.17441, 39.953719 ], [ -75.17508, 39.953809 ], [ -75.175549, 39.95386 ], [ -75.17616, 39.95394 ], [ -75.1767, 39.954009 ], [ -75.177119, 39.95406 ], [ -75.17738, 39.954089 ], [ -75.177609, 39.95412 ], [ -75.17782, 39.95415 ], [ -75.17832, 39.95421 ], [ -75.179499, 39.954359 ], [ -75.179639, 39.95438 ], [ -75.17981, 39.95441 ], [ -75.18053, 39.95449 ], [ -75.180909, 39.954539 ], [ -75.18116, 39.95457 ], [ -75.18105, 39.954799 ], [ -75.18089, 39.95514 ], [ -75.180819, 39.95531 ], [ -75.180719, 39.95556 ], [ -75.18065, 39.955769 ], [ -75.180579, 39.955989 ], [ -75.18048, 39.956339 ], [ -75.18043, 39.956529 ], [ -75.18039, 39.956669 ], [ -75.18034, 39.956859 ], [ -75.180309, 39.95699 ], [ -75.18026, 39.957239 ], [ -75.18024, 39.95735 ], [ -75.180219, 39.95753 ], [ -75.18021, 39.957689 ], [ -75.18021, 39.95793 ], [ -75.180219, 39.958049 ], [ -75.180229, 39.958149 ], [ -75.18024, 39.958239 ], [ -75.180279, 39.95844 ], [ -75.18033, 39.958599 ], [ -75.180399, 39.958779 ], [ -75.18048, 39.958959 ], [ -75.180549, 39.95909 ], [ -75.18075, 39.95944 ], [ -75.18089, 39.959679 ], [ -75.181039, 39.959949 ], [ -75.181129, 39.960099 ], [ -75.18124, 39.96026 ], [ -75.18129, 39.96034 ], [ -75.181439, 39.960559 ], [ -75.181719, 39.96095 ], [ -75.181989, 39.96132 ], [ -75.18218, 39.96158 ], [ -75.18236, 39.961809 ], [ -75.18249, 39.96196 ], [ -75.18263, 39.96212 ], [ -75.182799, 39.96231 ], [ -75.18304, 39.962559 ], [ -75.183299, 39.962829 ], [ -75.183739, 39.963279 ], [ -75.183839, 39.96338 ], [ -75.18394, 39.96349 ], [ -75.18413, 39.963699 ], [ -75.18443, 39.96405 ], [ -75.184769, 39.964449 ], [ -75.185039, 39.964719 ], [ -75.185139, 39.964809 ], [ -75.185529, 39.965159 ], [ -75.186389, 39.965869 ], [ -75.186849, 39.966249 ], [ -75.18705, 39.966409 ], [ -75.18723, 39.96655 ], [ -75.18737, 39.96665 ], [ -75.187519, 39.96675 ], [ -75.18768, 39.966849 ], [ -75.18785, 39.966949 ], [ -75.188009, 39.967039 ], [ -75.18818, 39.967129 ], [ -75.18834, 39.967209 ], [ -75.188559, 39.967309 ], [ -75.18948, 39.9677 ], [ -75.18974, 39.96781 ], [ -75.190029, 39.967939 ], [ -75.19024, 39.968039 ], [ -75.190399, 39.968119 ], [ -75.19051, 39.96818 ], [ -75.190619, 39.96824 ], [ -75.19074, 39.968309 ], [ -75.19087, 39.968389 ], [ -75.19097, 39.96846 ], [ -75.19119, 39.96862 ], [ -75.19142, 39.96878 ], [ -75.19168, 39.969009 ], [ -75.191969, 39.96926 ], [ -75.19223, 39.969569 ], [ -75.192419, 39.96979 ], [ -75.19268, 39.970179 ], [ -75.19289, 39.970539 ], [ -75.192969, 39.97071 ], [ -75.193099, 39.97107 ], [ -75.193149, 39.971189 ], [ -75.193189, 39.9713 ], [ -75.193239, 39.971459 ], [ -75.193629, 39.97277 ], [ -75.19388, 39.973629 ], [ -75.193919, 39.973779 ], [ -75.19398, 39.973969 ], [ -75.19406, 39.974239 ], [ -75.194129, 39.97446 ], [ -75.19421, 39.974699 ], [ -75.194269, 39.974869 ], [ -75.19433, 39.97503 ], [ -75.19442, 39.975229 ], [ -75.194489, 39.97536 ], [ -75.194529, 39.975429 ], [ -75.1946, 39.97553 ], [ -75.194679, 39.97563 ], [ -75.19475, 39.97571 ], [ -75.194859, 39.97582 ], [ -75.194949, 39.97591 ], [ -75.195039, 39.97599 ], [ -75.19515, 39.97608 ], [ -75.19527, 39.97617 ], [ -75.19537, 39.976239 ], [ -75.195479, 39.976309 ], [ -75.19559, 39.97637 ], [ -75.195709, 39.97643 ], [ -75.195879, 39.976509 ], [ -75.196029, 39.976569 ], [ -75.196209, 39.97663 ], [ -75.19635, 39.976669 ], [ -75.19654, 39.97672 ], [ -75.19672, 39.976759 ], [ -75.19703, 39.97682 ], [ -75.19745, 39.97689 ], [ -75.198269, 39.977019 ], [ -75.198629, 39.97708 ], [ -75.198949, 39.977139 ], [ -75.19928, 39.977209 ], [ -75.199569, 39.97728 ], [ -75.199839, 39.97735 ], [ -75.20009, 39.97742 ], [ -75.20037, 39.97751 ], [ -75.200569, 39.977579 ], [ -75.200789, 39.977659 ], [ -75.201069, 39.977759 ], [ -75.201199, 39.97781 ], [ -75.20131, 39.977859 ], [ -75.20144, 39.977919 ], [ -75.20162, 39.977999 ], [ -75.201839, 39.978109 ], [ -75.20204, 39.978219 ], [ -75.20225, 39.97834 ], [ -75.202469, 39.978469 ], [ -75.202629, 39.978569 ], [ -75.202899, 39.978739 ], [ -75.203359, 39.979029 ], [ -75.203679, 39.97924 ], [ -75.204429, 39.979739 ], [ -75.20464, 39.97987 ], [ -75.20474, 39.97994 ], [ -75.205919, 39.980709 ], [ -75.20634, 39.980999 ], [ -75.206739, 39.98132 ], [ -75.207089, 39.98165 ], [ -75.20742, 39.982059 ], [ -75.207639, 39.98237 ], [ -75.20774, 39.98256 ], [ -75.207909, 39.98294 ], [ -75.20796, 39.9831 ], [ -75.207989, 39.98318 ], [ -75.20807, 39.98347 ], [ -75.2081, 39.98365 ], [ -75.208119, 39.98382 ], [ -75.20816, 39.98401 ], [ -75.208179, 39.98421 ], [ -75.2082, 39.98466 ], [ -75.2082, 39.984879 ], [ -75.20819, 39.9851 ], [ -75.20814, 39.98555 ], [ -75.2081, 39.98579 ], [ -75.20806, 39.986 ], [ -75.20801, 39.986219 ], [ -75.207859, 39.98671 ], [ -75.207639, 39.98726 ], [ -75.207539, 39.987469 ], [ -75.20733, 39.98787 ], [ -75.20708, 39.98826 ], [ -75.206959, 39.988449 ], [ -75.206819, 39.988629 ], [ -75.20625, 39.9893 ], [ -75.205929, 39.989619 ], [ -75.20562, 39.98987 ], [ -75.205289, 39.99013 ], [ -75.205159, 39.99022 ], [ -75.20477, 39.9905 ], [ -75.20454, 39.99065 ], [ -75.20432, 39.990779 ], [ -75.20396, 39.990979 ], [ -75.20361, 39.991159 ], [ -75.203269, 39.991329 ], [ -75.2028, 39.99156 ], [ -75.202639, 39.99164 ], [ -75.202189, 39.991859 ], [ -75.201689, 39.99212 ], [ -75.201189, 39.9924 ], [ -75.200709, 39.992699 ], [ -75.20023, 39.99302 ], [ -75.19978, 39.99335 ], [ -75.19934, 39.993679 ], [ -75.198939, 39.99401 ], [ -75.19852, 39.994399 ], [ -75.198129, 39.99479 ], [ -75.197909, 39.995029 ], [ -75.19775, 39.995199 ], [ -75.19739, 39.99562 ], [ -75.197059, 39.99605 ], [ -75.196829, 39.99635 ], [ -75.196699, 39.99652 ], [ -75.196599, 39.996669 ], [ -75.19644, 39.996909 ], [ -75.19619, 39.99732 ], [ -75.195969, 39.997719 ], [ -75.19591, 39.997829 ], [ -75.195759, 39.99814 ], [ -75.195659, 39.998359 ], [ -75.195479, 39.998799 ], [ -75.195309, 39.999249 ], [ -75.19505, 39.99994 ], [ -75.19493, 40.000349 ], [ -75.194849, 40.000609 ], [ -75.19473, 40.001049 ], [ -75.194629, 40.00149 ], [ -75.19461, 40.001879 ], [ -75.1946, 40.00229 ], [ -75.1946, 40.00263 ], [ -75.19466, 40.00308 ], [ -75.19473, 40.00338 ], [ -75.194849, 40.00372 ], [ -75.19492, 40.003849 ], [ -75.195, 40.004019 ], [ -75.19509, 40.004199 ], [ -75.19519, 40.004379 ], [ -75.19541, 40.00469 ], [ -75.195579, 40.0049 ], [ -75.195929, 40.005209 ], [ -75.19641, 40.005569 ], [ -75.196689, 40.005729 ], [ -75.197009, 40.005909 ], [ -75.198009, 40.00643 ], [ -75.198449, 40.00669 ], [ -75.19916, 40.00697 ], [ -75.19951, 40.007099 ], [ -75.201109, 40.00769 ], [ -75.201609, 40.00787 ], [ -75.20311, 40.008449 ], [ -75.20375, 40.008719 ], [ -75.203989, 40.00883 ], [ -75.20427, 40.008989 ], [ -75.205289, 40.009429 ], [ -75.205829, 40.009689 ], [ -75.20604, 40.009789 ], [ -75.207049, 40.01031 ], [ -75.2073, 40.010439 ], [ -75.20756, 40.01058 ], [ -75.207809, 40.010679 ], [ -75.20787, 40.010699 ], [ -75.2081, 40.010769 ], [ -75.20828, 40.01081 ], [ -75.20837, 40.01082 ], [ -75.20851, 40.01082 ], [ -75.20864, 40.010799 ], [ -75.20877, 40.010769 ], [ -75.208889, 40.010709 ], [ -75.209, 40.01064 ], [ -75.20906, 40.01058 ], [ -75.209129, 40.01049 ], [ -75.209219, 40.01036 ], [ -75.20927, 40.01028 ], [ -75.209399, 40.010079 ], [ -75.209479, 40.00991 ], [ -75.20955, 40.00976 ], [ -75.209609, 40.009589 ], [ -75.20964, 40.009449 ], [ -75.209659, 40.00937 ], [ -75.20969, 40.00931 ], [ -75.20972, 40.009269 ], [ -75.20981, 40.009179 ], [ -75.210189, 40.008979 ], [ -75.2104, 40.008869 ], [ -75.2105, 40.008809 ], [ -75.210609, 40.00874 ], [ -75.210689, 40.00867 ], [ -75.210749, 40.00857 ], [ -75.210919, 40.00848 ], [ -75.21107, 40.0084 ], [ -75.21116, 40.008339 ], [ -75.21143, 40.0082 ], [ -75.21158, 40.00813 ], [ -75.211769, 40.00804 ], [ -75.211959, 40.00794 ], [ -75.212489, 40.00769 ], [ -75.21266, 40.00761 ], [ -75.212759, 40.007559 ], [ -75.21284, 40.00752 ], [ -75.213079, 40.00741 ], [ -75.21363, 40.00716 ], [ -75.213709, 40.00713 ], [ -75.21418, 40.006929 ], [ -75.215499, 40.006359 ], [ -75.21576, 40.00625 ], [ -75.21656, 40.00589 ], [ -75.21693, 40.00571 ], [ -75.21742, 40.005479 ], [ -75.217929, 40.00523 ], [ -75.218379, 40.005019 ], [ -75.218849, 40.00479 ], [ -75.21922, 40.00462 ], [ -75.219689, 40.004389 ], [ -75.219819, 40.00433 ], [ -75.220189, 40.00416 ], [ -75.220679, 40.003929 ], [ -75.220949, 40.0038 ], [ -75.221229, 40.003669 ], [ -75.221309, 40.00363 ], [ -75.221409, 40.003579 ], [ -75.221679, 40.00345 ], [ -75.22215, 40.003239 ], [ -75.22277, 40.002939 ], [ -75.22299, 40.00284 ], [ -75.223149, 40.002759 ], [ -75.223599, 40.00255 ], [ -75.223649, 40.00253 ], [ -75.22418, 40.00227 ], [ -75.22467, 40.002039 ], [ -75.225489, 40.00166 ], [ -75.22565, 40.001589 ], [ -75.225819, 40.001509 ], [ -75.226079, 40.0014 ], [ -75.22638, 40.001259 ], [ -75.226569, 40.001169 ], [ -75.226709, 40.0011 ], [ -75.22688, 40.00102 ], [ -75.226989, 40.000969 ], [ -75.227129, 40.000899 ], [ -75.227209, 40.000859 ], [ -75.22733, 40.000799 ], [ -75.2275, 40.000719 ], [ -75.227789, 40.00058 ], [ -75.22836, 40.00031 ], [ -75.22871, 40.000149 ], [ -75.22881, 40.000089 ], [ -75.22895, 40.00003 ], [ -75.229059, 39.999989 ], [ -75.229149, 39.99995 ], [ -75.22931, 39.999869 ], [ -75.22944, 39.999799 ], [ -75.229499, 39.99977 ], [ -75.22958, 39.999729 ], [ -75.229649, 39.999699 ], [ -75.229869, 39.999599 ], [ -75.229959, 39.99956 ], [ -75.230219, 39.999439 ], [ -75.230309, 39.99939 ], [ -75.23042, 39.999339 ], [ -75.230529, 39.99929 ], [ -75.2307, 39.9992 ], [ -75.230889, 39.99911 ], [ -75.23129, 39.99893 ], [ -75.231529, 39.998809 ], [ -75.23173, 39.998719 ], [ -75.232069, 39.998559 ], [ -75.23232, 39.998439 ], [ -75.232429, 39.99839 ], [ -75.23249, 39.998359 ], [ -75.23255, 39.99833 ], [ -75.23268, 39.998269 ], [ -75.232919, 39.99815 ], [ -75.23308, 39.998079 ], [ -75.233229, 39.997999 ], [ -75.23303, 39.997749 ], [ -75.23294, 39.997629 ], [ -75.23285, 39.99753 ], [ -75.232649, 39.99731 ], [ -75.232339, 39.996909 ], [ -75.23205, 39.996479 ], [ -75.23132, 39.99535 ], [ -75.232659, 39.99506 ], [ -75.23308, 39.99497 ], [ -75.23354, 39.994869 ], [ -75.233829, 39.99481 ], [ -75.233999, 39.994769 ], [ -75.23407, 39.995189 ], [ -75.23411, 39.995369 ], [ -75.234139, 39.995559 ], [ -75.234179, 39.995639 ], [ -75.23424, 39.995729 ], [ -75.23429, 39.99581 ], [ -75.23448, 39.996039 ], [ -75.23475, 39.996359 ], [ -75.23483, 39.99651 ], [ -75.234989, 39.99671 ], [ -75.235179, 39.996939 ], [ -75.23529, 39.99706 ], [ -75.23565, 39.997379 ], [ -75.235809, 39.99753 ], [ -75.23592, 39.997629 ], [ -75.23632, 39.997989 ], [ -75.236439, 39.998099 ], [ -75.23699, 39.99858 ], [ -75.237329, 39.998899 ], [ -75.23753, 39.999079 ], [ -75.23808, 39.999599 ], [ -75.2383, 39.999819 ], [ -75.23879, 40.000339 ], [ -75.238869, 40.000429 ], [ -75.239039, 40.000609 ], [ -75.239219, 40.00082 ], [ -75.2393, 40.00092 ], [ -75.23938, 40.00103 ], [ -75.23943, 40.00109 ], [ -75.2396, 40.00131 ], [ -75.23965, 40.00138 ], [ -75.23974, 40.001499 ], [ -75.239939, 40.00176 ], [ -75.24019, 40.00209 ], [ -75.24041, 40.00239 ], [ -75.24059, 40.00264 ], [ -75.240709, 40.00281 ], [ -75.24096, 40.00317 ], [ -75.24123, 40.00355 ], [ -75.241289, 40.00363 ], [ -75.24136, 40.00372 ], [ -75.24146, 40.003839 ], [ -75.24154, 40.003929 ], [ -75.241689, 40.00409 ], [ -75.24227, 40.004669 ], [ -75.24236, 40.004759 ], [ -75.24248, 40.00489 ], [ -75.242549, 40.00497 ], [ -75.242639, 40.005019 ], [ -75.24267, 40.005039 ], [ -75.24271, 40.00507 ], [ -75.2428, 40.00515 ], [ -75.24289, 40.00523 ], [ -75.242919, 40.00526 ], [ -75.243049, 40.005399 ], [ -75.2432, 40.005479 ], [ -75.24325, 40.0055 ], [ -75.243399, 40.00559 ], [ -75.24362, 40.00571 ], [ -75.24383, 40.0058 ], [ -75.244039, 40.00587 ], [ -75.244349, 40.00597 ], [ -75.244499, 40.006019 ], [ -75.2446, 40.00605 ], [ -75.244799, 40.006119 ], [ -75.24492, 40.00616 ], [ -75.245609, 40.006389 ], [ -75.246209, 40.006569 ], [ -75.246729, 40.006719 ], [ -75.2474, 40.00694 ], [ -75.247769, 40.00706 ], [ -75.248939, 40.00743 ], [ -75.24942, 40.0076 ], [ -75.249979, 40.007799 ], [ -75.25071, 40.00802 ], [ -75.250919, 40.008089 ], [ -75.251499, 40.008259 ], [ -75.252409, 40.008529 ], [ -75.252759, 40.00867 ], [ -75.252849, 40.008709 ], [ -75.252989, 40.00876 ], [ -75.253119, 40.008809 ], [ -75.253219, 40.00885 ], [ -75.253409, 40.00893 ], [ -75.25351, 40.008969 ], [ -75.253719, 40.009049 ], [ -75.253799, 40.009079 ], [ -75.25391, 40.00912 ], [ -75.254159, 40.00922 ], [ -75.254609, 40.0094 ], [ -75.25464, 40.009409 ], [ -75.255209, 40.00964 ], [ -75.255479, 40.00974 ], [ -75.25616, 40.009989 ], [ -75.25625, 40.01002 ], [ -75.25631, 40.01004 ], [ -75.25643, 40.010079 ], [ -75.256539, 40.01012 ], [ -75.25679, 40.01021 ], [ -75.25688, 40.010249 ], [ -75.25694, 40.01027 ], [ -75.257629, 40.010509 ], [ -75.257809, 40.01057 ], [ -75.257859, 40.010589 ], [ -75.257939, 40.010619 ], [ -75.25811, 40.010679 ], [ -75.258439, 40.010789 ], [ -75.25854, 40.01082 ], [ -75.258879, 40.01094 ], [ -75.25901, 40.010979 ], [ -75.25932, 40.01109 ], [ -75.25941, 40.01112 ], [ -75.259469, 40.011139 ], [ -75.259739, 40.011249 ], [ -75.259959, 40.011319 ], [ -75.26036, 40.01146 ], [ -75.260639, 40.01156 ], [ -75.260689, 40.011579 ], [ -75.26076, 40.011599 ], [ -75.260859, 40.01164 ], [ -75.26099, 40.011689 ], [ -75.26116, 40.01175 ], [ -75.261539, 40.011879 ], [ -75.261679, 40.01193 ], [ -75.26192, 40.01202 ], [ -75.262299, 40.01216 ], [ -75.262359, 40.01218 ], [ -75.26314, 40.012489 ], [ -75.263659, 40.01271 ], [ -75.26373, 40.012739 ], [ -75.263969, 40.012839 ], [ -75.264479, 40.013039 ], [ -75.26508, 40.013219 ], [ -75.265409, 40.013299 ], [ -75.26579, 40.013379 ], [ -75.266489, 40.013459 ], [ -75.26682, 40.013489 ], [ -75.267209, 40.013499 ], [ -75.26795, 40.013499 ], [ -75.26846, 40.013499 ], [ -75.268789, 40.013499 ], [ -75.269239, 40.013489 ], [ -75.26927, 40.013489 ], [ -75.269499, 40.013479 ], [ -75.27006, 40.013469 ], [ -75.27124, 40.013479 ], [ -75.27151, 40.01345 ], [ -75.271669, 40.01342 ], [ -75.27187, 40.013369 ], [ -75.271979, 40.01334 ], [ -75.27223, 40.01326 ], [ -75.27241, 40.013189 ], [ -75.27259, 40.013119 ], [ -75.272939, 40.01298 ], [ -75.273509, 40.01273 ], [ -75.273559, 40.01271 ], [ -75.2738, 40.012579 ], [ -75.27402, 40.01244 ], [ -75.27413, 40.01236 ], [ -75.27444, 40.012129 ], [ -75.274819, 40.011849 ], [ -75.27494, 40.01175 ], [ -75.27515, 40.011579 ], [ -75.275439, 40.011309 ], [ -75.275669, 40.011059 ], [ -75.276039, 40.010599 ], [ -75.27615, 40.01047 ], [ -75.27632, 40.0103 ], [ -75.27647, 40.0102 ], [ -75.276609, 40.01011 ], [ -75.27674, 40.01004 ], [ -75.276969, 40.00991 ], [ -75.27728, 40.009769 ], [ -75.27768, 40.009589 ], [ -75.27831, 40.00931 ], [ -75.278909, 40.009059 ], [ -75.279309, 40.008889 ], [ -75.279369, 40.00886 ], [ -75.279489, 40.008809 ], [ -75.27983, 40.00867 ], [ -75.28006, 40.00857 ], [ -75.28015, 40.008539 ], [ -75.28024, 40.008529 ], [ -75.280409, 40.008529 ], [ -75.280629, 40.008549 ], [ -75.280749, 40.00857 ], [ -75.28087, 40.00859 ], [ -75.28105, 40.008629 ], [ -75.281529, 40.00874 ], [ -75.281799, 40.008809 ], [ -75.2819, 40.00883 ], [ -75.282149, 40.008889 ], [ -75.28241, 40.008959 ], [ -75.28272, 40.00903 ], [ -75.28299, 40.009069 ], [ -75.283189, 40.009089 ], [ -75.283279, 40.009089 ], [ -75.283449, 40.00911 ], [ -75.28371, 40.00912 ], [ -75.284039, 40.00913 ], [ -75.284449, 40.009149 ], [ -75.28451, 40.009149 ], [ -75.28474, 40.009159 ], [ -75.284859, 40.009169 ], [ -75.28536, 40.00919 ], [ -75.2855, 40.0092 ], [ -75.285609, 40.0092 ], [ -75.286119, 40.00921 ], [ -75.28619, 40.00921 ], [ -75.286479, 40.009229 ], [ -75.2869, 40.009249 ], [ -75.287369, 40.00929 ], [ -75.287549, 40.0093 ], [ -75.28781, 40.00931 ], [ -75.28843, 40.009319 ], [ -75.2888, 40.009339 ], [ -75.289209, 40.009359 ], [ -75.28937, 40.00937 ], [ -75.28961, 40.0094 ], [ -75.289839, 40.00946 ], [ -75.289889, 40.00948 ], [ -75.28997, 40.009509 ], [ -75.290259, 40.009139 ], [ -75.290399, 40.008989 ], [ -75.289759, 40.008629 ], [ -75.289669, 40.00858 ], [ -75.288809, 40.008159 ], [ -75.2883, 40.007909 ], [ -75.28811, 40.007889 ], [ -75.28797, 40.007889 ], [ -75.287729, 40.007889 ], [ -75.28757, 40.007889 ], [ -75.28685, 40.00793 ], [ -75.286509, 40.00793 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307650", "route_id": "47" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.128069, 40.046246 ], [ -75.128355, 40.046273 ], [ -75.1284, 40.046058 ], [ -75.128485, 40.045645 ], [ -75.128558, 40.045309 ], [ -75.128658, 40.044849 ], [ -75.128786, 40.044275 ], [ -75.128828, 40.044086 ], [ -75.128937, 40.043579 ], [ -75.129037, 40.043121 ], [ -75.129156, 40.042577 ], [ -75.12932, 40.04183 ], [ -75.129488, 40.041052 ], [ -75.129826, 40.039531 ], [ -75.130167, 40.037985 ], [ -75.130507, 40.036438 ], [ -75.130873, 40.034746 ], [ -75.131179, 40.03339 ], [ -75.131299, 40.032869 ], [ -75.131413, 40.032334 ], [ -75.131503, 40.031873 ], [ -75.131613, 40.031352 ], [ -75.131845, 40.030332 ], [ -75.131993, 40.029638 ], [ -75.132075, 40.029254 ], [ -75.132182, 40.028791 ], [ -75.132246, 40.028451 ], [ -75.132342, 40.02802 ], [ -75.1325, 40.02727 ], [ -75.132824, 40.025787 ], [ -75.133006, 40.024999 ], [ -75.133167, 40.024299 ], [ -75.133203, 40.02415 ], [ -75.133248, 40.02397 ], [ -75.133265, 40.023891 ], [ -75.133286, 40.023783 ], [ -75.133344, 40.023544 ], [ -75.133392, 40.023323 ], [ -75.133512, 40.022704 ], [ -75.133687, 40.021882 ], [ -75.133856, 40.021114 ], [ -75.133941, 40.020727 ], [ -75.134025, 40.020348 ], [ -75.134172, 40.019613 ], [ -75.134256, 40.019236 ], [ -75.134335, 40.018885 ], [ -75.134416, 40.018516 ], [ -75.134498, 40.018131 ], [ -75.134599, 40.017666 ], [ -75.134691, 40.01724 ], [ -75.134822, 40.01663 ], [ -75.134905, 40.016208 ], [ -75.134953, 40.015996 ], [ -75.134984, 40.015817 ], [ -75.135168, 40.015043 ], [ -75.135523, 40.013455 ], [ -75.135662, 40.012827 ], [ -75.135843, 40.01198 ], [ -75.136173, 40.01047 ], [ -75.136234, 40.010143 ], [ -75.136769, 40.009657 ], [ -75.13684, 40.009595 ], [ -75.13693, 40.009539 ], [ -75.137005, 40.009498 ], [ -75.137474, 40.009283 ], [ -75.137689, 40.009186 ], [ -75.137791, 40.009135 ], [ -75.138024, 40.009028 ], [ -75.138316, 40.008888 ], [ -75.138565, 40.008779 ], [ -75.138674, 40.008286 ], [ -75.138803, 40.007757 ], [ -75.138838, 40.007647 ], [ -75.138924, 40.007186 ], [ -75.139056, 40.006583 ], [ -75.139173, 40.006051 ], [ -75.139502, 40.004543 ], [ -75.139665, 40.003847 ], [ -75.139804, 40.003136 ], [ -75.139836, 40.00299 ], [ -75.139839, 40.002958 ], [ -75.139909, 40.002776 ], [ -75.140075, 40.00194 ], [ -75.140158, 40.001568 ], [ -75.140232, 40.001256 ], [ -75.140335, 40.000674 ], [ -75.140385, 40.000461 ], [ -75.140438, 40.000295 ], [ -75.140455, 40.000197 ], [ -75.140464, 40.000143 ], [ -75.14047, 40.000102 ], [ -75.140484, 40.00006 ], [ -75.140507, 39.999987 ], [ -75.140853, 39.998422 ], [ -75.140948, 39.998011 ], [ -75.141174, 39.996928 ], [ -75.1415, 39.995453 ], [ -75.14183, 39.993939 ], [ -75.142172, 39.992381 ], [ -75.142437, 39.991147 ], [ -75.142515, 39.990772 ], [ -75.142855, 39.989273 ], [ -75.143177, 39.987778 ], [ -75.143512, 39.98627 ], [ -75.143682, 39.985526 ], [ -75.143867, 39.984705 ], [ -75.144049, 39.984727 ], [ -75.14465, 39.9848 ], [ -75.145468, 39.984902 ], [ -75.146093, 39.984981 ], [ -75.146778, 39.985073 ], [ -75.147136, 39.983475 ], [ -75.147455, 39.981984 ], [ -75.147797, 39.980505 ], [ -75.147927, 39.979894 ], [ -75.148074, 39.979167 ], [ -75.148111, 39.979003 ], [ -75.14845, 39.97746 ], [ -75.148635, 39.976559 ], [ -75.148749, 39.976063 ], [ -75.149068, 39.974633 ], [ -75.14936, 39.973264 ], [ -75.149636, 39.97199 ], [ -75.149138, 39.971928 ], [ -75.148658, 39.971866 ], [ -75.148957, 39.970487 ], [ -75.149962, 39.970518 ], [ -75.150516, 39.967968 ], [ -75.151056, 39.965525 ], [ -75.151263, 39.964538 ], [ -75.151313, 39.96432 ], [ -75.15144, 39.96374 ], [ -75.15149, 39.96351 ], [ -75.151646, 39.962779 ], [ -75.151696, 39.962593 ], [ -75.151721, 39.962441 ], [ -75.151755, 39.96201 ], [ -75.151786, 39.961577 ], [ -75.151786, 39.961528 ], [ -75.151788, 39.961473 ], [ -75.151792, 39.960704 ], [ -75.151797, 39.960449 ], [ -75.151815, 39.960072 ], [ -75.151849, 39.959694 ], [ -75.15186, 39.959588 ], [ -75.152006, 39.958703 ], [ -75.152033, 39.958487 ], [ -75.152042, 39.958335 ], [ -75.152048, 39.958239 ], [ -75.152057, 39.958175 ], [ -75.152122, 39.957847 ], [ -75.15216, 39.957657 ], [ -75.152203, 39.957479 ], [ -75.152226, 39.957361 ], [ -75.152232, 39.957327 ], [ -75.152238, 39.957296 ], [ -75.152247, 39.957257 ], [ -75.152262, 39.957207 ], [ -75.152273, 39.957159 ], [ -75.152293, 39.957094 ], [ -75.152309, 39.957037 ], [ -75.152343, 39.956927 ], [ -75.152362, 39.956846 ], [ -75.15238, 39.956782 ], [ -75.152403, 39.956683 ], [ -75.152414, 39.956638 ], [ -75.152428, 39.956589 ], [ -75.152462, 39.956461 ], [ -75.152498, 39.956309 ], [ -75.152524, 39.956162 ], [ -75.152558, 39.955984 ], [ -75.152648, 39.955521 ], [ -75.152745, 39.955022 ], [ -75.152943, 39.954079 ], [ -75.153039, 39.953649 ], [ -75.153148, 39.953159 ], [ -75.153333, 39.952301 ], [ -75.153359, 39.952176 ], [ -75.153541, 39.951334 ], [ -75.153588, 39.951136 ], [ -75.153723, 39.950539 ], [ -75.153766, 39.950306 ], [ -75.153789, 39.95019 ], [ -75.153812, 39.950081 ], [ -75.153916, 39.949613 ], [ -75.154023, 39.949117 ], [ -75.15408, 39.948853 ], [ -75.154102, 39.948778 ], [ -75.154249, 39.948101 ], [ -75.154377, 39.947524 ], [ -75.154451, 39.947139 ], [ -75.154485, 39.946957 ], [ -75.154598, 39.946452 ], [ -75.154657, 39.946197 ], [ -75.154761, 39.945721 ], [ -75.154918, 39.944927 ], [ -75.155043, 39.944303 ], [ -75.155161, 39.943863 ], [ -75.15518, 39.943776 ], [ -75.155268, 39.943415 ], [ -75.155391, 39.942797 ], [ -75.155493, 39.942391 ], [ -75.155571, 39.941975 ], [ -75.155583, 39.941924 ], [ -75.1556, 39.941843 ], [ -75.155667, 39.941536 ], [ -75.155806, 39.940928 ], [ -75.155886, 39.940557 ], [ -75.155965, 39.940191 ], [ -75.15601, 39.939994 ], [ -75.156082, 39.939651 ], [ -75.156103, 39.939544 ], [ -75.15619, 39.939143 ], [ -75.156314, 39.938562 ], [ -75.156382, 39.938233 ], [ -75.156461, 39.937872 ], [ -75.156475, 39.937815 ], [ -75.156512, 39.937663 ], [ -75.156623, 39.937189 ], [ -75.156697, 39.936842 ], [ -75.156733, 39.936679 ], [ -75.156781, 39.936415 ], [ -75.156802, 39.936363 ], [ -75.156893, 39.935947 ], [ -75.157018, 39.935378 ], [ -75.15708, 39.9351 ], [ -75.157125, 39.934881 ], [ -75.157204, 39.934492 ], [ -75.157312, 39.934042 ], [ -75.157381, 39.933704 ], [ -75.157421, 39.93353 ], [ -75.157451, 39.933395 ], [ -75.157575, 39.932846 ], [ -75.157652, 39.9325 ], [ -75.157694, 39.932307 ], [ -75.157727, 39.932157 ], [ -75.157775, 39.931947 ], [ -75.157843, 39.931619 ], [ -75.15804, 39.930802 ], [ -75.158138, 39.930408 ], [ -75.15823, 39.92999 ], [ -75.158296, 39.929598 ], [ -75.158391, 39.929178 ], [ -75.158485, 39.928759 ], [ -75.15857, 39.928383 ], [ -75.158661, 39.927962 ], [ -75.158743, 39.927571 ], [ -75.158824, 39.927248 ], [ -75.158841, 39.927174 ], [ -75.158864, 39.927046 ], [ -75.158929, 39.926738 ], [ -75.159044, 39.926311 ], [ -75.159081, 39.926148 ], [ -75.159117, 39.925943 ], [ -75.159216, 39.925526 ], [ -75.159307, 39.925079 ], [ -75.159373, 39.924747 ], [ -75.159461, 39.924302 ], [ -75.159553, 39.92388 ], [ -75.159615, 39.923691 ], [ -75.159667, 39.923519 ], [ -75.159733, 39.923095 ], [ -75.159832, 39.922638 ], [ -75.159909, 39.9223 ], [ -75.160007, 39.921866 ], [ -75.160101, 39.921417 ], [ -75.160125, 39.921295 ], [ -75.16017, 39.921078 ], [ -75.160262, 39.920634 ], [ -75.160315, 39.920386 ], [ -75.160536, 39.919371 ], [ -75.160809, 39.918129 ], [ -75.1611, 39.91688 ], [ -75.161328, 39.915725 ], [ -75.161347, 39.915668 ], [ -75.161387, 39.915602 ], [ -75.161433, 39.915556 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.156203, 39.913772 ], [ -75.156206, 39.913758 ], [ -75.156411, 39.912789 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307652", "route_id": "47" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.130676, 40.011299 ], [ -75.131271, 40.011382 ], [ -75.131808, 40.01148 ], [ -75.133192, 40.011641 ], [ -75.133912, 40.011756 ], [ -75.134275, 40.011795 ], [ -75.13432, 40.011801 ], [ -75.135435, 40.010784 ], [ -75.135879, 40.010408 ], [ -75.136234, 40.010143 ], [ -75.136769, 40.009657 ], [ -75.13684, 40.009595 ], [ -75.13693, 40.009539 ], [ -75.137005, 40.009498 ], [ -75.137474, 40.009283 ], [ -75.137689, 40.009186 ], [ -75.137791, 40.009135 ], [ -75.138024, 40.009028 ], [ -75.138316, 40.008888 ], [ -75.138565, 40.008779 ], [ -75.138674, 40.008286 ], [ -75.138803, 40.007757 ], [ -75.138838, 40.007647 ], [ -75.138924, 40.007186 ], [ -75.139056, 40.006583 ], [ -75.139173, 40.006051 ], [ -75.139502, 40.004543 ], [ -75.139665, 40.003847 ], [ -75.139804, 40.003136 ], [ -75.139836, 40.00299 ], [ -75.139839, 40.002958 ], [ -75.139909, 40.002776 ], [ -75.140075, 40.00194 ], [ -75.140158, 40.001568 ], [ -75.140232, 40.001256 ], [ -75.140335, 40.000674 ], [ -75.140385, 40.000461 ], [ -75.140438, 40.000295 ], [ -75.140455, 40.000197 ], [ -75.140464, 40.000143 ], [ -75.14047, 40.000102 ], [ -75.140484, 40.00006 ], [ -75.140507, 39.999987 ], [ -75.140853, 39.998422 ], [ -75.140948, 39.998011 ], [ -75.141174, 39.996928 ], [ -75.1415, 39.995453 ], [ -75.14183, 39.993939 ], [ -75.142172, 39.992381 ], [ -75.142437, 39.991147 ], [ -75.142515, 39.990772 ], [ -75.142855, 39.989273 ], [ -75.143177, 39.987778 ], [ -75.143512, 39.98627 ], [ -75.143682, 39.985526 ], [ -75.143867, 39.984705 ], [ -75.144049, 39.984727 ], [ -75.14465, 39.9848 ], [ -75.145468, 39.984902 ], [ -75.146093, 39.984981 ], [ -75.146778, 39.985073 ], [ -75.147136, 39.983475 ], [ -75.147455, 39.981984 ], [ -75.147797, 39.980505 ], [ -75.147927, 39.979894 ], [ -75.148074, 39.979167 ], [ -75.148111, 39.979003 ], [ -75.14845, 39.97746 ], [ -75.148635, 39.976559 ], [ -75.148749, 39.976063 ], [ -75.149068, 39.974633 ], [ -75.14936, 39.973264 ], [ -75.149636, 39.97199 ], [ -75.149138, 39.971928 ], [ -75.148658, 39.971866 ], [ -75.148957, 39.970487 ], [ -75.149962, 39.970518 ], [ -75.150516, 39.967968 ], [ -75.151056, 39.965525 ], [ -75.151263, 39.964538 ], [ -75.151313, 39.96432 ], [ -75.15144, 39.96374 ], [ -75.15149, 39.96351 ], [ -75.151646, 39.962779 ], [ -75.151696, 39.962593 ], [ -75.151721, 39.962441 ], [ -75.151755, 39.96201 ], [ -75.151786, 39.961577 ], [ -75.151786, 39.961528 ], [ -75.151788, 39.961473 ], [ -75.151792, 39.960704 ], [ -75.151797, 39.960449 ], [ -75.151815, 39.960072 ], [ -75.151849, 39.959694 ], [ -75.15186, 39.959588 ], [ -75.152006, 39.958703 ], [ -75.152033, 39.958487 ], [ -75.152042, 39.958335 ], [ -75.152048, 39.958239 ], [ -75.152057, 39.958175 ], [ -75.152122, 39.957847 ], [ -75.15216, 39.957657 ], [ -75.152203, 39.957479 ], [ -75.152226, 39.957361 ], [ -75.152232, 39.957327 ], [ -75.152238, 39.957296 ], [ -75.152247, 39.957257 ], [ -75.152262, 39.957207 ], [ -75.152273, 39.957159 ], [ -75.152293, 39.957094 ], [ -75.152309, 39.957037 ], [ -75.152343, 39.956927 ], [ -75.152362, 39.956846 ], [ -75.15238, 39.956782 ], [ -75.152403, 39.956683 ], [ -75.152414, 39.956638 ], [ -75.152428, 39.956589 ], [ -75.152462, 39.956461 ], [ -75.152498, 39.956309 ], [ -75.152524, 39.956162 ], [ -75.152558, 39.955984 ], [ -75.152648, 39.955521 ], [ -75.152745, 39.955022 ], [ -75.152943, 39.954079 ], [ -75.153039, 39.953649 ], [ -75.153148, 39.953159 ], [ -75.153333, 39.952301 ], [ -75.153359, 39.952176 ], [ -75.153541, 39.951334 ], [ -75.153588, 39.951136 ], [ -75.153723, 39.950539 ], [ -75.153766, 39.950306 ], [ -75.153789, 39.95019 ], [ -75.153812, 39.950081 ], [ -75.153916, 39.949613 ], [ -75.154023, 39.949117 ], [ -75.15408, 39.948853 ], [ -75.154102, 39.948778 ], [ -75.154249, 39.948101 ], [ -75.154377, 39.947524 ], [ -75.154451, 39.947139 ], [ -75.154485, 39.946957 ], [ -75.154598, 39.946452 ], [ -75.154657, 39.946197 ], [ -75.154761, 39.945721 ], [ -75.154918, 39.944927 ], [ -75.155043, 39.944303 ], [ -75.155161, 39.943863 ], [ -75.15518, 39.943776 ], [ -75.155268, 39.943415 ], [ -75.155391, 39.942797 ], [ -75.155493, 39.942391 ], [ -75.155571, 39.941975 ], [ -75.155583, 39.941924 ], [ -75.1556, 39.941843 ], [ -75.155667, 39.941536 ], [ -75.155806, 39.940928 ], [ -75.155886, 39.940557 ], [ -75.155965, 39.940191 ], [ -75.15601, 39.939994 ], [ -75.156082, 39.939651 ], [ -75.156103, 39.939544 ], [ -75.15619, 39.939143 ], [ -75.156314, 39.938562 ], [ -75.156382, 39.938233 ], [ -75.156461, 39.937872 ], [ -75.156475, 39.937815 ], [ -75.156512, 39.937663 ], [ -75.156623, 39.937189 ], [ -75.156697, 39.936842 ], [ -75.156733, 39.936679 ], [ -75.156781, 39.936415 ], [ -75.156802, 39.936363 ], [ -75.156893, 39.935947 ], [ -75.157018, 39.935378 ], [ -75.15708, 39.9351 ], [ -75.157125, 39.934881 ], [ -75.157204, 39.934492 ], [ -75.157312, 39.934042 ], [ -75.157381, 39.933704 ], [ -75.157421, 39.93353 ], [ -75.157451, 39.933395 ], [ -75.157575, 39.932846 ], [ -75.157652, 39.9325 ], [ -75.157694, 39.932307 ], [ -75.157727, 39.932157 ], [ -75.157775, 39.931947 ], [ -75.157843, 39.931619 ], [ -75.15804, 39.930802 ], [ -75.158138, 39.930408 ], [ -75.15823, 39.92999 ], [ -75.158296, 39.929598 ], [ -75.158391, 39.929178 ], [ -75.158485, 39.928759 ], [ -75.15857, 39.928383 ], [ -75.158661, 39.927962 ], [ -75.158743, 39.927571 ], [ -75.158824, 39.927248 ], [ -75.158841, 39.927174 ], [ -75.158864, 39.927046 ], [ -75.158929, 39.926738 ], [ -75.159044, 39.926311 ], [ -75.159081, 39.926148 ], [ -75.159117, 39.925943 ], [ -75.159216, 39.925526 ], [ -75.159307, 39.925079 ], [ -75.159373, 39.924747 ], [ -75.159461, 39.924302 ], [ -75.159553, 39.92388 ], [ -75.159615, 39.923691 ], [ -75.159667, 39.923519 ], [ -75.159733, 39.923095 ], [ -75.159832, 39.922638 ], [ -75.159909, 39.9223 ], [ -75.160007, 39.921866 ], [ -75.160101, 39.921417 ], [ -75.160125, 39.921295 ], [ -75.16017, 39.921078 ], [ -75.160262, 39.920634 ], [ -75.160315, 39.920386 ], [ -75.160536, 39.919371 ], [ -75.160809, 39.918129 ], [ -75.1611, 39.91688 ], [ -75.161328, 39.915725 ], [ -75.161347, 39.915668 ], [ -75.161387, 39.915602 ], [ -75.161433, 39.915556 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.156203, 39.913772 ], [ -75.156206, 39.913758 ], [ -75.156411, 39.912789 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307655", "route_id": "47" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.159805, 39.915568 ], [ -75.15955, 39.916676 ], [ -75.159278, 39.917929 ], [ -75.159002, 39.919177 ], [ -75.158896, 39.919658 ], [ -75.158818, 39.920016 ], [ -75.158729, 39.920426 ], [ -75.158671, 39.920707 ], [ -75.158637, 39.920884 ], [ -75.158566, 39.921237 ], [ -75.158479, 39.921665 ], [ -75.158374, 39.922101 ], [ -75.15829, 39.922446 ], [ -75.158203, 39.922892 ], [ -75.158108, 39.923356 ], [ -75.158065, 39.923524 ], [ -75.158013, 39.923683 ], [ -75.157927, 39.924096 ], [ -75.15784, 39.92453 ], [ -75.157761, 39.924886 ], [ -75.15767, 39.925323 ], [ -75.157561, 39.925736 ], [ -75.157491, 39.926105 ], [ -75.157386, 39.926541 ], [ -75.157286, 39.926967 ], [ -75.157271, 39.927037 ], [ -75.157254, 39.927142 ], [ -75.157209, 39.927339 ], [ -75.157117, 39.927757 ], [ -75.157027, 39.928163 ], [ -75.156937, 39.928565 ], [ -75.156844, 39.928973 ], [ -75.156735, 39.929463 ], [ -75.156663, 39.929787 ], [ -75.156571, 39.93018 ], [ -75.156474, 39.930634 ], [ -75.156393, 39.93099 ], [ -75.156297, 39.931413 ], [ -75.156202, 39.931826 ], [ -75.156143, 39.932108 ], [ -75.15612, 39.932213 ], [ -75.156101, 39.932292 ], [ -75.156026, 39.93264 ], [ -75.155907, 39.93318 ], [ -75.155873, 39.933335 ], [ -75.155836, 39.9335 ], [ -75.155759, 39.933853 ], [ -75.15566, 39.934293 ], [ -75.155572, 39.934675 ], [ -75.155498, 39.935019 ], [ -75.155389, 39.935549 ], [ -75.155304, 39.935933 ], [ -75.155222, 39.936302 ], [ -75.155146, 39.93669 ], [ -75.155113, 39.936785 ], [ -75.154961, 39.937469 ], [ -75.154881, 39.937825 ], [ -75.154839, 39.938009 ], [ -75.154806, 39.938148 ], [ -75.154757, 39.938367 ], [ -75.154629, 39.938959 ], [ -75.154583, 39.939177 ], [ -75.154529, 39.939432 ], [ -75.154457, 39.939763 ], [ -75.154418, 39.939938 ], [ -75.154336, 39.940304 ], [ -75.154252, 39.940675 ], [ -75.154239, 39.940721 ], [ -75.154172, 39.941005 ], [ -75.154091, 39.941337 ], [ -75.153992, 39.941778 ], [ -75.153925, 39.942177 ], [ -75.153852, 39.942582 ], [ -75.15379, 39.942861 ], [ -75.153714, 39.9432 ], [ -75.153611, 39.943661 ], [ -75.153489, 39.944113 ], [ -75.15341, 39.944475 ], [ -75.15335, 39.944751 ], [ -75.153258, 39.945164 ], [ -75.153179, 39.945524 ], [ -75.153072, 39.946002 ], [ -75.153009, 39.946296 ], [ -75.153363, 39.946341 ], [ -75.153453, 39.94637 ], [ -75.153494, 39.946418 ], [ -75.153505, 39.946467 ], [ -75.153438, 39.946833 ], [ -75.153318, 39.947393 ], [ -75.153275, 39.947559 ], [ -75.15296, 39.947725 ], [ -75.15279, 39.94782 ], [ -75.152754, 39.947841 ], [ -75.152733, 39.947857 ], [ -75.152717, 39.947873 ], [ -75.152692, 39.947901 ], [ -75.152666, 39.947965 ], [ -75.152619, 39.948122 ], [ -75.152571, 39.94833 ], [ -75.15251, 39.948597 ], [ -75.152476, 39.948689 ], [ -75.152431, 39.94894 ], [ -75.152337, 39.949417 ], [ -75.152251, 39.949886 ], [ -75.152248, 39.949902 ], [ -75.152234, 39.949979 ], [ -75.152222, 39.950037 ], [ -75.1522, 39.950124 ], [ -75.152006, 39.950947 ], [ -75.151738, 39.952086 ], [ -75.151549, 39.952974 ], [ -75.151433, 39.953481 ], [ -75.151339, 39.953897 ], [ -75.151189, 39.954575 ], [ -75.151147, 39.954778 ], [ -75.15114, 39.954847 ], [ -75.151142, 39.954927 ], [ -75.151153, 39.954995 ], [ -75.151169, 39.955033 ], [ -75.151178, 39.955059 ], [ -75.151207, 39.955118 ], [ -75.151237, 39.955166 ], [ -75.151286, 39.955254 ], [ -75.151328, 39.955346 ], [ -75.151367, 39.955431 ], [ -75.151393, 39.955481 ], [ -75.151411, 39.955527 ], [ -75.15144, 39.955613 ], [ -75.151491, 39.955788 ], [ -75.15141, 39.956168 ], [ -75.151327, 39.956551 ], [ -75.151286, 39.956709 ], [ -75.15123, 39.956866 ], [ -75.151168, 39.956998 ], [ -75.151116, 39.957094 ], [ -75.151075, 39.957166 ], [ -75.151054, 39.9572 ], [ -75.151032, 39.957231 ], [ -75.151011, 39.957266 ], [ -75.15092, 39.957419 ], [ -75.150812, 39.957564 ], [ -75.15077, 39.957626 ], [ -75.150697, 39.957735 ], [ -75.150577, 39.957918 ], [ -75.150525, 39.958 ], [ -75.150499, 39.958048 ], [ -75.150476, 39.95809 ], [ -75.150458, 39.958132 ], [ -75.150449, 39.958166 ], [ -75.150443, 39.9582 ], [ -75.150432, 39.958265 ], [ -75.150342, 39.958694 ], [ -75.150179, 39.959523 ], [ -75.149832, 39.961382 ], [ -75.149819, 39.961439 ], [ -75.149808, 39.961484 ], [ -75.149738, 39.961881 ], [ -75.149654, 39.962346 ], [ -75.149509, 39.963136 ], [ -75.149355, 39.963969 ], [ -75.149163, 39.964971 ], [ -75.14904, 39.965627 ], [ -75.14895, 39.966116 ], [ -75.148932, 39.966215 ], [ -75.148901, 39.966383 ], [ -75.148784, 39.966995 ], [ -75.148715, 39.967363 ], [ -75.148685, 39.96752 ], [ -75.148643, 39.967746 ], [ -75.148135, 39.970438 ], [ -75.148057, 39.97085 ], [ -75.147896, 39.971768 ], [ -75.147661, 39.973044 ], [ -75.147397, 39.974419 ], [ -75.147132, 39.975853 ], [ -75.146868, 39.977257 ], [ -75.146566, 39.978804 ], [ -75.146503, 39.979168 ], [ -75.146417, 39.979651 ], [ -75.146316, 39.980309 ], [ -75.146127, 39.981224 ], [ -75.146019, 39.981807 ], [ -75.145951, 39.982172 ], [ -75.145799, 39.983035 ], [ -75.145741, 39.983289 ], [ -75.145583, 39.984126 ], [ -75.145468, 39.984902 ], [ -75.145207, 39.986045 ], [ -75.145134, 39.986498 ], [ -75.14432, 39.986377 ], [ -75.143512, 39.98627 ], [ -75.142838, 39.986191 ], [ -75.142489, 39.986146 ], [ -75.142192, 39.986111 ], [ -75.141516, 39.986011 ], [ -75.141258, 39.987249 ], [ -75.141221, 39.987423 ], [ -75.141205, 39.987511 ], [ -75.141129, 39.987838 ], [ -75.140874, 39.989011 ], [ -75.140546, 39.990508 ], [ -75.140281, 39.991738 ], [ -75.140198, 39.992132 ], [ -75.140119, 39.99249 ], [ -75.139853, 39.993697 ], [ -75.139512, 39.995216 ], [ -75.139203, 39.99668 ], [ -75.139006, 39.997487 ], [ -75.13886, 39.998137 ], [ -75.138694, 39.9989 ], [ -75.138679, 39.99897 ], [ -75.138663, 39.999055 ], [ -75.138637, 39.999164 ], [ -75.138612, 39.999283 ], [ -75.138576, 39.999469 ], [ -75.138515, 39.999756 ], [ -75.138468, 40.000006 ], [ -75.138256, 40.000985 ], [ -75.138182, 40.001315 ], [ -75.138137, 40.001517 ], [ -75.138061, 40.00186 ], [ -75.137883, 40.002615 ], [ -75.137841, 40.002789 ], [ -75.137695, 40.003488 ], [ -75.137665, 40.003609 ], [ -75.137626, 40.003781 ], [ -75.137613, 40.003867 ], [ -75.13752, 40.004276 ], [ -75.137447, 40.004646 ], [ -75.137203, 40.005795 ], [ -75.136997, 40.006693 ], [ -75.136899, 40.007247 ], [ -75.136862, 40.00739 ], [ -75.136721, 40.007994 ], [ -75.136624, 40.00848 ], [ -75.136501, 40.008973 ], [ -75.136234, 40.010143 ], [ -75.136173, 40.01047 ], [ -75.135843, 40.01198 ], [ -75.135662, 40.012827 ], [ -75.135523, 40.013455 ], [ -75.135168, 40.015043 ], [ -75.134984, 40.015817 ], [ -75.134953, 40.015996 ], [ -75.134905, 40.016208 ], [ -75.134822, 40.01663 ], [ -75.134691, 40.01724 ], [ -75.134599, 40.017666 ], [ -75.134498, 40.018131 ], [ -75.134416, 40.018516 ], [ -75.134335, 40.018885 ], [ -75.134256, 40.019236 ], [ -75.134172, 40.019613 ], [ -75.134025, 40.020348 ], [ -75.133941, 40.020727 ], [ -75.133856, 40.021114 ], [ -75.133687, 40.021882 ], [ -75.133512, 40.022704 ], [ -75.133392, 40.023323 ], [ -75.133344, 40.023544 ], [ -75.133286, 40.023783 ], [ -75.133265, 40.023891 ], [ -75.133248, 40.02397 ], [ -75.133203, 40.02415 ], [ -75.133167, 40.024299 ], [ -75.133006, 40.024999 ], [ -75.132824, 40.025787 ], [ -75.1325, 40.02727 ], [ -75.132342, 40.02802 ], [ -75.132246, 40.028451 ], [ -75.132182, 40.028791 ], [ -75.132075, 40.029254 ], [ -75.131993, 40.029638 ], [ -75.131845, 40.030332 ], [ -75.131613, 40.031352 ], [ -75.131503, 40.031873 ], [ -75.131413, 40.032334 ], [ -75.131299, 40.032869 ], [ -75.131179, 40.03339 ], [ -75.130873, 40.034746 ], [ -75.130507, 40.036438 ], [ -75.130167, 40.037985 ], [ -75.129826, 40.039531 ], [ -75.129488, 40.041052 ], [ -75.12932, 40.04183 ], [ -75.129156, 40.042577 ], [ -75.129037, 40.043121 ], [ -75.128937, 40.043579 ], [ -75.128829, 40.044086 ], [ -75.128786, 40.044275 ], [ -75.128658, 40.044849 ], [ -75.128558, 40.045309 ], [ -75.128485, 40.045645 ], [ -75.1284, 40.046058 ], [ -75.127914, 40.045991 ], [ -75.127781, 40.045995 ], [ -75.127719, 40.046043 ], [ -75.127681, 40.046114 ], [ -75.127695, 40.046167 ], [ -75.127762, 40.046219 ], [ -75.12799, 40.046238 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307656", "route_id": "47" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.15574, 39.913685 ], [ -75.156193, 39.913756 ], [ -75.156206, 39.913758 ], [ -75.156203, 39.913772 ], [ -75.155986, 39.914793 ], [ -75.155972, 39.914847 ], [ -75.155964, 39.914889 ], [ -75.155962, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.159805, 39.915568 ], [ -75.15955, 39.916676 ], [ -75.159278, 39.917929 ], [ -75.159002, 39.919177 ], [ -75.158896, 39.919658 ], [ -75.158818, 39.920016 ], [ -75.158729, 39.920426 ], [ -75.158671, 39.920707 ], [ -75.158637, 39.920884 ], [ -75.158566, 39.921237 ], [ -75.158479, 39.921665 ], [ -75.158374, 39.922101 ], [ -75.15829, 39.922446 ], [ -75.158203, 39.922892 ], [ -75.158108, 39.923356 ], [ -75.158065, 39.923524 ], [ -75.158013, 39.923683 ], [ -75.157927, 39.924096 ], [ -75.15784, 39.92453 ], [ -75.157761, 39.924886 ], [ -75.15767, 39.925323 ], [ -75.157561, 39.925736 ], [ -75.157491, 39.926105 ], [ -75.157386, 39.926541 ], [ -75.157286, 39.926967 ], [ -75.157271, 39.927037 ], [ -75.157254, 39.927142 ], [ -75.157209, 39.927339 ], [ -75.157117, 39.927757 ], [ -75.157027, 39.928163 ], [ -75.156937, 39.928565 ], [ -75.156844, 39.928973 ], [ -75.156735, 39.929463 ], [ -75.156663, 39.929787 ], [ -75.156571, 39.93018 ], [ -75.156474, 39.930634 ], [ -75.156393, 39.93099 ], [ -75.156297, 39.931413 ], [ -75.156202, 39.931826 ], [ -75.156143, 39.932108 ], [ -75.15612, 39.932213 ], [ -75.156101, 39.932292 ], [ -75.156026, 39.93264 ], [ -75.155907, 39.93318 ], [ -75.155873, 39.933335 ], [ -75.155836, 39.9335 ], [ -75.155759, 39.933853 ], [ -75.15566, 39.934293 ], [ -75.155572, 39.934675 ], [ -75.155498, 39.935019 ], [ -75.155389, 39.935549 ], [ -75.155304, 39.935933 ], [ -75.155222, 39.936302 ], [ -75.155146, 39.93669 ], [ -75.155113, 39.936785 ], [ -75.154961, 39.937469 ], [ -75.154881, 39.937825 ], [ -75.154839, 39.938009 ], [ -75.154806, 39.938148 ], [ -75.154757, 39.938367 ], [ -75.154629, 39.938959 ], [ -75.154583, 39.939177 ], [ -75.154529, 39.939432 ], [ -75.154457, 39.939763 ], [ -75.154418, 39.939938 ], [ -75.154336, 39.940304 ], [ -75.154252, 39.940675 ], [ -75.154239, 39.940721 ], [ -75.154172, 39.941005 ], [ -75.154091, 39.941337 ], [ -75.153992, 39.941778 ], [ -75.153925, 39.942177 ], [ -75.153852, 39.942582 ], [ -75.15379, 39.942861 ], [ -75.153714, 39.9432 ], [ -75.153611, 39.943661 ], [ -75.153489, 39.944113 ], [ -75.15341, 39.944475 ], [ -75.15335, 39.944751 ], [ -75.153258, 39.945164 ], [ -75.153179, 39.945524 ], [ -75.153072, 39.946002 ], [ -75.153009, 39.946296 ], [ -75.153363, 39.946341 ], [ -75.153453, 39.94637 ], [ -75.153494, 39.946418 ], [ -75.153505, 39.946467 ], [ -75.153438, 39.946833 ], [ -75.153318, 39.947393 ], [ -75.153275, 39.947559 ], [ -75.15296, 39.947725 ], [ -75.15279, 39.94782 ], [ -75.152754, 39.947841 ], [ -75.152733, 39.947857 ], [ -75.152717, 39.947873 ], [ -75.152692, 39.947901 ], [ -75.152666, 39.947965 ], [ -75.152619, 39.948122 ], [ -75.152571, 39.94833 ], [ -75.15251, 39.948597 ], [ -75.152476, 39.948689 ], [ -75.152431, 39.94894 ], [ -75.152337, 39.949417 ], [ -75.152251, 39.949886 ], [ -75.152248, 39.949902 ], [ -75.152234, 39.949979 ], [ -75.152222, 39.950037 ], [ -75.1522, 39.950124 ], [ -75.152006, 39.950947 ], [ -75.151738, 39.952086 ], [ -75.151549, 39.952974 ], [ -75.151433, 39.953481 ], [ -75.151339, 39.953897 ], [ -75.151189, 39.954575 ], [ -75.151147, 39.954778 ], [ -75.15114, 39.954847 ], [ -75.151142, 39.954927 ], [ -75.151153, 39.954995 ], [ -75.151169, 39.955033 ], [ -75.151178, 39.955059 ], [ -75.151207, 39.955118 ], [ -75.151237, 39.955166 ], [ -75.151286, 39.955254 ], [ -75.151328, 39.955346 ], [ -75.151367, 39.955431 ], [ -75.151393, 39.955481 ], [ -75.151411, 39.955527 ], [ -75.15144, 39.955613 ], [ -75.151491, 39.955788 ], [ -75.15141, 39.956168 ], [ -75.151327, 39.956551 ], [ -75.151286, 39.956709 ], [ -75.15123, 39.956866 ], [ -75.151168, 39.956998 ], [ -75.151116, 39.957094 ], [ -75.151075, 39.957166 ], [ -75.151054, 39.9572 ], [ -75.151032, 39.957231 ], [ -75.151011, 39.957266 ], [ -75.15092, 39.957419 ], [ -75.150812, 39.957564 ], [ -75.15077, 39.957626 ], [ -75.150697, 39.957735 ], [ -75.150577, 39.957918 ], [ -75.150525, 39.958 ], [ -75.150499, 39.958048 ], [ -75.150476, 39.95809 ], [ -75.150458, 39.958132 ], [ -75.150449, 39.958166 ], [ -75.150443, 39.9582 ], [ -75.150432, 39.958265 ], [ -75.150342, 39.958694 ], [ -75.150179, 39.959523 ], [ -75.149832, 39.961382 ], [ -75.149819, 39.961439 ], [ -75.149808, 39.961484 ], [ -75.149738, 39.961881 ], [ -75.149654, 39.962346 ], [ -75.149509, 39.963136 ], [ -75.149355, 39.963969 ], [ -75.149163, 39.964971 ], [ -75.14904, 39.965627 ], [ -75.14895, 39.966116 ], [ -75.148932, 39.966215 ], [ -75.148901, 39.966383 ], [ -75.148784, 39.966995 ], [ -75.148715, 39.967363 ], [ -75.148685, 39.96752 ], [ -75.148643, 39.967746 ], [ -75.148135, 39.970438 ], [ -75.148057, 39.97085 ], [ -75.147896, 39.971768 ], [ -75.147661, 39.973044 ], [ -75.147397, 39.974419 ], [ -75.147132, 39.975853 ], [ -75.146868, 39.977257 ], [ -75.146566, 39.978804 ], [ -75.146503, 39.979168 ], [ -75.146417, 39.979651 ], [ -75.146316, 39.980309 ], [ -75.146127, 39.981224 ], [ -75.146019, 39.981807 ], [ -75.145951, 39.982172 ], [ -75.145799, 39.983035 ], [ -75.145741, 39.983289 ], [ -75.145583, 39.984126 ], [ -75.145468, 39.984902 ], [ -75.145207, 39.986045 ], [ -75.145134, 39.986498 ], [ -75.14432, 39.986377 ], [ -75.143512, 39.98627 ], [ -75.142838, 39.986191 ], [ -75.142489, 39.986146 ], [ -75.142192, 39.986111 ], [ -75.141516, 39.986011 ], [ -75.141258, 39.987249 ], [ -75.141221, 39.987423 ], [ -75.141205, 39.987511 ], [ -75.141129, 39.987838 ], [ -75.140874, 39.989011 ], [ -75.140546, 39.990508 ], [ -75.140281, 39.991738 ], [ -75.140198, 39.992132 ], [ -75.140119, 39.99249 ], [ -75.139853, 39.993697 ], [ -75.139512, 39.995216 ], [ -75.139203, 39.99668 ], [ -75.139006, 39.997487 ], [ -75.13886, 39.998137 ], [ -75.138694, 39.9989 ], [ -75.138679, 39.99897 ], [ -75.138663, 39.999055 ], [ -75.138637, 39.999164 ], [ -75.138612, 39.999283 ], [ -75.138576, 39.999469 ], [ -75.138515, 39.999756 ], [ -75.138468, 40.000006 ], [ -75.138256, 40.000985 ], [ -75.138182, 40.001315 ], [ -75.138137, 40.001517 ], [ -75.138061, 40.00186 ], [ -75.137883, 40.002615 ], [ -75.137841, 40.002789 ], [ -75.137695, 40.003488 ], [ -75.137665, 40.003609 ], [ -75.137626, 40.003781 ], [ -75.137613, 40.003867 ], [ -75.13752, 40.004276 ], [ -75.137447, 40.004646 ], [ -75.137203, 40.005795 ], [ -75.136997, 40.006693 ], [ -75.136899, 40.007247 ], [ -75.136862, 40.00739 ], [ -75.136721, 40.007994 ], [ -75.136624, 40.00848 ], [ -75.136501, 40.008973 ], [ -75.136234, 40.010143 ], [ -75.136173, 40.01047 ], [ -75.135843, 40.01198 ], [ -75.135662, 40.012827 ], [ -75.135523, 40.013455 ], [ -75.135168, 40.015043 ], [ -75.134984, 40.015817 ], [ -75.134953, 40.015996 ], [ -75.134905, 40.016208 ], [ -75.134822, 40.01663 ], [ -75.134691, 40.01724 ], [ -75.134599, 40.017666 ], [ -75.134498, 40.018131 ], [ -75.134416, 40.018516 ], [ -75.134335, 40.018885 ], [ -75.134256, 40.019236 ], [ -75.134172, 40.019613 ], [ -75.134025, 40.020348 ], [ -75.133941, 40.020727 ], [ -75.133856, 40.021114 ], [ -75.133687, 40.021882 ], [ -75.133512, 40.022704 ], [ -75.133392, 40.023323 ], [ -75.133344, 40.023544 ], [ -75.133286, 40.023783 ], [ -75.133265, 40.023891 ], [ -75.133248, 40.02397 ], [ -75.133203, 40.02415 ], [ -75.133167, 40.024299 ], [ -75.133006, 40.024999 ], [ -75.132824, 40.025787 ], [ -75.1325, 40.02727 ], [ -75.132342, 40.02802 ], [ -75.132246, 40.028451 ], [ -75.132182, 40.028791 ], [ -75.132075, 40.029254 ], [ -75.131993, 40.029638 ], [ -75.131845, 40.030332 ], [ -75.131613, 40.031352 ], [ -75.131503, 40.031873 ], [ -75.131413, 40.032334 ], [ -75.131299, 40.032869 ], [ -75.131179, 40.03339 ], [ -75.130873, 40.034746 ], [ -75.130507, 40.036438 ], [ -75.130167, 40.037985 ], [ -75.129826, 40.039531 ], [ -75.129488, 40.041052 ], [ -75.12932, 40.04183 ], [ -75.129156, 40.042577 ], [ -75.129037, 40.043121 ], [ -75.128937, 40.043579 ], [ -75.128829, 40.044086 ], [ -75.128786, 40.044275 ], [ -75.128658, 40.044849 ], [ -75.128558, 40.045309 ], [ -75.128485, 40.045645 ], [ -75.1284, 40.046058 ], [ -75.127914, 40.045991 ], [ -75.127781, 40.045995 ], [ -75.127719, 40.046043 ], [ -75.127681, 40.046114 ], [ -75.127695, 40.046167 ], [ -75.127762, 40.046219 ], [ -75.12799, 40.046238 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307676", "route_id": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.18635, 39.991975 ], [ -75.186376, 39.991782 ], [ -75.186314, 39.991771 ], [ -75.186105, 39.991743 ], [ -75.185996, 39.991734 ], [ -75.185914, 39.991726 ], [ -75.18584, 39.99172 ], [ -75.185782, 39.991715 ], [ -75.185614, 39.9917 ], [ -75.184697, 39.991606 ], [ -75.183934, 39.991505 ], [ -75.183107, 39.991427 ], [ -75.18295, 39.991413 ], [ -75.18151, 39.991205 ], [ -75.180943, 39.991129 ], [ -75.18045, 39.991057 ], [ -75.179893, 39.990982 ], [ -75.180012, 39.990464 ], [ -75.180067, 39.990184 ], [ -75.180242, 39.98939 ], [ -75.180243, 39.989383 ], [ -75.18034, 39.988928 ], [ -75.180416, 39.988572 ], [ -75.180495, 39.988226 ], [ -75.180576, 39.987821 ], [ -75.180667, 39.987407 ], [ -75.180791, 39.986794 ], [ -75.180813, 39.986693 ], [ -75.180899, 39.986302 ], [ -75.181008, 39.985821 ], [ -75.181122, 39.985241 ], [ -75.1812, 39.984864 ], [ -75.181229, 39.984732 ], [ -75.181271, 39.984556 ], [ -75.181303, 39.984406 ], [ -75.181504, 39.983504 ], [ -75.181515, 39.983457 ], [ -75.181543, 39.983339 ], [ -75.181552, 39.983302 ], [ -75.181904, 39.981784 ], [ -75.182003, 39.9813 ], [ -75.182087, 39.980888 ], [ -75.182201, 39.980356 ], [ -75.182357, 39.97965 ], [ -75.182464, 39.97917 ], [ -75.18251, 39.978936 ], [ -75.182821, 39.977564 ], [ -75.183091, 39.976295 ], [ -75.183307, 39.975264 ], [ -75.183358, 39.975023 ], [ -75.183469, 39.974534 ], [ -75.183559, 39.974123 ], [ -75.183621, 39.973854 ], [ -75.183768, 39.973199 ], [ -75.183908, 39.972591 ], [ -75.184037, 39.971979 ], [ -75.184139, 39.971526 ], [ -75.184155, 39.971435 ], [ -75.184164, 39.971385 ], [ -75.184163, 39.971354 ], [ -75.184151, 39.971321 ], [ -75.184144, 39.9713 ], [ -75.184114, 39.971257 ], [ -75.184062, 39.971208 ], [ -75.183504, 39.970729 ], [ -75.183046, 39.970354 ], [ -75.182829, 39.970168 ], [ -75.182207, 39.969655 ], [ -75.181657, 39.96922 ], [ -75.181614, 39.969182 ], [ -75.181593, 39.969158 ], [ -75.181575, 39.969127 ], [ -75.181556, 39.969096 ], [ -75.18157, 39.96901 ], [ -75.181555, 39.968965 ], [ -75.181527, 39.968921 ], [ -75.181496, 39.968886 ], [ -75.181411, 39.968799 ], [ -75.181393, 39.968783 ], [ -75.180807, 39.968269 ], [ -75.180238, 39.967768 ], [ -75.179853, 39.96742 ], [ -75.179714, 39.967421 ], [ -75.179574, 39.967416 ], [ -75.179566, 39.967416 ], [ -75.178647, 39.967405 ], [ -75.177976, 39.967391 ], [ -75.176995, 39.967382 ], [ -75.176411, 39.967366 ], [ -75.175372, 39.96734 ], [ -75.173983, 39.967317 ], [ -75.173732, 39.967318 ], [ -75.172075, 39.967275 ], [ -75.172169, 39.966886 ], [ -75.17224, 39.966596 ], [ -75.172376, 39.965991 ], [ -75.172393, 39.965921 ], [ -75.172471, 39.965617 ], [ -75.172559, 39.965226 ], [ -75.172635, 39.964871 ], [ -75.172691, 39.964601 ], [ -75.172833, 39.963929 ], [ -75.172854, 39.963828 ], [ -75.173173, 39.962499 ], [ -75.173256, 39.962109 ], [ -75.173293, 39.961943 ], [ -75.173324, 39.96179 ], [ -75.17335, 39.961665 ], [ -75.173493, 39.960998 ], [ -75.173568, 39.960684 ], [ -75.173608, 39.960516 ], [ -75.17366, 39.960279 ], [ -75.173675, 39.960211 ], [ -75.173688, 39.96015 ], [ -75.173712, 39.960007 ], [ -75.173738, 39.959906 ], [ -75.173801, 39.95959 ], [ -75.173829, 39.959463 ], [ -75.173845, 39.959385 ], [ -75.173873, 39.959258 ], [ -75.17392, 39.959016 ], [ -75.174076, 39.958354 ], [ -75.174223, 39.957673 ], [ -75.174404, 39.956755 ], [ -75.174489, 39.956361 ], [ -75.174607, 39.955833 ], [ -75.17466, 39.955628 ], [ -75.174747, 39.955301 ], [ -75.174771, 39.95522 ], [ -75.174786, 39.955155 ], [ -75.174801, 39.955084 ], [ -75.174846, 39.954864 ], [ -75.174864, 39.95478 ], [ -75.17496, 39.954349 ], [ -75.175077, 39.953809 ], [ -75.175737, 39.953894 ], [ -75.176172, 39.95395 ], [ -75.176662, 39.95402 ], [ -75.177129, 39.95407 ], [ -75.177334, 39.954095 ], [ -75.177817, 39.954154 ], [ -75.178332, 39.954219 ], [ -75.179219, 39.95433 ], [ -75.179515, 39.954367 ], [ -75.179741, 39.954397 ], [ -75.180082, 39.954437 ], [ -75.180514, 39.954488 ], [ -75.180951, 39.954538 ], [ -75.181012, 39.954544 ], [ -75.181051, 39.954546 ], [ -75.181099, 39.954557 ], [ -75.181159, 39.954564 ], [ -75.181185, 39.954567 ], [ -75.181202, 39.95457 ], [ -75.181302, 39.954583 ], [ -75.182124, 39.9547 ], [ -75.182669, 39.954771 ], [ -75.183249, 39.954843 ], [ -75.183297, 39.954848 ], [ -75.183377, 39.954859 ], [ -75.18342, 39.954865 ], [ -75.183652, 39.954893 ], [ -75.184521, 39.954999 ], [ -75.184745, 39.955026 ], [ -75.185004, 39.955058 ], [ -75.18508, 39.955068 ], [ -75.18511, 39.955073 ], [ -75.185148, 39.955079 ], [ -75.18536, 39.955104 ], [ -75.185608, 39.955133 ], [ -75.186349, 39.955222 ], [ -75.186583, 39.955251 ], [ -75.186872, 39.955287 ], [ -75.187086, 39.955314 ], [ -75.187221, 39.955329 ], [ -75.187525, 39.955362 ], [ -75.187671, 39.955382 ], [ -75.187807, 39.9554 ], [ -75.188254, 39.955453 ], [ -75.188834, 39.955528 ], [ -75.188979, 39.955546 ], [ -75.189486, 39.955611 ], [ -75.190183, 39.955698 ], [ -75.190357, 39.95572 ], [ -75.190799, 39.955776 ], [ -75.19147, 39.955861 ], [ -75.191572, 39.955333 ], [ -75.191623, 39.955075 ], [ -75.191782, 39.954343 ], [ -75.191952, 39.953554 ], [ -75.192022, 39.953179 ], [ -75.192092, 39.952807 ], [ -75.192095, 39.952795 ], [ -75.192189, 39.95232 ], [ -75.192366, 39.95147 ], [ -75.192419, 39.951219 ], [ -75.192499, 39.950842 ], [ -75.192584, 39.95044 ], [ -75.192606, 39.950325 ], [ -75.192607, 39.950119 ], [ -75.192621, 39.949916 ], [ -75.192633, 39.949841 ], [ -75.192668, 39.94971 ], [ -75.192692, 39.94965 ], [ -75.192726, 39.949573 ], [ -75.192778, 39.949471 ], [ -75.192806, 39.949412 ], [ -75.192827, 39.949345 ], [ -75.192847, 39.949249 ], [ -75.192864, 39.949165 ], [ -75.192896, 39.94899 ], [ -75.192903, 39.948945 ], [ -75.192912, 39.948839 ], [ -75.192881, 39.948764 ], [ -75.192895, 39.948708 ], [ -75.192904, 39.948674 ], [ -75.192961, 39.948441 ], [ -75.19298, 39.948381 ], [ -75.192994, 39.948331 ], [ -75.193003, 39.948303 ], [ -75.193018, 39.948263 ], [ -75.193033, 39.948235 ], [ -75.193043, 39.948216 ], [ -75.193058, 39.948193 ], [ -75.193081, 39.948162 ], [ -75.193101, 39.94814 ], [ -75.19312, 39.948123 ], [ -75.193145, 39.948104 ], [ -75.193177, 39.948087 ], [ -75.193205, 39.948073 ], [ -75.193247, 39.948053 ], [ -75.193289, 39.948032 ], [ -75.193347, 39.948003 ], [ -75.193456, 39.947954 ], [ -75.193536, 39.947918 ], [ -75.193617, 39.947882 ], [ -75.193771, 39.947816 ], [ -75.194001, 39.947713 ], [ -75.19454, 39.947469 ], [ -75.194924, 39.947296 ], [ -75.194997, 39.947261 ], [ -75.195638, 39.946967 ], [ -75.195928, 39.946834 ], [ -75.195992, 39.946804 ], [ -75.196078, 39.946767 ], [ -75.196679, 39.946505 ], [ -75.196738, 39.946479 ], [ -75.196746, 39.946476 ], [ -75.19703, 39.946341 ], [ -75.197128, 39.946295 ], [ -75.197202, 39.946262 ], [ -75.197263, 39.946261 ], [ -75.19732, 39.946261 ], [ -75.197329, 39.94626 ], [ -75.197337, 39.946257 ], [ -75.19736, 39.946248 ], [ -75.197466, 39.946194 ], [ -75.19765, 39.946119 ], [ -75.197755, 39.946105 ], [ -75.197825, 39.946103 ], [ -75.197932, 39.946103 ], [ -75.198019, 39.946108 ], [ -75.198126, 39.946115 ], [ -75.198379, 39.946143 ], [ -75.198472, 39.946148 ], [ -75.198566, 39.946148 ], [ -75.198566, 39.946014 ], [ -75.19856, 39.945713 ], [ -75.19854, 39.945603 ], [ -75.19852, 39.945535 ], [ -75.198441, 39.945373 ], [ -75.198368, 39.945228 ], [ -75.19834, 39.945172 ], [ -75.198289, 39.945078 ], [ -75.198218, 39.944947 ], [ -75.198202, 39.944912 ], [ -75.198113, 39.944778 ], [ -75.198096, 39.944746 ], [ -75.198079, 39.944701 ], [ -75.198048, 39.944643 ], [ -75.197971, 39.944526 ], [ -75.197897, 39.944436 ], [ -75.197851, 39.944394 ], [ -75.197799, 39.944355 ], [ -75.197732, 39.944313 ], [ -75.197674, 39.944279 ], [ -75.197618, 39.944251 ], [ -75.197507, 39.944206 ], [ -75.196884, 39.944012 ], [ -75.196827, 39.943988 ], [ -75.196781, 39.943967 ], [ -75.196731, 39.94394 ], [ -75.196691, 39.943912 ], [ -75.196616, 39.943834 ], [ -75.196574, 39.943779 ], [ -75.196537, 39.943739 ], [ -75.196463, 39.943694 ], [ -75.196453, 39.943674 ], [ -75.196444, 39.943654 ], [ -75.196443, 39.943641 ], [ -75.19644, 39.943617 ], [ -75.19644, 39.943581 ], [ -75.196451, 39.943497 ], [ -75.196466, 39.943447 ], [ -75.196487, 39.943404 ], [ -75.196524, 39.943326 ], [ -75.196553, 39.943273 ], [ -75.196565, 39.94325 ], [ -75.196634, 39.943142 ], [ -75.196925, 39.942682 ], [ -75.197234, 39.942116 ], [ -75.197364, 39.941857 ], [ -75.197468, 39.941598 ], [ -75.197512, 39.941473 ], [ -75.197597, 39.941237 ], [ -75.197788, 39.940688 ], [ -75.197965, 39.9402 ], [ -75.198026, 39.940014 ], [ -75.19809, 39.939803 ], [ -75.198138, 39.939659 ], [ -75.198146, 39.939619 ], [ -75.198161, 39.939564 ], [ -75.197849, 39.939497 ], [ -75.197642, 39.939455 ], [ -75.197216, 39.939375 ], [ -75.196749, 39.939284 ], [ -75.196634, 39.93926 ], [ -75.196458, 39.939219 ], [ -75.19591, 39.939111 ], [ -75.195762, 39.939084 ], [ -75.195607, 39.939067 ], [ -75.195445, 39.939057 ], [ -75.195371, 39.939054 ], [ -75.195251, 39.939051 ], [ -75.194905, 39.939045 ], [ -75.194077, 39.939046 ], [ -75.193706, 39.939046 ], [ -75.193287, 39.939046 ], [ -75.192679, 39.939049 ], [ -75.192091, 39.939051 ], [ -75.191664, 39.939053 ], [ -75.191678, 39.938912 ], [ -75.191698, 39.9388 ], [ -75.1918, 39.938382 ], [ -75.192056, 39.937293 ], [ -75.192197, 39.936578 ], [ -75.192306, 39.936073 ], [ -75.192392, 39.935675 ], [ -75.192457, 39.93533 ], [ -75.192563, 39.934854 ], [ -75.192822, 39.933618 ], [ -75.193096, 39.932414 ], [ -75.193359, 39.931179 ], [ -75.193376, 39.931103 ], [ -75.19342, 39.930897 ], [ -75.193625, 39.929963 ], [ -75.193894, 39.928733 ], [ -75.194135, 39.927641 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307677", "route_id": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.195363, 39.927572 ], [ -75.195436, 39.927661 ], [ -75.195491, 39.927726 ], [ -75.195744, 39.92801 ], [ -75.195998, 39.928276 ], [ -75.196095, 39.928361 ], [ -75.196156, 39.92842 ], [ -75.196221, 39.928488 ], [ -75.196461, 39.928723 ], [ -75.196712, 39.928952 ], [ -75.19694, 39.929163 ], [ -75.195867, 39.92974 ], [ -75.195518, 39.929907 ], [ -75.195261, 39.930016 ], [ -75.195205, 39.930163 ], [ -75.195111, 39.93057 ], [ -75.194984, 39.93117 ], [ -75.194972, 39.931229 ], [ -75.194965, 39.93126 ], [ -75.19494, 39.931382 ], [ -75.19475, 39.932264 ], [ -75.194681, 39.932593 ], [ -75.194406, 39.933821 ], [ -75.194136, 39.935062 ], [ -75.194034, 39.935536 ], [ -75.193956, 39.935881 ], [ -75.193871, 39.936272 ], [ -75.193607, 39.937491 ], [ -75.193533, 39.937862 ], [ -75.193438, 39.938291 ], [ -75.193364, 39.938611 ], [ -75.193287, 39.939046 ], [ -75.193279, 39.939112 ], [ -75.193271, 39.939165 ], [ -75.194073, 39.939163 ], [ -75.194376, 39.939162 ], [ -75.194901, 39.93916 ], [ -75.195231, 39.939158 ], [ -75.19544, 39.939163 ], [ -75.195623, 39.939177 ], [ -75.195891, 39.939211 ], [ -75.196216, 39.939266 ], [ -75.196443, 39.939312 ], [ -75.196551, 39.93934 ], [ -75.196665, 39.939363 ], [ -75.197187, 39.939463 ], [ -75.197588, 39.939542 ], [ -75.197609, 39.939546 ], [ -75.197716, 39.939568 ], [ -75.197834, 39.939622 ], [ -75.197898, 39.939672 ], [ -75.197943, 39.939728 ], [ -75.197956, 39.939751 ], [ -75.19798, 39.9398 ], [ -75.197987, 39.939867 ], [ -75.19798, 39.939975 ], [ -75.197964, 39.940199 ], [ -75.197788, 39.940688 ], [ -75.197597, 39.941238 ], [ -75.197512, 39.941473 ], [ -75.197468, 39.941598 ], [ -75.197363, 39.941856 ], [ -75.197234, 39.942116 ], [ -75.196925, 39.942682 ], [ -75.196634, 39.943142 ], [ -75.196565, 39.94325 ], [ -75.196553, 39.943273 ], [ -75.196525, 39.943327 ], [ -75.196487, 39.943404 ], [ -75.196466, 39.943447 ], [ -75.196451, 39.943497 ], [ -75.19644, 39.943581 ], [ -75.19644, 39.943617 ], [ -75.196443, 39.943641 ], [ -75.196444, 39.943654 ], [ -75.196453, 39.943674 ], [ -75.196463, 39.943694 ], [ -75.196448, 39.943794 ], [ -75.19647, 39.943833 ], [ -75.196497, 39.943868 ], [ -75.196554, 39.94394 ], [ -75.196606, 39.943986 ], [ -75.196668, 39.944021 ], [ -75.196723, 39.944048 ], [ -75.196779, 39.944068 ], [ -75.197344, 39.94424 ], [ -75.197551, 39.944313 ], [ -75.197595, 39.94433 ], [ -75.197631, 39.94435 ], [ -75.197689, 39.944389 ], [ -75.197744, 39.944431 ], [ -75.197793, 39.944471 ], [ -75.197818, 39.944497 ], [ -75.197824, 39.944502 ], [ -75.197888, 39.944575 ], [ -75.197944, 39.944667 ], [ -75.198008, 39.944775 ], [ -75.198087, 39.944927 ], [ -75.198098, 39.944949 ], [ -75.198168, 39.945087 ], [ -75.198215, 39.945177 ], [ -75.198245, 39.945234 ], [ -75.198273, 39.945461 ], [ -75.198283, 39.945523 ], [ -75.198278, 39.945602 ], [ -75.198261, 39.945672 ], [ -75.198231, 39.945742 ], [ -75.198183, 39.945805 ], [ -75.198126, 39.945863 ], [ -75.198053, 39.945912 ], [ -75.197939, 39.945973 ], [ -75.197857, 39.946021 ], [ -75.197735, 39.946032 ], [ -75.197525, 39.946073 ], [ -75.197484, 39.946083 ], [ -75.197439, 39.946095 ], [ -75.197294, 39.946153 ], [ -75.197275, 39.946163 ], [ -75.197202, 39.946262 ], [ -75.197128, 39.946295 ], [ -75.197109, 39.946273 ], [ -75.197095, 39.946258 ], [ -75.197038, 39.946199 ], [ -75.197016, 39.946179 ], [ -75.196994, 39.946163 ], [ -75.196972, 39.946148 ], [ -75.196956, 39.946137 ], [ -75.196944, 39.946126 ], [ -75.196928, 39.946112 ], [ -75.196917, 39.946098 ], [ -75.196882, 39.94606 ], [ -75.196832, 39.945994 ], [ -75.196822, 39.945981 ], [ -75.19677, 39.945911 ], [ -75.196708, 39.94583 ], [ -75.196668, 39.945779 ], [ -75.196627, 39.945734 ], [ -75.196569, 39.945682 ], [ -75.196512, 39.945642 ], [ -75.196483, 39.945624 ], [ -75.196451, 39.945607 ], [ -75.196413, 39.945588 ], [ -75.196365, 39.945571 ], [ -75.196299, 39.945555 ], [ -75.196246, 39.945546 ], [ -75.196211, 39.945541 ], [ -75.196158, 39.945536 ], [ -75.196106, 39.945536 ], [ -75.196014, 39.945539 ], [ -75.195934, 39.945545 ], [ -75.195909, 39.945548 ], [ -75.195764, 39.945567 ], [ -75.195628, 39.945591 ], [ -75.19526, 39.945672 ], [ -75.195206, 39.945686 ], [ -75.194961, 39.945752 ], [ -75.194876, 39.945775 ], [ -75.194803, 39.945799 ], [ -75.194547, 39.945887 ], [ -75.194457, 39.94592 ], [ -75.194339, 39.94597 ], [ -75.194174, 39.946038 ], [ -75.193944, 39.946144 ], [ -75.19326, 39.946457 ], [ -75.19304, 39.946562 ], [ -75.192905, 39.946626 ], [ -75.192402, 39.946861 ], [ -75.192047, 39.947028 ], [ -75.19178, 39.947158 ], [ -75.191717, 39.947188 ], [ -75.191486, 39.947244 ], [ -75.191443, 39.947268 ], [ -75.191413, 39.947288 ], [ -75.191378, 39.947319 ], [ -75.191342, 39.947362 ], [ -75.191316, 39.947404 ], [ -75.191271, 39.947496 ], [ -75.19123, 39.94759 ], [ -75.191281, 39.947583 ], [ -75.191328, 39.947581 ], [ -75.191384, 39.947584 ], [ -75.191426, 39.947597 ], [ -75.191485, 39.947624 ], [ -75.191517, 39.947643 ], [ -75.191562, 39.947674 ], [ -75.191595, 39.9477 ], [ -75.191622, 39.947725 ], [ -75.191664, 39.947773 ], [ -75.191784, 39.947933 ], [ -75.191907, 39.948103 ], [ -75.191964, 39.948167 ], [ -75.192006, 39.94822 ], [ -75.192058, 39.94828 ], [ -75.192102, 39.948329 ], [ -75.192181, 39.948404 ], [ -75.192228, 39.948446 ], [ -75.192268, 39.948481 ], [ -75.192278, 39.948489 ], [ -75.19233, 39.948535 ], [ -75.192367, 39.948568 ], [ -75.192391, 39.948589 ], [ -75.192405, 39.9486 ], [ -75.192417, 39.948609 ], [ -75.192427, 39.948614 ], [ -75.192438, 39.948617 ], [ -75.192451, 39.94862 ], [ -75.192464, 39.948622 ], [ -75.192482, 39.948625 ], [ -75.192553, 39.948635 ], [ -75.19256, 39.948636 ], [ -75.192742, 39.948656 ], [ -75.192831, 39.948667 ], [ -75.192904, 39.948674 ], [ -75.192895, 39.948708 ], [ -75.192881, 39.948764 ], [ -75.192814, 39.948824 ], [ -75.192772, 39.948993 ], [ -75.19273, 39.949204 ], [ -75.192689, 39.949353 ], [ -75.192668, 39.949411 ], [ -75.192639, 39.949461 ], [ -75.192605, 39.949516 ], [ -75.192567, 39.949566 ], [ -75.1925, 39.949635 ], [ -75.192393, 39.949747 ], [ -75.192292, 39.949846 ], [ -75.192213, 39.949924 ], [ -75.192147, 39.949989 ], [ -75.192113, 39.950018 ], [ -75.19176, 39.950316 ], [ -75.190502, 39.951332 ], [ -75.190439, 39.951384 ], [ -75.190394, 39.951429 ], [ -75.190355, 39.95147 ], [ -75.190327, 39.951507 ], [ -75.190303, 39.951542 ], [ -75.190283, 39.951576 ], [ -75.190267, 39.95161 ], [ -75.190254, 39.951645 ], [ -75.190235, 39.951695 ], [ -75.190219, 39.951748 ], [ -75.1902, 39.951827 ], [ -75.190192, 39.95186 ], [ -75.190043, 39.95255 ], [ -75.189809, 39.953698 ], [ -75.189729, 39.954087 ], [ -75.189612, 39.954817 ], [ -75.189573, 39.955058 ], [ -75.189551, 39.955199 ], [ -75.189486, 39.95561 ], [ -75.188979, 39.955546 ], [ -75.188834, 39.955528 ], [ -75.188254, 39.955453 ], [ -75.187807, 39.9554 ], [ -75.187671, 39.955382 ], [ -75.187525, 39.955362 ], [ -75.187221, 39.955329 ], [ -75.187086, 39.955314 ], [ -75.186872, 39.955287 ], [ -75.186583, 39.955251 ], [ -75.186349, 39.955222 ], [ -75.185608, 39.955133 ], [ -75.18536, 39.955104 ], [ -75.185148, 39.955079 ], [ -75.18511, 39.955073 ], [ -75.18508, 39.955068 ], [ -75.185004, 39.955058 ], [ -75.184745, 39.955026 ], [ -75.184521, 39.954999 ], [ -75.183652, 39.954893 ], [ -75.18342, 39.954865 ], [ -75.183377, 39.954859 ], [ -75.183297, 39.954848 ], [ -75.183249, 39.954843 ], [ -75.182669, 39.954771 ], [ -75.182124, 39.9547 ], [ -75.181302, 39.954583 ], [ -75.181202, 39.95457 ], [ -75.181185, 39.954567 ], [ -75.181159, 39.954564 ], [ -75.181099, 39.954557 ], [ -75.181051, 39.954546 ], [ -75.181012, 39.954544 ], [ -75.180951, 39.954538 ], [ -75.180514, 39.954488 ], [ -75.180082, 39.954437 ], [ -75.179741, 39.954397 ], [ -75.179515, 39.954367 ], [ -75.179219, 39.95433 ], [ -75.178332, 39.954219 ], [ -75.177817, 39.954154 ], [ -75.177334, 39.954095 ], [ -75.177129, 39.95407 ], [ -75.176662, 39.95402 ], [ -75.176172, 39.95395 ], [ -75.175737, 39.953894 ], [ -75.175077, 39.953809 ], [ -75.174455, 39.953735 ], [ -75.17408, 39.95369 ], [ -75.173745, 39.95365 ], [ -75.173169, 39.953582 ], [ -75.173091, 39.954002 ], [ -75.173053, 39.954221 ], [ -75.17298, 39.954581 ], [ -75.172933, 39.954931 ], [ -75.172904, 39.955058 ], [ -75.172767, 39.955601 ], [ -75.172649, 39.95613 ], [ -75.172567, 39.956528 ], [ -75.172391, 39.957439 ], [ -75.172211, 39.958266 ], [ -75.172095, 39.958747 ], [ -75.172038, 39.958916 ], [ -75.172015, 39.95897 ], [ -75.171993, 39.959026 ], [ -75.17197, 39.959153 ], [ -75.171952, 39.959238 ], [ -75.171933, 39.95931 ], [ -75.171767, 39.960022 ], [ -75.171712, 39.960261 ], [ -75.171588, 39.960812 ], [ -75.171506, 39.96116 ], [ -75.171481, 39.961275 ], [ -75.171447, 39.961428 ], [ -75.171404, 39.961614 ], [ -75.171262, 39.962266 ], [ -75.171132, 39.962862 ], [ -75.171062, 39.963161 ], [ -75.170959, 39.96359 ], [ -75.170937, 39.963695 ], [ -75.170844, 39.964083 ], [ -75.170801, 39.964365 ], [ -75.170745, 39.964628 ], [ -75.170668, 39.964991 ], [ -75.170521, 39.965686 ], [ -75.170323, 39.966367 ], [ -75.170253, 39.96668 ], [ -75.170211, 39.966892 ], [ -75.170158, 39.967239 ], [ -75.17077, 39.967244 ], [ -75.171361, 39.967252 ], [ -75.172075, 39.967275 ], [ -75.173732, 39.967317 ], [ -75.173983, 39.967317 ], [ -75.175373, 39.967341 ], [ -75.176411, 39.967366 ], [ -75.176995, 39.967382 ], [ -75.177976, 39.967391 ], [ -75.178647, 39.967405 ], [ -75.179566, 39.967416 ], [ -75.179574, 39.967416 ], [ -75.179579, 39.96742 ], [ -75.180149, 39.967872 ], [ -75.180501, 39.968162 ], [ -75.181051, 39.968629 ], [ -75.181066, 39.968643 ], [ -75.181345, 39.968892 ], [ -75.181378, 39.968925 ], [ -75.181405, 39.968953 ], [ -75.181446, 39.968999 ], [ -75.181482, 39.969052 ], [ -75.181556, 39.969096 ], [ -75.181575, 39.969127 ], [ -75.181593, 39.969158 ], [ -75.181615, 39.969182 ], [ -75.181657, 39.96922 ], [ -75.182207, 39.969655 ], [ -75.182829, 39.970168 ], [ -75.183046, 39.970354 ], [ -75.183503, 39.970728 ], [ -75.184062, 39.971208 ], [ -75.184107, 39.97125 ], [ -75.184144, 39.971301 ], [ -75.184151, 39.971321 ], [ -75.184162, 39.971353 ], [ -75.184164, 39.971385 ], [ -75.184155, 39.971435 ], [ -75.184139, 39.971526 ], [ -75.184037, 39.971979 ], [ -75.183908, 39.972591 ], [ -75.183768, 39.973199 ], [ -75.183621, 39.973854 ], [ -75.183559, 39.974122 ], [ -75.183469, 39.974534 ], [ -75.183358, 39.975023 ], [ -75.183307, 39.975264 ], [ -75.18309, 39.976295 ], [ -75.182821, 39.977564 ], [ -75.182511, 39.978937 ], [ -75.182464, 39.97917 ], [ -75.182357, 39.97965 ], [ -75.1822, 39.980357 ], [ -75.182087, 39.980888 ], [ -75.182002, 39.981299 ], [ -75.181904, 39.981784 ], [ -75.181553, 39.983303 ], [ -75.181543, 39.983339 ], [ -75.181515, 39.983457 ], [ -75.181504, 39.983504 ], [ -75.181302, 39.984405 ], [ -75.181271, 39.984556 ], [ -75.181229, 39.984732 ], [ -75.1812, 39.984864 ], [ -75.181123, 39.985242 ], [ -75.181008, 39.985821 ], [ -75.180899, 39.986302 ], [ -75.180813, 39.986693 ], [ -75.180791, 39.986794 ], [ -75.180666, 39.987408 ], [ -75.180576, 39.987821 ], [ -75.180495, 39.988226 ], [ -75.180416, 39.988572 ], [ -75.180341, 39.988929 ], [ -75.180243, 39.989383 ], [ -75.180242, 39.98939 ], [ -75.180067, 39.990184 ], [ -75.180011, 39.990463 ], [ -75.179893, 39.990982 ], [ -75.179726, 39.991734 ], [ -75.179645, 39.992117 ], [ -75.179571, 39.992475 ], [ -75.180143, 39.992554 ], [ -75.180624, 39.992618 ], [ -75.181184, 39.992691 ], [ -75.181759, 39.992767 ], [ -75.182183, 39.992824 ], [ -75.182784, 39.992895 ], [ -75.183317, 39.99296 ], [ -75.183801, 39.993018 ], [ -75.184373, 39.993092 ], [ -75.184908, 39.993173 ], [ -75.185164, 39.993206 ], [ -75.185402, 39.993237 ], [ -75.186015, 39.993308 ], [ -75.186024, 39.993309 ], [ -75.186026, 39.993299 ], [ -75.186177, 39.99275 ], [ -75.186284, 39.992242 ], [ -75.18635, 39.991975 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307706", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.219651, 39.978201 ], [ -75.219722, 39.978076 ], [ -75.2199, 39.978059 ], [ -75.220089, 39.978122 ], [ -75.220372, 39.978185 ], [ -75.220132, 39.978556 ], [ -75.220051, 39.978759 ], [ -75.219926, 39.978956 ], [ -75.219309, 39.979945 ], [ -75.219514, 39.980021 ], [ -75.220579, 39.980418 ], [ -75.22082, 39.980508 ], [ -75.221088, 39.980608 ], [ -75.221465, 39.980748 ], [ -75.221723, 39.980851 ], [ -75.222008, 39.980965 ], [ -75.222511, 39.981167 ], [ -75.222867, 39.981295 ], [ -75.223159, 39.9814 ], [ -75.223407, 39.981496 ], [ -75.22349, 39.981522 ], [ -75.223585, 39.981553 ], [ -75.223697, 39.981573 ], [ -75.223799, 39.98158 ], [ -75.223862, 39.981574 ], [ -75.223916, 39.981569 ], [ -75.224051, 39.981539 ], [ -75.224376, 39.981013 ], [ -75.224713, 39.980483 ], [ -75.224908, 39.98016 ], [ -75.225028, 39.97996 ], [ -75.225113, 39.979826 ], [ -75.225355, 39.979442 ], [ -75.225576, 39.979094 ], [ -75.226001, 39.978427 ], [ -75.226231, 39.97809 ], [ -75.226322, 39.977948 ], [ -75.226333, 39.977928 ], [ -75.226443, 39.97772 ], [ -75.226579, 39.977512 ], [ -75.226685, 39.977354 ], [ -75.226787, 39.977202 ], [ -75.226802, 39.97716 ], [ -75.226824, 39.977087 ], [ -75.226834, 39.977002 ], [ -75.226833, 39.976955 ], [ -75.226818, 39.976824 ], [ -75.226805, 39.976756 ], [ -75.22679, 39.976648 ], [ -75.226777, 39.976549 ], [ -75.22673, 39.976203 ], [ -75.226716, 39.976116 ], [ -75.226658, 39.97575 ], [ -75.226478, 39.974796 ], [ -75.226449, 39.974664 ], [ -75.226355, 39.974227 ], [ -75.226295, 39.973873 ], [ -75.226249, 39.973593 ], [ -75.226205, 39.973362 ], [ -75.226129, 39.972953 ], [ -75.226063, 39.972596 ], [ -75.226008, 39.972294 ], [ -75.225993, 39.972184 ], [ -75.225952, 39.971982 ], [ -75.225839, 39.971419 ], [ -75.225725, 39.970917 ], [ -75.225625, 39.970479 ], [ -75.225521, 39.970047 ], [ -75.225487, 39.969905 ], [ -75.225392, 39.969511 ], [ -75.225324, 39.969159 ], [ -75.225294, 39.969006 ], [ -75.225231, 39.968676 ], [ -75.225207, 39.96855 ], [ -75.22513, 39.968119 ], [ -75.225073, 39.967766 ], [ -75.225048, 39.967608 ], [ -75.224983, 39.967135 ], [ -75.224967, 39.967018 ], [ -75.224909, 39.966615 ], [ -75.224837, 39.966235 ], [ -75.224767, 39.965787 ], [ -75.224719, 39.965484 ], [ -75.224679, 39.96523 ], [ -75.224633, 39.965022 ], [ -75.224609, 39.964895 ], [ -75.22458, 39.964745 ], [ -75.224519, 39.964477 ], [ -75.22433, 39.963633 ], [ -75.224248, 39.9632 ], [ -75.224243, 39.963132 ], [ -75.224246, 39.963066 ], [ -75.224268, 39.962931 ], [ -75.224322, 39.962684 ], [ -75.224473, 39.961975 ], [ -75.224561, 39.961569 ], [ -75.224734, 39.960806 ], [ -75.224868, 39.960083 ], [ -75.224874, 39.960045 ], [ -75.224888, 39.960009 ], [ -75.224921, 39.959975 ], [ -75.224941, 39.959933 ], [ -75.225032, 39.959454 ], [ -75.225076, 39.959199 ], [ -75.225113, 39.959013 ], [ -75.225138, 39.958877 ], [ -75.225214, 39.958467 ], [ -75.225347, 39.957695 ], [ -75.225512, 39.956955 ], [ -75.225603, 39.95657 ], [ -75.225651, 39.956365 ], [ -75.225686, 39.956193 ], [ -75.225766, 39.955814 ], [ -75.22584, 39.955447 ], [ -75.22589, 39.955203 ], [ -75.225934, 39.954987 ], [ -75.226017, 39.954583 ], [ -75.226098, 39.954212 ], [ -75.226135, 39.954048 ], [ -75.226166, 39.953902 ], [ -75.226248, 39.95353 ], [ -75.226317, 39.953181 ], [ -75.226357, 39.95298 ], [ -75.226452, 39.952512 ], [ -75.226479, 39.952378 ], [ -75.226553, 39.951994 ], [ -75.226624, 39.951659 ], [ -75.226663, 39.951477 ], [ -75.226705, 39.951265 ], [ -75.226753, 39.951007 ], [ -75.226789, 39.950834 ], [ -75.226869, 39.950462 ], [ -75.226948, 39.950099 ], [ -75.227038, 39.949689 ], [ -75.22711, 39.949352 ], [ -75.227195, 39.948955 ], [ -75.227263, 39.948612 ], [ -75.227288, 39.94849 ], [ -75.227339, 39.948235 ], [ -75.22742, 39.947896 ], [ -75.227429, 39.947824 ], [ -75.227426, 39.947784 ], [ -75.227419, 39.947764 ], [ -75.227373, 39.947708 ], [ -75.22682, 39.947244 ], [ -75.228117, 39.946348 ], [ -75.22824, 39.946262 ], [ -75.228281, 39.946233 ], [ -75.228329, 39.946202 ], [ -75.228436, 39.946126 ], [ -75.228718, 39.945921 ], [ -75.229587, 39.945304 ], [ -75.229078, 39.944888 ], [ -75.228669, 39.944555 ], [ -75.228163, 39.944134 ], [ -75.227697, 39.943725 ], [ -75.227284, 39.943365 ], [ -75.226794, 39.942944 ], [ -75.226339, 39.942553 ], [ -75.225534, 39.941865 ], [ -75.225027, 39.941421 ], [ -75.224632, 39.941094 ], [ -75.224153, 39.940698 ], [ -75.223546, 39.94018 ], [ -75.222944, 39.939674 ], [ -75.222755, 39.93951 ], [ -75.222619, 39.939402 ], [ -75.222549, 39.939354 ], [ -75.222462, 39.939302 ], [ -75.222377, 39.939248 ], [ -75.222326, 39.939212 ], [ -75.222257, 39.939164 ], [ -75.22206, 39.938993 ], [ -75.221648, 39.938642 ], [ -75.221532, 39.938544 ], [ -75.221494, 39.938503 ], [ -75.221451, 39.938449 ], [ -75.221407, 39.938399 ], [ -75.221331, 39.938331 ], [ -75.221142, 39.938176 ], [ -75.220755, 39.937857 ], [ -75.220255, 39.937441 ], [ -75.219704, 39.937827 ], [ -75.218881, 39.938396 ], [ -75.218448, 39.938707 ], [ -75.218041, 39.938995 ], [ -75.217503, 39.939355 ], [ -75.216923, 39.939765 ], [ -75.216859, 39.939809 ], [ -75.216372, 39.940151 ], [ -75.21577, 39.940574 ], [ -75.215125, 39.94105 ], [ -75.214696, 39.941354 ], [ -75.214342, 39.941587 ], [ -75.213886, 39.941922 ], [ -75.213326, 39.941461 ], [ -75.212715, 39.94094 ], [ -75.212619, 39.940859 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307709", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.23448, 39.996039 ], [ -75.23429, 39.99581 ], [ -75.23424, 39.995729 ], [ -75.234179, 39.995639 ], [ -75.234139, 39.995559 ], [ -75.23411, 39.995369 ], [ -75.23407, 39.995189 ], [ -75.233999, 39.994769 ], [ -75.234009, 39.994419 ], [ -75.23376, 39.99264 ], [ -75.23371, 39.99219 ], [ -75.233706, 39.99218 ], [ -75.233668, 39.991883 ], [ -75.23364, 39.991583 ], [ -75.233606, 39.991271 ], [ -75.233584, 39.99107 ], [ -75.233545, 39.99084 ], [ -75.233514, 39.990649 ], [ -75.233375, 39.990204 ], [ -75.233235, 39.989808 ], [ -75.233083, 39.989388 ], [ -75.232924, 39.988944 ], [ -75.232777, 39.988488 ], [ -75.232666, 39.988166 ], [ -75.232597, 39.987966 ], [ -75.232533, 39.987778 ], [ -75.232408, 39.987418 ], [ -75.232259, 39.986989 ], [ -75.232135, 39.986636 ], [ -75.232005, 39.986255 ], [ -75.231879, 39.985887 ], [ -75.23174, 39.985496 ], [ -75.231639, 39.985214 ], [ -75.231591, 39.985068 ], [ -75.231546, 39.984935 ], [ -75.231495, 39.984774 ], [ -75.231456, 39.984663 ], [ -75.231265, 39.984103 ], [ -75.231083, 39.983573 ], [ -75.230728, 39.982523 ], [ -75.230634, 39.982347 ], [ -75.230392, 39.981972 ], [ -75.230088, 39.981545 ], [ -75.229965, 39.981367 ], [ -75.229845, 39.98119 ], [ -75.229798, 39.981137 ], [ -75.229762, 39.981103 ], [ -75.229699, 39.981058 ], [ -75.229654, 39.981033 ], [ -75.229475, 39.980959 ], [ -75.22883, 39.980725 ], [ -75.22857, 39.980625 ], [ -75.228151, 39.980464 ], [ -75.227702, 39.980303 ], [ -75.22719, 39.980117 ], [ -75.226711, 39.979938 ], [ -75.225355, 39.979442 ], [ -75.225576, 39.979094 ], [ -75.226001, 39.978427 ], [ -75.226231, 39.97809 ], [ -75.226322, 39.977948 ], [ -75.226333, 39.977928 ], [ -75.226443, 39.97772 ], [ -75.226579, 39.977512 ], [ -75.226685, 39.977354 ], [ -75.226787, 39.977202 ], [ -75.226802, 39.97716 ], [ -75.226824, 39.977087 ], [ -75.226834, 39.977002 ], [ -75.226833, 39.976955 ], [ -75.226818, 39.976824 ], [ -75.226805, 39.976756 ], [ -75.22679, 39.976648 ], [ -75.226777, 39.976549 ], [ -75.22673, 39.976203 ], [ -75.226716, 39.976116 ], [ -75.226658, 39.97575 ], [ -75.226478, 39.974796 ], [ -75.226449, 39.974664 ], [ -75.226355, 39.974227 ], [ -75.226295, 39.973873 ], [ -75.226249, 39.973593 ], [ -75.226205, 39.973362 ], [ -75.226129, 39.972953 ], [ -75.226063, 39.972596 ], [ -75.226008, 39.972294 ], [ -75.225993, 39.972184 ], [ -75.225952, 39.971982 ], [ -75.225839, 39.971419 ], [ -75.225725, 39.970917 ], [ -75.225625, 39.970479 ], [ -75.225521, 39.970047 ], [ -75.225487, 39.969905 ], [ -75.225392, 39.969511 ], [ -75.225324, 39.969159 ], [ -75.225294, 39.969006 ], [ -75.225231, 39.968676 ], [ -75.225207, 39.96855 ], [ -75.22513, 39.968119 ], [ -75.225073, 39.967766 ], [ -75.225048, 39.967608 ], [ -75.224983, 39.967135 ], [ -75.224967, 39.967018 ], [ -75.224909, 39.966615 ], [ -75.224837, 39.966235 ], [ -75.224767, 39.965787 ], [ -75.224719, 39.965484 ], [ -75.224679, 39.96523 ], [ -75.224633, 39.965022 ], [ -75.224609, 39.964895 ], [ -75.22458, 39.964745 ], [ -75.224519, 39.964477 ], [ -75.22433, 39.963633 ], [ -75.224248, 39.9632 ], [ -75.224243, 39.963132 ], [ -75.224246, 39.963066 ], [ -75.224268, 39.962931 ], [ -75.224322, 39.962684 ], [ -75.224473, 39.961975 ], [ -75.224561, 39.961569 ], [ -75.224734, 39.960806 ], [ -75.224868, 39.960083 ], [ -75.224874, 39.960045 ], [ -75.224888, 39.960009 ], [ -75.224921, 39.959975 ], [ -75.224941, 39.959933 ], [ -75.225032, 39.959454 ], [ -75.225076, 39.959199 ], [ -75.225113, 39.959013 ], [ -75.225138, 39.958877 ], [ -75.225214, 39.958467 ], [ -75.225347, 39.957695 ], [ -75.225512, 39.956955 ], [ -75.225603, 39.95657 ], [ -75.225651, 39.956365 ], [ -75.225686, 39.956193 ], [ -75.225766, 39.955814 ], [ -75.22584, 39.955447 ], [ -75.22589, 39.955203 ], [ -75.225934, 39.954987 ], [ -75.226017, 39.954583 ], [ -75.226098, 39.954212 ], [ -75.226135, 39.954048 ], [ -75.226166, 39.953902 ], [ -75.226248, 39.95353 ], [ -75.226317, 39.953181 ], [ -75.226357, 39.95298 ], [ -75.226452, 39.952512 ], [ -75.226479, 39.952378 ], [ -75.226553, 39.951994 ], [ -75.226624, 39.951659 ], [ -75.226663, 39.951477 ], [ -75.226705, 39.951265 ], [ -75.226753, 39.951007 ], [ -75.226789, 39.950834 ], [ -75.226869, 39.950462 ], [ -75.226948, 39.950099 ], [ -75.227038, 39.949689 ], [ -75.22711, 39.949352 ], [ -75.227195, 39.948955 ], [ -75.227263, 39.948612 ], [ -75.227288, 39.94849 ], [ -75.227339, 39.948235 ], [ -75.22742, 39.947896 ], [ -75.227429, 39.947824 ], [ -75.227426, 39.947784 ], [ -75.227419, 39.947764 ], [ -75.227373, 39.947708 ], [ -75.22682, 39.947244 ], [ -75.228117, 39.946348 ], [ -75.22824, 39.946262 ], [ -75.228281, 39.946233 ], [ -75.228329, 39.946202 ], [ -75.228436, 39.946126 ], [ -75.228718, 39.945921 ], [ -75.229587, 39.945304 ], [ -75.229078, 39.944888 ], [ -75.228669, 39.944555 ], [ -75.228163, 39.944134 ], [ -75.227697, 39.943725 ], [ -75.227284, 39.943365 ], [ -75.226794, 39.942944 ], [ -75.226339, 39.942553 ], [ -75.225534, 39.941865 ], [ -75.225027, 39.941421 ], [ -75.224632, 39.941094 ], [ -75.224153, 39.940698 ], [ -75.223546, 39.94018 ], [ -75.222944, 39.939674 ], [ -75.222245, 39.940162 ], [ -75.221552, 39.940644 ], [ -75.220728, 39.939955 ], [ -75.220289, 39.939572 ], [ -75.221648, 39.938642 ], [ -75.22206, 39.938993 ], [ -75.222257, 39.939164 ], [ -75.222326, 39.939212 ], [ -75.222377, 39.939248 ], [ -75.222462, 39.939302 ], [ -75.222549, 39.939354 ], [ -75.222619, 39.939402 ], [ -75.222755, 39.93951 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307710", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.23448, 39.996039 ], [ -75.23429, 39.99581 ], [ -75.23424, 39.995729 ], [ -75.234179, 39.995639 ], [ -75.234139, 39.995559 ], [ -75.23411, 39.995369 ], [ -75.23407, 39.995189 ], [ -75.233999, 39.994769 ], [ -75.234009, 39.994419 ], [ -75.23376, 39.99264 ], [ -75.23371, 39.99219 ], [ -75.233706, 39.99218 ], [ -75.233668, 39.991883 ], [ -75.23364, 39.991583 ], [ -75.233606, 39.991271 ], [ -75.233584, 39.99107 ], [ -75.233545, 39.99084 ], [ -75.233514, 39.990649 ], [ -75.233375, 39.990204 ], [ -75.233235, 39.989808 ], [ -75.233083, 39.989388 ], [ -75.232924, 39.988944 ], [ -75.232777, 39.988488 ], [ -75.232666, 39.988166 ], [ -75.232597, 39.987966 ], [ -75.232533, 39.987778 ], [ -75.232408, 39.987418 ], [ -75.232259, 39.986989 ], [ -75.232135, 39.986636 ], [ -75.232005, 39.986255 ], [ -75.231879, 39.985887 ], [ -75.23174, 39.985496 ], [ -75.231639, 39.985214 ], [ -75.231591, 39.985068 ], [ -75.231546, 39.984935 ], [ -75.231495, 39.984774 ], [ -75.231456, 39.984663 ], [ -75.231265, 39.984103 ], [ -75.231083, 39.983573 ], [ -75.230728, 39.982523 ], [ -75.230634, 39.982347 ], [ -75.230392, 39.981972 ], [ -75.230088, 39.981545 ], [ -75.229965, 39.981367 ], [ -75.229845, 39.98119 ], [ -75.229798, 39.981137 ], [ -75.229762, 39.981103 ], [ -75.229699, 39.981058 ], [ -75.229654, 39.981033 ], [ -75.229475, 39.980959 ], [ -75.22883, 39.980725 ], [ -75.22857, 39.980625 ], [ -75.228151, 39.980464 ], [ -75.227702, 39.980303 ], [ -75.22719, 39.980117 ], [ -75.226711, 39.979938 ], [ -75.225355, 39.979442 ], [ -75.224522, 39.979112 ], [ -75.224477, 39.979095 ], [ -75.224442, 39.979094 ], [ -75.224338, 39.979072 ], [ -75.223829, 39.979043 ], [ -75.223363, 39.978957 ], [ -75.222706, 39.978758 ], [ -75.22253, 39.979062 ], [ -75.223639, 39.979458 ], [ -75.22401, 39.97959 ], [ -75.224219, 39.979269 ], [ -75.224338, 39.979072 ], [ -75.224442, 39.979094 ], [ -75.224477, 39.979095 ], [ -75.224522, 39.979112 ], [ -75.225355, 39.979442 ], [ -75.225576, 39.979094 ], [ -75.226001, 39.978427 ], [ -75.226231, 39.97809 ], [ -75.226322, 39.977948 ], [ -75.226333, 39.977928 ], [ -75.226443, 39.97772 ], [ -75.226579, 39.977512 ], [ -75.226685, 39.977354 ], [ -75.226787, 39.977202 ], [ -75.226802, 39.97716 ], [ -75.226824, 39.977087 ], [ -75.226834, 39.977002 ], [ -75.226833, 39.976955 ], [ -75.226818, 39.976824 ], [ -75.226805, 39.976756 ], [ -75.22679, 39.976648 ], [ -75.226777, 39.976549 ], [ -75.22673, 39.976203 ], [ -75.226716, 39.976116 ], [ -75.226658, 39.97575 ], [ -75.226478, 39.974796 ], [ -75.226449, 39.974664 ], [ -75.226355, 39.974227 ], [ -75.226295, 39.973873 ], [ -75.226249, 39.973593 ], [ -75.226205, 39.973362 ], [ -75.226129, 39.972953 ], [ -75.226063, 39.972596 ], [ -75.226008, 39.972294 ], [ -75.225993, 39.972184 ], [ -75.225952, 39.971982 ], [ -75.225839, 39.971419 ], [ -75.225725, 39.970917 ], [ -75.225625, 39.970479 ], [ -75.225521, 39.970047 ], [ -75.225487, 39.969905 ], [ -75.225392, 39.969511 ], [ -75.225324, 39.969159 ], [ -75.225294, 39.969006 ], [ -75.225231, 39.968676 ], [ -75.225207, 39.96855 ], [ -75.22513, 39.968119 ], [ -75.225073, 39.967766 ], [ -75.225048, 39.967608 ], [ -75.224983, 39.967135 ], [ -75.224967, 39.967018 ], [ -75.224909, 39.966615 ], [ -75.224837, 39.966235 ], [ -75.224767, 39.965787 ], [ -75.224719, 39.965484 ], [ -75.224679, 39.96523 ], [ -75.224633, 39.965022 ], [ -75.224609, 39.964895 ], [ -75.22458, 39.964745 ], [ -75.224519, 39.964477 ], [ -75.22433, 39.963633 ], [ -75.224248, 39.9632 ], [ -75.224243, 39.963132 ], [ -75.224246, 39.963066 ], [ -75.224268, 39.962931 ], [ -75.224322, 39.962684 ], [ -75.224473, 39.961975 ], [ -75.224561, 39.961569 ], [ -75.224734, 39.960806 ], [ -75.224868, 39.960083 ], [ -75.224874, 39.960045 ], [ -75.224888, 39.960009 ], [ -75.224921, 39.959975 ], [ -75.224941, 39.959933 ], [ -75.225032, 39.959454 ], [ -75.225076, 39.959199 ], [ -75.225113, 39.959013 ], [ -75.225138, 39.958877 ], [ -75.225214, 39.958467 ], [ -75.225347, 39.957695 ], [ -75.225512, 39.956955 ], [ -75.225603, 39.95657 ], [ -75.225651, 39.956365 ], [ -75.225686, 39.956193 ], [ -75.225766, 39.955814 ], [ -75.22584, 39.955447 ], [ -75.22589, 39.955203 ], [ -75.225934, 39.954987 ], [ -75.226017, 39.954583 ], [ -75.226098, 39.954212 ], [ -75.226135, 39.954048 ], [ -75.226166, 39.953902 ], [ -75.226248, 39.95353 ], [ -75.226317, 39.953181 ], [ -75.226357, 39.95298 ], [ -75.226452, 39.952512 ], [ -75.226479, 39.952378 ], [ -75.226553, 39.951994 ], [ -75.226624, 39.951659 ], [ -75.226663, 39.951477 ], [ -75.226705, 39.951265 ], [ -75.226753, 39.951007 ], [ -75.226789, 39.950834 ], [ -75.226869, 39.950462 ], [ -75.226948, 39.950099 ], [ -75.227038, 39.949689 ], [ -75.22711, 39.949352 ], [ -75.227195, 39.948955 ], [ -75.227263, 39.948612 ], [ -75.227288, 39.94849 ], [ -75.227339, 39.948235 ], [ -75.22742, 39.947896 ], [ -75.227429, 39.947824 ], [ -75.227426, 39.947784 ], [ -75.227419, 39.947764 ], [ -75.227373, 39.947708 ], [ -75.22682, 39.947244 ], [ -75.228117, 39.946348 ], [ -75.22824, 39.946262 ], [ -75.228281, 39.946233 ], [ -75.228329, 39.946202 ], [ -75.228436, 39.946126 ], [ -75.228718, 39.945921 ], [ -75.229587, 39.945304 ], [ -75.229078, 39.944888 ], [ -75.228669, 39.944555 ], [ -75.228163, 39.944134 ], [ -75.227697, 39.943725 ], [ -75.227284, 39.943365 ], [ -75.226794, 39.942944 ], [ -75.226339, 39.942553 ], [ -75.225534, 39.941865 ], [ -75.225027, 39.941421 ], [ -75.224632, 39.941094 ], [ -75.224153, 39.940698 ], [ -75.223546, 39.94018 ], [ -75.222944, 39.939674 ], [ -75.222755, 39.93951 ], [ -75.222619, 39.939402 ], [ -75.222549, 39.939354 ], [ -75.222462, 39.939302 ], [ -75.222377, 39.939248 ], [ -75.222326, 39.939212 ], [ -75.222257, 39.939164 ], [ -75.22206, 39.938993 ], [ -75.221648, 39.938642 ], [ -75.221532, 39.938544 ], [ -75.221494, 39.938503 ], [ -75.221451, 39.938449 ], [ -75.221407, 39.938399 ], [ -75.221331, 39.938331 ], [ -75.221142, 39.938176 ], [ -75.220755, 39.937857 ], [ -75.220255, 39.937441 ], [ -75.219704, 39.937827 ], [ -75.218881, 39.938396 ], [ -75.218448, 39.938707 ], [ -75.218041, 39.938995 ], [ -75.217503, 39.939355 ], [ -75.216923, 39.939765 ], [ -75.216859, 39.939809 ], [ -75.216372, 39.940151 ], [ -75.21577, 39.940574 ], [ -75.215125, 39.94105 ], [ -75.214696, 39.941354 ], [ -75.214342, 39.941587 ], [ -75.213886, 39.941922 ], [ -75.213326, 39.941461 ], [ -75.212715, 39.94094 ], [ -75.212619, 39.940859 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307711", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.23448, 39.996039 ], [ -75.23429, 39.99581 ], [ -75.23424, 39.995729 ], [ -75.234179, 39.995639 ], [ -75.234139, 39.995559 ], [ -75.23411, 39.995369 ], [ -75.23407, 39.995189 ], [ -75.233999, 39.994769 ], [ -75.234009, 39.994419 ], [ -75.23376, 39.99264 ], [ -75.23371, 39.99219 ], [ -75.233706, 39.99218 ], [ -75.233668, 39.991883 ], [ -75.23364, 39.991583 ], [ -75.233606, 39.991271 ], [ -75.233584, 39.99107 ], [ -75.233545, 39.99084 ], [ -75.233514, 39.990649 ], [ -75.233375, 39.990204 ], [ -75.233235, 39.989808 ], [ -75.233083, 39.989388 ], [ -75.232924, 39.988944 ], [ -75.232777, 39.988488 ], [ -75.232666, 39.988166 ], [ -75.232597, 39.987966 ], [ -75.232533, 39.987778 ], [ -75.232408, 39.987418 ], [ -75.232259, 39.986989 ], [ -75.232135, 39.986636 ], [ -75.232005, 39.986255 ], [ -75.231879, 39.985887 ], [ -75.23174, 39.985496 ], [ -75.231639, 39.985214 ], [ -75.231591, 39.985068 ], [ -75.231546, 39.984935 ], [ -75.231495, 39.984774 ], [ -75.231456, 39.984663 ], [ -75.231265, 39.984103 ], [ -75.231083, 39.983573 ], [ -75.230728, 39.982523 ], [ -75.230634, 39.982347 ], [ -75.230392, 39.981972 ], [ -75.230088, 39.981545 ], [ -75.229965, 39.981367 ], [ -75.229845, 39.98119 ], [ -75.229798, 39.981137 ], [ -75.229762, 39.981103 ], [ -75.229699, 39.981058 ], [ -75.229654, 39.981033 ], [ -75.229475, 39.980959 ], [ -75.22883, 39.980725 ], [ -75.22857, 39.980625 ], [ -75.228151, 39.980464 ], [ -75.227702, 39.980303 ], [ -75.22719, 39.980117 ], [ -75.226711, 39.979938 ], [ -75.225355, 39.979442 ], [ -75.225576, 39.979094 ], [ -75.226001, 39.978427 ], [ -75.226231, 39.97809 ], [ -75.226322, 39.977948 ], [ -75.226333, 39.977928 ], [ -75.226443, 39.97772 ], [ -75.226579, 39.977512 ], [ -75.226685, 39.977354 ], [ -75.226787, 39.977202 ], [ -75.226802, 39.97716 ], [ -75.226824, 39.977087 ], [ -75.226834, 39.977002 ], [ -75.226833, 39.976955 ], [ -75.226818, 39.976824 ], [ -75.226805, 39.976756 ], [ -75.22679, 39.976648 ], [ -75.226777, 39.976549 ], [ -75.22673, 39.976203 ], [ -75.226716, 39.976116 ], [ -75.226658, 39.97575 ], [ -75.226478, 39.974796 ], [ -75.226449, 39.974664 ], [ -75.226355, 39.974227 ], [ -75.226295, 39.973873 ], [ -75.226249, 39.973593 ], [ -75.226205, 39.973362 ], [ -75.226129, 39.972953 ], [ -75.226063, 39.972596 ], [ -75.226008, 39.972294 ], [ -75.225993, 39.972184 ], [ -75.225952, 39.971982 ], [ -75.225839, 39.971419 ], [ -75.225725, 39.970917 ], [ -75.225625, 39.970479 ], [ -75.225521, 39.970047 ], [ -75.225487, 39.969905 ], [ -75.225392, 39.969511 ], [ -75.225324, 39.969159 ], [ -75.225294, 39.969006 ], [ -75.225231, 39.968676 ], [ -75.225207, 39.96855 ], [ -75.22513, 39.968119 ], [ -75.225073, 39.967766 ], [ -75.225048, 39.967608 ], [ -75.224983, 39.967135 ], [ -75.224967, 39.967018 ], [ -75.224909, 39.966615 ], [ -75.224837, 39.966235 ], [ -75.224767, 39.965787 ], [ -75.224719, 39.965484 ], [ -75.224679, 39.96523 ], [ -75.224633, 39.965022 ], [ -75.224609, 39.964895 ], [ -75.22458, 39.964745 ], [ -75.224519, 39.964477 ], [ -75.22433, 39.963633 ], [ -75.224248, 39.9632 ], [ -75.224243, 39.963132 ], [ -75.224246, 39.963066 ], [ -75.224268, 39.962931 ], [ -75.224322, 39.962684 ], [ -75.224473, 39.961975 ], [ -75.224561, 39.961569 ], [ -75.224734, 39.960806 ], [ -75.224868, 39.960083 ], [ -75.224874, 39.960045 ], [ -75.224888, 39.960009 ], [ -75.224921, 39.959975 ], [ -75.224941, 39.959933 ], [ -75.225032, 39.959454 ], [ -75.225076, 39.959199 ], [ -75.225113, 39.959013 ], [ -75.225138, 39.958877 ], [ -75.225214, 39.958467 ], [ -75.225347, 39.957695 ], [ -75.225512, 39.956955 ], [ -75.225603, 39.95657 ], [ -75.225651, 39.956365 ], [ -75.225686, 39.956193 ], [ -75.225766, 39.955814 ], [ -75.22584, 39.955447 ], [ -75.22589, 39.955203 ], [ -75.225934, 39.954987 ], [ -75.226017, 39.954583 ], [ -75.226098, 39.954212 ], [ -75.226135, 39.954048 ], [ -75.226166, 39.953902 ], [ -75.226248, 39.95353 ], [ -75.226317, 39.953181 ], [ -75.226357, 39.95298 ], [ -75.226452, 39.952512 ], [ -75.226479, 39.952378 ], [ -75.226553, 39.951994 ], [ -75.226624, 39.951659 ], [ -75.226663, 39.951477 ], [ -75.226705, 39.951265 ], [ -75.226753, 39.951007 ], [ -75.226789, 39.950834 ], [ -75.226869, 39.950462 ], [ -75.226948, 39.950099 ], [ -75.227038, 39.949689 ], [ -75.22711, 39.949352 ], [ -75.227195, 39.948955 ], [ -75.227263, 39.948612 ], [ -75.227288, 39.94849 ], [ -75.227339, 39.948235 ], [ -75.22742, 39.947896 ], [ -75.227429, 39.947824 ], [ -75.227426, 39.947784 ], [ -75.227419, 39.947764 ], [ -75.227373, 39.947708 ], [ -75.22682, 39.947244 ], [ -75.228117, 39.946348 ], [ -75.22824, 39.946262 ], [ -75.228281, 39.946233 ], [ -75.228329, 39.946202 ], [ -75.228436, 39.946126 ], [ -75.228718, 39.945921 ], [ -75.229587, 39.945304 ], [ -75.229078, 39.944888 ], [ -75.228669, 39.944555 ], [ -75.228163, 39.944134 ], [ -75.227697, 39.943725 ], [ -75.227284, 39.943365 ], [ -75.226794, 39.942944 ], [ -75.226339, 39.942553 ], [ -75.225534, 39.941865 ], [ -75.225027, 39.941421 ], [ -75.224632, 39.941094 ], [ -75.224153, 39.940698 ], [ -75.223546, 39.94018 ], [ -75.222944, 39.939674 ], [ -75.222755, 39.93951 ], [ -75.222619, 39.939402 ], [ -75.222549, 39.939354 ], [ -75.222462, 39.939302 ], [ -75.222377, 39.939248 ], [ -75.222326, 39.939212 ], [ -75.222257, 39.939164 ], [ -75.22206, 39.938993 ], [ -75.221648, 39.938642 ], [ -75.221532, 39.938544 ], [ -75.221494, 39.938503 ], [ -75.221451, 39.938449 ], [ -75.221407, 39.938399 ], [ -75.221331, 39.938331 ], [ -75.221142, 39.938176 ], [ -75.220755, 39.937857 ], [ -75.220255, 39.937441 ], [ -75.219704, 39.937827 ], [ -75.218881, 39.938396 ], [ -75.218448, 39.938707 ], [ -75.218041, 39.938995 ], [ -75.217503, 39.939355 ], [ -75.216923, 39.939765 ], [ -75.216859, 39.939809 ], [ -75.216372, 39.940151 ], [ -75.21577, 39.940574 ], [ -75.215125, 39.94105 ], [ -75.214696, 39.941354 ], [ -75.214342, 39.941587 ], [ -75.213886, 39.941922 ], [ -75.213326, 39.941461 ], [ -75.212715, 39.94094 ], [ -75.212619, 39.940859 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307713", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.2138, 39.940029 ], [ -75.213864, 39.939971 ], [ -75.214552, 39.939499 ], [ -75.215116, 39.939101 ], [ -75.215614, 39.938749 ], [ -75.216251, 39.938303 ], [ -75.216754, 39.937948 ], [ -75.217193, 39.937644 ], [ -75.217626, 39.937343 ], [ -75.218069, 39.937028 ], [ -75.218989, 39.936383 ], [ -75.219612, 39.936904 ], [ -75.220255, 39.937441 ], [ -75.220755, 39.937857 ], [ -75.221142, 39.938176 ], [ -75.221331, 39.938331 ], [ -75.221407, 39.938399 ], [ -75.221451, 39.938449 ], [ -75.221494, 39.938503 ], [ -75.221532, 39.938544 ], [ -75.221648, 39.938642 ], [ -75.22206, 39.938993 ], [ -75.222257, 39.939164 ], [ -75.222326, 39.939212 ], [ -75.222377, 39.939248 ], [ -75.222462, 39.939302 ], [ -75.222549, 39.939354 ], [ -75.222619, 39.939402 ], [ -75.222755, 39.93951 ], [ -75.222944, 39.939674 ], [ -75.223546, 39.94018 ], [ -75.224153, 39.940698 ], [ -75.224632, 39.941094 ], [ -75.225027, 39.941421 ], [ -75.225534, 39.941865 ], [ -75.226339, 39.942553 ], [ -75.226794, 39.942944 ], [ -75.227284, 39.943365 ], [ -75.227697, 39.943725 ], [ -75.228163, 39.944134 ], [ -75.228669, 39.944555 ], [ -75.229078, 39.944888 ], [ -75.229587, 39.945304 ], [ -75.228718, 39.945921 ], [ -75.228436, 39.946126 ], [ -75.228329, 39.946202 ], [ -75.228281, 39.946233 ], [ -75.22824, 39.946262 ], [ -75.228117, 39.946348 ], [ -75.22682, 39.947244 ], [ -75.227373, 39.947708 ], [ -75.227419, 39.947764 ], [ -75.227426, 39.947784 ], [ -75.227429, 39.947824 ], [ -75.22742, 39.947896 ], [ -75.227339, 39.948235 ], [ -75.227288, 39.94849 ], [ -75.227263, 39.948612 ], [ -75.227195, 39.948955 ], [ -75.22711, 39.949352 ], [ -75.227038, 39.949689 ], [ -75.226948, 39.950099 ], [ -75.226869, 39.950462 ], [ -75.226789, 39.950834 ], [ -75.226753, 39.951007 ], [ -75.226705, 39.951265 ], [ -75.226663, 39.951477 ], [ -75.226624, 39.951659 ], [ -75.226553, 39.951994 ], [ -75.226479, 39.952378 ], [ -75.226452, 39.952512 ], [ -75.226357, 39.95298 ], [ -75.226317, 39.953181 ], [ -75.226248, 39.95353 ], [ -75.226166, 39.953902 ], [ -75.226135, 39.954048 ], [ -75.226098, 39.954212 ], [ -75.226017, 39.954583 ], [ -75.225934, 39.954987 ], [ -75.22589, 39.955203 ], [ -75.22584, 39.955447 ], [ -75.225766, 39.955814 ], [ -75.225686, 39.956193 ], [ -75.225651, 39.956365 ], [ -75.225603, 39.95657 ], [ -75.225512, 39.956955 ], [ -75.225347, 39.957695 ], [ -75.225214, 39.958467 ], [ -75.225138, 39.958877 ], [ -75.225113, 39.959013 ], [ -75.225076, 39.959199 ], [ -75.225032, 39.959454 ], [ -75.224941, 39.959933 ], [ -75.224921, 39.959975 ], [ -75.224888, 39.960009 ], [ -75.224874, 39.960045 ], [ -75.224868, 39.960083 ], [ -75.224734, 39.960806 ], [ -75.224561, 39.961569 ], [ -75.224473, 39.961975 ], [ -75.224322, 39.962684 ], [ -75.224268, 39.962931 ], [ -75.224246, 39.963066 ], [ -75.224243, 39.963132 ], [ -75.224248, 39.9632 ], [ -75.22433, 39.963633 ], [ -75.224519, 39.964477 ], [ -75.22458, 39.964745 ], [ -75.224609, 39.964895 ], [ -75.224633, 39.965022 ], [ -75.224679, 39.96523 ], [ -75.224719, 39.965484 ], [ -75.224767, 39.965787 ], [ -75.224837, 39.966235 ], [ -75.224909, 39.966615 ], [ -75.224967, 39.967018 ], [ -75.224983, 39.967135 ], [ -75.225048, 39.967608 ], [ -75.225073, 39.967766 ], [ -75.22513, 39.968119 ], [ -75.225207, 39.96855 ], [ -75.225231, 39.968676 ], [ -75.225294, 39.969006 ], [ -75.225324, 39.969159 ], [ -75.225392, 39.969511 ], [ -75.225487, 39.969905 ], [ -75.225521, 39.970047 ], [ -75.225625, 39.970479 ], [ -75.225725, 39.970917 ], [ -75.225839, 39.971419 ], [ -75.225952, 39.971982 ], [ -75.225993, 39.972184 ], [ -75.226008, 39.972294 ], [ -75.226063, 39.972596 ], [ -75.226129, 39.972953 ], [ -75.226205, 39.973362 ], [ -75.226249, 39.973593 ], [ -75.226295, 39.973873 ], [ -75.226355, 39.974227 ], [ -75.226449, 39.974664 ], [ -75.226478, 39.974796 ], [ -75.226658, 39.97575 ], [ -75.226716, 39.976116 ], [ -75.22673, 39.976203 ], [ -75.226777, 39.976549 ], [ -75.22679, 39.976648 ], [ -75.226805, 39.976756 ], [ -75.226818, 39.976824 ], [ -75.226833, 39.976955 ], [ -75.226834, 39.977002 ], [ -75.226824, 39.977087 ], [ -75.226802, 39.97716 ], [ -75.226787, 39.977202 ], [ -75.226685, 39.977354 ], [ -75.226579, 39.977512 ], [ -75.226443, 39.97772 ], [ -75.226333, 39.977928 ], [ -75.226322, 39.977948 ], [ -75.226231, 39.97809 ], [ -75.226001, 39.978427 ], [ -75.225576, 39.979094 ], [ -75.225355, 39.979442 ], [ -75.226711, 39.979938 ], [ -75.22719, 39.980117 ], [ -75.227702, 39.980303 ], [ -75.228151, 39.980464 ], [ -75.22857, 39.980625 ], [ -75.22883, 39.980725 ], [ -75.229475, 39.980959 ], [ -75.229654, 39.981033 ], [ -75.229699, 39.981058 ], [ -75.229762, 39.981103 ], [ -75.229798, 39.981137 ], [ -75.229845, 39.98119 ], [ -75.229965, 39.981367 ], [ -75.230088, 39.981545 ], [ -75.230392, 39.981972 ], [ -75.230634, 39.982347 ], [ -75.230728, 39.982523 ], [ -75.231083, 39.983573 ], [ -75.231265, 39.984103 ], [ -75.231456, 39.984663 ], [ -75.231495, 39.984774 ], [ -75.231546, 39.984935 ], [ -75.231591, 39.985068 ], [ -75.231639, 39.985214 ], [ -75.23174, 39.985496 ], [ -75.231879, 39.985887 ], [ -75.232005, 39.986255 ], [ -75.232135, 39.986636 ], [ -75.232259, 39.986989 ], [ -75.232408, 39.987418 ], [ -75.232533, 39.987778 ], [ -75.232597, 39.987966 ], [ -75.232666, 39.988166 ], [ -75.232777, 39.988488 ], [ -75.232924, 39.988944 ], [ -75.233083, 39.989388 ], [ -75.233235, 39.989808 ], [ -75.233375, 39.990204 ], [ -75.233514, 39.990649 ], [ -75.233545, 39.99084 ], [ -75.233584, 39.99107 ], [ -75.233606, 39.991271 ], [ -75.23364, 39.991583 ], [ -75.233668, 39.991883 ], [ -75.233706, 39.99218 ], [ -75.23371, 39.99219 ], [ -75.234319, 39.99191 ], [ -75.23515, 39.99192 ], [ -75.23618, 39.991949 ], [ -75.23708, 39.991969 ], [ -75.237509, 39.991979 ], [ -75.23781, 39.991979 ], [ -75.23903, 39.99201 ], [ -75.239169, 39.99201 ], [ -75.23951, 39.99202 ], [ -75.23964, 39.99202 ], [ -75.239799, 39.99203 ], [ -75.239899, 39.992049 ], [ -75.239989, 39.992079 ], [ -75.24006, 39.992129 ], [ -75.24011, 39.99218 ], [ -75.24023, 39.992329 ], [ -75.240429, 39.99258 ], [ -75.240799, 39.993049 ], [ -75.240879, 39.993149 ], [ -75.240939, 39.993229 ], [ -75.24119, 39.99354 ], [ -75.24123, 39.993589 ], [ -75.24136, 39.993759 ], [ -75.241599, 39.9941 ], [ -75.241119, 39.994329 ], [ -75.24055, 39.994599 ], [ -75.240069, 39.99482 ], [ -75.23984, 39.994929 ], [ -75.23952, 39.99508 ], [ -75.23915, 39.99525 ], [ -75.238959, 39.99534 ], [ -75.23853, 39.99554 ], [ -75.238459, 39.995579 ], [ -75.238189, 39.9957 ], [ -75.23789, 39.995839 ], [ -75.23768, 39.995949 ], [ -75.23732, 39.996119 ], [ -75.23717, 39.996189 ], [ -75.236919, 39.996309 ], [ -75.2366, 39.996459 ], [ -75.23641, 39.996549 ], [ -75.236209, 39.996639 ], [ -75.235949, 39.996749 ], [ -75.23555, 39.996939 ], [ -75.23529, 39.99706 ], [ -75.234999, 39.997189 ], [ -75.23466, 39.99735 ], [ -75.23434, 39.9975 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307714", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.222755, 39.93951 ], [ -75.222944, 39.939674 ], [ -75.223546, 39.94018 ], [ -75.224153, 39.940698 ], [ -75.224632, 39.941094 ], [ -75.225027, 39.941421 ], [ -75.225534, 39.941865 ], [ -75.226339, 39.942553 ], [ -75.226794, 39.942944 ], [ -75.227284, 39.943365 ], [ -75.227697, 39.943725 ], [ -75.228163, 39.944134 ], [ -75.228669, 39.944555 ], [ -75.229078, 39.944888 ], [ -75.229587, 39.945304 ], [ -75.228718, 39.945921 ], [ -75.228436, 39.946126 ], [ -75.228329, 39.946202 ], [ -75.228281, 39.946233 ], [ -75.22824, 39.946262 ], [ -75.228117, 39.946348 ], [ -75.22682, 39.947244 ], [ -75.227373, 39.947708 ], [ -75.227419, 39.947764 ], [ -75.227426, 39.947784 ], [ -75.227429, 39.947824 ], [ -75.22742, 39.947896 ], [ -75.227339, 39.948235 ], [ -75.227288, 39.94849 ], [ -75.227263, 39.948612 ], [ -75.227195, 39.948955 ], [ -75.22711, 39.949352 ], [ -75.227038, 39.949689 ], [ -75.226948, 39.950099 ], [ -75.226869, 39.950462 ], [ -75.226789, 39.950834 ], [ -75.226753, 39.951007 ], [ -75.226705, 39.951265 ], [ -75.226663, 39.951477 ], [ -75.226624, 39.951659 ], [ -75.226553, 39.951994 ], [ -75.226479, 39.952378 ], [ -75.226452, 39.952512 ], [ -75.226357, 39.95298 ], [ -75.226317, 39.953181 ], [ -75.226248, 39.95353 ], [ -75.226166, 39.953902 ], [ -75.226135, 39.954048 ], [ -75.226098, 39.954212 ], [ -75.226017, 39.954583 ], [ -75.225934, 39.954987 ], [ -75.22589, 39.955203 ], [ -75.22584, 39.955447 ], [ -75.225766, 39.955814 ], [ -75.225686, 39.956193 ], [ -75.225651, 39.956365 ], [ -75.225603, 39.95657 ], [ -75.225512, 39.956955 ], [ -75.225347, 39.957695 ], [ -75.225214, 39.958467 ], [ -75.225138, 39.958877 ], [ -75.225113, 39.959013 ], [ -75.225076, 39.959199 ], [ -75.225032, 39.959454 ], [ -75.224941, 39.959933 ], [ -75.224921, 39.959975 ], [ -75.224888, 39.960009 ], [ -75.224874, 39.960045 ], [ -75.224868, 39.960083 ], [ -75.224734, 39.960806 ], [ -75.224561, 39.961569 ], [ -75.224473, 39.961975 ], [ -75.224322, 39.962684 ], [ -75.224268, 39.962931 ], [ -75.224246, 39.963066 ], [ -75.224243, 39.963132 ], [ -75.224248, 39.9632 ], [ -75.22433, 39.963633 ], [ -75.224519, 39.964477 ], [ -75.22458, 39.964745 ], [ -75.224609, 39.964895 ], [ -75.224633, 39.965022 ], [ -75.224679, 39.96523 ], [ -75.224719, 39.965484 ], [ -75.224767, 39.965787 ], [ -75.224837, 39.966235 ], [ -75.224909, 39.966615 ], [ -75.224967, 39.967018 ], [ -75.224983, 39.967135 ], [ -75.225048, 39.967608 ], [ -75.225073, 39.967766 ], [ -75.22513, 39.968119 ], [ -75.225207, 39.96855 ], [ -75.225231, 39.968676 ], [ -75.225294, 39.969006 ], [ -75.225324, 39.969159 ], [ -75.225392, 39.969511 ], [ -75.225487, 39.969905 ], [ -75.225521, 39.970047 ], [ -75.225625, 39.970479 ], [ -75.225725, 39.970917 ], [ -75.225839, 39.971419 ], [ -75.225952, 39.971982 ], [ -75.225993, 39.972184 ], [ -75.226008, 39.972294 ], [ -75.226063, 39.972596 ], [ -75.226129, 39.972953 ], [ -75.226205, 39.973362 ], [ -75.226249, 39.973593 ], [ -75.226295, 39.973873 ], [ -75.226355, 39.974227 ], [ -75.226449, 39.974664 ], [ -75.226478, 39.974796 ], [ -75.226658, 39.97575 ], [ -75.226716, 39.976116 ], [ -75.22673, 39.976203 ], [ -75.226777, 39.976549 ], [ -75.22679, 39.976648 ], [ -75.226805, 39.976756 ], [ -75.226818, 39.976824 ], [ -75.226833, 39.976955 ], [ -75.226834, 39.977002 ], [ -75.226824, 39.977087 ], [ -75.226802, 39.97716 ], [ -75.226787, 39.977202 ], [ -75.226685, 39.977354 ], [ -75.226579, 39.977512 ], [ -75.226443, 39.97772 ], [ -75.226333, 39.977928 ], [ -75.226322, 39.977948 ], [ -75.226231, 39.97809 ], [ -75.226001, 39.978427 ], [ -75.225576, 39.979094 ], [ -75.225355, 39.979442 ], [ -75.225113, 39.979826 ], [ -75.225028, 39.97996 ], [ -75.224908, 39.98016 ], [ -75.224713, 39.980483 ], [ -75.224376, 39.981013 ], [ -75.224051, 39.981539 ], [ -75.223916, 39.981569 ], [ -75.223862, 39.981574 ], [ -75.223799, 39.98158 ], [ -75.223697, 39.981573 ], [ -75.223585, 39.981553 ], [ -75.22349, 39.981522 ], [ -75.223407, 39.981496 ], [ -75.223159, 39.9814 ], [ -75.222867, 39.981295 ], [ -75.222511, 39.981167 ], [ -75.222008, 39.980965 ], [ -75.221723, 39.980851 ], [ -75.221465, 39.980748 ], [ -75.221088, 39.980608 ], [ -75.22082, 39.980508 ], [ -75.220579, 39.980418 ], [ -75.219514, 39.980021 ], [ -75.219309, 39.979945 ], [ -75.219926, 39.978956 ], [ -75.220051, 39.978759 ], [ -75.220132, 39.978556 ], [ -75.219757, 39.978442 ], [ -75.219651, 39.978326 ], [ -75.219651, 39.978201 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307716", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.222755, 39.93951 ], [ -75.222944, 39.939674 ], [ -75.223546, 39.94018 ], [ -75.224153, 39.940698 ], [ -75.224632, 39.941094 ], [ -75.225027, 39.941421 ], [ -75.225534, 39.941865 ], [ -75.226339, 39.942553 ], [ -75.226794, 39.942944 ], [ -75.227284, 39.943365 ], [ -75.227697, 39.943725 ], [ -75.228163, 39.944134 ], [ -75.228669, 39.944555 ], [ -75.229078, 39.944888 ], [ -75.229587, 39.945304 ], [ -75.228718, 39.945921 ], [ -75.228436, 39.946126 ], [ -75.228329, 39.946202 ], [ -75.228281, 39.946233 ], [ -75.22824, 39.946262 ], [ -75.228117, 39.946348 ], [ -75.22682, 39.947244 ], [ -75.227373, 39.947708 ], [ -75.227419, 39.947764 ], [ -75.227426, 39.947784 ], [ -75.227429, 39.947824 ], [ -75.22742, 39.947896 ], [ -75.227339, 39.948235 ], [ -75.227288, 39.94849 ], [ -75.227263, 39.948612 ], [ -75.227195, 39.948955 ], [ -75.22711, 39.949352 ], [ -75.227038, 39.949689 ], [ -75.226948, 39.950099 ], [ -75.226869, 39.950462 ], [ -75.226789, 39.950834 ], [ -75.226753, 39.951007 ], [ -75.226705, 39.951265 ], [ -75.226663, 39.951477 ], [ -75.226624, 39.951659 ], [ -75.226553, 39.951994 ], [ -75.226479, 39.952378 ], [ -75.226452, 39.952512 ], [ -75.226357, 39.95298 ], [ -75.226317, 39.953181 ], [ -75.226248, 39.95353 ], [ -75.226166, 39.953902 ], [ -75.226135, 39.954048 ], [ -75.226098, 39.954212 ], [ -75.226017, 39.954583 ], [ -75.225934, 39.954987 ], [ -75.22589, 39.955203 ], [ -75.22584, 39.955447 ], [ -75.225766, 39.955814 ], [ -75.225686, 39.956193 ], [ -75.225651, 39.956365 ], [ -75.225603, 39.95657 ], [ -75.225512, 39.956955 ], [ -75.225347, 39.957695 ], [ -75.225214, 39.958467 ], [ -75.225138, 39.958877 ], [ -75.225113, 39.959013 ], [ -75.225076, 39.959199 ], [ -75.225032, 39.959454 ], [ -75.224941, 39.959933 ], [ -75.224921, 39.959975 ], [ -75.224888, 39.960009 ], [ -75.224874, 39.960045 ], [ -75.224868, 39.960083 ], [ -75.224734, 39.960806 ], [ -75.224561, 39.961569 ], [ -75.224473, 39.961975 ], [ -75.224322, 39.962684 ], [ -75.224268, 39.962931 ], [ -75.224246, 39.963066 ], [ -75.224243, 39.963132 ], [ -75.224248, 39.9632 ], [ -75.22433, 39.963633 ], [ -75.224519, 39.964477 ], [ -75.22458, 39.964745 ], [ -75.224609, 39.964895 ], [ -75.224633, 39.965022 ], [ -75.224679, 39.96523 ], [ -75.224719, 39.965484 ], [ -75.224767, 39.965787 ], [ -75.224837, 39.966235 ], [ -75.224909, 39.966615 ], [ -75.224967, 39.967018 ], [ -75.224983, 39.967135 ], [ -75.225048, 39.967608 ], [ -75.225073, 39.967766 ], [ -75.22513, 39.968119 ], [ -75.225207, 39.96855 ], [ -75.225231, 39.968676 ], [ -75.225294, 39.969006 ], [ -75.225324, 39.969159 ], [ -75.225392, 39.969511 ], [ -75.225487, 39.969905 ], [ -75.225521, 39.970047 ], [ -75.225625, 39.970479 ], [ -75.225725, 39.970917 ], [ -75.225839, 39.971419 ], [ -75.225952, 39.971982 ], [ -75.225993, 39.972184 ], [ -75.226008, 39.972294 ], [ -75.226063, 39.972596 ], [ -75.226129, 39.972953 ], [ -75.226205, 39.973362 ], [ -75.226249, 39.973593 ], [ -75.226295, 39.973873 ], [ -75.226355, 39.974227 ], [ -75.226449, 39.974664 ], [ -75.226478, 39.974796 ], [ -75.226658, 39.97575 ], [ -75.226716, 39.976116 ], [ -75.22673, 39.976203 ], [ -75.226777, 39.976549 ], [ -75.22679, 39.976648 ], [ -75.226805, 39.976756 ], [ -75.226818, 39.976824 ], [ -75.226833, 39.976955 ], [ -75.226834, 39.977002 ], [ -75.226824, 39.977087 ], [ -75.226802, 39.97716 ], [ -75.226787, 39.977202 ], [ -75.226685, 39.977354 ], [ -75.226579, 39.977512 ], [ -75.226443, 39.97772 ], [ -75.226333, 39.977928 ], [ -75.226322, 39.977948 ], [ -75.226231, 39.97809 ], [ -75.226001, 39.978427 ], [ -75.225576, 39.979094 ], [ -75.225355, 39.979442 ], [ -75.226711, 39.979938 ], [ -75.22719, 39.980117 ], [ -75.227702, 39.980303 ], [ -75.228151, 39.980464 ], [ -75.22857, 39.980625 ], [ -75.22883, 39.980725 ], [ -75.229475, 39.980959 ], [ -75.229654, 39.981033 ], [ -75.229699, 39.981058 ], [ -75.229762, 39.981103 ], [ -75.229798, 39.981137 ], [ -75.229845, 39.98119 ], [ -75.229965, 39.981367 ], [ -75.230088, 39.981545 ], [ -75.230392, 39.981972 ], [ -75.230634, 39.982347 ], [ -75.230728, 39.982523 ], [ -75.231083, 39.983573 ], [ -75.231265, 39.984103 ], [ -75.231456, 39.984663 ], [ -75.231495, 39.984774 ], [ -75.231546, 39.984935 ], [ -75.231591, 39.985068 ], [ -75.231639, 39.985214 ], [ -75.23174, 39.985496 ], [ -75.231879, 39.985887 ], [ -75.232005, 39.986255 ], [ -75.232135, 39.986636 ], [ -75.232259, 39.986989 ], [ -75.232408, 39.987418 ], [ -75.232533, 39.987778 ], [ -75.232597, 39.987966 ], [ -75.232666, 39.988166 ], [ -75.232777, 39.988488 ], [ -75.232924, 39.988944 ], [ -75.233083, 39.989388 ], [ -75.233235, 39.989808 ], [ -75.233375, 39.990204 ], [ -75.233514, 39.990649 ], [ -75.233545, 39.99084 ], [ -75.233584, 39.99107 ], [ -75.233606, 39.991271 ], [ -75.23364, 39.991583 ], [ -75.233668, 39.991883 ], [ -75.233706, 39.99218 ], [ -75.23371, 39.99219 ], [ -75.234319, 39.99191 ], [ -75.23515, 39.99192 ], [ -75.23618, 39.991949 ], [ -75.23708, 39.991969 ], [ -75.237509, 39.991979 ], [ -75.23781, 39.991979 ], [ -75.23903, 39.99201 ], [ -75.239169, 39.99201 ], [ -75.23951, 39.99202 ], [ -75.23964, 39.99202 ], [ -75.239799, 39.99203 ], [ -75.239899, 39.992049 ], [ -75.239989, 39.992079 ], [ -75.24006, 39.992129 ], [ -75.24011, 39.99218 ], [ -75.24023, 39.992329 ], [ -75.240429, 39.99258 ], [ -75.240799, 39.993049 ], [ -75.240879, 39.993149 ], [ -75.240939, 39.993229 ], [ -75.24119, 39.99354 ], [ -75.24123, 39.993589 ], [ -75.24136, 39.993759 ], [ -75.241599, 39.9941 ], [ -75.241119, 39.994329 ], [ -75.24055, 39.994599 ], [ -75.240069, 39.99482 ], [ -75.23984, 39.994929 ], [ -75.23952, 39.99508 ], [ -75.23915, 39.99525 ], [ -75.238959, 39.99534 ], [ -75.23853, 39.99554 ], [ -75.238459, 39.995579 ], [ -75.238189, 39.9957 ], [ -75.23789, 39.995839 ], [ -75.23768, 39.995949 ], [ -75.23732, 39.996119 ], [ -75.23717, 39.996189 ], [ -75.236919, 39.996309 ], [ -75.2366, 39.996459 ], [ -75.23641, 39.996549 ], [ -75.236209, 39.996639 ], [ -75.235949, 39.996749 ], [ -75.23555, 39.996939 ], [ -75.23529, 39.99706 ], [ -75.235179, 39.996939 ], [ -75.234989, 39.99671 ], [ -75.23483, 39.99651 ], [ -75.23475, 39.996359 ], [ -75.23448, 39.996039 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307719", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.2138, 39.940029 ], [ -75.213864, 39.939971 ], [ -75.214552, 39.939499 ], [ -75.215116, 39.939101 ], [ -75.215614, 39.938749 ], [ -75.216251, 39.938303 ], [ -75.216754, 39.937948 ], [ -75.217193, 39.937644 ], [ -75.217626, 39.937343 ], [ -75.218069, 39.937028 ], [ -75.218989, 39.936383 ], [ -75.219612, 39.936904 ], [ -75.220255, 39.937441 ], [ -75.220755, 39.937857 ], [ -75.221142, 39.938176 ], [ -75.221331, 39.938331 ], [ -75.221407, 39.938399 ], [ -75.221451, 39.938449 ], [ -75.221494, 39.938503 ], [ -75.221532, 39.938544 ], [ -75.221648, 39.938642 ], [ -75.22206, 39.938993 ], [ -75.222257, 39.939164 ], [ -75.222326, 39.939212 ], [ -75.222377, 39.939248 ], [ -75.222462, 39.939302 ], [ -75.222549, 39.939354 ], [ -75.222619, 39.939402 ], [ -75.222755, 39.93951 ], [ -75.222944, 39.939674 ], [ -75.223546, 39.94018 ], [ -75.224153, 39.940698 ], [ -75.224632, 39.941094 ], [ -75.225027, 39.941421 ], [ -75.225534, 39.941865 ], [ -75.226339, 39.942553 ], [ -75.226794, 39.942944 ], [ -75.227284, 39.943365 ], [ -75.227697, 39.943725 ], [ -75.228163, 39.944134 ], [ -75.228669, 39.944555 ], [ -75.229078, 39.944888 ], [ -75.229587, 39.945304 ], [ -75.228718, 39.945921 ], [ -75.228436, 39.946126 ], [ -75.228329, 39.946202 ], [ -75.228281, 39.946233 ], [ -75.22824, 39.946262 ], [ -75.228117, 39.946348 ], [ -75.22682, 39.947244 ], [ -75.227373, 39.947708 ], [ -75.227419, 39.947764 ], [ -75.227426, 39.947784 ], [ -75.227429, 39.947824 ], [ -75.22742, 39.947896 ], [ -75.227339, 39.948235 ], [ -75.227288, 39.94849 ], [ -75.227263, 39.948612 ], [ -75.227195, 39.948955 ], [ -75.22711, 39.949352 ], [ -75.227038, 39.949689 ], [ -75.226948, 39.950099 ], [ -75.226869, 39.950462 ], [ -75.226789, 39.950834 ], [ -75.226753, 39.951007 ], [ -75.226705, 39.951265 ], [ -75.226663, 39.951477 ], [ -75.226624, 39.951659 ], [ -75.226553, 39.951994 ], [ -75.226479, 39.952378 ], [ -75.226452, 39.952512 ], [ -75.226357, 39.95298 ], [ -75.226317, 39.953181 ], [ -75.226248, 39.95353 ], [ -75.226166, 39.953902 ], [ -75.226135, 39.954048 ], [ -75.226098, 39.954212 ], [ -75.226017, 39.954583 ], [ -75.225934, 39.954987 ], [ -75.22589, 39.955203 ], [ -75.22584, 39.955447 ], [ -75.225766, 39.955814 ], [ -75.225686, 39.956193 ], [ -75.225651, 39.956365 ], [ -75.225603, 39.95657 ], [ -75.225512, 39.956955 ], [ -75.225347, 39.957695 ], [ -75.225214, 39.958467 ], [ -75.225138, 39.958877 ], [ -75.225113, 39.959013 ], [ -75.225076, 39.959199 ], [ -75.225032, 39.959454 ], [ -75.224941, 39.959933 ], [ -75.224921, 39.959975 ], [ -75.224888, 39.960009 ], [ -75.224874, 39.960045 ], [ -75.224868, 39.960083 ], [ -75.224734, 39.960806 ], [ -75.224561, 39.961569 ], [ -75.224473, 39.961975 ], [ -75.224322, 39.962684 ], [ -75.224268, 39.962931 ], [ -75.224246, 39.963066 ], [ -75.224243, 39.963132 ], [ -75.224248, 39.9632 ], [ -75.22433, 39.963633 ], [ -75.224519, 39.964477 ], [ -75.22458, 39.964745 ], [ -75.224609, 39.964895 ], [ -75.224633, 39.965022 ], [ -75.224679, 39.96523 ], [ -75.224719, 39.965484 ], [ -75.224767, 39.965787 ], [ -75.224837, 39.966235 ], [ -75.224909, 39.966615 ], [ -75.224967, 39.967018 ], [ -75.224983, 39.967135 ], [ -75.225048, 39.967608 ], [ -75.225073, 39.967766 ], [ -75.22513, 39.968119 ], [ -75.225207, 39.96855 ], [ -75.225231, 39.968676 ], [ -75.225294, 39.969006 ], [ -75.225324, 39.969159 ], [ -75.225392, 39.969511 ], [ -75.225487, 39.969905 ], [ -75.225521, 39.970047 ], [ -75.225625, 39.970479 ], [ -75.225725, 39.970917 ], [ -75.225839, 39.971419 ], [ -75.225952, 39.971982 ], [ -75.225993, 39.972184 ], [ -75.226008, 39.972294 ], [ -75.226063, 39.972596 ], [ -75.226129, 39.972953 ], [ -75.226205, 39.973362 ], [ -75.226249, 39.973593 ], [ -75.226295, 39.973873 ], [ -75.226355, 39.974227 ], [ -75.226449, 39.974664 ], [ -75.226478, 39.974796 ], [ -75.226658, 39.97575 ], [ -75.226716, 39.976116 ], [ -75.22673, 39.976203 ], [ -75.226777, 39.976549 ], [ -75.22679, 39.976648 ], [ -75.226805, 39.976756 ], [ -75.226818, 39.976824 ], [ -75.226833, 39.976955 ], [ -75.226834, 39.977002 ], [ -75.226824, 39.977087 ], [ -75.226802, 39.97716 ], [ -75.226787, 39.977202 ], [ -75.226685, 39.977354 ], [ -75.226579, 39.977512 ], [ -75.226443, 39.97772 ], [ -75.226333, 39.977928 ], [ -75.226322, 39.977948 ], [ -75.226231, 39.97809 ], [ -75.226001, 39.978427 ], [ -75.225576, 39.979094 ], [ -75.225355, 39.979442 ], [ -75.225113, 39.979826 ], [ -75.225028, 39.97996 ], [ -75.224908, 39.98016 ], [ -75.224713, 39.980483 ], [ -75.224376, 39.981013 ], [ -75.224051, 39.981539 ], [ -75.223916, 39.981569 ], [ -75.223862, 39.981574 ], [ -75.223799, 39.98158 ], [ -75.223697, 39.981573 ], [ -75.223585, 39.981553 ], [ -75.22349, 39.981522 ], [ -75.223407, 39.981496 ], [ -75.223159, 39.9814 ], [ -75.222867, 39.981295 ], [ -75.222511, 39.981167 ], [ -75.222008, 39.980965 ], [ -75.221723, 39.980851 ], [ -75.221465, 39.980748 ], [ -75.221088, 39.980608 ], [ -75.22082, 39.980508 ], [ -75.220579, 39.980418 ], [ -75.219514, 39.980021 ], [ -75.219309, 39.979945 ], [ -75.219926, 39.978956 ], [ -75.220051, 39.978759 ], [ -75.220132, 39.978556 ], [ -75.219757, 39.978442 ], [ -75.219651, 39.978326 ], [ -75.219651, 39.978201 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307722", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.2138, 39.940029 ], [ -75.213864, 39.939971 ], [ -75.214552, 39.939499 ], [ -75.215116, 39.939101 ], [ -75.215614, 39.938749 ], [ -75.216251, 39.938303 ], [ -75.216754, 39.937948 ], [ -75.217193, 39.937644 ], [ -75.217626, 39.937343 ], [ -75.218069, 39.937028 ], [ -75.218989, 39.936383 ], [ -75.219612, 39.936904 ], [ -75.220255, 39.937441 ], [ -75.220755, 39.937857 ], [ -75.221142, 39.938176 ], [ -75.221331, 39.938331 ], [ -75.221407, 39.938399 ], [ -75.221451, 39.938449 ], [ -75.221494, 39.938503 ], [ -75.221532, 39.938544 ], [ -75.221648, 39.938642 ], [ -75.22206, 39.938993 ], [ -75.222257, 39.939164 ], [ -75.222326, 39.939212 ], [ -75.222377, 39.939248 ], [ -75.222462, 39.939302 ], [ -75.222549, 39.939354 ], [ -75.222619, 39.939402 ], [ -75.222755, 39.93951 ], [ -75.222944, 39.939674 ], [ -75.223546, 39.94018 ], [ -75.224153, 39.940698 ], [ -75.224632, 39.941094 ], [ -75.225027, 39.941421 ], [ -75.225534, 39.941865 ], [ -75.226339, 39.942553 ], [ -75.226794, 39.942944 ], [ -75.227284, 39.943365 ], [ -75.227697, 39.943725 ], [ -75.228163, 39.944134 ], [ -75.228669, 39.944555 ], [ -75.229078, 39.944888 ], [ -75.229587, 39.945304 ], [ -75.228718, 39.945921 ], [ -75.228436, 39.946126 ], [ -75.228329, 39.946202 ], [ -75.228281, 39.946233 ], [ -75.22824, 39.946262 ], [ -75.228117, 39.946348 ], [ -75.22682, 39.947244 ], [ -75.227373, 39.947708 ], [ -75.227419, 39.947764 ], [ -75.227426, 39.947784 ], [ -75.227429, 39.947824 ], [ -75.22742, 39.947896 ], [ -75.227339, 39.948235 ], [ -75.227288, 39.94849 ], [ -75.227263, 39.948612 ], [ -75.227195, 39.948955 ], [ -75.22711, 39.949352 ], [ -75.227038, 39.949689 ], [ -75.226948, 39.950099 ], [ -75.226869, 39.950462 ], [ -75.226789, 39.950834 ], [ -75.226753, 39.951007 ], [ -75.226705, 39.951265 ], [ -75.226663, 39.951477 ], [ -75.226624, 39.951659 ], [ -75.226553, 39.951994 ], [ -75.226479, 39.952378 ], [ -75.226452, 39.952512 ], [ -75.226357, 39.95298 ], [ -75.226317, 39.953181 ], [ -75.226248, 39.95353 ], [ -75.226166, 39.953902 ], [ -75.226135, 39.954048 ], [ -75.226098, 39.954212 ], [ -75.226017, 39.954583 ], [ -75.225934, 39.954987 ], [ -75.22589, 39.955203 ], [ -75.22584, 39.955447 ], [ -75.225766, 39.955814 ], [ -75.225686, 39.956193 ], [ -75.225651, 39.956365 ], [ -75.225603, 39.95657 ], [ -75.225512, 39.956955 ], [ -75.225347, 39.957695 ], [ -75.225214, 39.958467 ], [ -75.225138, 39.958877 ], [ -75.225113, 39.959013 ], [ -75.225076, 39.959199 ], [ -75.225032, 39.959454 ], [ -75.224941, 39.959933 ], [ -75.224921, 39.959975 ], [ -75.224888, 39.960009 ], [ -75.224874, 39.960045 ], [ -75.224868, 39.960083 ], [ -75.224734, 39.960806 ], [ -75.224561, 39.961569 ], [ -75.224473, 39.961975 ], [ -75.224322, 39.962684 ], [ -75.224268, 39.962931 ], [ -75.224246, 39.963066 ], [ -75.224243, 39.963132 ], [ -75.224248, 39.9632 ], [ -75.22433, 39.963633 ], [ -75.224519, 39.964477 ], [ -75.22458, 39.964745 ], [ -75.224609, 39.964895 ], [ -75.224633, 39.965022 ], [ -75.224679, 39.96523 ], [ -75.224719, 39.965484 ], [ -75.224767, 39.965787 ], [ -75.224837, 39.966235 ], [ -75.224909, 39.966615 ], [ -75.224967, 39.967018 ], [ -75.224983, 39.967135 ], [ -75.225048, 39.967608 ], [ -75.225073, 39.967766 ], [ -75.22513, 39.968119 ], [ -75.225207, 39.96855 ], [ -75.225231, 39.968676 ], [ -75.225294, 39.969006 ], [ -75.225324, 39.969159 ], [ -75.225392, 39.969511 ], [ -75.225487, 39.969905 ], [ -75.225521, 39.970047 ], [ -75.225625, 39.970479 ], [ -75.225725, 39.970917 ], [ -75.225839, 39.971419 ], [ -75.225952, 39.971982 ], [ -75.225993, 39.972184 ], [ -75.226008, 39.972294 ], [ -75.226063, 39.972596 ], [ -75.226129, 39.972953 ], [ -75.226205, 39.973362 ], [ -75.226249, 39.973593 ], [ -75.226295, 39.973873 ], [ -75.226355, 39.974227 ], [ -75.226449, 39.974664 ], [ -75.226478, 39.974796 ], [ -75.226658, 39.97575 ], [ -75.226716, 39.976116 ], [ -75.22673, 39.976203 ], [ -75.226777, 39.976549 ], [ -75.22679, 39.976648 ], [ -75.226805, 39.976756 ], [ -75.226818, 39.976824 ], [ -75.226833, 39.976955 ], [ -75.226834, 39.977002 ], [ -75.226824, 39.977087 ], [ -75.226802, 39.97716 ], [ -75.226787, 39.977202 ], [ -75.226685, 39.977354 ], [ -75.226579, 39.977512 ], [ -75.226443, 39.97772 ], [ -75.226333, 39.977928 ], [ -75.226322, 39.977948 ], [ -75.226231, 39.97809 ], [ -75.226001, 39.978427 ], [ -75.225576, 39.979094 ], [ -75.225355, 39.979442 ], [ -75.224522, 39.979112 ], [ -75.224477, 39.979095 ], [ -75.224442, 39.979094 ], [ -75.224338, 39.979072 ], [ -75.223829, 39.979043 ], [ -75.223363, 39.978957 ], [ -75.222706, 39.978758 ], [ -75.22253, 39.979062 ], [ -75.223639, 39.979458 ], [ -75.22401, 39.97959 ], [ -75.224219, 39.979269 ], [ -75.224338, 39.979072 ], [ -75.224442, 39.979094 ], [ -75.224477, 39.979095 ], [ -75.224522, 39.979112 ], [ -75.225355, 39.979442 ], [ -75.226711, 39.979938 ], [ -75.22719, 39.980117 ], [ -75.227702, 39.980303 ], [ -75.228151, 39.980464 ], [ -75.22857, 39.980625 ], [ -75.22883, 39.980725 ], [ -75.229475, 39.980959 ], [ -75.229654, 39.981033 ], [ -75.229699, 39.981058 ], [ -75.229762, 39.981103 ], [ -75.229798, 39.981137 ], [ -75.229845, 39.98119 ], [ -75.229965, 39.981367 ], [ -75.230088, 39.981545 ], [ -75.230392, 39.981972 ], [ -75.230634, 39.982347 ], [ -75.230728, 39.982523 ], [ -75.231083, 39.983573 ], [ -75.231265, 39.984103 ], [ -75.231456, 39.984663 ], [ -75.231495, 39.984774 ], [ -75.231546, 39.984935 ], [ -75.231591, 39.985068 ], [ -75.231639, 39.985214 ], [ -75.23174, 39.985496 ], [ -75.231879, 39.985887 ], [ -75.232005, 39.986255 ], [ -75.232135, 39.986636 ], [ -75.232259, 39.986989 ], [ -75.232408, 39.987418 ], [ -75.232533, 39.987778 ], [ -75.232597, 39.987966 ], [ -75.232666, 39.988166 ], [ -75.232777, 39.988488 ], [ -75.232924, 39.988944 ], [ -75.233083, 39.989388 ], [ -75.233235, 39.989808 ], [ -75.233375, 39.990204 ], [ -75.233514, 39.990649 ], [ -75.233545, 39.99084 ], [ -75.233584, 39.99107 ], [ -75.233606, 39.991271 ], [ -75.23364, 39.991583 ], [ -75.233668, 39.991883 ], [ -75.233706, 39.99218 ], [ -75.23371, 39.99219 ], [ -75.234319, 39.99191 ], [ -75.23515, 39.99192 ], [ -75.23618, 39.991949 ], [ -75.23708, 39.991969 ], [ -75.237509, 39.991979 ], [ -75.23781, 39.991979 ], [ -75.23903, 39.99201 ], [ -75.239169, 39.99201 ], [ -75.23951, 39.99202 ], [ -75.23964, 39.99202 ], [ -75.239799, 39.99203 ], [ -75.239899, 39.992049 ], [ -75.239989, 39.992079 ], [ -75.24006, 39.992129 ], [ -75.24011, 39.99218 ], [ -75.24023, 39.992329 ], [ -75.240429, 39.99258 ], [ -75.240799, 39.993049 ], [ -75.240879, 39.993149 ], [ -75.240939, 39.993229 ], [ -75.24119, 39.99354 ], [ -75.24123, 39.993589 ], [ -75.24136, 39.993759 ], [ -75.241599, 39.9941 ], [ -75.241119, 39.994329 ], [ -75.24055, 39.994599 ], [ -75.240069, 39.99482 ], [ -75.23984, 39.994929 ], [ -75.23952, 39.99508 ], [ -75.23915, 39.99525 ], [ -75.238959, 39.99534 ], [ -75.23853, 39.99554 ], [ -75.238459, 39.995579 ], [ -75.238189, 39.9957 ], [ -75.23789, 39.995839 ], [ -75.23768, 39.995949 ], [ -75.23732, 39.996119 ], [ -75.23717, 39.996189 ], [ -75.236919, 39.996309 ], [ -75.2366, 39.996459 ], [ -75.23641, 39.996549 ], [ -75.236209, 39.996639 ], [ -75.235949, 39.996749 ], [ -75.23555, 39.996939 ], [ -75.23529, 39.99706 ], [ -75.235179, 39.996939 ], [ -75.234989, 39.99671 ], [ -75.23483, 39.99651 ], [ -75.23475, 39.996359 ], [ -75.23448, 39.996039 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307723", "route_id": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.2138, 39.940029 ], [ -75.213864, 39.939971 ], [ -75.214552, 39.939499 ], [ -75.215116, 39.939101 ], [ -75.215614, 39.938749 ], [ -75.216251, 39.938303 ], [ -75.216754, 39.937948 ], [ -75.217193, 39.937644 ], [ -75.217626, 39.937343 ], [ -75.218069, 39.937028 ], [ -75.218989, 39.936383 ], [ -75.219612, 39.936904 ], [ -75.220255, 39.937441 ], [ -75.220755, 39.937857 ], [ -75.221142, 39.938176 ], [ -75.221331, 39.938331 ], [ -75.221407, 39.938399 ], [ -75.221451, 39.938449 ], [ -75.221494, 39.938503 ], [ -75.221532, 39.938544 ], [ -75.221648, 39.938642 ], [ -75.22206, 39.938993 ], [ -75.222257, 39.939164 ], [ -75.222326, 39.939212 ], [ -75.222377, 39.939248 ], [ -75.222462, 39.939302 ], [ -75.222549, 39.939354 ], [ -75.222619, 39.939402 ], [ -75.222755, 39.93951 ], [ -75.222944, 39.939674 ], [ -75.223546, 39.94018 ], [ -75.224153, 39.940698 ], [ -75.224632, 39.941094 ], [ -75.225027, 39.941421 ], [ -75.225534, 39.941865 ], [ -75.226339, 39.942553 ], [ -75.226794, 39.942944 ], [ -75.227284, 39.943365 ], [ -75.227697, 39.943725 ], [ -75.228163, 39.944134 ], [ -75.228669, 39.944555 ], [ -75.229078, 39.944888 ], [ -75.229587, 39.945304 ], [ -75.228718, 39.945921 ], [ -75.228436, 39.946126 ], [ -75.228329, 39.946202 ], [ -75.228281, 39.946233 ], [ -75.22824, 39.946262 ], [ -75.228117, 39.946348 ], [ -75.22682, 39.947244 ], [ -75.227373, 39.947708 ], [ -75.227419, 39.947764 ], [ -75.227426, 39.947784 ], [ -75.227429, 39.947824 ], [ -75.22742, 39.947896 ], [ -75.227339, 39.948235 ], [ -75.227288, 39.94849 ], [ -75.227263, 39.948612 ], [ -75.227195, 39.948955 ], [ -75.22711, 39.949352 ], [ -75.227038, 39.949689 ], [ -75.226948, 39.950099 ], [ -75.226869, 39.950462 ], [ -75.226789, 39.950834 ], [ -75.226753, 39.951007 ], [ -75.226705, 39.951265 ], [ -75.226663, 39.951477 ], [ -75.226624, 39.951659 ], [ -75.226553, 39.951994 ], [ -75.226479, 39.952378 ], [ -75.226452, 39.952512 ], [ -75.226357, 39.95298 ], [ -75.226317, 39.953181 ], [ -75.226248, 39.95353 ], [ -75.226166, 39.953902 ], [ -75.226135, 39.954048 ], [ -75.226098, 39.954212 ], [ -75.226017, 39.954583 ], [ -75.225934, 39.954987 ], [ -75.22589, 39.955203 ], [ -75.22584, 39.955447 ], [ -75.225766, 39.955814 ], [ -75.225686, 39.956193 ], [ -75.225651, 39.956365 ], [ -75.225603, 39.95657 ], [ -75.225512, 39.956955 ], [ -75.225347, 39.957695 ], [ -75.225214, 39.958467 ], [ -75.225138, 39.958877 ], [ -75.225113, 39.959013 ], [ -75.225076, 39.959199 ], [ -75.225032, 39.959454 ], [ -75.224941, 39.959933 ], [ -75.224921, 39.959975 ], [ -75.224888, 39.960009 ], [ -75.224874, 39.960045 ], [ -75.224868, 39.960083 ], [ -75.224734, 39.960806 ], [ -75.224561, 39.961569 ], [ -75.224473, 39.961975 ], [ -75.224322, 39.962684 ], [ -75.224268, 39.962931 ], [ -75.224246, 39.963066 ], [ -75.224243, 39.963132 ], [ -75.224248, 39.9632 ], [ -75.22433, 39.963633 ], [ -75.224519, 39.964477 ], [ -75.22458, 39.964745 ], [ -75.224609, 39.964895 ], [ -75.224633, 39.965022 ], [ -75.224679, 39.96523 ], [ -75.224719, 39.965484 ], [ -75.224767, 39.965787 ], [ -75.224837, 39.966235 ], [ -75.224909, 39.966615 ], [ -75.224967, 39.967018 ], [ -75.224983, 39.967135 ], [ -75.225048, 39.967608 ], [ -75.225073, 39.967766 ], [ -75.22513, 39.968119 ], [ -75.225207, 39.96855 ], [ -75.225231, 39.968676 ], [ -75.225294, 39.969006 ], [ -75.225324, 39.969159 ], [ -75.225392, 39.969511 ], [ -75.225487, 39.969905 ], [ -75.225521, 39.970047 ], [ -75.225625, 39.970479 ], [ -75.225725, 39.970917 ], [ -75.225839, 39.971419 ], [ -75.225952, 39.971982 ], [ -75.225993, 39.972184 ], [ -75.226008, 39.972294 ], [ -75.226063, 39.972596 ], [ -75.226129, 39.972953 ], [ -75.226205, 39.973362 ], [ -75.226249, 39.973593 ], [ -75.226295, 39.973873 ], [ -75.226355, 39.974227 ], [ -75.226449, 39.974664 ], [ -75.226478, 39.974796 ], [ -75.226658, 39.97575 ], [ -75.226716, 39.976116 ], [ -75.22673, 39.976203 ], [ -75.226777, 39.976549 ], [ -75.22679, 39.976648 ], [ -75.226805, 39.976756 ], [ -75.226818, 39.976824 ], [ -75.226833, 39.976955 ], [ -75.226834, 39.977002 ], [ -75.226824, 39.977087 ], [ -75.226802, 39.97716 ], [ -75.226787, 39.977202 ], [ -75.226685, 39.977354 ], [ -75.226579, 39.977512 ], [ -75.226443, 39.97772 ], [ -75.226333, 39.977928 ], [ -75.226322, 39.977948 ], [ -75.226231, 39.97809 ], [ -75.226001, 39.978427 ], [ -75.225576, 39.979094 ], [ -75.225355, 39.979442 ], [ -75.226711, 39.979938 ], [ -75.22719, 39.980117 ], [ -75.227702, 39.980303 ], [ -75.228151, 39.980464 ], [ -75.22857, 39.980625 ], [ -75.22883, 39.980725 ], [ -75.229475, 39.980959 ], [ -75.229654, 39.981033 ], [ -75.229699, 39.981058 ], [ -75.229762, 39.981103 ], [ -75.229798, 39.981137 ], [ -75.229845, 39.98119 ], [ -75.229965, 39.981367 ], [ -75.230088, 39.981545 ], [ -75.230392, 39.981972 ], [ -75.230634, 39.982347 ], [ -75.230728, 39.982523 ], [ -75.231083, 39.983573 ], [ -75.231265, 39.984103 ], [ -75.231456, 39.984663 ], [ -75.231495, 39.984774 ], [ -75.231546, 39.984935 ], [ -75.231591, 39.985068 ], [ -75.231639, 39.985214 ], [ -75.23174, 39.985496 ], [ -75.231879, 39.985887 ], [ -75.232005, 39.986255 ], [ -75.232135, 39.986636 ], [ -75.232259, 39.986989 ], [ -75.232408, 39.987418 ], [ -75.232533, 39.987778 ], [ -75.232597, 39.987966 ], [ -75.232666, 39.988166 ], [ -75.232777, 39.988488 ], [ -75.232924, 39.988944 ], [ -75.233083, 39.989388 ], [ -75.233235, 39.989808 ], [ -75.233375, 39.990204 ], [ -75.233514, 39.990649 ], [ -75.233545, 39.99084 ], [ -75.233584, 39.99107 ], [ -75.233606, 39.991271 ], [ -75.23364, 39.991583 ], [ -75.233668, 39.991883 ], [ -75.233706, 39.99218 ], [ -75.23371, 39.99219 ], [ -75.234319, 39.99191 ], [ -75.23515, 39.99192 ], [ -75.23618, 39.991949 ], [ -75.23708, 39.991969 ], [ -75.237509, 39.991979 ], [ -75.23781, 39.991979 ], [ -75.23903, 39.99201 ], [ -75.239169, 39.99201 ], [ -75.23951, 39.99202 ], [ -75.23964, 39.99202 ], [ -75.239799, 39.99203 ], [ -75.239899, 39.992049 ], [ -75.239989, 39.992079 ], [ -75.24006, 39.992129 ], [ -75.24011, 39.99218 ], [ -75.24023, 39.992329 ], [ -75.240429, 39.99258 ], [ -75.240799, 39.993049 ], [ -75.240879, 39.993149 ], [ -75.240939, 39.993229 ], [ -75.24119, 39.99354 ], [ -75.24123, 39.993589 ], [ -75.24136, 39.993759 ], [ -75.241599, 39.9941 ], [ -75.241119, 39.994329 ], [ -75.24055, 39.994599 ], [ -75.240069, 39.99482 ], [ -75.23984, 39.994929 ], [ -75.23952, 39.99508 ], [ -75.23915, 39.99525 ], [ -75.238959, 39.99534 ], [ -75.23853, 39.99554 ], [ -75.238459, 39.995579 ], [ -75.238189, 39.9957 ], [ -75.23789, 39.995839 ], [ -75.23768, 39.995949 ], [ -75.23732, 39.996119 ], [ -75.23717, 39.996189 ], [ -75.236919, 39.996309 ], [ -75.2366, 39.996459 ], [ -75.23641, 39.996549 ], [ -75.236209, 39.996639 ], [ -75.235949, 39.996749 ], [ -75.23555, 39.996939 ], [ -75.23529, 39.99706 ], [ -75.235179, 39.996939 ], [ -75.234989, 39.99671 ], [ -75.23483, 39.99651 ], [ -75.23475, 39.996359 ], [ -75.23448, 39.996039 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307738", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144264, 40.041433 ], [ -75.144318, 40.041466 ], [ -75.144357, 40.041506 ], [ -75.144381, 40.041561 ], [ -75.144398, 40.041623 ], [ -75.144404, 40.041658 ], [ -75.144421, 40.041747 ], [ -75.144412, 40.041989 ], [ -75.144427, 40.042319 ], [ -75.144419, 40.042508 ], [ -75.144426, 40.04297 ], [ -75.144438, 40.043751 ], [ -75.144503, 40.044101 ], [ -75.144627, 40.044562 ], [ -75.144674, 40.044737 ], [ -75.144945, 40.045415 ], [ -75.145105, 40.045819 ], [ -75.145251, 40.046186 ], [ -75.14537, 40.046548 ], [ -75.145414, 40.046744 ], [ -75.14546, 40.046949 ], [ -75.145517, 40.04739 ], [ -75.1455, 40.047591 ], [ -75.145437, 40.047809 ], [ -75.145375, 40.047981 ], [ -75.145331, 40.048089 ], [ -75.145273, 40.048198 ], [ -75.14497, 40.048677 ], [ -75.144179, 40.049879 ], [ -75.144029, 40.050126 ], [ -75.143605, 40.050747 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141282, 40.054147 ], [ -75.141267, 40.05419 ], [ -75.14121, 40.05439 ], [ -75.141184, 40.054463 ], [ -75.14116, 40.05452 ], [ -75.141121, 40.054584 ], [ -75.141072, 40.054652 ], [ -75.140841, 40.055019 ], [ -75.140726, 40.055208 ], [ -75.140684, 40.055277 ], [ -75.140692, 40.055336 ], [ -75.140245, 40.056073 ], [ -75.139938, 40.05658 ], [ -75.139695, 40.056968 ], [ -75.139411, 40.057432 ], [ -75.139061, 40.058006 ], [ -75.138624, 40.058732 ], [ -75.138171, 40.059467 ], [ -75.137948, 40.059829 ], [ -75.137693, 40.060241 ], [ -75.137609, 40.060382 ], [ -75.137286, 40.060919 ], [ -75.137203, 40.061049 ], [ -75.137053, 40.061295 ], [ -75.136948, 40.061347 ], [ -75.136923, 40.061378 ], [ -75.136886, 40.061441 ], [ -75.136849, 40.061518 ], [ -75.13682, 40.061572 ], [ -75.136748, 40.061695 ], [ -75.136712, 40.061758 ], [ -75.136667, 40.061838 ], [ -75.136617, 40.06191 ], [ -75.136517, 40.06208 ], [ -75.136096, 40.062785 ], [ -75.135938, 40.063071 ], [ -75.135803, 40.063305 ], [ -75.135688, 40.063493 ], [ -75.135292, 40.064266 ], [ -75.13523, 40.064415 ], [ -75.135171, 40.064555 ], [ -75.135098, 40.064729 ], [ -75.134954, 40.065073 ], [ -75.13489, 40.065248 ], [ -75.134849, 40.065391 ], [ -75.134783, 40.065666 ], [ -75.134739, 40.065905 ], [ -75.13471, 40.066123 ], [ -75.134633, 40.066603 ], [ -75.134598, 40.066834 ], [ -75.134575, 40.066953 ], [ -75.134484, 40.067583 ], [ -75.134459, 40.067735 ], [ -75.134307, 40.068635 ], [ -75.134281, 40.068797 ], [ -75.134262, 40.068902 ], [ -75.1342, 40.06925 ], [ -75.134109, 40.069872 ], [ -75.13407, 40.070082 ], [ -75.134027, 40.070309 ], [ -75.133996, 40.070429 ], [ -75.133957, 40.070574 ], [ -75.133896, 40.070741 ], [ -75.133855, 40.070831 ], [ -75.133828, 40.070892 ], [ -75.133709, 40.071103 ], [ -75.133603, 40.071253 ], [ -75.133453, 40.071439 ], [ -75.133319, 40.071594 ], [ -75.133186, 40.071722 ], [ -75.133088, 40.071813 ], [ -75.132911, 40.071971 ], [ -75.132849, 40.072027 ], [ -75.132739, 40.072125 ], [ -75.132611, 40.072238 ], [ -75.132122, 40.072666 ], [ -75.131827, 40.072925 ], [ -75.131608, 40.073118 ], [ -75.13138, 40.073291 ], [ -75.131295, 40.073355 ], [ -75.131215, 40.073416 ], [ -75.131136, 40.073468 ], [ -75.131047, 40.073524 ], [ -75.130899, 40.073619 ], [ -75.130695, 40.073743 ], [ -75.130363, 40.073932 ], [ -75.130335, 40.07395 ], [ -75.1302, 40.074037 ], [ -75.13008, 40.074118 ], [ -75.129982, 40.07419 ], [ -75.129956, 40.074208 ], [ -75.129851, 40.074293 ], [ -75.129751, 40.074382 ], [ -75.129649, 40.074481 ], [ -75.129472, 40.07468 ], [ -75.128772, 40.075384 ], [ -75.128633, 40.075537 ], [ -75.128503, 40.07568 ], [ -75.12821, 40.075981 ], [ -75.127772, 40.076437 ], [ -75.127301, 40.076938 ], [ -75.127063, 40.077188 ], [ -75.126891, 40.077382 ], [ -75.126857, 40.07742 ], [ -75.126713, 40.077604 ], [ -75.126632, 40.077729 ], [ -75.126587, 40.077799 ], [ -75.12655, 40.077875 ], [ -75.126475, 40.078036 ], [ -75.126402, 40.078212 ], [ -75.126359, 40.078327 ], [ -75.126317, 40.078455 ], [ -75.126286, 40.07857 ], [ -75.126249, 40.078778 ], [ -75.126212, 40.079049 ], [ -75.126211, 40.079243 ], [ -75.126222, 40.079389 ], [ -75.126232, 40.079513 ], [ -75.126249, 40.079646 ], [ -75.126262, 40.07971 ], [ -75.126277, 40.079782 ], [ -75.126308, 40.079909 ], [ -75.12637, 40.080101 ], [ -75.126444, 40.08034 ], [ -75.126453, 40.080363 ], [ -75.126541, 40.080618 ], [ -75.126667, 40.08101 ], [ -75.126708, 40.081133 ], [ -75.126885, 40.081633 ], [ -75.126927, 40.081754 ], [ -75.126981, 40.081906 ], [ -75.127068, 40.082153 ], [ -75.127268, 40.082727 ], [ -75.127343, 40.082946 ], [ -75.127436, 40.083214 ], [ -75.127665, 40.083898 ], [ -75.127727, 40.084081 ], [ -75.127759, 40.084176 ], [ -75.127789, 40.084258 ], [ -75.127825, 40.084391 ], [ -75.127862, 40.084585 ], [ -75.127896, 40.084821 ], [ -75.127907, 40.085102 ], [ -75.12791, 40.085139 ], [ -75.127907, 40.085218 ], [ -75.127906, 40.085454 ], [ -75.127899, 40.085826 ], [ -75.127889, 40.086354 ], [ -75.127879, 40.086534 ], [ -75.127872, 40.086663 ], [ -75.127849, 40.086852 ], [ -75.127828, 40.08696 ], [ -75.127805, 40.087053 ], [ -75.12777, 40.087167 ], [ -75.127749, 40.087258 ], [ -75.127718, 40.08737 ], [ -75.127695, 40.087427 ], [ -75.127664, 40.087514 ], [ -75.127603, 40.087647 ], [ -75.127332, 40.088203 ], [ -75.12726, 40.088342 ], [ -75.127185, 40.088488 ], [ -75.126798, 40.089265 ], [ -75.126685, 40.089587 ], [ -75.126544, 40.089983 ], [ -75.126437, 40.090229 ], [ -75.125875, 40.091522 ], [ -75.125597, 40.092178 ], [ -75.125613, 40.092257 ], [ -75.125552, 40.092399 ], [ -75.125509, 40.092493 ], [ -75.125427, 40.092661 ], [ -75.125314, 40.092971 ], [ -75.1253, 40.093027 ], [ -75.12529, 40.093088 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093156 ], [ -75.125294, 40.0932 ], [ -75.1253, 40.093247 ], [ -75.125316, 40.093326 ], [ -75.125357, 40.093525 ], [ -75.12547, 40.094059 ], [ -75.125522, 40.094305 ], [ -75.125622, 40.094746 ], [ -75.125692, 40.095051 ], [ -75.125729, 40.095197 ], [ -75.125768, 40.095369 ], [ -75.125781, 40.095448 ], [ -75.125796, 40.0956 ], [ -75.125807, 40.095855 ], [ -75.125822, 40.096275 ], [ -75.125827, 40.096413 ], [ -75.12583, 40.096544 ], [ -75.125838, 40.096844 ], [ -75.125841, 40.096959 ], [ -75.125845, 40.097141 ], [ -75.125852, 40.097463 ], [ -75.125857, 40.097873 ], [ -75.125862, 40.098307 ], [ -75.125863, 40.098364 ], [ -75.125869, 40.098588 ], [ -75.125879, 40.098946 ], [ -75.12589, 40.099213 ], [ -75.1259, 40.099404 ], [ -75.125903, 40.099468 ], [ -75.125908, 40.099711 ], [ -75.125875, 40.099762 ], [ -75.125864, 40.09983 ], [ -75.125847, 40.099954 ], [ -75.125843, 40.100038 ], [ -75.12583, 40.10017 ], [ -75.125776, 40.10076 ], [ -75.125726, 40.10134 ], [ -75.125689, 40.101762 ], [ -75.125648, 40.10219 ], [ -75.125616, 40.102717 ], [ -75.125585, 40.103027 ], [ -75.125556, 40.103313 ], [ -75.125524, 40.103626 ], [ -75.125484, 40.103787 ], [ -75.12544, 40.103919 ], [ -75.125396, 40.10405 ], [ -75.125337, 40.104189 ], [ -75.12526, 40.104348 ], [ -75.125163, 40.104518 ], [ -75.124918, 40.104918 ], [ -75.124782, 40.105132 ], [ -75.124607, 40.105447 ], [ -75.124337, 40.105879 ], [ -75.124268, 40.106001 ], [ -75.124079, 40.106335 ], [ -75.123933, 40.106595 ], [ -75.123888, 40.106665 ], [ -75.123803, 40.106823 ], [ -75.123723, 40.106961 ], [ -75.123638, 40.10711 ], [ -75.123468, 40.107405 ], [ -75.123337, 40.107655 ], [ -75.123277, 40.107792 ], [ -75.123218, 40.107983 ], [ -75.123173, 40.108173 ], [ -75.123139, 40.108365 ], [ -75.123123, 40.108522 ], [ -75.12312, 40.108595 ], [ -75.12312, 40.108656 ], [ -75.123117, 40.108844 ], [ -75.123143, 40.109114 ], [ -75.123188, 40.109409 ], [ -75.12324, 40.109704 ], [ -75.12331, 40.110101 ], [ -75.123327, 40.110219 ], [ -75.123365, 40.110465 ], [ -75.1234, 40.110681 ], [ -75.123415, 40.110821 ], [ -75.123418, 40.110979 ], [ -75.12342, 40.111166 ], [ -75.1234, 40.111332 ], [ -75.123365, 40.1115 ], [ -75.123322, 40.111667 ], [ -75.123265, 40.11183 ], [ -75.123211, 40.111973 ], [ -75.12314, 40.112111 ], [ -75.123012, 40.112358 ], [ -75.12267, 40.112943 ], [ -75.122511, 40.113215 ], [ -75.122408, 40.113389 ], [ -75.122101, 40.113937 ], [ -75.122018, 40.114086 ], [ -75.121765, 40.114535 ], [ -75.121066, 40.115735 ], [ -75.12101, 40.115836 ], [ -75.120875, 40.116082 ], [ -75.120668, 40.116464 ], [ -75.120429, 40.116878 ], [ -75.120376, 40.116963 ], [ -75.120201, 40.117263 ], [ -75.119525, 40.118448 ], [ -75.119475, 40.11853 ], [ -75.119256, 40.118911 ], [ -75.119005, 40.119361 ], [ -75.118385, 40.120462 ], [ -75.11819, 40.120809 ], [ -75.117837, 40.121406 ], [ -75.117671, 40.121688 ], [ -75.117504, 40.122004 ], [ -75.117454, 40.122108 ], [ -75.117429, 40.122187 ], [ -75.117337, 40.122491 ], [ -75.117284, 40.122662 ], [ -75.117279, 40.122692 ], [ -75.117274, 40.122764 ], [ -75.117251, 40.122949 ], [ -75.117246, 40.123028 ], [ -75.117243, 40.123121 ], [ -75.117243, 40.123453 ], [ -75.117243, 40.123745 ], [ -75.117246, 40.124322 ], [ -75.117246, 40.124656 ], [ -75.117255, 40.124933 ], [ -75.117255, 40.12524 ], [ -75.117257, 40.12537 ], [ -75.117255, 40.125403 ], [ -75.117245, 40.125551 ], [ -75.11723, 40.125713 ], [ -75.117218, 40.125845 ], [ -75.117205, 40.125974 ], [ -75.117201, 40.126007 ], [ -75.116946, 40.127553 ], [ -75.116926, 40.127672 ], [ -75.116857, 40.128102 ], [ -75.116791, 40.128482 ], [ -75.116677, 40.128986 ], [ -75.116609, 40.129276 ], [ -75.1165, 40.129684 ], [ -75.116325, 40.130359 ], [ -75.116235, 40.13068 ], [ -75.1162, 40.13079 ], [ -75.116045, 40.131302 ], [ -75.116008, 40.131412 ], [ -75.115973, 40.131521 ], [ -75.115873, 40.131859 ], [ -75.115788, 40.13213 ], [ -75.115681, 40.132465 ], [ -75.115546, 40.13292 ], [ -75.115403, 40.133351 ], [ -75.115235, 40.133901 ], [ -75.115009, 40.134633 ], [ -75.114967, 40.13474 ], [ -75.11486, 40.134962 ], [ -75.114622, 40.135365 ], [ -75.114496, 40.135563 ], [ -75.114192, 40.136069 ], [ -75.114051, 40.136303 ], [ -75.113864, 40.136606 ], [ -75.113734, 40.13681 ], [ -75.113704, 40.136857 ], [ -75.113571, 40.137072 ], [ -75.113441, 40.137333 ], [ -75.113236, 40.137753 ], [ -75.113125, 40.137972 ], [ -75.112946, 40.138346 ], [ -75.112715, 40.138813 ], [ -75.112698, 40.13886 ], [ -75.112521, 40.139222 ], [ -75.112363, 40.139542 ], [ -75.112186, 40.139908 ], [ -75.111995, 40.140299 ], [ -75.111969, 40.140356 ], [ -75.111925, 40.140484 ], [ -75.111896, 40.140612 ], [ -75.111884, 40.140716 ], [ -75.11188, 40.140892 ], [ -75.111896, 40.141017 ], [ -75.111924, 40.141148 ], [ -75.111938, 40.141185 ], [ -75.111967, 40.141275 ], [ -75.112029, 40.141408 ], [ -75.112107, 40.141555 ], [ -75.112201, 40.141694 ], [ -75.112354, 40.141903 ], [ -75.112464, 40.142036 ], [ -75.112569, 40.142142 ], [ -75.112631, 40.142198 ], [ -75.112692, 40.142244 ], [ -75.112772, 40.1423 ], [ -75.112956, 40.14241 ], [ -75.113158, 40.142531 ], [ -75.113363, 40.142635 ], [ -75.113496, 40.1427 ], [ -75.113734, 40.142799 ], [ -75.11416, 40.14297 ], [ -75.11446, 40.143091 ], [ -75.114601, 40.143159 ], [ -75.115012, 40.143388 ], [ -75.115144, 40.14346 ], [ -75.115298, 40.143544 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.116554, 40.144874 ], [ -75.116672, 40.144798 ], [ -75.11693, 40.144621 ], [ -75.117122, 40.144491 ], [ -75.117933, 40.14394 ], [ -75.118983, 40.14322 ], [ -75.119157, 40.143102 ], [ -75.119268, 40.143028 ], [ -75.119273, 40.143025 ], [ -75.119494, 40.142883 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.11652, 40.144971 ], [ -75.116565, 40.145013 ], [ -75.116891, 40.145351 ], [ -75.116961, 40.145378 ], [ -75.116996, 40.145418 ], [ -75.11721, 40.145669 ], [ -75.117368, 40.145859 ], [ -75.117434, 40.145939 ], [ -75.117595, 40.146133 ], [ -75.117776, 40.146346 ], [ -75.117874, 40.14646 ], [ -75.118045, 40.146662 ], [ -75.118161, 40.146799 ], [ -75.118301, 40.146963 ], [ -75.118479, 40.147172 ], [ -75.11854, 40.147239 ], [ -75.118636, 40.147351 ], [ -75.1188, 40.147543 ], [ -75.118878, 40.147634 ], [ -75.118954, 40.147723 ], [ -75.119016, 40.1478 ], [ -75.119072, 40.147884 ], [ -75.119126, 40.147966 ], [ -75.119211, 40.148102 ], [ -75.119626, 40.148861 ], [ -75.119719, 40.149032 ], [ -75.119784, 40.149152 ], [ -75.120176, 40.149876 ], [ -75.120254, 40.15003 ], [ -75.12043, 40.150378 ], [ -75.120528, 40.150569 ], [ -75.120638, 40.150766 ], [ -75.120712, 40.150912 ], [ -75.120901, 40.151292 ], [ -75.121094, 40.151686 ], [ -75.121203, 40.151958 ], [ -75.121276, 40.152162 ], [ -75.121349, 40.152387 ], [ -75.121443, 40.152705 ], [ -75.121485, 40.152895 ], [ -75.121517, 40.153054 ], [ -75.121577, 40.153451 ], [ -75.121616, 40.15377 ], [ -75.12164, 40.153983 ], [ -75.121589, 40.154066 ], [ -75.121608, 40.154267 ], [ -75.121719, 40.155383 ], [ -75.121752, 40.155621 ], [ -75.121785, 40.155792 ], [ -75.121836, 40.155989 ], [ -75.121973, 40.156458 ], [ -75.122059, 40.156713 ], [ -75.122205, 40.15715 ], [ -75.122344, 40.157627 ], [ -75.122524, 40.158083 ], [ -75.122571, 40.158232 ], [ -75.122593, 40.158328 ], [ -75.122807, 40.159137 ], [ -75.12292, 40.15949 ], [ -75.122953, 40.159597 ], [ -75.122973, 40.159669 ], [ -75.123066, 40.160005 ], [ -75.123378, 40.160986 ], [ -75.123415, 40.161094 ], [ -75.123437, 40.16117 ], [ -75.123454, 40.161227 ], [ -75.123471, 40.161294 ], [ -75.123491, 40.161359 ], [ -75.123567, 40.161577 ], [ -75.123756, 40.16213 ], [ -75.123764, 40.162155 ], [ -75.123789, 40.162223 ], [ -75.123891, 40.162485 ], [ -75.124073, 40.162949 ], [ -75.124108, 40.163042 ], [ -75.124277, 40.163464 ], [ -75.12449, 40.164078 ], [ -75.12458, 40.164297 ], [ -75.124586, 40.164317 ], [ -75.124614, 40.164409 ], [ -75.12468, 40.164595 ], [ -75.124734, 40.164757 ], [ -75.124748, 40.164797 ], [ -75.124822, 40.165043 ], [ -75.124859, 40.165151 ], [ -75.124875, 40.165219 ], [ -75.124985, 40.165512 ], [ -75.125228, 40.16627 ], [ -75.12525, 40.166357 ], [ -75.125354, 40.16665 ], [ -75.125391, 40.166765 ], [ -75.125491, 40.167038 ], [ -75.125619, 40.167331 ], [ -75.125914, 40.167957 ], [ -75.125984, 40.168093 ], [ -75.126071, 40.168267 ], [ -75.126145, 40.168408 ], [ -75.12617, 40.168458 ], [ -75.126262, 40.168634 ], [ -75.126291, 40.168703 ], [ -75.12652, 40.169153 ], [ -75.126607, 40.169326 ], [ -75.126708, 40.16952 ], [ -75.126764, 40.169626 ], [ -75.126815, 40.169722 ], [ -75.127132, 40.170308 ], [ -75.127287, 40.170612 ], [ -75.127342, 40.170708 ], [ -75.127459, 40.170935 ], [ -75.127777, 40.171565 ], [ -75.127826, 40.171684 ], [ -75.127877, 40.171785 ], [ -75.127907, 40.17187 ], [ -75.127927, 40.172079 ], [ -75.127996, 40.172816 ], [ -75.128059, 40.172892 ], [ -75.128065, 40.173046 ], [ -75.128086, 40.173514 ], [ -75.128104, 40.174105 ], [ -75.128104, 40.174141 ], [ -75.128107, 40.174188 ], [ -75.128153, 40.175287 ], [ -75.128203, 40.176299 ], [ -75.128221, 40.176659 ], [ -75.128231, 40.176873 ], [ -75.128188, 40.176933 ], [ -75.128183, 40.177177 ], [ -75.128188, 40.177274 ], [ -75.128202, 40.177364 ], [ -75.128211, 40.177428 ], [ -75.128232, 40.17753 ], [ -75.128247, 40.177602 ], [ -75.128339, 40.177912 ], [ -75.128363, 40.177983 ], [ -75.128393, 40.17805 ], [ -75.128425, 40.178118 ], [ -75.128475, 40.178215 ], [ -75.128553, 40.178334 ], [ -75.128644, 40.17845 ], [ -75.128729, 40.178551 ], [ -75.128799, 40.178627 ], [ -75.128884, 40.17872 ], [ -75.128971, 40.178805 ], [ -75.129042, 40.178864 ], [ -75.129072, 40.178889 ], [ -75.129165, 40.178964 ], [ -75.129299, 40.179065 ], [ -75.129365, 40.179115 ], [ -75.1295, 40.179219 ], [ -75.129579, 40.179281 ], [ -75.129612, 40.179308 ], [ -75.129933, 40.179555 ], [ -75.130142, 40.179728 ], [ -75.130214, 40.179801 ], [ -75.130257, 40.179843 ], [ -75.130309, 40.179905 ], [ -75.130358, 40.17997 ], [ -75.130429, 40.180076 ], [ -75.1305, 40.180203 ], [ -75.130551, 40.180313 ], [ -75.130588, 40.180412 ], [ -75.130637, 40.180538 ], [ -75.130885, 40.18117 ], [ -75.131155, 40.181825 ], [ -75.13129, 40.182157 ], [ -75.131413, 40.182463 ], [ -75.131444, 40.182544 ], [ -75.13147, 40.182625 ], [ -75.131502, 40.182708 ], [ -75.131546, 40.182831 ], [ -75.131601, 40.18297 ], [ -75.131644, 40.18308 ], [ -75.131738, 40.183313 ], [ -75.131785, 40.183428 ], [ -75.131825, 40.183516 ], [ -75.131908, 40.183681 ], [ -75.131927, 40.183709 ], [ -75.132003, 40.183754 ], [ -75.132033, 40.183803 ], [ -75.132104, 40.183934 ], [ -75.132423, 40.184464 ], [ -75.133021, 40.185395 ], [ -75.133456, 40.18608 ], [ -75.134012, 40.186955 ], [ -75.134464, 40.18766 ], [ -75.134884, 40.188339 ], [ -75.134877, 40.188427 ], [ -75.13525, 40.189046 ], [ -75.135354, 40.189105 ], [ -75.135392, 40.189166 ], [ -75.13543, 40.189226 ], [ -75.13551, 40.189355 ], [ -75.135639, 40.189563 ], [ -75.135708, 40.189665 ], [ -75.135764, 40.189751 ], [ -75.135873, 40.189915 ], [ -75.13617, 40.190374 ], [ -75.136265, 40.190522 ], [ -75.13635, 40.190674 ], [ -75.136405, 40.190771 ], [ -75.136449, 40.190871 ], [ -75.136479, 40.19094 ], [ -75.136507, 40.191009 ], [ -75.136545, 40.191127 ], [ -75.136802, 40.192054 ], [ -75.137124, 40.193182 ], [ -75.137407, 40.194173 ], [ -75.13762, 40.194913 ], [ -75.137653, 40.195028 ], [ -75.137734, 40.195309 ], [ -75.138003, 40.196272 ], [ -75.138036, 40.196391 ], [ -75.138387, 40.1976 ], [ -75.138522, 40.198097 ], [ -75.138703, 40.198765 ], [ -75.138789, 40.199095 ], [ -75.138896, 40.199694 ], [ -75.139096, 40.200948 ], [ -75.139318, 40.202278 ], [ -75.13941, 40.202846 ], [ -75.139529, 40.203516 ], [ -75.13963, 40.204083 ], [ -75.139648, 40.204189 ], [ -75.139671, 40.204312 ], [ -75.13969, 40.204415 ], [ -75.139712, 40.204543 ], [ -75.13978, 40.20494 ], [ -75.139804, 40.205096 ], [ -75.139816, 40.205183 ], [ -75.13982, 40.205265 ], [ -75.13982, 40.205407 ], [ -75.139817, 40.205603 ], [ -75.139805, 40.205793 ], [ -75.139794, 40.205946 ], [ -75.139782, 40.206129 ], [ -75.139764, 40.206358 ], [ -75.13968, 40.207488 ], [ -75.139606, 40.208538 ], [ -75.139558, 40.208597 ], [ -75.139506, 40.209238 ], [ -75.139462, 40.209779 ], [ -75.139429, 40.210201 ], [ -75.139423, 40.210282 ], [ -75.139398, 40.210575 ], [ -75.139392, 40.210746 ], [ -75.139384, 40.210933 ], [ -75.13938, 40.211107 ], [ -75.139375, 40.21151 ], [ -75.139371, 40.211633 ], [ -75.139367, 40.211701 ], [ -75.139406, 40.211762 ], [ -75.139384, 40.211834 ], [ -75.139383, 40.211905 ], [ -75.139395, 40.212091 ], [ -75.139403, 40.212176 ], [ -75.139414, 40.212277 ], [ -75.139418, 40.21241 ], [ -75.139429, 40.212534 ], [ -75.139438, 40.212754 ], [ -75.139446, 40.212964 ], [ -75.139491, 40.213533 ], [ -75.139505, 40.213696 ], [ -75.139519, 40.213899 ], [ -75.139524, 40.214037 ], [ -75.139543, 40.214573 ], [ -75.139569, 40.215244 ], [ -75.139572, 40.21532 ], [ -75.139574, 40.215388 ], [ -75.139585, 40.215835 ], [ -75.139588, 40.215964 ], [ -75.139591, 40.216055 ], [ -75.139611, 40.216418 ], [ -75.139628, 40.216726 ], [ -75.139647, 40.217079 ], [ -75.139665, 40.217386 ], [ -75.139684, 40.217665 ], [ -75.139693, 40.217797 ], [ -75.139703, 40.217931 ], [ -75.139724, 40.218267 ], [ -75.139727, 40.218309 ], [ -75.139747, 40.218633 ], [ -75.139688, 40.218727 ], [ -75.139688, 40.218824 ], [ -75.1397, 40.218942 ], [ -75.139735, 40.219491 ], [ -75.13976, 40.21984 ], [ -75.139785, 40.220189 ], [ -75.139788, 40.22024 ], [ -75.139794, 40.220313 ], [ -75.139859, 40.220393 ], [ -75.139866, 40.220512 ], [ -75.139873, 40.220634 ], [ -75.139878, 40.220803 ], [ -75.139882, 40.221019 ], [ -75.139899, 40.221537 ], [ -75.139907, 40.221747 ], [ -75.13992, 40.221953 ], [ -75.139951, 40.222597 ], [ -75.139975, 40.223227 ], [ -75.139979, 40.223335 ], [ -75.139983, 40.223455 ], [ -75.139986, 40.223548 ], [ -75.13999, 40.223656 ], [ -75.139997, 40.223904 ], [ -75.140003, 40.224036 ], [ -75.140005, 40.22408 ], [ -75.140023, 40.224463 ], [ -75.140036, 40.22482 ], [ -75.140039, 40.224914 ], [ -75.140042, 40.22502 ], [ -75.140047, 40.225179 ], [ -75.140051, 40.225364 ], [ -75.140048, 40.225442 ], [ -75.140037, 40.225777 ], [ -75.140027, 40.225964 ], [ -75.140003, 40.226154 ], [ -75.139926, 40.226555 ], [ -75.139866, 40.226769 ], [ -75.139825, 40.226887 ], [ -75.139651, 40.227319 ], [ -75.139572, 40.227512 ], [ -75.139406, 40.227875 ], [ -75.139301, 40.228114 ], [ -75.139243, 40.228152 ], [ -75.139159, 40.228279 ], [ -75.138932, 40.228822 ], [ -75.138914, 40.228866 ], [ -75.138824, 40.229094 ], [ -75.138762, 40.229242 ], [ -75.138711, 40.229363 ], [ -75.138652, 40.229487 ], [ -75.138556, 40.229717 ], [ -75.138519, 40.229824 ], [ -75.138278, 40.230491 ], [ -75.138161, 40.230813 ], [ -75.138061, 40.231127 ], [ -75.137993, 40.231324 ], [ -75.137947, 40.231474 ], [ -75.137841, 40.231812 ], [ -75.137689, 40.23232 ], [ -75.137655, 40.23243 ], [ -75.137566, 40.232713 ], [ -75.137419, 40.233261 ], [ -75.137284, 40.233726 ], [ -75.137267, 40.233851 ], [ -75.137314, 40.23395 ], [ -75.1373, 40.233996 ], [ -75.137265, 40.23411 ], [ -75.137211, 40.234306 ], [ -75.13717, 40.234451 ], [ -75.137143, 40.234546 ], [ -75.137112, 40.234654 ], [ -75.137081, 40.234807 ], [ -75.137033, 40.23506 ], [ -75.136986, 40.235293 ], [ -75.136935, 40.235505 ], [ -75.13692, 40.235571 ], [ -75.136879, 40.235737 ], [ -75.136849, 40.235865 ], [ -75.136792, 40.236104 ], [ -75.136732, 40.236422 ], [ -75.136653, 40.236917 ], [ -75.136598, 40.23729 ], [ -75.136566, 40.237643 ], [ -75.136553, 40.237766 ], [ -75.136545, 40.237938 ], [ -75.13654, 40.23804 ], [ -75.136535, 40.23813 ], [ -75.13653, 40.23824 ], [ -75.136519, 40.23856 ], [ -75.136508, 40.238831 ], [ -75.136506, 40.23892 ], [ -75.136502, 40.239021 ], [ -75.136496, 40.23929 ], [ -75.136491, 40.239394 ], [ -75.13649, 40.23946 ], [ -75.13649, 40.239521 ], [ -75.136485, 40.239718 ], [ -75.136481, 40.239933 ], [ -75.136477, 40.240161 ], [ -75.136474, 40.2403 ], [ -75.136473, 40.240385 ], [ -75.13647, 40.240483 ], [ -75.136428, 40.241648 ], [ -75.136426, 40.2417 ], [ -75.136425, 40.241744 ], [ -75.136417, 40.242022 ], [ -75.136416, 40.242056 ], [ -75.13641, 40.242256 ], [ -75.136401, 40.24245 ], [ -75.136394, 40.242649 ], [ -75.136392, 40.242722 ], [ -75.136389, 40.242791 ], [ -75.136374, 40.243276 ], [ -75.13637, 40.243415 ], [ -75.13633, 40.243931 ], [ -75.136265, 40.244005 ], [ -75.136235, 40.244189 ], [ -75.136207, 40.244319 ], [ -75.136184, 40.244428 ], [ -75.136151, 40.244558 ], [ -75.136085, 40.244763 ], [ -75.135969, 40.245104 ], [ -75.135933, 40.245197 ], [ -75.13575, 40.24563 ], [ -75.13562, 40.245943 ], [ -75.135449, 40.246373 ], [ -75.135269, 40.246795 ], [ -75.135162, 40.247029 ], [ -75.135083, 40.247206 ], [ -75.134991, 40.247409 ], [ -75.134903, 40.247561 ], [ -75.134751, 40.247808 ], [ -75.134675, 40.247931 ], [ -75.134616, 40.248025 ], [ -75.13436, 40.248431 ], [ -75.134176, 40.248705 ], [ -75.133991, 40.249005 ], [ -75.133975, 40.249027 ], [ -75.133772, 40.249348 ], [ -75.133496, 40.249882 ], [ -75.133482, 40.249914 ], [ -75.133442, 40.249998 ], [ -75.133412, 40.250068 ], [ -75.133375, 40.250158 ], [ -75.1333, 40.250385 ], [ -75.133243, 40.250571 ], [ -75.133203, 40.250768 ], [ -75.133113, 40.25138 ], [ -75.133079, 40.251638 ], [ -75.132978, 40.2524 ], [ -75.132943, 40.252666 ], [ -75.132882, 40.253146 ], [ -75.132838, 40.25345 ], [ -75.132807, 40.253674 ], [ -75.132742, 40.25407 ], [ -75.132694, 40.254358 ], [ -75.132724, 40.254453 ], [ -75.132677, 40.254625 ], [ -75.132663, 40.254674 ], [ -75.132643, 40.254748 ], [ -75.132601, 40.254898 ], [ -75.132567, 40.255019 ], [ -75.132492, 40.255289 ], [ -75.13239, 40.255621 ], [ -75.132233, 40.256105 ], [ -75.132095, 40.256563 ], [ -75.13199, 40.256924 ], [ -75.131892, 40.257334 ], [ -75.13189, 40.257345 ], [ -75.131793, 40.25778 ], [ -75.131605, 40.258713 ], [ -75.131484, 40.259268 ], [ -75.131404, 40.259685 ], [ -75.131301, 40.260163 ], [ -75.131221, 40.26058 ], [ -75.131141, 40.260988 ], [ -75.131056, 40.26141 ], [ -75.131012, 40.261697 ], [ -75.130986, 40.261936 ], [ -75.130955, 40.262333 ], [ -75.130935, 40.262806 ], [ -75.130872, 40.262884 ], [ -75.130866, 40.263039 ], [ -75.130856, 40.263562 ], [ -75.13088, 40.263732 ], [ -75.130922, 40.263802 ], [ -75.130904, 40.264058 ], [ -75.130885, 40.264313 ], [ -75.130855, 40.264779 ], [ -75.130849, 40.264858 ], [ -75.130839, 40.264973 ], [ -75.130832, 40.265076 ], [ -75.130819, 40.265232 ], [ -75.130808, 40.265375 ], [ -75.130777, 40.265746 ], [ -75.130753, 40.265983 ], [ -75.130735, 40.266104 ], [ -75.13071, 40.266262 ], [ -75.130654, 40.266517 ], [ -75.130645, 40.266551 ], [ -75.130586, 40.26676 ], [ -75.130509, 40.266831 ], [ -75.130417, 40.267131 ], [ -75.130313, 40.267502 ], [ -75.130288, 40.267587 ], [ -75.130164, 40.268011 ], [ -75.129952, 40.268736 ], [ -75.129705, 40.269628 ], [ -75.129573, 40.270077 ], [ -75.12944, 40.270519 ], [ -75.129368, 40.270773 ], [ -75.129173, 40.271394 ], [ -75.129016, 40.271923 ], [ -75.128905, 40.272309 ], [ -75.128807, 40.272628 ], [ -75.128684, 40.273016 ], [ -75.128548, 40.27339 ], [ -75.128407, 40.273738 ], [ -75.128391, 40.273776 ], [ -75.128339, 40.27392 ], [ -75.128289, 40.274054 ], [ -75.128152, 40.274394 ], [ -75.127968, 40.274829 ], [ -75.127599, 40.275768 ], [ -75.127558, 40.275878 ], [ -75.127151, 40.276868 ], [ -75.126989, 40.277266 ], [ -75.126904, 40.2775 ], [ -75.126928, 40.277598 ], [ -75.126674, 40.278261 ], [ -75.126491, 40.278788 ], [ -75.126463, 40.27887 ], [ -75.12644, 40.278937 ], [ -75.126404, 40.279052 ], [ -75.126359, 40.279195 ], [ -75.126348, 40.27923 ], [ -75.126327, 40.279298 ], [ -75.12628, 40.279446 ], [ -75.126213, 40.279716 ], [ -75.126179, 40.279844 ], [ -75.126139, 40.280063 ], [ -75.126127, 40.280136 ], [ -75.126117, 40.280198 ], [ -75.126108, 40.280256 ], [ -75.126089, 40.280391 ], [ -75.126081, 40.280446 ], [ -75.12606, 40.280587 ], [ -75.126026, 40.280906 ], [ -75.12602, 40.280997 ], [ -75.126016, 40.281037 ], [ -75.126005, 40.281206 ], [ -75.125995, 40.281372 ], [ -75.12598, 40.281604 ], [ -75.125931, 40.282458 ], [ -75.125865, 40.282537 ], [ -75.125857, 40.282605 ], [ -75.125821, 40.282905 ], [ -75.125798, 40.283294 ], [ -75.125793, 40.283581 ], [ -75.125801, 40.283877 ], [ -75.125835, 40.284195 ], [ -75.12588, 40.284456 ], [ -75.125948, 40.284728 ], [ -75.125958, 40.284765 ], [ -75.126, 40.284881 ], [ -75.12605, 40.285053 ], [ -75.126094, 40.285219 ], [ -75.126121, 40.285316 ], [ -75.126148, 40.28541 ], [ -75.126172, 40.285478 ], [ -75.12619, 40.285528 ], [ -75.126254, 40.285658 ], [ -75.126415, 40.285961 ], [ -75.126599, 40.286293 ], [ -75.126823, 40.28671 ], [ -75.126877, 40.286809 ], [ -75.126977, 40.286999 ], [ -75.1271, 40.287203 ], [ -75.127164, 40.287352 ], [ -75.127291, 40.287616 ], [ -75.127505, 40.2883 ], [ -75.127543, 40.288495 ], [ -75.127608, 40.28888 ], [ -75.127647, 40.289544 ], [ -75.127653, 40.289732 ], [ -75.127659, 40.289905 ], [ -75.127657, 40.290251 ], [ -75.127656, 40.290538 ], [ -75.127658, 40.29073 ], [ -75.127658, 40.291099 ], [ -75.127663, 40.29145 ], [ -75.127672, 40.292524 ], [ -75.127679, 40.292736 ], [ -75.127668, 40.293237 ], [ -75.127713, 40.293307 ], [ -75.127716, 40.293392 ], [ -75.127721, 40.293665 ], [ -75.127721, 40.293904 ], [ -75.127725, 40.294978 ], [ -75.127748, 40.295361 ], [ -75.127772, 40.295756 ], [ -75.12781, 40.296741 ], [ -75.127832, 40.29714 ], [ -75.127783, 40.297206 ], [ -75.127783, 40.297349 ], [ -75.127783, 40.297379 ], [ -75.127785, 40.297434 ], [ -75.127791, 40.297712 ], [ -75.127802, 40.297861 ], [ -75.12781, 40.297949 ], [ -75.127824, 40.298059 ], [ -75.127835, 40.298215 ], [ -75.12793, 40.29881 ], [ -75.127947, 40.298907 ], [ -75.12796, 40.299004 ], [ -75.12808, 40.29977 ], [ -75.128099, 40.299892 ], [ -75.128117, 40.300009 ], [ -75.12814, 40.300156 ], [ -75.128174, 40.300381 ], [ -75.128195, 40.300479 ], [ -75.128248, 40.300768 ], [ -75.128343, 40.301276 ], [ -75.128351, 40.30132 ], [ -75.128354, 40.301357 ], [ -75.128409, 40.301703 ], [ -75.128467, 40.301767 ], [ -75.128473, 40.301822 ], [ -75.128586, 40.302445 ], [ -75.128659, 40.302852 ], [ -75.128742, 40.303339 ], [ -75.128759, 40.303443 ], [ -75.12877, 40.303525 ], [ -75.128783, 40.303605 ], [ -75.128805, 40.303751 ], [ -75.128824, 40.303902 ], [ -75.128942, 40.304843 ], [ -75.12901, 40.305323 ], [ -75.129059, 40.305717 ], [ -75.12908, 40.305834 ], [ -75.12911, 40.305979 ], [ -75.129207, 40.306481 ], [ -75.129245, 40.306667 ], [ -75.129273, 40.306816 ], [ -75.129367, 40.307367 ], [ -75.129476, 40.307916 ], [ -75.129496, 40.308014 ], [ -75.129513, 40.308101 ], [ -75.129533, 40.308203 ], [ -75.129553, 40.308296 ], [ -75.129584, 40.308378 ], [ -75.129624, 40.308468 ], [ -75.129741, 40.308676 ], [ -75.13007, 40.309225 ], [ -75.13017, 40.30941 ], [ -75.130241, 40.309525 ], [ -75.13037, 40.30975 ], [ -75.130414, 40.309827 ], [ -75.130507, 40.309996 ], [ -75.130552, 40.310103 ], [ -75.130588, 40.31022 ], [ -75.130614, 40.310364 ], [ -75.130631, 40.310541 ], [ -75.130633, 40.310721 ], [ -75.130629, 40.310794 ], [ -75.130611, 40.310986 ], [ -75.130603, 40.311218 ], [ -75.130597, 40.311327 ], [ -75.130597, 40.311461 ], [ -75.13058, 40.312807 ], [ -75.130588, 40.313122 ], [ -75.130614, 40.314071 ], [ -75.130629, 40.31489 ], [ -75.130627, 40.315169 ], [ -75.13062, 40.315745 ], [ -75.130623, 40.315919 ], [ -75.130626, 40.316071 ], [ -75.130631, 40.316644 ], [ -75.130641, 40.31733 ], [ -75.130662, 40.318401 ], [ -75.130668, 40.318638 ], [ -75.130669, 40.31881 ], [ -75.13068, 40.319086 ], [ -75.130686, 40.319297 ], [ -75.130694, 40.319568 ], [ -75.130704, 40.319658 ], [ -75.130715, 40.320454 ], [ -75.130719, 40.320811 ], [ -75.130723, 40.321105 ], [ -75.130728, 40.321527 ], [ -75.130733, 40.321977 ], [ -75.130727, 40.322063 ], [ -75.130707, 40.322256 ], [ -75.130654, 40.322649 ], [ -75.130627, 40.322767 ], [ -75.130585, 40.322949 ], [ -75.130569, 40.323035 ], [ -75.130544, 40.32314 ], [ -75.13048, 40.323417 ], [ -75.130439, 40.323612 ], [ -75.130401, 40.323784 ], [ -75.130351, 40.324008 ], [ -75.130291, 40.32428 ], [ -75.130225, 40.324581 ], [ -75.13017, 40.324816 ], [ -75.130051, 40.32534 ], [ -75.130037, 40.3254 ], [ -75.130008, 40.325515 ], [ -75.12996, 40.325786 ], [ -75.129944, 40.325858 ], [ -75.129929, 40.325945 ], [ -75.129913, 40.326045 ], [ -75.129865, 40.326331 ], [ -75.129779, 40.326804 ], [ -75.129723, 40.327217 ], [ -75.129694, 40.327404 ], [ -75.129684, 40.32747 ], [ -75.129627, 40.327783 ], [ -75.129536, 40.328234 ], [ -75.129447, 40.328747 ], [ -75.129353, 40.329342 ], [ -75.129315, 40.329746 ], [ -75.129288, 40.330002 ], [ -75.129256, 40.330515 ], [ -75.129251, 40.331011 ], [ -75.129256, 40.331386 ], [ -75.129271, 40.331801 ], [ -75.129296, 40.332165 ], [ -75.129339, 40.332489 ], [ -75.129355, 40.332592 ], [ -75.129384, 40.33276 ], [ -75.129418, 40.332949 ], [ -75.129511, 40.333431 ], [ -75.129591, 40.333764 ], [ -75.129685, 40.334149 ], [ -75.130948, 40.334001 ], [ -75.13103, 40.334101 ], [ -75.131191, 40.33423 ], [ -75.131518, 40.334457 ], [ -75.132016, 40.334769 ], [ -75.132177, 40.334838 ], [ -75.132324, 40.334869 ], [ -75.132359, 40.334866 ], [ -75.132447, 40.334834 ], [ -75.132504, 40.334801 ], [ -75.133009, 40.334266 ], [ -75.133155, 40.334109 ], [ -75.133258, 40.333982 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307739", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144264, 40.041433 ], [ -75.144318, 40.041466 ], [ -75.144357, 40.041506 ], [ -75.144381, 40.041561 ], [ -75.144398, 40.041623 ], [ -75.144404, 40.041658 ], [ -75.144421, 40.041747 ], [ -75.144412, 40.041989 ], [ -75.144427, 40.042319 ], [ -75.144419, 40.042508 ], [ -75.144426, 40.04297 ], [ -75.144438, 40.043751 ], [ -75.144503, 40.044101 ], [ -75.144627, 40.044562 ], [ -75.144674, 40.044737 ], [ -75.144945, 40.045415 ], [ -75.145105, 40.045819 ], [ -75.145251, 40.046186 ], [ -75.14537, 40.046548 ], [ -75.145414, 40.046744 ], [ -75.14546, 40.046949 ], [ -75.145517, 40.04739 ], [ -75.1455, 40.047591 ], [ -75.145437, 40.047809 ], [ -75.145375, 40.047981 ], [ -75.145331, 40.048089 ], [ -75.145273, 40.048198 ], [ -75.14497, 40.048677 ], [ -75.144179, 40.049879 ], [ -75.144029, 40.050126 ], [ -75.143605, 40.050747 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141282, 40.054147 ], [ -75.141267, 40.05419 ], [ -75.14121, 40.05439 ], [ -75.141184, 40.054463 ], [ -75.14116, 40.05452 ], [ -75.141121, 40.054584 ], [ -75.141072, 40.054652 ], [ -75.140841, 40.055019 ], [ -75.140726, 40.055208 ], [ -75.140684, 40.055277 ], [ -75.140692, 40.055336 ], [ -75.140245, 40.056073 ], [ -75.139938, 40.05658 ], [ -75.139695, 40.056968 ], [ -75.139411, 40.057432 ], [ -75.139061, 40.058006 ], [ -75.138624, 40.058732 ], [ -75.138171, 40.059467 ], [ -75.137948, 40.059829 ], [ -75.137693, 40.060241 ], [ -75.137609, 40.060382 ], [ -75.137286, 40.060919 ], [ -75.137203, 40.061049 ], [ -75.137053, 40.061295 ], [ -75.136948, 40.061347 ], [ -75.136923, 40.061378 ], [ -75.136886, 40.061441 ], [ -75.136849, 40.061518 ], [ -75.13682, 40.061572 ], [ -75.136748, 40.061695 ], [ -75.136712, 40.061758 ], [ -75.136667, 40.061838 ], [ -75.136617, 40.06191 ], [ -75.136517, 40.06208 ], [ -75.136096, 40.062785 ], [ -75.135938, 40.063071 ], [ -75.135803, 40.063305 ], [ -75.135688, 40.063493 ], [ -75.135292, 40.064266 ], [ -75.13523, 40.064415 ], [ -75.135171, 40.064555 ], [ -75.135098, 40.064729 ], [ -75.134954, 40.065073 ], [ -75.13489, 40.065248 ], [ -75.134849, 40.065391 ], [ -75.134783, 40.065666 ], [ -75.134739, 40.065905 ], [ -75.13471, 40.066123 ], [ -75.134633, 40.066603 ], [ -75.134598, 40.066834 ], [ -75.134575, 40.066953 ], [ -75.134484, 40.067583 ], [ -75.134459, 40.067735 ], [ -75.134307, 40.068635 ], [ -75.134281, 40.068797 ], [ -75.134262, 40.068902 ], [ -75.1342, 40.06925 ], [ -75.134109, 40.069872 ], [ -75.13407, 40.070082 ], [ -75.134027, 40.070309 ], [ -75.133996, 40.070429 ], [ -75.133957, 40.070574 ], [ -75.133896, 40.070741 ], [ -75.133855, 40.070831 ], [ -75.133828, 40.070892 ], [ -75.133709, 40.071103 ], [ -75.133603, 40.071253 ], [ -75.133453, 40.071439 ], [ -75.133319, 40.071594 ], [ -75.133186, 40.071722 ], [ -75.133088, 40.071813 ], [ -75.132911, 40.071971 ], [ -75.132849, 40.072027 ], [ -75.132739, 40.072125 ], [ -75.132611, 40.072238 ], [ -75.132122, 40.072666 ], [ -75.131827, 40.072925 ], [ -75.131608, 40.073118 ], [ -75.13138, 40.073291 ], [ -75.131295, 40.073355 ], [ -75.131215, 40.073416 ], [ -75.131136, 40.073468 ], [ -75.131047, 40.073524 ], [ -75.130899, 40.073619 ], [ -75.130695, 40.073743 ], [ -75.130363, 40.073932 ], [ -75.130335, 40.07395 ], [ -75.1302, 40.074037 ], [ -75.13008, 40.074118 ], [ -75.129982, 40.07419 ], [ -75.129956, 40.074208 ], [ -75.129851, 40.074293 ], [ -75.129751, 40.074382 ], [ -75.129649, 40.074481 ], [ -75.129472, 40.07468 ], [ -75.128772, 40.075384 ], [ -75.128633, 40.075537 ], [ -75.128503, 40.07568 ], [ -75.12821, 40.075981 ], [ -75.127772, 40.076437 ], [ -75.127301, 40.076938 ], [ -75.127063, 40.077188 ], [ -75.126891, 40.077382 ], [ -75.126857, 40.07742 ], [ -75.126713, 40.077604 ], [ -75.126632, 40.077729 ], [ -75.126587, 40.077799 ], [ -75.12655, 40.077875 ], [ -75.126475, 40.078036 ], [ -75.126402, 40.078212 ], [ -75.126359, 40.078327 ], [ -75.126317, 40.078455 ], [ -75.126286, 40.07857 ], [ -75.126249, 40.078778 ], [ -75.126212, 40.079049 ], [ -75.126211, 40.079243 ], [ -75.126222, 40.079389 ], [ -75.126232, 40.079513 ], [ -75.126249, 40.079646 ], [ -75.126262, 40.07971 ], [ -75.126277, 40.079782 ], [ -75.126308, 40.079909 ], [ -75.12637, 40.080101 ], [ -75.126444, 40.08034 ], [ -75.126453, 40.080363 ], [ -75.126541, 40.080618 ], [ -75.126667, 40.08101 ], [ -75.126708, 40.081133 ], [ -75.126885, 40.081633 ], [ -75.126927, 40.081754 ], [ -75.126981, 40.081906 ], [ -75.127068, 40.082153 ], [ -75.127268, 40.082727 ], [ -75.127343, 40.082946 ], [ -75.127436, 40.083214 ], [ -75.127665, 40.083898 ], [ -75.127727, 40.084081 ], [ -75.127759, 40.084176 ], [ -75.127789, 40.084258 ], [ -75.127825, 40.084391 ], [ -75.127862, 40.084585 ], [ -75.127896, 40.084821 ], [ -75.127907, 40.085102 ], [ -75.12791, 40.085139 ], [ -75.127907, 40.085218 ], [ -75.127906, 40.085454 ], [ -75.127899, 40.085826 ], [ -75.127889, 40.086354 ], [ -75.127879, 40.086534 ], [ -75.127872, 40.086663 ], [ -75.127849, 40.086852 ], [ -75.127828, 40.08696 ], [ -75.127805, 40.087053 ], [ -75.12777, 40.087167 ], [ -75.127749, 40.087258 ], [ -75.127718, 40.08737 ], [ -75.127695, 40.087427 ], [ -75.127664, 40.087514 ], [ -75.127603, 40.087647 ], [ -75.127332, 40.088203 ], [ -75.12726, 40.088342 ], [ -75.127185, 40.088488 ], [ -75.126798, 40.089265 ], [ -75.126685, 40.089587 ], [ -75.126544, 40.089983 ], [ -75.126437, 40.090229 ], [ -75.125875, 40.091522 ], [ -75.125597, 40.092178 ], [ -75.125613, 40.092257 ], [ -75.125552, 40.092399 ], [ -75.125509, 40.092493 ], [ -75.125427, 40.092661 ], [ -75.125314, 40.092971 ], [ -75.1253, 40.093027 ], [ -75.12529, 40.093088 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093156 ], [ -75.125294, 40.0932 ], [ -75.1253, 40.093247 ], [ -75.125316, 40.093326 ], [ -75.125357, 40.093525 ], [ -75.12547, 40.094059 ], [ -75.125522, 40.094305 ], [ -75.125622, 40.094746 ], [ -75.125692, 40.095051 ], [ -75.125729, 40.095197 ], [ -75.125768, 40.095369 ], [ -75.125781, 40.095448 ], [ -75.125796, 40.0956 ], [ -75.125807, 40.095855 ], [ -75.125822, 40.096275 ], [ -75.125827, 40.096413 ], [ -75.12583, 40.096544 ], [ -75.125838, 40.096844 ], [ -75.125841, 40.096959 ], [ -75.125845, 40.097141 ], [ -75.125852, 40.097463 ], [ -75.125857, 40.097873 ], [ -75.125862, 40.098307 ], [ -75.125863, 40.098364 ], [ -75.125869, 40.098588 ], [ -75.125879, 40.098946 ], [ -75.12589, 40.099213 ], [ -75.1259, 40.099404 ], [ -75.125903, 40.099468 ], [ -75.125908, 40.099711 ], [ -75.125875, 40.099762 ], [ -75.125864, 40.09983 ], [ -75.125847, 40.099954 ], [ -75.125843, 40.100038 ], [ -75.12583, 40.10017 ], [ -75.125776, 40.10076 ], [ -75.125726, 40.10134 ], [ -75.125689, 40.101762 ], [ -75.125648, 40.10219 ], [ -75.125616, 40.102717 ], [ -75.125585, 40.103027 ], [ -75.125556, 40.103313 ], [ -75.125524, 40.103626 ], [ -75.125484, 40.103787 ], [ -75.12544, 40.103919 ], [ -75.125396, 40.10405 ], [ -75.125337, 40.104189 ], [ -75.12526, 40.104348 ], [ -75.125163, 40.104518 ], [ -75.124918, 40.104918 ], [ -75.124782, 40.105132 ], [ -75.124607, 40.105447 ], [ -75.124337, 40.105879 ], [ -75.124268, 40.106001 ], [ -75.124079, 40.106335 ], [ -75.123933, 40.106595 ], [ -75.123888, 40.106665 ], [ -75.123803, 40.106823 ], [ -75.123723, 40.106961 ], [ -75.123638, 40.10711 ], [ -75.123468, 40.107405 ], [ -75.123337, 40.107655 ], [ -75.123277, 40.107792 ], [ -75.123218, 40.107983 ], [ -75.123173, 40.108173 ], [ -75.123139, 40.108365 ], [ -75.123123, 40.108522 ], [ -75.12312, 40.108595 ], [ -75.12312, 40.108656 ], [ -75.123117, 40.108844 ], [ -75.123143, 40.109114 ], [ -75.123188, 40.109409 ], [ -75.12324, 40.109704 ], [ -75.12331, 40.110101 ], [ -75.123327, 40.110219 ], [ -75.123365, 40.110465 ], [ -75.1234, 40.110681 ], [ -75.123415, 40.110821 ], [ -75.123418, 40.110979 ], [ -75.12342, 40.111166 ], [ -75.1234, 40.111332 ], [ -75.123365, 40.1115 ], [ -75.123322, 40.111667 ], [ -75.123265, 40.11183 ], [ -75.123211, 40.111973 ], [ -75.12314, 40.112111 ], [ -75.123012, 40.112358 ], [ -75.12267, 40.112943 ], [ -75.122511, 40.113215 ], [ -75.122408, 40.113389 ], [ -75.122101, 40.113937 ], [ -75.122018, 40.114086 ], [ -75.121765, 40.114535 ], [ -75.121066, 40.115735 ], [ -75.12101, 40.115836 ], [ -75.120875, 40.116082 ], [ -75.120668, 40.116464 ], [ -75.120429, 40.116878 ], [ -75.120376, 40.116963 ], [ -75.120201, 40.117263 ], [ -75.119525, 40.118448 ], [ -75.119475, 40.11853 ], [ -75.119256, 40.118911 ], [ -75.119005, 40.119361 ], [ -75.118385, 40.120462 ], [ -75.11819, 40.120809 ], [ -75.117837, 40.121406 ], [ -75.117671, 40.121688 ], [ -75.117504, 40.122004 ], [ -75.117454, 40.122108 ], [ -75.117429, 40.122187 ], [ -75.117337, 40.122491 ], [ -75.117284, 40.122662 ], [ -75.117279, 40.122692 ], [ -75.117274, 40.122764 ], [ -75.117251, 40.122949 ], [ -75.117246, 40.123028 ], [ -75.117243, 40.123121 ], [ -75.117243, 40.123453 ], [ -75.117243, 40.123745 ], [ -75.117246, 40.124322 ], [ -75.117246, 40.124656 ], [ -75.117255, 40.124933 ], [ -75.117255, 40.12524 ], [ -75.117257, 40.12537 ], [ -75.117255, 40.125403 ], [ -75.117245, 40.125551 ], [ -75.11723, 40.125713 ], [ -75.117218, 40.125845 ], [ -75.117205, 40.125974 ], [ -75.117201, 40.126007 ], [ -75.116946, 40.127553 ], [ -75.116926, 40.127672 ], [ -75.116857, 40.128102 ], [ -75.116791, 40.128482 ], [ -75.116677, 40.128986 ], [ -75.116609, 40.129276 ], [ -75.1165, 40.129684 ], [ -75.116325, 40.130359 ], [ -75.116235, 40.13068 ], [ -75.1162, 40.13079 ], [ -75.116045, 40.131302 ], [ -75.116008, 40.131412 ], [ -75.115973, 40.131521 ], [ -75.115873, 40.131859 ], [ -75.115788, 40.13213 ], [ -75.115681, 40.132465 ], [ -75.115546, 40.13292 ], [ -75.115403, 40.133351 ], [ -75.115235, 40.133901 ], [ -75.115009, 40.134633 ], [ -75.114967, 40.13474 ], [ -75.11486, 40.134962 ], [ -75.114622, 40.135365 ], [ -75.114496, 40.135563 ], [ -75.114192, 40.136069 ], [ -75.114051, 40.136303 ], [ -75.113864, 40.136606 ], [ -75.113734, 40.13681 ], [ -75.113704, 40.136857 ], [ -75.113571, 40.137072 ], [ -75.113441, 40.137333 ], [ -75.113236, 40.137753 ], [ -75.113125, 40.137972 ], [ -75.112946, 40.138346 ], [ -75.112715, 40.138813 ], [ -75.112698, 40.13886 ], [ -75.112521, 40.139222 ], [ -75.112363, 40.139542 ], [ -75.112186, 40.139908 ], [ -75.111995, 40.140299 ], [ -75.111969, 40.140356 ], [ -75.111925, 40.140484 ], [ -75.111896, 40.140612 ], [ -75.111884, 40.140716 ], [ -75.11188, 40.140892 ], [ -75.111896, 40.141017 ], [ -75.111924, 40.141148 ], [ -75.111938, 40.141185 ], [ -75.111967, 40.141275 ], [ -75.112029, 40.141408 ], [ -75.112107, 40.141555 ], [ -75.112201, 40.141694 ], [ -75.112354, 40.141903 ], [ -75.112464, 40.142036 ], [ -75.112569, 40.142142 ], [ -75.112631, 40.142198 ], [ -75.112692, 40.142244 ], [ -75.112772, 40.1423 ], [ -75.112956, 40.14241 ], [ -75.113158, 40.142531 ], [ -75.113363, 40.142635 ], [ -75.113496, 40.1427 ], [ -75.113734, 40.142799 ], [ -75.11416, 40.14297 ], [ -75.11446, 40.143091 ], [ -75.114601, 40.143159 ], [ -75.115012, 40.143388 ], [ -75.115144, 40.14346 ], [ -75.115298, 40.143544 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.116554, 40.144874 ], [ -75.116672, 40.144798 ], [ -75.11693, 40.144621 ], [ -75.117122, 40.144491 ], [ -75.117933, 40.14394 ], [ -75.118983, 40.14322 ], [ -75.119157, 40.143102 ], [ -75.119268, 40.143028 ], [ -75.119273, 40.143025 ], [ -75.119494, 40.142883 ], [ -75.119846, 40.143086 ], [ -75.120105, 40.14324 ], [ -75.120266, 40.143336 ], [ -75.120474, 40.14346 ], [ -75.121408, 40.144025 ], [ -75.121602, 40.144128 ], [ -75.121695, 40.144133 ], [ -75.122068, 40.144356 ], [ -75.122403, 40.144548 ], [ -75.12358, 40.145247 ], [ -75.124065, 40.145541 ], [ -75.124394, 40.14574 ], [ -75.124459, 40.145781 ], [ -75.124501, 40.145862 ], [ -75.124591, 40.145917 ], [ -75.125217, 40.146299 ], [ -75.125432, 40.14642 ], [ -75.126069, 40.146803 ], [ -75.126265, 40.146919 ], [ -75.126916, 40.147307 ], [ -75.127758, 40.147808 ], [ -75.128624, 40.148317 ], [ -75.128839, 40.148449 ], [ -75.128975, 40.148531 ], [ -75.129325, 40.148744 ], [ -75.129527, 40.14886 ], [ -75.130063, 40.149177 ], [ -75.131337, 40.14993 ], [ -75.131492, 40.149974 ], [ -75.13266, 40.15069 ], [ -75.133547, 40.151209 ], [ -75.133847, 40.151385 ], [ -75.134074, 40.151517 ], [ -75.134383, 40.151711 ], [ -75.134488, 40.151772 ], [ -75.134898, 40.152013 ], [ -75.135643, 40.152449 ], [ -75.137126, 40.15335 ], [ -75.137356, 40.15349 ], [ -75.137836, 40.153783 ], [ -75.137981, 40.15387 ], [ -75.13815, 40.153969 ], [ -75.138344, 40.154086 ], [ -75.138702, 40.154303 ], [ -75.13888, 40.154416 ], [ -75.138947, 40.15446 ], [ -75.139001, 40.154495 ], [ -75.139209, 40.154626 ], [ -75.139321, 40.154696 ], [ -75.139623, 40.154872 ], [ -75.140315, 40.155274 ], [ -75.140887, 40.155608 ], [ -75.141041, 40.155725 ], [ -75.141089, 40.155805 ], [ -75.141187, 40.155859 ], [ -75.141663, 40.156124 ], [ -75.142171, 40.156424 ], [ -75.142648, 40.156707 ], [ -75.143069, 40.156956 ], [ -75.143685, 40.157311 ], [ -75.144433, 40.157739 ], [ -75.144497, 40.157775 ], [ -75.144547, 40.157803 ], [ -75.144623, 40.157822 ], [ -75.145703, 40.158439 ], [ -75.145819, 40.158512 ], [ -75.145998, 40.158626 ], [ -75.146602, 40.159008 ], [ -75.146895, 40.15918 ], [ -75.147165, 40.15934 ], [ -75.147426, 40.159493 ], [ -75.148365, 40.160046 ], [ -75.148313, 40.160095 ], [ -75.146835, 40.161556 ], [ -75.145605, 40.162735 ], [ -75.145392, 40.162945 ], [ -75.145383, 40.162987 ], [ -75.145398, 40.163034 ], [ -75.145423, 40.163076 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307740", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144264, 40.041433 ], [ -75.144318, 40.041466 ], [ -75.144357, 40.041506 ], [ -75.144381, 40.041561 ], [ -75.144398, 40.041623 ], [ -75.144404, 40.041658 ], [ -75.144421, 40.041747 ], [ -75.144412, 40.041989 ], [ -75.144427, 40.042319 ], [ -75.144419, 40.042508 ], [ -75.144426, 40.04297 ], [ -75.144438, 40.043751 ], [ -75.144503, 40.044101 ], [ -75.144627, 40.044562 ], [ -75.144674, 40.044737 ], [ -75.144945, 40.045415 ], [ -75.145105, 40.045819 ], [ -75.145251, 40.046186 ], [ -75.14537, 40.046548 ], [ -75.145414, 40.046744 ], [ -75.14546, 40.046949 ], [ -75.145517, 40.04739 ], [ -75.1455, 40.047591 ], [ -75.145437, 40.047809 ], [ -75.145375, 40.047981 ], [ -75.145331, 40.048089 ], [ -75.145273, 40.048198 ], [ -75.14497, 40.048677 ], [ -75.144179, 40.049879 ], [ -75.144029, 40.050126 ], [ -75.143605, 40.050747 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141282, 40.054147 ], [ -75.141267, 40.05419 ], [ -75.14121, 40.05439 ], [ -75.141184, 40.054463 ], [ -75.14116, 40.05452 ], [ -75.141121, 40.054584 ], [ -75.141072, 40.054652 ], [ -75.140841, 40.055019 ], [ -75.140726, 40.055208 ], [ -75.140684, 40.055277 ], [ -75.140692, 40.055336 ], [ -75.140245, 40.056073 ], [ -75.139938, 40.05658 ], [ -75.139695, 40.056968 ], [ -75.139411, 40.057432 ], [ -75.139061, 40.058006 ], [ -75.138624, 40.058732 ], [ -75.138171, 40.059467 ], [ -75.137948, 40.059829 ], [ -75.137693, 40.060241 ], [ -75.137609, 40.060382 ], [ -75.137286, 40.060919 ], [ -75.137203, 40.061049 ], [ -75.137053, 40.061295 ], [ -75.136948, 40.061347 ], [ -75.136923, 40.061378 ], [ -75.136886, 40.061441 ], [ -75.136849, 40.061518 ], [ -75.13682, 40.061572 ], [ -75.136748, 40.061695 ], [ -75.136712, 40.061758 ], [ -75.136667, 40.061838 ], [ -75.136617, 40.06191 ], [ -75.136517, 40.06208 ], [ -75.136096, 40.062785 ], [ -75.135938, 40.063071 ], [ -75.135803, 40.063305 ], [ -75.135688, 40.063493 ], [ -75.135292, 40.064266 ], [ -75.13523, 40.064415 ], [ -75.135171, 40.064555 ], [ -75.135098, 40.064729 ], [ -75.134954, 40.065073 ], [ -75.13489, 40.065248 ], [ -75.134849, 40.065391 ], [ -75.134783, 40.065666 ], [ -75.134739, 40.065905 ], [ -75.13471, 40.066123 ], [ -75.134633, 40.066603 ], [ -75.134598, 40.066834 ], [ -75.134575, 40.066953 ], [ -75.134484, 40.067583 ], [ -75.134459, 40.067735 ], [ -75.134307, 40.068635 ], [ -75.134281, 40.068797 ], [ -75.134262, 40.068902 ], [ -75.1342, 40.06925 ], [ -75.134109, 40.069872 ], [ -75.13407, 40.070082 ], [ -75.134027, 40.070309 ], [ -75.133996, 40.070429 ], [ -75.133957, 40.070574 ], [ -75.133896, 40.070741 ], [ -75.133855, 40.070831 ], [ -75.133828, 40.070892 ], [ -75.133709, 40.071103 ], [ -75.133603, 40.071253 ], [ -75.133453, 40.071439 ], [ -75.133319, 40.071594 ], [ -75.133186, 40.071722 ], [ -75.133088, 40.071813 ], [ -75.132911, 40.071971 ], [ -75.132849, 40.072027 ], [ -75.132739, 40.072125 ], [ -75.132611, 40.072238 ], [ -75.132122, 40.072666 ], [ -75.131827, 40.072925 ], [ -75.131608, 40.073118 ], [ -75.13138, 40.073291 ], [ -75.131295, 40.073355 ], [ -75.131215, 40.073416 ], [ -75.131136, 40.073468 ], [ -75.131047, 40.073524 ], [ -75.130899, 40.073619 ], [ -75.130695, 40.073743 ], [ -75.130363, 40.073932 ], [ -75.130335, 40.07395 ], [ -75.1302, 40.074037 ], [ -75.13008, 40.074118 ], [ -75.129982, 40.07419 ], [ -75.129956, 40.074208 ], [ -75.129851, 40.074293 ], [ -75.129751, 40.074382 ], [ -75.129649, 40.074481 ], [ -75.129472, 40.07468 ], [ -75.128772, 40.075384 ], [ -75.128633, 40.075537 ], [ -75.128503, 40.07568 ], [ -75.12821, 40.075981 ], [ -75.127772, 40.076437 ], [ -75.127301, 40.076938 ], [ -75.127063, 40.077188 ], [ -75.126891, 40.077382 ], [ -75.126857, 40.07742 ], [ -75.126713, 40.077604 ], [ -75.126632, 40.077729 ], [ -75.126587, 40.077799 ], [ -75.12655, 40.077875 ], [ -75.126475, 40.078036 ], [ -75.126402, 40.078212 ], [ -75.126359, 40.078327 ], [ -75.126317, 40.078455 ], [ -75.126286, 40.07857 ], [ -75.126249, 40.078778 ], [ -75.126212, 40.079049 ], [ -75.126211, 40.079243 ], [ -75.126222, 40.079389 ], [ -75.126232, 40.079513 ], [ -75.126249, 40.079646 ], [ -75.126262, 40.07971 ], [ -75.126277, 40.079782 ], [ -75.126308, 40.079909 ], [ -75.12637, 40.080101 ], [ -75.126444, 40.08034 ], [ -75.126453, 40.080363 ], [ -75.126541, 40.080618 ], [ -75.126667, 40.08101 ], [ -75.126708, 40.081133 ], [ -75.126885, 40.081633 ], [ -75.126927, 40.081754 ], [ -75.126981, 40.081906 ], [ -75.127068, 40.082153 ], [ -75.127268, 40.082727 ], [ -75.127343, 40.082946 ], [ -75.127436, 40.083214 ], [ -75.127665, 40.083898 ], [ -75.127727, 40.084081 ], [ -75.127759, 40.084176 ], [ -75.127789, 40.084258 ], [ -75.127825, 40.084391 ], [ -75.127862, 40.084585 ], [ -75.127896, 40.084821 ], [ -75.127907, 40.085102 ], [ -75.12791, 40.085139 ], [ -75.127907, 40.085218 ], [ -75.127906, 40.085454 ], [ -75.127899, 40.085826 ], [ -75.127889, 40.086354 ], [ -75.127879, 40.086534 ], [ -75.127872, 40.086663 ], [ -75.127849, 40.086852 ], [ -75.127828, 40.08696 ], [ -75.127805, 40.087053 ], [ -75.12777, 40.087167 ], [ -75.127749, 40.087258 ], [ -75.127718, 40.08737 ], [ -75.127695, 40.087427 ], [ -75.127664, 40.087514 ], [ -75.127603, 40.087647 ], [ -75.127332, 40.088203 ], [ -75.12726, 40.088342 ], [ -75.127185, 40.088488 ], [ -75.126798, 40.089265 ], [ -75.126685, 40.089587 ], [ -75.126544, 40.089983 ], [ -75.126437, 40.090229 ], [ -75.125875, 40.091522 ], [ -75.125597, 40.092178 ], [ -75.125613, 40.092257 ], [ -75.125552, 40.092399 ], [ -75.125509, 40.092493 ], [ -75.125427, 40.092661 ], [ -75.125314, 40.092971 ], [ -75.1253, 40.093027 ], [ -75.12529, 40.093088 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093156 ], [ -75.125294, 40.0932 ], [ -75.1253, 40.093247 ], [ -75.125316, 40.093326 ], [ -75.125357, 40.093525 ], [ -75.12547, 40.094059 ], [ -75.125522, 40.094305 ], [ -75.125622, 40.094746 ], [ -75.125692, 40.095051 ], [ -75.125729, 40.095197 ], [ -75.125768, 40.095369 ], [ -75.125781, 40.095448 ], [ -75.125796, 40.0956 ], [ -75.125807, 40.095855 ], [ -75.125822, 40.096275 ], [ -75.125827, 40.096413 ], [ -75.12583, 40.096544 ], [ -75.125838, 40.096844 ], [ -75.125841, 40.096959 ], [ -75.125845, 40.097141 ], [ -75.125852, 40.097463 ], [ -75.125857, 40.097873 ], [ -75.125862, 40.098307 ], [ -75.125863, 40.098364 ], [ -75.125869, 40.098588 ], [ -75.125879, 40.098946 ], [ -75.12589, 40.099213 ], [ -75.1259, 40.099404 ], [ -75.125903, 40.099468 ], [ -75.125908, 40.099711 ], [ -75.125875, 40.099762 ], [ -75.125864, 40.09983 ], [ -75.125847, 40.099954 ], [ -75.125843, 40.100038 ], [ -75.12583, 40.10017 ], [ -75.125776, 40.10076 ], [ -75.125726, 40.10134 ], [ -75.125689, 40.101762 ], [ -75.125648, 40.10219 ], [ -75.125616, 40.102717 ], [ -75.125585, 40.103027 ], [ -75.125556, 40.103313 ], [ -75.125524, 40.103626 ], [ -75.125484, 40.103787 ], [ -75.12544, 40.103919 ], [ -75.125396, 40.10405 ], [ -75.125337, 40.104189 ], [ -75.12526, 40.104348 ], [ -75.125163, 40.104518 ], [ -75.124918, 40.104918 ], [ -75.124782, 40.105132 ], [ -75.124607, 40.105447 ], [ -75.124337, 40.105879 ], [ -75.124268, 40.106001 ], [ -75.124079, 40.106335 ], [ -75.123933, 40.106595 ], [ -75.123888, 40.106665 ], [ -75.123803, 40.106823 ], [ -75.123723, 40.106961 ], [ -75.123638, 40.10711 ], [ -75.123468, 40.107405 ], [ -75.123337, 40.107655 ], [ -75.123277, 40.107792 ], [ -75.123218, 40.107983 ], [ -75.123173, 40.108173 ], [ -75.123139, 40.108365 ], [ -75.123123, 40.108522 ], [ -75.12312, 40.108595 ], [ -75.12312, 40.108656 ], [ -75.123117, 40.108844 ], [ -75.123143, 40.109114 ], [ -75.123188, 40.109409 ], [ -75.12324, 40.109704 ], [ -75.12331, 40.110101 ], [ -75.123327, 40.110219 ], [ -75.123365, 40.110465 ], [ -75.1234, 40.110681 ], [ -75.123415, 40.110821 ], [ -75.123418, 40.110979 ], [ -75.12342, 40.111166 ], [ -75.1234, 40.111332 ], [ -75.123365, 40.1115 ], [ -75.123322, 40.111667 ], [ -75.123265, 40.11183 ], [ -75.123211, 40.111973 ], [ -75.12314, 40.112111 ], [ -75.123012, 40.112358 ], [ -75.12267, 40.112943 ], [ -75.122511, 40.113215 ], [ -75.122408, 40.113389 ], [ -75.122101, 40.113937 ], [ -75.122018, 40.114086 ], [ -75.121765, 40.114535 ], [ -75.121066, 40.115735 ], [ -75.12101, 40.115836 ], [ -75.120875, 40.116082 ], [ -75.120668, 40.116464 ], [ -75.120429, 40.116878 ], [ -75.120376, 40.116963 ], [ -75.120201, 40.117263 ], [ -75.119525, 40.118448 ], [ -75.119475, 40.11853 ], [ -75.119256, 40.118911 ], [ -75.119005, 40.119361 ], [ -75.118385, 40.120462 ], [ -75.11819, 40.120809 ], [ -75.117837, 40.121406 ], [ -75.117671, 40.121688 ], [ -75.117504, 40.122004 ], [ -75.117454, 40.122108 ], [ -75.117429, 40.122187 ], [ -75.117337, 40.122491 ], [ -75.117284, 40.122662 ], [ -75.117279, 40.122692 ], [ -75.117274, 40.122764 ], [ -75.117251, 40.122949 ], [ -75.117246, 40.123028 ], [ -75.117243, 40.123121 ], [ -75.117243, 40.123453 ], [ -75.117243, 40.123745 ], [ -75.117246, 40.124322 ], [ -75.117246, 40.124656 ], [ -75.117255, 40.124933 ], [ -75.117255, 40.12524 ], [ -75.117257, 40.12537 ], [ -75.117255, 40.125403 ], [ -75.117245, 40.125551 ], [ -75.11723, 40.125713 ], [ -75.117218, 40.125845 ], [ -75.117205, 40.125974 ], [ -75.117201, 40.126007 ], [ -75.116946, 40.127553 ], [ -75.116926, 40.127672 ], [ -75.116857, 40.128102 ], [ -75.116791, 40.128482 ], [ -75.116677, 40.128986 ], [ -75.116609, 40.129276 ], [ -75.1165, 40.129684 ], [ -75.116325, 40.130359 ], [ -75.116235, 40.13068 ], [ -75.1162, 40.13079 ], [ -75.116045, 40.131302 ], [ -75.116008, 40.131412 ], [ -75.115973, 40.131521 ], [ -75.115873, 40.131859 ], [ -75.115788, 40.13213 ], [ -75.115681, 40.132465 ], [ -75.115546, 40.13292 ], [ -75.115403, 40.133351 ], [ -75.115235, 40.133901 ], [ -75.115009, 40.134633 ], [ -75.114967, 40.13474 ], [ -75.11486, 40.134962 ], [ -75.114622, 40.135365 ], [ -75.114496, 40.135563 ], [ -75.114192, 40.136069 ], [ -75.114051, 40.136303 ], [ -75.113864, 40.136606 ], [ -75.113734, 40.13681 ], [ -75.113704, 40.136857 ], [ -75.113571, 40.137072 ], [ -75.113441, 40.137333 ], [ -75.113236, 40.137753 ], [ -75.113125, 40.137972 ], [ -75.112946, 40.138346 ], [ -75.112715, 40.138813 ], [ -75.112698, 40.13886 ], [ -75.112521, 40.139222 ], [ -75.112363, 40.139542 ], [ -75.112186, 40.139908 ], [ -75.111995, 40.140299 ], [ -75.111969, 40.140356 ], [ -75.111925, 40.140484 ], [ -75.111896, 40.140612 ], [ -75.111884, 40.140716 ], [ -75.11188, 40.140892 ], [ -75.111896, 40.141017 ], [ -75.111924, 40.141148 ], [ -75.111938, 40.141185 ], [ -75.111967, 40.141275 ], [ -75.112029, 40.141408 ], [ -75.112107, 40.141555 ], [ -75.112201, 40.141694 ], [ -75.112354, 40.141903 ], [ -75.112464, 40.142036 ], [ -75.112569, 40.142142 ], [ -75.112631, 40.142198 ], [ -75.112692, 40.142244 ], [ -75.112772, 40.1423 ], [ -75.112956, 40.14241 ], [ -75.113158, 40.142531 ], [ -75.113363, 40.142635 ], [ -75.113496, 40.1427 ], [ -75.113734, 40.142799 ], [ -75.11416, 40.14297 ], [ -75.11446, 40.143091 ], [ -75.114601, 40.143159 ], [ -75.115012, 40.143388 ], [ -75.115144, 40.14346 ], [ -75.115298, 40.143544 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.116554, 40.144874 ], [ -75.116672, 40.144798 ], [ -75.11693, 40.144621 ], [ -75.117122, 40.144491 ], [ -75.117933, 40.14394 ], [ -75.118983, 40.14322 ], [ -75.119157, 40.143102 ], [ -75.119268, 40.143028 ], [ -75.119273, 40.143025 ], [ -75.119494, 40.142883 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307741", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144264, 40.041433 ], [ -75.144318, 40.041466 ], [ -75.144357, 40.041506 ], [ -75.144381, 40.041561 ], [ -75.144398, 40.041623 ], [ -75.144404, 40.041658 ], [ -75.144421, 40.041747 ], [ -75.144412, 40.041989 ], [ -75.144427, 40.042319 ], [ -75.144419, 40.042508 ], [ -75.144426, 40.04297 ], [ -75.144438, 40.043751 ], [ -75.144503, 40.044101 ], [ -75.144627, 40.044562 ], [ -75.144674, 40.044737 ], [ -75.144945, 40.045415 ], [ -75.145105, 40.045819 ], [ -75.145251, 40.046186 ], [ -75.14537, 40.046548 ], [ -75.145414, 40.046744 ], [ -75.14546, 40.046949 ], [ -75.145517, 40.04739 ], [ -75.1455, 40.047591 ], [ -75.145437, 40.047809 ], [ -75.145375, 40.047981 ], [ -75.145331, 40.048089 ], [ -75.145273, 40.048198 ], [ -75.14497, 40.048677 ], [ -75.144179, 40.049879 ], [ -75.144029, 40.050126 ], [ -75.143605, 40.050747 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141282, 40.054147 ], [ -75.141267, 40.05419 ], [ -75.14121, 40.05439 ], [ -75.141184, 40.054463 ], [ -75.14116, 40.05452 ], [ -75.141121, 40.054584 ], [ -75.141072, 40.054652 ], [ -75.140841, 40.055019 ], [ -75.140726, 40.055208 ], [ -75.140684, 40.055277 ], [ -75.140692, 40.055336 ], [ -75.140245, 40.056073 ], [ -75.139938, 40.05658 ], [ -75.139695, 40.056968 ], [ -75.139411, 40.057432 ], [ -75.139061, 40.058006 ], [ -75.138624, 40.058732 ], [ -75.138171, 40.059467 ], [ -75.137948, 40.059829 ], [ -75.137693, 40.060241 ], [ -75.137609, 40.060382 ], [ -75.137286, 40.060919 ], [ -75.137203, 40.061049 ], [ -75.137053, 40.061295 ], [ -75.136948, 40.061347 ], [ -75.136923, 40.061378 ], [ -75.136886, 40.061441 ], [ -75.136849, 40.061518 ], [ -75.13682, 40.061572 ], [ -75.136748, 40.061695 ], [ -75.136712, 40.061758 ], [ -75.136667, 40.061838 ], [ -75.136617, 40.06191 ], [ -75.136517, 40.06208 ], [ -75.136096, 40.062785 ], [ -75.135938, 40.063071 ], [ -75.135803, 40.063305 ], [ -75.135688, 40.063493 ], [ -75.135292, 40.064266 ], [ -75.13523, 40.064415 ], [ -75.135171, 40.064555 ], [ -75.135098, 40.064729 ], [ -75.134954, 40.065073 ], [ -75.13489, 40.065248 ], [ -75.134849, 40.065391 ], [ -75.134783, 40.065666 ], [ -75.134739, 40.065905 ], [ -75.13471, 40.066123 ], [ -75.134633, 40.066603 ], [ -75.134598, 40.066834 ], [ -75.134575, 40.066953 ], [ -75.134484, 40.067583 ], [ -75.134459, 40.067735 ], [ -75.134307, 40.068635 ], [ -75.134281, 40.068797 ], [ -75.134262, 40.068902 ], [ -75.1342, 40.06925 ], [ -75.134109, 40.069872 ], [ -75.13407, 40.070082 ], [ -75.134027, 40.070309 ], [ -75.133996, 40.070429 ], [ -75.133957, 40.070574 ], [ -75.133896, 40.070741 ], [ -75.133855, 40.070831 ], [ -75.133828, 40.070892 ], [ -75.133709, 40.071103 ], [ -75.133603, 40.071253 ], [ -75.133453, 40.071439 ], [ -75.133319, 40.071594 ], [ -75.133186, 40.071722 ], [ -75.133088, 40.071813 ], [ -75.132911, 40.071971 ], [ -75.132849, 40.072027 ], [ -75.132739, 40.072125 ], [ -75.132611, 40.072238 ], [ -75.132122, 40.072666 ], [ -75.131827, 40.072925 ], [ -75.131608, 40.073118 ], [ -75.13138, 40.073291 ], [ -75.131295, 40.073355 ], [ -75.131215, 40.073416 ], [ -75.131136, 40.073468 ], [ -75.131047, 40.073524 ], [ -75.130899, 40.073619 ], [ -75.130695, 40.073743 ], [ -75.130363, 40.073932 ], [ -75.130335, 40.07395 ], [ -75.1302, 40.074037 ], [ -75.13008, 40.074118 ], [ -75.129982, 40.07419 ], [ -75.129956, 40.074208 ], [ -75.129851, 40.074293 ], [ -75.129751, 40.074382 ], [ -75.129649, 40.074481 ], [ -75.129472, 40.07468 ], [ -75.128772, 40.075384 ], [ -75.128633, 40.075537 ], [ -75.128503, 40.07568 ], [ -75.12821, 40.075981 ], [ -75.127772, 40.076437 ], [ -75.127301, 40.076938 ], [ -75.127063, 40.077188 ], [ -75.126891, 40.077382 ], [ -75.126857, 40.07742 ], [ -75.126713, 40.077604 ], [ -75.126632, 40.077729 ], [ -75.126587, 40.077799 ], [ -75.12655, 40.077875 ], [ -75.126475, 40.078036 ], [ -75.126402, 40.078212 ], [ -75.126359, 40.078327 ], [ -75.126317, 40.078455 ], [ -75.126286, 40.07857 ], [ -75.126249, 40.078778 ], [ -75.126212, 40.079049 ], [ -75.126211, 40.079243 ], [ -75.126222, 40.079389 ], [ -75.126232, 40.079513 ], [ -75.126249, 40.079646 ], [ -75.126262, 40.07971 ], [ -75.126277, 40.079782 ], [ -75.126308, 40.079909 ], [ -75.12637, 40.080101 ], [ -75.126444, 40.08034 ], [ -75.126453, 40.080363 ], [ -75.126541, 40.080618 ], [ -75.126667, 40.08101 ], [ -75.126708, 40.081133 ], [ -75.126885, 40.081633 ], [ -75.126927, 40.081754 ], [ -75.126981, 40.081906 ], [ -75.127068, 40.082153 ], [ -75.127268, 40.082727 ], [ -75.127343, 40.082946 ], [ -75.127436, 40.083214 ], [ -75.127665, 40.083898 ], [ -75.127727, 40.084081 ], [ -75.127759, 40.084176 ], [ -75.127789, 40.084258 ], [ -75.127825, 40.084391 ], [ -75.127862, 40.084585 ], [ -75.127896, 40.084821 ], [ -75.127907, 40.085102 ], [ -75.12791, 40.085139 ], [ -75.127907, 40.085218 ], [ -75.127906, 40.085454 ], [ -75.127899, 40.085826 ], [ -75.127889, 40.086354 ], [ -75.127879, 40.086534 ], [ -75.127872, 40.086663 ], [ -75.127849, 40.086852 ], [ -75.127828, 40.08696 ], [ -75.127805, 40.087053 ], [ -75.12777, 40.087167 ], [ -75.127749, 40.087258 ], [ -75.127718, 40.08737 ], [ -75.127695, 40.087427 ], [ -75.127664, 40.087514 ], [ -75.127603, 40.087647 ], [ -75.127332, 40.088203 ], [ -75.12726, 40.088342 ], [ -75.127185, 40.088488 ], [ -75.126798, 40.089265 ], [ -75.126685, 40.089587 ], [ -75.126544, 40.089983 ], [ -75.126437, 40.090229 ], [ -75.125875, 40.091522 ], [ -75.125597, 40.092178 ], [ -75.125613, 40.092257 ], [ -75.125552, 40.092399 ], [ -75.125509, 40.092493 ], [ -75.125427, 40.092661 ], [ -75.125314, 40.092971 ], [ -75.1253, 40.093027 ], [ -75.12529, 40.093088 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093156 ], [ -75.125294, 40.0932 ], [ -75.1253, 40.093247 ], [ -75.125316, 40.093326 ], [ -75.125357, 40.093525 ], [ -75.12547, 40.094059 ], [ -75.125522, 40.094305 ], [ -75.125622, 40.094746 ], [ -75.125692, 40.095051 ], [ -75.125729, 40.095197 ], [ -75.125768, 40.095369 ], [ -75.125781, 40.095448 ], [ -75.125796, 40.0956 ], [ -75.125807, 40.095855 ], [ -75.125822, 40.096275 ], [ -75.125827, 40.096413 ], [ -75.12583, 40.096544 ], [ -75.125838, 40.096844 ], [ -75.125841, 40.096959 ], [ -75.125845, 40.097141 ], [ -75.125852, 40.097463 ], [ -75.125857, 40.097873 ], [ -75.125862, 40.098307 ], [ -75.125863, 40.098364 ], [ -75.125869, 40.098588 ], [ -75.125879, 40.098946 ], [ -75.12589, 40.099213 ], [ -75.1259, 40.099404 ], [ -75.125903, 40.099468 ], [ -75.125908, 40.099711 ], [ -75.125875, 40.099762 ], [ -75.125864, 40.09983 ], [ -75.125847, 40.099954 ], [ -75.125843, 40.100038 ], [ -75.12583, 40.10017 ], [ -75.125776, 40.10076 ], [ -75.125726, 40.10134 ], [ -75.125689, 40.101762 ], [ -75.125648, 40.10219 ], [ -75.125616, 40.102717 ], [ -75.125585, 40.103027 ], [ -75.125556, 40.103313 ], [ -75.125524, 40.103626 ], [ -75.125484, 40.103787 ], [ -75.12544, 40.103919 ], [ -75.125396, 40.10405 ], [ -75.125337, 40.104189 ], [ -75.12526, 40.104348 ], [ -75.125163, 40.104518 ], [ -75.124918, 40.104918 ], [ -75.124782, 40.105132 ], [ -75.124607, 40.105447 ], [ -75.124337, 40.105879 ], [ -75.124268, 40.106001 ], [ -75.124079, 40.106335 ], [ -75.123933, 40.106595 ], [ -75.123888, 40.106665 ], [ -75.123803, 40.106823 ], [ -75.123723, 40.106961 ], [ -75.123638, 40.10711 ], [ -75.123468, 40.107405 ], [ -75.123337, 40.107655 ], [ -75.123277, 40.107792 ], [ -75.123218, 40.107983 ], [ -75.123173, 40.108173 ], [ -75.123139, 40.108365 ], [ -75.123123, 40.108522 ], [ -75.12312, 40.108595 ], [ -75.12312, 40.108656 ], [ -75.123117, 40.108844 ], [ -75.123143, 40.109114 ], [ -75.123188, 40.109409 ], [ -75.12324, 40.109704 ], [ -75.12331, 40.110101 ], [ -75.123327, 40.110219 ], [ -75.123365, 40.110465 ], [ -75.1234, 40.110681 ], [ -75.123415, 40.110821 ], [ -75.123418, 40.110979 ], [ -75.12342, 40.111166 ], [ -75.1234, 40.111332 ], [ -75.123365, 40.1115 ], [ -75.123322, 40.111667 ], [ -75.123265, 40.11183 ], [ -75.123211, 40.111973 ], [ -75.12314, 40.112111 ], [ -75.123012, 40.112358 ], [ -75.12267, 40.112943 ], [ -75.122511, 40.113215 ], [ -75.122408, 40.113389 ], [ -75.122101, 40.113937 ], [ -75.122018, 40.114086 ], [ -75.121765, 40.114535 ], [ -75.121066, 40.115735 ], [ -75.12101, 40.115836 ], [ -75.120875, 40.116082 ], [ -75.120668, 40.116464 ], [ -75.120429, 40.116878 ], [ -75.120376, 40.116963 ], [ -75.120201, 40.117263 ], [ -75.119525, 40.118448 ], [ -75.119475, 40.11853 ], [ -75.119256, 40.118911 ], [ -75.119005, 40.119361 ], [ -75.118385, 40.120462 ], [ -75.11819, 40.120809 ], [ -75.117837, 40.121406 ], [ -75.117671, 40.121688 ], [ -75.117504, 40.122004 ], [ -75.117454, 40.122108 ], [ -75.117429, 40.122187 ], [ -75.117337, 40.122491 ], [ -75.117284, 40.122662 ], [ -75.117279, 40.122692 ], [ -75.117274, 40.122764 ], [ -75.117251, 40.122949 ], [ -75.117246, 40.123028 ], [ -75.117243, 40.123121 ], [ -75.117243, 40.123453 ], [ -75.117243, 40.123745 ], [ -75.117246, 40.124322 ], [ -75.117246, 40.124656 ], [ -75.117255, 40.124933 ], [ -75.117255, 40.12524 ], [ -75.117257, 40.12537 ], [ -75.117255, 40.125403 ], [ -75.117245, 40.125551 ], [ -75.11723, 40.125713 ], [ -75.117218, 40.125845 ], [ -75.117205, 40.125974 ], [ -75.117201, 40.126007 ], [ -75.116946, 40.127553 ], [ -75.116926, 40.127672 ], [ -75.116857, 40.128102 ], [ -75.116791, 40.128482 ], [ -75.116677, 40.128986 ], [ -75.116609, 40.129276 ], [ -75.1165, 40.129684 ], [ -75.116325, 40.130359 ], [ -75.116235, 40.13068 ], [ -75.1162, 40.13079 ], [ -75.116045, 40.131302 ], [ -75.116008, 40.131412 ], [ -75.115973, 40.131521 ], [ -75.115873, 40.131859 ], [ -75.115788, 40.13213 ], [ -75.115681, 40.132465 ], [ -75.115546, 40.13292 ], [ -75.115403, 40.133351 ], [ -75.115235, 40.133901 ], [ -75.115009, 40.134633 ], [ -75.114967, 40.13474 ], [ -75.11486, 40.134962 ], [ -75.114622, 40.135365 ], [ -75.114496, 40.135563 ], [ -75.114192, 40.136069 ], [ -75.114051, 40.136303 ], [ -75.113864, 40.136606 ], [ -75.113734, 40.13681 ], [ -75.113704, 40.136857 ], [ -75.113571, 40.137072 ], [ -75.113441, 40.137333 ], [ -75.113236, 40.137753 ], [ -75.113125, 40.137972 ], [ -75.112946, 40.138346 ], [ -75.112715, 40.138813 ], [ -75.112698, 40.13886 ], [ -75.112521, 40.139222 ], [ -75.112363, 40.139542 ], [ -75.112186, 40.139908 ], [ -75.111995, 40.140299 ], [ -75.111969, 40.140356 ], [ -75.111925, 40.140484 ], [ -75.111896, 40.140612 ], [ -75.111884, 40.140716 ], [ -75.11188, 40.140892 ], [ -75.111896, 40.141017 ], [ -75.111924, 40.141148 ], [ -75.111938, 40.141185 ], [ -75.111967, 40.141275 ], [ -75.112029, 40.141408 ], [ -75.112107, 40.141555 ], [ -75.112201, 40.141694 ], [ -75.112354, 40.141903 ], [ -75.112464, 40.142036 ], [ -75.112569, 40.142142 ], [ -75.112631, 40.142198 ], [ -75.112692, 40.142244 ], [ -75.112772, 40.1423 ], [ -75.112956, 40.14241 ], [ -75.113158, 40.142531 ], [ -75.113363, 40.142635 ], [ -75.113496, 40.1427 ], [ -75.113734, 40.142799 ], [ -75.11416, 40.14297 ], [ -75.11446, 40.143091 ], [ -75.114601, 40.143159 ], [ -75.115012, 40.143388 ], [ -75.115144, 40.14346 ], [ -75.115298, 40.143544 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.116554, 40.144874 ], [ -75.116672, 40.144798 ], [ -75.11693, 40.144621 ], [ -75.117122, 40.144491 ], [ -75.117933, 40.14394 ], [ -75.118983, 40.14322 ], [ -75.119157, 40.143102 ], [ -75.119268, 40.143028 ], [ -75.119273, 40.143025 ], [ -75.119494, 40.142883 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115012, 40.143277 ], [ -75.114874, 40.143203 ], [ -75.114775, 40.14315 ], [ -75.114627, 40.143083 ], [ -75.11452, 40.143035 ], [ -75.11446, 40.143091 ], [ -75.113554, 40.143988 ], [ -75.112797, 40.14474 ], [ -75.112269, 40.145257 ], [ -75.111614, 40.145892 ], [ -75.110993, 40.146504 ], [ -75.110368, 40.147107 ], [ -75.109512, 40.14792 ], [ -75.107927, 40.149469 ], [ -75.107395, 40.149985 ], [ -75.106946, 40.150391 ], [ -75.106466, 40.150861 ], [ -75.105649, 40.151654 ], [ -75.104582, 40.152702 ], [ -75.104299, 40.152996 ], [ -75.103669, 40.153763 ], [ -75.103548, 40.153909 ], [ -75.103416, 40.15405 ], [ -75.10334, 40.154121 ], [ -75.102724, 40.154626 ], [ -75.102238, 40.155059 ], [ -75.101337, 40.155946 ], [ -75.100805, 40.156461 ], [ -75.099263, 40.15799 ], [ -75.099003, 40.158254 ], [ -75.098018, 40.159197 ], [ -75.097811, 40.159397 ], [ -75.097399, 40.159808 ], [ -75.097321, 40.15988 ], [ -75.097242, 40.159941 ], [ -75.097144, 40.160008 ], [ -75.097032, 40.160074 ], [ -75.096949, 40.160118 ], [ -75.096843, 40.160163 ], [ -75.096734, 40.160204 ], [ -75.09664, 40.160233 ], [ -75.096524, 40.160264 ], [ -75.096414, 40.160287 ], [ -75.096302, 40.160308 ], [ -75.096249, 40.160315 ], [ -75.096153, 40.160323 ], [ -75.096062, 40.160326 ], [ -75.094327, 40.160317 ], [ -75.09391, 40.160312 ], [ -75.093704, 40.160318 ], [ -75.093626, 40.160322 ], [ -75.093536, 40.160331 ], [ -75.093425, 40.160343 ], [ -75.093362, 40.160353 ], [ -75.093285, 40.160374 ], [ -75.093113, 40.160422 ], [ -75.092787, 40.160565 ], [ -75.092686, 40.160622 ], [ -75.092561, 40.1607 ], [ -75.092501, 40.16075 ], [ -75.092435, 40.160806 ], [ -75.092381, 40.16086 ], [ -75.092264, 40.160975 ], [ -75.091932, 40.161358 ], [ -75.09172, 40.161601 ], [ -75.090921, 40.162479 ], [ -75.091788, 40.162524 ], [ -75.092559, 40.16256 ], [ -75.0953, 40.162687 ], [ -75.099002, 40.162859 ], [ -75.099255, 40.162865 ], [ -75.09942, 40.162855 ], [ -75.099521, 40.162845 ], [ -75.099603, 40.162835 ], [ -75.099662, 40.162825 ], [ -75.099716, 40.162811 ], [ -75.099783, 40.162789 ], [ -75.099831, 40.162769 ], [ -75.099933, 40.162717 ], [ -75.100019, 40.16267 ], [ -75.100124, 40.162606 ], [ -75.100219, 40.162544 ], [ -75.100287, 40.16249 ], [ -75.100421, 40.162375 ], [ -75.100648, 40.162158 ], [ -75.100701, 40.162113 ], [ -75.100765, 40.162061 ], [ -75.100817, 40.162028 ], [ -75.100887, 40.161994 ], [ -75.100979, 40.161958 ], [ -75.101094, 40.161924 ], [ -75.101252, 40.161878 ], [ -75.101351, 40.161851 ], [ -75.10145, 40.161834 ], [ -75.101542, 40.16182 ], [ -75.101643, 40.161809 ], [ -75.10176, 40.161806 ], [ -75.101903, 40.161806 ], [ -75.102072, 40.161812 ], [ -75.102215, 40.161815 ], [ -75.102437, 40.161823 ], [ -75.102511, 40.161828 ], [ -75.102584, 40.161839 ], [ -75.10268, 40.161863 ], [ -75.102784, 40.161892 ], [ -75.102899, 40.161919 ], [ -75.103017, 40.161944 ], [ -75.103104, 40.161958 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307742", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144264, 40.041433 ], [ -75.144318, 40.041466 ], [ -75.144357, 40.041506 ], [ -75.144381, 40.041561 ], [ -75.144398, 40.041623 ], [ -75.144404, 40.041658 ], [ -75.144421, 40.041747 ], [ -75.144412, 40.041989 ], [ -75.144427, 40.042319 ], [ -75.144419, 40.042508 ], [ -75.144426, 40.04297 ], [ -75.144438, 40.043751 ], [ -75.144503, 40.044101 ], [ -75.144627, 40.044562 ], [ -75.144674, 40.044737 ], [ -75.144945, 40.045415 ], [ -75.145105, 40.045819 ], [ -75.145251, 40.046186 ], [ -75.14537, 40.046548 ], [ -75.145414, 40.046744 ], [ -75.14546, 40.046949 ], [ -75.145517, 40.04739 ], [ -75.1455, 40.047591 ], [ -75.145437, 40.047809 ], [ -75.145375, 40.047981 ], [ -75.145331, 40.048089 ], [ -75.145273, 40.048198 ], [ -75.14497, 40.048677 ], [ -75.144179, 40.049879 ], [ -75.144029, 40.050126 ], [ -75.143605, 40.050747 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141282, 40.054147 ], [ -75.141267, 40.05419 ], [ -75.14121, 40.05439 ], [ -75.141184, 40.054463 ], [ -75.14116, 40.05452 ], [ -75.141121, 40.054584 ], [ -75.141072, 40.054652 ], [ -75.140841, 40.055019 ], [ -75.140726, 40.055208 ], [ -75.140684, 40.055277 ], [ -75.140692, 40.055336 ], [ -75.140245, 40.056073 ], [ -75.139938, 40.05658 ], [ -75.139695, 40.056968 ], [ -75.139411, 40.057432 ], [ -75.139061, 40.058006 ], [ -75.138624, 40.058732 ], [ -75.138171, 40.059467 ], [ -75.137948, 40.059829 ], [ -75.137693, 40.060241 ], [ -75.137609, 40.060382 ], [ -75.137286, 40.060919 ], [ -75.137203, 40.061049 ], [ -75.137053, 40.061295 ], [ -75.136948, 40.061347 ], [ -75.136923, 40.061378 ], [ -75.136886, 40.061441 ], [ -75.136849, 40.061518 ], [ -75.13682, 40.061572 ], [ -75.136748, 40.061695 ], [ -75.136712, 40.061758 ], [ -75.136667, 40.061838 ], [ -75.136617, 40.06191 ], [ -75.136517, 40.06208 ], [ -75.136096, 40.062785 ], [ -75.135938, 40.063071 ], [ -75.135803, 40.063305 ], [ -75.135688, 40.063493 ], [ -75.135292, 40.064266 ], [ -75.13523, 40.064415 ], [ -75.135171, 40.064555 ], [ -75.135098, 40.064729 ], [ -75.134954, 40.065073 ], [ -75.13489, 40.065248 ], [ -75.134849, 40.065391 ], [ -75.134783, 40.065666 ], [ -75.134739, 40.065905 ], [ -75.13471, 40.066123 ], [ -75.134633, 40.066603 ], [ -75.134598, 40.066834 ], [ -75.134575, 40.066953 ], [ -75.134484, 40.067583 ], [ -75.134459, 40.067735 ], [ -75.134307, 40.068635 ], [ -75.134281, 40.068797 ], [ -75.134262, 40.068902 ], [ -75.1342, 40.06925 ], [ -75.134109, 40.069872 ], [ -75.13407, 40.070082 ], [ -75.134027, 40.070309 ], [ -75.133996, 40.070429 ], [ -75.133957, 40.070574 ], [ -75.133896, 40.070741 ], [ -75.133855, 40.070831 ], [ -75.133828, 40.070892 ], [ -75.133709, 40.071103 ], [ -75.133603, 40.071253 ], [ -75.133453, 40.071439 ], [ -75.133319, 40.071594 ], [ -75.133186, 40.071722 ], [ -75.133088, 40.071813 ], [ -75.132911, 40.071971 ], [ -75.132849, 40.072027 ], [ -75.132739, 40.072125 ], [ -75.132611, 40.072238 ], [ -75.132122, 40.072666 ], [ -75.131827, 40.072925 ], [ -75.131608, 40.073118 ], [ -75.13138, 40.073291 ], [ -75.131295, 40.073355 ], [ -75.131215, 40.073416 ], [ -75.131136, 40.073468 ], [ -75.131047, 40.073524 ], [ -75.130899, 40.073619 ], [ -75.130695, 40.073743 ], [ -75.130363, 40.073932 ], [ -75.130335, 40.07395 ], [ -75.1302, 40.074037 ], [ -75.13008, 40.074118 ], [ -75.129982, 40.07419 ], [ -75.129956, 40.074208 ], [ -75.129851, 40.074293 ], [ -75.129751, 40.074382 ], [ -75.129649, 40.074481 ], [ -75.129472, 40.07468 ], [ -75.128772, 40.075384 ], [ -75.128633, 40.075537 ], [ -75.128503, 40.07568 ], [ -75.12821, 40.075981 ], [ -75.127772, 40.076437 ], [ -75.127301, 40.076938 ], [ -75.127063, 40.077188 ], [ -75.126891, 40.077382 ], [ -75.126857, 40.07742 ], [ -75.126713, 40.077604 ], [ -75.126632, 40.077729 ], [ -75.126587, 40.077799 ], [ -75.12655, 40.077875 ], [ -75.126475, 40.078036 ], [ -75.126402, 40.078212 ], [ -75.126359, 40.078327 ], [ -75.126317, 40.078455 ], [ -75.126286, 40.07857 ], [ -75.126249, 40.078778 ], [ -75.126212, 40.079049 ], [ -75.126211, 40.079243 ], [ -75.126222, 40.079389 ], [ -75.126232, 40.079513 ], [ -75.126249, 40.079646 ], [ -75.126262, 40.07971 ], [ -75.126277, 40.079782 ], [ -75.126308, 40.079909 ], [ -75.12637, 40.080101 ], [ -75.126444, 40.08034 ], [ -75.126453, 40.080363 ], [ -75.126541, 40.080618 ], [ -75.126667, 40.08101 ], [ -75.126708, 40.081133 ], [ -75.126885, 40.081633 ], [ -75.126927, 40.081754 ], [ -75.126981, 40.081906 ], [ -75.127068, 40.082153 ], [ -75.127268, 40.082727 ], [ -75.127343, 40.082946 ], [ -75.127436, 40.083214 ], [ -75.127665, 40.083898 ], [ -75.127727, 40.084081 ], [ -75.127759, 40.084176 ], [ -75.127789, 40.084258 ], [ -75.127825, 40.084391 ], [ -75.127862, 40.084585 ], [ -75.127896, 40.084821 ], [ -75.127907, 40.085102 ], [ -75.12791, 40.085139 ], [ -75.127907, 40.085218 ], [ -75.127906, 40.085454 ], [ -75.127899, 40.085826 ], [ -75.127889, 40.086354 ], [ -75.127879, 40.086534 ], [ -75.127872, 40.086663 ], [ -75.127849, 40.086852 ], [ -75.127828, 40.08696 ], [ -75.127805, 40.087053 ], [ -75.12777, 40.087167 ], [ -75.127749, 40.087258 ], [ -75.127718, 40.08737 ], [ -75.127695, 40.087427 ], [ -75.127664, 40.087514 ], [ -75.127603, 40.087647 ], [ -75.127332, 40.088203 ], [ -75.12726, 40.088342 ], [ -75.127185, 40.088488 ], [ -75.126798, 40.089265 ], [ -75.126685, 40.089587 ], [ -75.126544, 40.089983 ], [ -75.126437, 40.090229 ], [ -75.125875, 40.091522 ], [ -75.125597, 40.092178 ], [ -75.125613, 40.092257 ], [ -75.125552, 40.092399 ], [ -75.125509, 40.092493 ], [ -75.125427, 40.092661 ], [ -75.125314, 40.092971 ], [ -75.1253, 40.093027 ], [ -75.12529, 40.093088 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093156 ], [ -75.125294, 40.0932 ], [ -75.1253, 40.093247 ], [ -75.125316, 40.093326 ], [ -75.125357, 40.093525 ], [ -75.12547, 40.094059 ], [ -75.125522, 40.094305 ], [ -75.125622, 40.094746 ], [ -75.125692, 40.095051 ], [ -75.125729, 40.095197 ], [ -75.125768, 40.095369 ], [ -75.125781, 40.095448 ], [ -75.125796, 40.0956 ], [ -75.125807, 40.095855 ], [ -75.125822, 40.096275 ], [ -75.125827, 40.096413 ], [ -75.12583, 40.096544 ], [ -75.125838, 40.096844 ], [ -75.125841, 40.096959 ], [ -75.125845, 40.097141 ], [ -75.125852, 40.097463 ], [ -75.125857, 40.097873 ], [ -75.125862, 40.098307 ], [ -75.125863, 40.098364 ], [ -75.125869, 40.098588 ], [ -75.125879, 40.098946 ], [ -75.12589, 40.099213 ], [ -75.1259, 40.099404 ], [ -75.125903, 40.099468 ], [ -75.125908, 40.099711 ], [ -75.125875, 40.099762 ], [ -75.125864, 40.09983 ], [ -75.125847, 40.099954 ], [ -75.125843, 40.100038 ], [ -75.12583, 40.10017 ], [ -75.125776, 40.10076 ], [ -75.125726, 40.10134 ], [ -75.125689, 40.101762 ], [ -75.125648, 40.10219 ], [ -75.125616, 40.102717 ], [ -75.125585, 40.103027 ], [ -75.125556, 40.103313 ], [ -75.125524, 40.103626 ], [ -75.125484, 40.103787 ], [ -75.12544, 40.103919 ], [ -75.125396, 40.10405 ], [ -75.125337, 40.104189 ], [ -75.12526, 40.104348 ], [ -75.125163, 40.104518 ], [ -75.124918, 40.104918 ], [ -75.124782, 40.105132 ], [ -75.124607, 40.105447 ], [ -75.124337, 40.105879 ], [ -75.124268, 40.106001 ], [ -75.124079, 40.106335 ], [ -75.123933, 40.106595 ], [ -75.123888, 40.106665 ], [ -75.123803, 40.106823 ], [ -75.123723, 40.106961 ], [ -75.123638, 40.10711 ], [ -75.123468, 40.107405 ], [ -75.123337, 40.107655 ], [ -75.123277, 40.107792 ], [ -75.123218, 40.107983 ], [ -75.123173, 40.108173 ], [ -75.123139, 40.108365 ], [ -75.123123, 40.108522 ], [ -75.12312, 40.108595 ], [ -75.12312, 40.108656 ], [ -75.123117, 40.108844 ], [ -75.123143, 40.109114 ], [ -75.123188, 40.109409 ], [ -75.12324, 40.109704 ], [ -75.12331, 40.110101 ], [ -75.123327, 40.110219 ], [ -75.123365, 40.110465 ], [ -75.1234, 40.110681 ], [ -75.123415, 40.110821 ], [ -75.123418, 40.110979 ], [ -75.12342, 40.111166 ], [ -75.1234, 40.111332 ], [ -75.123365, 40.1115 ], [ -75.123322, 40.111667 ], [ -75.123265, 40.11183 ], [ -75.123211, 40.111973 ], [ -75.12314, 40.112111 ], [ -75.123012, 40.112358 ], [ -75.12267, 40.112943 ], [ -75.122511, 40.113215 ], [ -75.122408, 40.113389 ], [ -75.122101, 40.113937 ], [ -75.122018, 40.114086 ], [ -75.121765, 40.114535 ], [ -75.121066, 40.115735 ], [ -75.12101, 40.115836 ], [ -75.120875, 40.116082 ], [ -75.120668, 40.116464 ], [ -75.120429, 40.116878 ], [ -75.120376, 40.116963 ], [ -75.120201, 40.117263 ], [ -75.119525, 40.118448 ], [ -75.119475, 40.11853 ], [ -75.119256, 40.118911 ], [ -75.119005, 40.119361 ], [ -75.118385, 40.120462 ], [ -75.11819, 40.120809 ], [ -75.117837, 40.121406 ], [ -75.117671, 40.121688 ], [ -75.117504, 40.122004 ], [ -75.117454, 40.122108 ], [ -75.117429, 40.122187 ], [ -75.117337, 40.122491 ], [ -75.117284, 40.122662 ], [ -75.117279, 40.122692 ], [ -75.117274, 40.122764 ], [ -75.117251, 40.122949 ], [ -75.117246, 40.123028 ], [ -75.117243, 40.123121 ], [ -75.117243, 40.123453 ], [ -75.117243, 40.123745 ], [ -75.117246, 40.124322 ], [ -75.117246, 40.124656 ], [ -75.117255, 40.124933 ], [ -75.117255, 40.12524 ], [ -75.117257, 40.12537 ], [ -75.117255, 40.125403 ], [ -75.117245, 40.125551 ], [ -75.11723, 40.125713 ], [ -75.117218, 40.125845 ], [ -75.117205, 40.125974 ], [ -75.117201, 40.126007 ], [ -75.116946, 40.127553 ], [ -75.116926, 40.127672 ], [ -75.116857, 40.128102 ], [ -75.116791, 40.128482 ], [ -75.116677, 40.128986 ], [ -75.116609, 40.129276 ], [ -75.1165, 40.129684 ], [ -75.116325, 40.130359 ], [ -75.116235, 40.13068 ], [ -75.1162, 40.13079 ], [ -75.116045, 40.131302 ], [ -75.116008, 40.131412 ], [ -75.115973, 40.131521 ], [ -75.115873, 40.131859 ], [ -75.115788, 40.13213 ], [ -75.115681, 40.132465 ], [ -75.115546, 40.13292 ], [ -75.115403, 40.133351 ], [ -75.115235, 40.133901 ], [ -75.115009, 40.134633 ], [ -75.114967, 40.13474 ], [ -75.11486, 40.134962 ], [ -75.114622, 40.135365 ], [ -75.114496, 40.135563 ], [ -75.114192, 40.136069 ], [ -75.114051, 40.136303 ], [ -75.113864, 40.136606 ], [ -75.113734, 40.13681 ], [ -75.113704, 40.136857 ], [ -75.113571, 40.137072 ], [ -75.113441, 40.137333 ], [ -75.113236, 40.137753 ], [ -75.113125, 40.137972 ], [ -75.112946, 40.138346 ], [ -75.112715, 40.138813 ], [ -75.112698, 40.13886 ], [ -75.112521, 40.139222 ], [ -75.112363, 40.139542 ], [ -75.112186, 40.139908 ], [ -75.111995, 40.140299 ], [ -75.111969, 40.140356 ], [ -75.111925, 40.140484 ], [ -75.111896, 40.140612 ], [ -75.111884, 40.140716 ], [ -75.11188, 40.140892 ], [ -75.111896, 40.141017 ], [ -75.111924, 40.141148 ], [ -75.111938, 40.141185 ], [ -75.111967, 40.141275 ], [ -75.112029, 40.141408 ], [ -75.112107, 40.141555 ], [ -75.112201, 40.141694 ], [ -75.112354, 40.141903 ], [ -75.112464, 40.142036 ], [ -75.112569, 40.142142 ], [ -75.112631, 40.142198 ], [ -75.112692, 40.142244 ], [ -75.112772, 40.1423 ], [ -75.112956, 40.14241 ], [ -75.113158, 40.142531 ], [ -75.113363, 40.142635 ], [ -75.113496, 40.1427 ], [ -75.113734, 40.142799 ], [ -75.11416, 40.14297 ], [ -75.11446, 40.143091 ], [ -75.114601, 40.143159 ], [ -75.115012, 40.143388 ], [ -75.115144, 40.14346 ], [ -75.115298, 40.143544 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.116554, 40.144874 ], [ -75.116672, 40.144798 ], [ -75.11693, 40.144621 ], [ -75.117122, 40.144491 ], [ -75.117933, 40.14394 ], [ -75.118983, 40.14322 ], [ -75.119157, 40.143102 ], [ -75.119268, 40.143028 ], [ -75.119273, 40.143025 ], [ -75.119494, 40.142883 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.11652, 40.144971 ], [ -75.116565, 40.145013 ], [ -75.116891, 40.145351 ], [ -75.116961, 40.145378 ], [ -75.116996, 40.145418 ], [ -75.11721, 40.145669 ], [ -75.117368, 40.145859 ], [ -75.117434, 40.145939 ], [ -75.117595, 40.146133 ], [ -75.117776, 40.146346 ], [ -75.117874, 40.14646 ], [ -75.118045, 40.146662 ], [ -75.118161, 40.146799 ], [ -75.118301, 40.146963 ], [ -75.118479, 40.147172 ], [ -75.11854, 40.147239 ], [ -75.118636, 40.147351 ], [ -75.1188, 40.147543 ], [ -75.118878, 40.147634 ], [ -75.118954, 40.147723 ], [ -75.119016, 40.1478 ], [ -75.119072, 40.147884 ], [ -75.119126, 40.147966 ], [ -75.119211, 40.148102 ], [ -75.119626, 40.148861 ], [ -75.119719, 40.149032 ], [ -75.119784, 40.149152 ], [ -75.120176, 40.149876 ], [ -75.120254, 40.15003 ], [ -75.12043, 40.150378 ], [ -75.120528, 40.150569 ], [ -75.120638, 40.150766 ], [ -75.120712, 40.150912 ], [ -75.120901, 40.151292 ], [ -75.121094, 40.151686 ], [ -75.121203, 40.151958 ], [ -75.121276, 40.152162 ], [ -75.121349, 40.152387 ], [ -75.121443, 40.152705 ], [ -75.121485, 40.152895 ], [ -75.121517, 40.153054 ], [ -75.121577, 40.153451 ], [ -75.121616, 40.15377 ], [ -75.12164, 40.153983 ], [ -75.121589, 40.154066 ], [ -75.121608, 40.154267 ], [ -75.121719, 40.155383 ], [ -75.121752, 40.155621 ], [ -75.121785, 40.155792 ], [ -75.121836, 40.155989 ], [ -75.121973, 40.156458 ], [ -75.122059, 40.156713 ], [ -75.122205, 40.15715 ], [ -75.122344, 40.157627 ], [ -75.122524, 40.158083 ], [ -75.122571, 40.158232 ], [ -75.122593, 40.158328 ], [ -75.122807, 40.159137 ], [ -75.12292, 40.15949 ], [ -75.122953, 40.159597 ], [ -75.122973, 40.159669 ], [ -75.123066, 40.160005 ], [ -75.123378, 40.160986 ], [ -75.123415, 40.161094 ], [ -75.123437, 40.16117 ], [ -75.123454, 40.161227 ], [ -75.123471, 40.161294 ], [ -75.123491, 40.161359 ], [ -75.123567, 40.161577 ], [ -75.123756, 40.16213 ], [ -75.123764, 40.162155 ], [ -75.123789, 40.162223 ], [ -75.123891, 40.162485 ], [ -75.124073, 40.162949 ], [ -75.124108, 40.163042 ], [ -75.124277, 40.163464 ], [ -75.12449, 40.164078 ], [ -75.12458, 40.164297 ], [ -75.124586, 40.164317 ], [ -75.124614, 40.164409 ], [ -75.12468, 40.164595 ], [ -75.124734, 40.164757 ], [ -75.124748, 40.164797 ], [ -75.124822, 40.165043 ], [ -75.124859, 40.165151 ], [ -75.124875, 40.165219 ], [ -75.124985, 40.165512 ], [ -75.125228, 40.16627 ], [ -75.12525, 40.166357 ], [ -75.125354, 40.16665 ], [ -75.125391, 40.166765 ], [ -75.125491, 40.167038 ], [ -75.125619, 40.167331 ], [ -75.125914, 40.167957 ], [ -75.125984, 40.168093 ], [ -75.126071, 40.168267 ], [ -75.126145, 40.168408 ], [ -75.12617, 40.168458 ], [ -75.126262, 40.168634 ], [ -75.126291, 40.168703 ], [ -75.12652, 40.169153 ], [ -75.126607, 40.169326 ], [ -75.126708, 40.16952 ], [ -75.126764, 40.169626 ], [ -75.126815, 40.169722 ], [ -75.127132, 40.170308 ], [ -75.127287, 40.170612 ], [ -75.127342, 40.170708 ], [ -75.127459, 40.170935 ], [ -75.127777, 40.171565 ], [ -75.127826, 40.171684 ], [ -75.127877, 40.171785 ], [ -75.127907, 40.17187 ], [ -75.127927, 40.172079 ], [ -75.127996, 40.172816 ], [ -75.128059, 40.172892 ], [ -75.128065, 40.173046 ], [ -75.128086, 40.173514 ], [ -75.128104, 40.174105 ], [ -75.128104, 40.174141 ], [ -75.128107, 40.174188 ], [ -75.128153, 40.175287 ], [ -75.128203, 40.176299 ], [ -75.128221, 40.176659 ], [ -75.128231, 40.176873 ], [ -75.128188, 40.176933 ], [ -75.128183, 40.177177 ], [ -75.128188, 40.177274 ], [ -75.128202, 40.177364 ], [ -75.128211, 40.177428 ], [ -75.128232, 40.17753 ], [ -75.128247, 40.177602 ], [ -75.128339, 40.177912 ], [ -75.128363, 40.177983 ], [ -75.128393, 40.17805 ], [ -75.128425, 40.178118 ], [ -75.128475, 40.178215 ], [ -75.128553, 40.178334 ], [ -75.128644, 40.17845 ], [ -75.128729, 40.178551 ], [ -75.128799, 40.178627 ], [ -75.128884, 40.17872 ], [ -75.128971, 40.178805 ], [ -75.129042, 40.178864 ], [ -75.129072, 40.178889 ], [ -75.129165, 40.178964 ], [ -75.129299, 40.179065 ], [ -75.129365, 40.179115 ], [ -75.1295, 40.179219 ], [ -75.129579, 40.179281 ], [ -75.129612, 40.179308 ], [ -75.129933, 40.179555 ], [ -75.130142, 40.179728 ], [ -75.130214, 40.179801 ], [ -75.130257, 40.179843 ], [ -75.130309, 40.179905 ], [ -75.130358, 40.17997 ], [ -75.130429, 40.180076 ], [ -75.1305, 40.180203 ], [ -75.130551, 40.180313 ], [ -75.130588, 40.180412 ], [ -75.130637, 40.180538 ], [ -75.130885, 40.18117 ], [ -75.131155, 40.181825 ], [ -75.13129, 40.182157 ], [ -75.131413, 40.182463 ], [ -75.131444, 40.182544 ], [ -75.13147, 40.182625 ], [ -75.131502, 40.182708 ], [ -75.131546, 40.182831 ], [ -75.131601, 40.18297 ], [ -75.131644, 40.18308 ], [ -75.131738, 40.183313 ], [ -75.131785, 40.183428 ], [ -75.131825, 40.183516 ], [ -75.131908, 40.183681 ], [ -75.131927, 40.183709 ], [ -75.132003, 40.183754 ], [ -75.132033, 40.183803 ], [ -75.132104, 40.183934 ], [ -75.132423, 40.184464 ], [ -75.133021, 40.185395 ], [ -75.133456, 40.18608 ], [ -75.134012, 40.186955 ], [ -75.134464, 40.18766 ], [ -75.134884, 40.188339 ], [ -75.134877, 40.188427 ], [ -75.13525, 40.189046 ], [ -75.135354, 40.189105 ], [ -75.135392, 40.189166 ], [ -75.13543, 40.189226 ], [ -75.13551, 40.189355 ], [ -75.135639, 40.189563 ], [ -75.135708, 40.189665 ], [ -75.135764, 40.189751 ], [ -75.135873, 40.189915 ], [ -75.13617, 40.190374 ], [ -75.136265, 40.190522 ], [ -75.13635, 40.190674 ], [ -75.136405, 40.190771 ], [ -75.136449, 40.190871 ], [ -75.136479, 40.19094 ], [ -75.136507, 40.191009 ], [ -75.136545, 40.191127 ], [ -75.136802, 40.192054 ], [ -75.137124, 40.193182 ], [ -75.137407, 40.194173 ], [ -75.13762, 40.194913 ], [ -75.137653, 40.195028 ], [ -75.137734, 40.195309 ], [ -75.138003, 40.196272 ], [ -75.138036, 40.196391 ], [ -75.138387, 40.1976 ], [ -75.138522, 40.198097 ], [ -75.138703, 40.198765 ], [ -75.138789, 40.199095 ], [ -75.138896, 40.199694 ], [ -75.139096, 40.200948 ], [ -75.139318, 40.202278 ], [ -75.13941, 40.202846 ], [ -75.139529, 40.203516 ], [ -75.13963, 40.204083 ], [ -75.139648, 40.204189 ], [ -75.139671, 40.204312 ], [ -75.13969, 40.204415 ], [ -75.139712, 40.204543 ], [ -75.13978, 40.20494 ], [ -75.139804, 40.205096 ], [ -75.139816, 40.205183 ], [ -75.13982, 40.205265 ], [ -75.13982, 40.205407 ], [ -75.139817, 40.205603 ], [ -75.139805, 40.205793 ], [ -75.139794, 40.205946 ], [ -75.139782, 40.206129 ], [ -75.139764, 40.206358 ], [ -75.13968, 40.207488 ], [ -75.139606, 40.208538 ], [ -75.139558, 40.208597 ], [ -75.139506, 40.209238 ], [ -75.139462, 40.209779 ], [ -75.139429, 40.210201 ], [ -75.139423, 40.210282 ], [ -75.139398, 40.210575 ], [ -75.139392, 40.210746 ], [ -75.139384, 40.210933 ], [ -75.13938, 40.211107 ], [ -75.139375, 40.21151 ], [ -75.139371, 40.211633 ], [ -75.139367, 40.211701 ], [ -75.139406, 40.211762 ], [ -75.139384, 40.211834 ], [ -75.139383, 40.211905 ], [ -75.139395, 40.212091 ], [ -75.139403, 40.212176 ], [ -75.139414, 40.212277 ], [ -75.139418, 40.21241 ], [ -75.139429, 40.212534 ], [ -75.139438, 40.212754 ], [ -75.139446, 40.212964 ], [ -75.139491, 40.213533 ], [ -75.139505, 40.213696 ], [ -75.139519, 40.213899 ], [ -75.139524, 40.214037 ], [ -75.139543, 40.214573 ], [ -75.139569, 40.215244 ], [ -75.139572, 40.21532 ], [ -75.139574, 40.215388 ], [ -75.139585, 40.215835 ], [ -75.139588, 40.215964 ], [ -75.139591, 40.216055 ], [ -75.139611, 40.216418 ], [ -75.139628, 40.216726 ], [ -75.139647, 40.217079 ], [ -75.139665, 40.217386 ], [ -75.139684, 40.217665 ], [ -75.139693, 40.217797 ], [ -75.139703, 40.217931 ], [ -75.139724, 40.218267 ], [ -75.139727, 40.218309 ], [ -75.139747, 40.218633 ], [ -75.139688, 40.218727 ], [ -75.139688, 40.218824 ], [ -75.1397, 40.218942 ], [ -75.139735, 40.219491 ], [ -75.13976, 40.21984 ], [ -75.139785, 40.220189 ], [ -75.139788, 40.22024 ], [ -75.139794, 40.220313 ], [ -75.139859, 40.220393 ], [ -75.139866, 40.220512 ], [ -75.139873, 40.220634 ], [ -75.139878, 40.220803 ], [ -75.139882, 40.221019 ], [ -75.139899, 40.221537 ], [ -75.139907, 40.221747 ], [ -75.13992, 40.221953 ], [ -75.139951, 40.222597 ], [ -75.139975, 40.223227 ], [ -75.139979, 40.223335 ], [ -75.139983, 40.223455 ], [ -75.139986, 40.223548 ], [ -75.13999, 40.223656 ], [ -75.139997, 40.223904 ], [ -75.140003, 40.224036 ], [ -75.140005, 40.22408 ], [ -75.140023, 40.224463 ], [ -75.140036, 40.22482 ], [ -75.140039, 40.224914 ], [ -75.140042, 40.22502 ], [ -75.140047, 40.225179 ], [ -75.140051, 40.225364 ], [ -75.140048, 40.225442 ], [ -75.140037, 40.225777 ], [ -75.140027, 40.225964 ], [ -75.140003, 40.226154 ], [ -75.139926, 40.226555 ], [ -75.139866, 40.226769 ], [ -75.139825, 40.226887 ], [ -75.139651, 40.227319 ], [ -75.139572, 40.227512 ], [ -75.139406, 40.227875 ], [ -75.139301, 40.228114 ], [ -75.139243, 40.228152 ], [ -75.139159, 40.228279 ], [ -75.138932, 40.228822 ], [ -75.138914, 40.228866 ], [ -75.138824, 40.229094 ], [ -75.138762, 40.229242 ], [ -75.138711, 40.229363 ], [ -75.138652, 40.229487 ], [ -75.138556, 40.229717 ], [ -75.138519, 40.229824 ], [ -75.138278, 40.230491 ], [ -75.138161, 40.230813 ], [ -75.138061, 40.231127 ], [ -75.137993, 40.231324 ], [ -75.137947, 40.231474 ], [ -75.137841, 40.231812 ], [ -75.137689, 40.23232 ], [ -75.137655, 40.23243 ], [ -75.137566, 40.232713 ], [ -75.137419, 40.233261 ], [ -75.137284, 40.233726 ], [ -75.137267, 40.233851 ], [ -75.137314, 40.23395 ], [ -75.1373, 40.233996 ], [ -75.137265, 40.23411 ], [ -75.137211, 40.234306 ], [ -75.13717, 40.234451 ], [ -75.137082, 40.234434 ], [ -75.136928, 40.234406 ], [ -75.136852, 40.234344 ], [ -75.136424, 40.234265 ], [ -75.135986, 40.234144 ], [ -75.135653, 40.233978 ], [ -75.134857, 40.233504 ], [ -75.134666, 40.233369 ], [ -75.134506, 40.233252 ], [ -75.134371, 40.233114 ], [ -75.134259, 40.233016 ], [ -75.134142, 40.232846 ], [ -75.134032, 40.232649 ], [ -75.133983, 40.232489 ], [ -75.133951, 40.232278 ], [ -75.133945, 40.232183 ], [ -75.133945, 40.232056 ], [ -75.133983, 40.231929 ], [ -75.134028, 40.231703 ], [ -75.134088, 40.231515 ], [ -75.13413, 40.231341 ], [ -75.13418, 40.231177 ], [ -75.134186, 40.231153 ], [ -75.134217, 40.231045 ], [ -75.134277, 40.230854 ], [ -75.134307, 40.230654 ], [ -75.134314, 40.230476 ], [ -75.134314, 40.230282 ], [ -75.134292, 40.230009 ], [ -75.134219, 40.229747 ], [ -75.134073, 40.229256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307743", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.144301, 40.03885 ], [ -75.144655, 40.038932 ], [ -75.14463, 40.039037 ], [ -75.144537, 40.039451 ], [ -75.144451, 40.039829 ], [ -75.144359, 40.040309 ], [ -75.14432, 40.04049 ], [ -75.144207, 40.040987 ], [ -75.144254, 40.041091 ], [ -75.144216, 40.041244 ], [ -75.144179, 40.041388 ], [ -75.144264, 40.041433 ], [ -75.144318, 40.041466 ], [ -75.144357, 40.041506 ], [ -75.144381, 40.041561 ], [ -75.144398, 40.041623 ], [ -75.144404, 40.041658 ], [ -75.144421, 40.041747 ], [ -75.144412, 40.041989 ], [ -75.144427, 40.042319 ], [ -75.144419, 40.042508 ], [ -75.144426, 40.04297 ], [ -75.144438, 40.043751 ], [ -75.144503, 40.044101 ], [ -75.144627, 40.044562 ], [ -75.144674, 40.044737 ], [ -75.144945, 40.045415 ], [ -75.145105, 40.045819 ], [ -75.145251, 40.046186 ], [ -75.14537, 40.046548 ], [ -75.145414, 40.046744 ], [ -75.14546, 40.046949 ], [ -75.145517, 40.04739 ], [ -75.1455, 40.047591 ], [ -75.145437, 40.047809 ], [ -75.145375, 40.047981 ], [ -75.145331, 40.048089 ], [ -75.145273, 40.048198 ], [ -75.14497, 40.048677 ], [ -75.144179, 40.049879 ], [ -75.144029, 40.050126 ], [ -75.143605, 40.050747 ], [ -75.142166, 40.050553 ], [ -75.142141, 40.050654 ], [ -75.14208, 40.050923 ], [ -75.142046, 40.051083 ], [ -75.141992, 40.051327 ], [ -75.141945, 40.051538 ], [ -75.141905, 40.051711 ], [ -75.14186, 40.051918 ], [ -75.141824, 40.052082 ], [ -75.141803, 40.052181 ], [ -75.141782, 40.052278 ], [ -75.141748, 40.052445 ], [ -75.141685, 40.052748 ], [ -75.141657, 40.052868 ], [ -75.141579, 40.053213 ], [ -75.141556, 40.053323 ], [ -75.141493, 40.053384 ], [ -75.141465, 40.053494 ], [ -75.141444, 40.053585 ], [ -75.141402, 40.053805 ], [ -75.141375, 40.053922 ], [ -75.141282, 40.054147 ], [ -75.141267, 40.05419 ], [ -75.14121, 40.05439 ], [ -75.141184, 40.054463 ], [ -75.14116, 40.05452 ], [ -75.141121, 40.054584 ], [ -75.141072, 40.054652 ], [ -75.140841, 40.055019 ], [ -75.140726, 40.055208 ], [ -75.140684, 40.055277 ], [ -75.140692, 40.055336 ], [ -75.140245, 40.056073 ], [ -75.139938, 40.05658 ], [ -75.139695, 40.056968 ], [ -75.139411, 40.057432 ], [ -75.139061, 40.058006 ], [ -75.138624, 40.058732 ], [ -75.138171, 40.059467 ], [ -75.137948, 40.059829 ], [ -75.137693, 40.060241 ], [ -75.137609, 40.060382 ], [ -75.137286, 40.060919 ], [ -75.137203, 40.061049 ], [ -75.137053, 40.061295 ], [ -75.136948, 40.061347 ], [ -75.136923, 40.061378 ], [ -75.136886, 40.061441 ], [ -75.136849, 40.061518 ], [ -75.13682, 40.061572 ], [ -75.136748, 40.061695 ], [ -75.136712, 40.061758 ], [ -75.136667, 40.061838 ], [ -75.136617, 40.06191 ], [ -75.136517, 40.06208 ], [ -75.136096, 40.062785 ], [ -75.135938, 40.063071 ], [ -75.135803, 40.063305 ], [ -75.135688, 40.063493 ], [ -75.135292, 40.064266 ], [ -75.13523, 40.064415 ], [ -75.135171, 40.064555 ], [ -75.135098, 40.064729 ], [ -75.134954, 40.065073 ], [ -75.13489, 40.065248 ], [ -75.134849, 40.065391 ], [ -75.134783, 40.065666 ], [ -75.134739, 40.065905 ], [ -75.13471, 40.066123 ], [ -75.134633, 40.066603 ], [ -75.134598, 40.066834 ], [ -75.134575, 40.066953 ], [ -75.134484, 40.067583 ], [ -75.134459, 40.067735 ], [ -75.134307, 40.068635 ], [ -75.134281, 40.068797 ], [ -75.134262, 40.068902 ], [ -75.1342, 40.06925 ], [ -75.134109, 40.069872 ], [ -75.13407, 40.070082 ], [ -75.134027, 40.070309 ], [ -75.133996, 40.070429 ], [ -75.133957, 40.070574 ], [ -75.133896, 40.070741 ], [ -75.133855, 40.070831 ], [ -75.133828, 40.070892 ], [ -75.133709, 40.071103 ], [ -75.133603, 40.071253 ], [ -75.133453, 40.071439 ], [ -75.133319, 40.071594 ], [ -75.133186, 40.071722 ], [ -75.133088, 40.071813 ], [ -75.132911, 40.071971 ], [ -75.132849, 40.072027 ], [ -75.132739, 40.072125 ], [ -75.132611, 40.072238 ], [ -75.132122, 40.072666 ], [ -75.131827, 40.072925 ], [ -75.131608, 40.073118 ], [ -75.13138, 40.073291 ], [ -75.131295, 40.073355 ], [ -75.131215, 40.073416 ], [ -75.131136, 40.073468 ], [ -75.131047, 40.073524 ], [ -75.130899, 40.073619 ], [ -75.130695, 40.073743 ], [ -75.130363, 40.073932 ], [ -75.130335, 40.07395 ], [ -75.1302, 40.074037 ], [ -75.13008, 40.074118 ], [ -75.129982, 40.07419 ], [ -75.129956, 40.074208 ], [ -75.129851, 40.074293 ], [ -75.129751, 40.074382 ], [ -75.129649, 40.074481 ], [ -75.129472, 40.07468 ], [ -75.128772, 40.075384 ], [ -75.128633, 40.075537 ], [ -75.128503, 40.07568 ], [ -75.12821, 40.075981 ], [ -75.127772, 40.076437 ], [ -75.127301, 40.076938 ], [ -75.127063, 40.077188 ], [ -75.126891, 40.077382 ], [ -75.126857, 40.07742 ], [ -75.126713, 40.077604 ], [ -75.126632, 40.077729 ], [ -75.126587, 40.077799 ], [ -75.12655, 40.077875 ], [ -75.126475, 40.078036 ], [ -75.126402, 40.078212 ], [ -75.126359, 40.078327 ], [ -75.126317, 40.078455 ], [ -75.126286, 40.07857 ], [ -75.126249, 40.078778 ], [ -75.126212, 40.079049 ], [ -75.126211, 40.079243 ], [ -75.126222, 40.079389 ], [ -75.126232, 40.079513 ], [ -75.126249, 40.079646 ], [ -75.126262, 40.07971 ], [ -75.126277, 40.079782 ], [ -75.126308, 40.079909 ], [ -75.12637, 40.080101 ], [ -75.126444, 40.08034 ], [ -75.126453, 40.080363 ], [ -75.126541, 40.080618 ], [ -75.126667, 40.08101 ], [ -75.126708, 40.081133 ], [ -75.126885, 40.081633 ], [ -75.126927, 40.081754 ], [ -75.126981, 40.081906 ], [ -75.127068, 40.082153 ], [ -75.127268, 40.082727 ], [ -75.127343, 40.082946 ], [ -75.127436, 40.083214 ], [ -75.127665, 40.083898 ], [ -75.127727, 40.084081 ], [ -75.127759, 40.084176 ], [ -75.127789, 40.084258 ], [ -75.127825, 40.084391 ], [ -75.127862, 40.084585 ], [ -75.127896, 40.084821 ], [ -75.127907, 40.085102 ], [ -75.12791, 40.085139 ], [ -75.127907, 40.085218 ], [ -75.127906, 40.085454 ], [ -75.127899, 40.085826 ], [ -75.127889, 40.086354 ], [ -75.127879, 40.086534 ], [ -75.127872, 40.086663 ], [ -75.127849, 40.086852 ], [ -75.127828, 40.08696 ], [ -75.127805, 40.087053 ], [ -75.12777, 40.087167 ], [ -75.127749, 40.087258 ], [ -75.127718, 40.08737 ], [ -75.127695, 40.087427 ], [ -75.127664, 40.087514 ], [ -75.127603, 40.087647 ], [ -75.127332, 40.088203 ], [ -75.12726, 40.088342 ], [ -75.127185, 40.088488 ], [ -75.126798, 40.089265 ], [ -75.126685, 40.089587 ], [ -75.126544, 40.089983 ], [ -75.126437, 40.090229 ], [ -75.125875, 40.091522 ], [ -75.125597, 40.092178 ], [ -75.125613, 40.092257 ], [ -75.125552, 40.092399 ], [ -75.125509, 40.092493 ], [ -75.125427, 40.092661 ], [ -75.125314, 40.092971 ], [ -75.1253, 40.093027 ], [ -75.12529, 40.093088 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093156 ], [ -75.125294, 40.0932 ], [ -75.1253, 40.093247 ], [ -75.125316, 40.093326 ], [ -75.125357, 40.093525 ], [ -75.12547, 40.094059 ], [ -75.125522, 40.094305 ], [ -75.125622, 40.094746 ], [ -75.125692, 40.095051 ], [ -75.125729, 40.095197 ], [ -75.125768, 40.095369 ], [ -75.125781, 40.095448 ], [ -75.125796, 40.0956 ], [ -75.125807, 40.095855 ], [ -75.125822, 40.096275 ], [ -75.125827, 40.096413 ], [ -75.12583, 40.096544 ], [ -75.125838, 40.096844 ], [ -75.125841, 40.096959 ], [ -75.125845, 40.097141 ], [ -75.125852, 40.097463 ], [ -75.125857, 40.097873 ], [ -75.125862, 40.098307 ], [ -75.125863, 40.098364 ], [ -75.125869, 40.098588 ], [ -75.125879, 40.098946 ], [ -75.12589, 40.099213 ], [ -75.1259, 40.099404 ], [ -75.125903, 40.099468 ], [ -75.125908, 40.099711 ], [ -75.125875, 40.099762 ], [ -75.125864, 40.09983 ], [ -75.125847, 40.099954 ], [ -75.125843, 40.100038 ], [ -75.12583, 40.10017 ], [ -75.125776, 40.10076 ], [ -75.125726, 40.10134 ], [ -75.125689, 40.101762 ], [ -75.125648, 40.10219 ], [ -75.125616, 40.102717 ], [ -75.125585, 40.103027 ], [ -75.125556, 40.103313 ], [ -75.125524, 40.103626 ], [ -75.125484, 40.103787 ], [ -75.12544, 40.103919 ], [ -75.125396, 40.10405 ], [ -75.125337, 40.104189 ], [ -75.12526, 40.104348 ], [ -75.125163, 40.104518 ], [ -75.124918, 40.104918 ], [ -75.124782, 40.105132 ], [ -75.124607, 40.105447 ], [ -75.124337, 40.105879 ], [ -75.124268, 40.106001 ], [ -75.124079, 40.106335 ], [ -75.123933, 40.106595 ], [ -75.123888, 40.106665 ], [ -75.123803, 40.106823 ], [ -75.123723, 40.106961 ], [ -75.123638, 40.10711 ], [ -75.123468, 40.107405 ], [ -75.123337, 40.107655 ], [ -75.123277, 40.107792 ], [ -75.123218, 40.107983 ], [ -75.123173, 40.108173 ], [ -75.123139, 40.108365 ], [ -75.123123, 40.108522 ], [ -75.12312, 40.108595 ], [ -75.12312, 40.108656 ], [ -75.123117, 40.108844 ], [ -75.123143, 40.109114 ], [ -75.123188, 40.109409 ], [ -75.12324, 40.109704 ], [ -75.12331, 40.110101 ], [ -75.123327, 40.110219 ], [ -75.123365, 40.110465 ], [ -75.1234, 40.110681 ], [ -75.123415, 40.110821 ], [ -75.123418, 40.110979 ], [ -75.12342, 40.111166 ], [ -75.1234, 40.111332 ], [ -75.123365, 40.1115 ], [ -75.123322, 40.111667 ], [ -75.123265, 40.11183 ], [ -75.123211, 40.111973 ], [ -75.12314, 40.112111 ], [ -75.123012, 40.112358 ], [ -75.12267, 40.112943 ], [ -75.122511, 40.113215 ], [ -75.122408, 40.113389 ], [ -75.122101, 40.113937 ], [ -75.122018, 40.114086 ], [ -75.121765, 40.114535 ], [ -75.121066, 40.115735 ], [ -75.12101, 40.115836 ], [ -75.120875, 40.116082 ], [ -75.120668, 40.116464 ], [ -75.120429, 40.116878 ], [ -75.120376, 40.116963 ], [ -75.120201, 40.117263 ], [ -75.119525, 40.118448 ], [ -75.119475, 40.11853 ], [ -75.119256, 40.118911 ], [ -75.119005, 40.119361 ], [ -75.118385, 40.120462 ], [ -75.11819, 40.120809 ], [ -75.117837, 40.121406 ], [ -75.117671, 40.121688 ], [ -75.117504, 40.122004 ], [ -75.117454, 40.122108 ], [ -75.117429, 40.122187 ], [ -75.117337, 40.122491 ], [ -75.117284, 40.122662 ], [ -75.117279, 40.122692 ], [ -75.117274, 40.122764 ], [ -75.117251, 40.122949 ], [ -75.117246, 40.123028 ], [ -75.117243, 40.123121 ], [ -75.117243, 40.123453 ], [ -75.117243, 40.123745 ], [ -75.117246, 40.124322 ], [ -75.117246, 40.124656 ], [ -75.117255, 40.124933 ], [ -75.117255, 40.12524 ], [ -75.117257, 40.12537 ], [ -75.117255, 40.125403 ], [ -75.117245, 40.125551 ], [ -75.11723, 40.125713 ], [ -75.117218, 40.125845 ], [ -75.117205, 40.125974 ], [ -75.117201, 40.126007 ], [ -75.116946, 40.127553 ], [ -75.116926, 40.127672 ], [ -75.116857, 40.128102 ], [ -75.116791, 40.128482 ], [ -75.116677, 40.128986 ], [ -75.116609, 40.129276 ], [ -75.1165, 40.129684 ], [ -75.116325, 40.130359 ], [ -75.116235, 40.13068 ], [ -75.1162, 40.13079 ], [ -75.116045, 40.131302 ], [ -75.116008, 40.131412 ], [ -75.115973, 40.131521 ], [ -75.115873, 40.131859 ], [ -75.115788, 40.13213 ], [ -75.115681, 40.132465 ], [ -75.115546, 40.13292 ], [ -75.115403, 40.133351 ], [ -75.115235, 40.133901 ], [ -75.115009, 40.134633 ], [ -75.114967, 40.13474 ], [ -75.11486, 40.134962 ], [ -75.114622, 40.135365 ], [ -75.114496, 40.135563 ], [ -75.114192, 40.136069 ], [ -75.114051, 40.136303 ], [ -75.113864, 40.136606 ], [ -75.113734, 40.13681 ], [ -75.113704, 40.136857 ], [ -75.113571, 40.137072 ], [ -75.113441, 40.137333 ], [ -75.113236, 40.137753 ], [ -75.113125, 40.137972 ], [ -75.112946, 40.138346 ], [ -75.112715, 40.138813 ], [ -75.112698, 40.13886 ], [ -75.112521, 40.139222 ], [ -75.112363, 40.139542 ], [ -75.112186, 40.139908 ], [ -75.111995, 40.140299 ], [ -75.111969, 40.140356 ], [ -75.111925, 40.140484 ], [ -75.111896, 40.140612 ], [ -75.111884, 40.140716 ], [ -75.11188, 40.140892 ], [ -75.111896, 40.141017 ], [ -75.111924, 40.141148 ], [ -75.111938, 40.141185 ], [ -75.111967, 40.141275 ], [ -75.112029, 40.141408 ], [ -75.112107, 40.141555 ], [ -75.112201, 40.141694 ], [ -75.112354, 40.141903 ], [ -75.112464, 40.142036 ], [ -75.112569, 40.142142 ], [ -75.112631, 40.142198 ], [ -75.112692, 40.142244 ], [ -75.112772, 40.1423 ], [ -75.112956, 40.14241 ], [ -75.113158, 40.142531 ], [ -75.113363, 40.142635 ], [ -75.113496, 40.1427 ], [ -75.113734, 40.142799 ], [ -75.11416, 40.14297 ], [ -75.11446, 40.143091 ], [ -75.113554, 40.143988 ], [ -75.112797, 40.14474 ], [ -75.112269, 40.145257 ], [ -75.111614, 40.145892 ], [ -75.110993, 40.146504 ], [ -75.110368, 40.147107 ], [ -75.109512, 40.14792 ], [ -75.107927, 40.149469 ], [ -75.107395, 40.149985 ], [ -75.106946, 40.150391 ], [ -75.106466, 40.150861 ], [ -75.105649, 40.151654 ], [ -75.104582, 40.152702 ], [ -75.104299, 40.152996 ], [ -75.103669, 40.153763 ], [ -75.103548, 40.153909 ], [ -75.103416, 40.15405 ], [ -75.10334, 40.154121 ], [ -75.102724, 40.154626 ], [ -75.102238, 40.155059 ], [ -75.101337, 40.155946 ], [ -75.100805, 40.156461 ], [ -75.099263, 40.15799 ], [ -75.099003, 40.158254 ], [ -75.098018, 40.159197 ], [ -75.097811, 40.159397 ], [ -75.097399, 40.159808 ], [ -75.097321, 40.15988 ], [ -75.097242, 40.159941 ], [ -75.097144, 40.160008 ], [ -75.097032, 40.160074 ], [ -75.096949, 40.160118 ], [ -75.096843, 40.160163 ], [ -75.096734, 40.160204 ], [ -75.09664, 40.160233 ], [ -75.096524, 40.160264 ], [ -75.096414, 40.160287 ], [ -75.096302, 40.160308 ], [ -75.096249, 40.160315 ], [ -75.096153, 40.160323 ], [ -75.096062, 40.160326 ], [ -75.094327, 40.160317 ], [ -75.09391, 40.160312 ], [ -75.093704, 40.160318 ], [ -75.093626, 40.160322 ], [ -75.093536, 40.160331 ], [ -75.093425, 40.160343 ], [ -75.093362, 40.160353 ], [ -75.093285, 40.160374 ], [ -75.093113, 40.160422 ], [ -75.092787, 40.160565 ], [ -75.092686, 40.160622 ], [ -75.092561, 40.1607 ], [ -75.092501, 40.16075 ], [ -75.092435, 40.160806 ], [ -75.092381, 40.16086 ], [ -75.092264, 40.160975 ], [ -75.091932, 40.161358 ], [ -75.09172, 40.161601 ], [ -75.090921, 40.162479 ], [ -75.091788, 40.162524 ], [ -75.092559, 40.16256 ], [ -75.0953, 40.162687 ], [ -75.099002, 40.162859 ], [ -75.099255, 40.162865 ], [ -75.09942, 40.162855 ], [ -75.099521, 40.162845 ], [ -75.099603, 40.162835 ], [ -75.099662, 40.162825 ], [ -75.099716, 40.162811 ], [ -75.099783, 40.162789 ], [ -75.099831, 40.162769 ], [ -75.099933, 40.162717 ], [ -75.100019, 40.16267 ], [ -75.100124, 40.162606 ], [ -75.100219, 40.162544 ], [ -75.100287, 40.16249 ], [ -75.100421, 40.162375 ], [ -75.100648, 40.162158 ], [ -75.100701, 40.162113 ], [ -75.100765, 40.162061 ], [ -75.100817, 40.162028 ], [ -75.100887, 40.161994 ], [ -75.100979, 40.161958 ], [ -75.101094, 40.161924 ], [ -75.101252, 40.161878 ], [ -75.101351, 40.161851 ], [ -75.10145, 40.161834 ], [ -75.101542, 40.16182 ], [ -75.101643, 40.161809 ], [ -75.10176, 40.161806 ], [ -75.101903, 40.161806 ], [ -75.102072, 40.161812 ], [ -75.102215, 40.161815 ], [ -75.102437, 40.161823 ], [ -75.102511, 40.161828 ], [ -75.102584, 40.161839 ], [ -75.10268, 40.161863 ], [ -75.102784, 40.161892 ], [ -75.102899, 40.161919 ], [ -75.103017, 40.161944 ], [ -75.103104, 40.161958 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307745", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.133258, 40.333982 ], [ -75.133276, 40.333917 ], [ -75.133305, 40.333613 ], [ -75.13333, 40.333481 ], [ -75.133355, 40.33342 ], [ -75.133421, 40.333315 ], [ -75.133789, 40.332999 ], [ -75.134036, 40.33247 ], [ -75.134061, 40.332392 ], [ -75.134061, 40.332277 ], [ -75.134048, 40.332234 ], [ -75.133997, 40.332176 ], [ -75.133848, 40.332074 ], [ -75.132921, 40.331555 ], [ -75.132327, 40.331168 ], [ -75.132037, 40.331485 ], [ -75.131355, 40.332119 ], [ -75.130997, 40.332477 ], [ -75.130834, 40.332667 ], [ -75.130736, 40.332845 ], [ -75.130697, 40.332968 ], [ -75.13069, 40.333037 ], [ -75.130704, 40.333203 ], [ -75.130774, 40.333515 ], [ -75.130868, 40.333802 ], [ -75.130949, 40.334001 ], [ -75.129685, 40.334149 ], [ -75.129591, 40.333764 ], [ -75.129511, 40.333431 ], [ -75.129418, 40.332949 ], [ -75.129384, 40.33276 ], [ -75.129355, 40.332592 ], [ -75.129339, 40.332489 ], [ -75.129296, 40.332165 ], [ -75.129271, 40.331801 ], [ -75.129256, 40.331386 ], [ -75.129251, 40.331011 ], [ -75.129256, 40.330515 ], [ -75.129288, 40.330002 ], [ -75.129315, 40.329746 ], [ -75.129353, 40.329342 ], [ -75.129447, 40.328747 ], [ -75.129536, 40.328234 ], [ -75.129627, 40.327783 ], [ -75.129684, 40.32747 ], [ -75.129694, 40.327404 ], [ -75.129723, 40.327217 ], [ -75.129778, 40.326804 ], [ -75.129865, 40.326331 ], [ -75.129913, 40.326045 ], [ -75.129929, 40.325945 ], [ -75.129944, 40.325858 ], [ -75.12996, 40.325786 ], [ -75.130008, 40.325515 ], [ -75.130037, 40.3254 ], [ -75.130051, 40.32534 ], [ -75.13017, 40.324816 ], [ -75.130225, 40.324581 ], [ -75.130291, 40.32428 ], [ -75.130351, 40.324008 ], [ -75.130401, 40.323784 ], [ -75.130439, 40.323612 ], [ -75.13048, 40.323417 ], [ -75.130544, 40.32314 ], [ -75.130569, 40.323035 ], [ -75.130585, 40.322949 ], [ -75.130627, 40.322767 ], [ -75.130654, 40.322649 ], [ -75.130707, 40.322256 ], [ -75.130727, 40.322063 ], [ -75.130733, 40.321977 ], [ -75.130728, 40.321527 ], [ -75.130723, 40.321105 ], [ -75.130719, 40.320811 ], [ -75.130715, 40.320454 ], [ -75.130704, 40.319658 ], [ -75.130694, 40.319568 ], [ -75.130686, 40.319297 ], [ -75.13068, 40.319086 ], [ -75.130669, 40.31881 ], [ -75.130668, 40.318638 ], [ -75.130662, 40.318401 ], [ -75.130641, 40.31733 ], [ -75.130631, 40.316644 ], [ -75.130626, 40.316071 ], [ -75.130623, 40.315919 ], [ -75.13062, 40.315745 ], [ -75.130627, 40.315169 ], [ -75.130629, 40.31489 ], [ -75.130614, 40.314071 ], [ -75.130588, 40.313122 ], [ -75.13058, 40.312807 ], [ -75.130597, 40.311461 ], [ -75.130597, 40.311327 ], [ -75.130603, 40.311218 ], [ -75.130611, 40.310986 ], [ -75.130629, 40.310794 ], [ -75.130633, 40.310721 ], [ -75.130631, 40.310541 ], [ -75.130614, 40.310364 ], [ -75.130588, 40.31022 ], [ -75.130552, 40.310103 ], [ -75.130507, 40.309996 ], [ -75.130414, 40.309827 ], [ -75.13037, 40.30975 ], [ -75.130241, 40.309525 ], [ -75.13017, 40.30941 ], [ -75.13007, 40.309225 ], [ -75.129741, 40.308676 ], [ -75.129624, 40.308468 ], [ -75.129584, 40.308378 ], [ -75.129553, 40.308296 ], [ -75.129533, 40.308203 ], [ -75.129513, 40.308101 ], [ -75.129496, 40.308014 ], [ -75.129476, 40.307916 ], [ -75.129367, 40.307367 ], [ -75.129273, 40.306816 ], [ -75.129245, 40.306667 ], [ -75.129207, 40.306481 ], [ -75.12911, 40.305979 ], [ -75.12908, 40.305834 ], [ -75.129059, 40.305717 ], [ -75.12901, 40.305323 ], [ -75.128942, 40.304843 ], [ -75.128824, 40.303902 ], [ -75.128805, 40.303751 ], [ -75.128783, 40.303605 ], [ -75.12877, 40.303525 ], [ -75.128759, 40.303443 ], [ -75.128742, 40.303339 ], [ -75.128659, 40.302852 ], [ -75.128586, 40.302445 ], [ -75.128473, 40.301822 ], [ -75.128467, 40.301767 ], [ -75.128494, 40.301685 ], [ -75.128476, 40.301502 ], [ -75.128446, 40.301269 ], [ -75.12838, 40.30083 ], [ -75.128306, 40.300345 ], [ -75.128274, 40.300135 ], [ -75.128202, 40.299747 ], [ -75.128165, 40.299502 ], [ -75.128084, 40.298968 ], [ -75.128067, 40.298873 ], [ -75.128052, 40.298772 ], [ -75.128016, 40.298552 ], [ -75.127996, 40.298426 ], [ -75.127941, 40.298016 ], [ -75.127935, 40.297968 ], [ -75.127923, 40.29784 ], [ -75.127914, 40.297734 ], [ -75.127911, 40.297696 ], [ -75.127896, 40.297362 ], [ -75.127883, 40.297204 ], [ -75.127832, 40.29714 ], [ -75.12781, 40.296741 ], [ -75.127772, 40.295756 ], [ -75.127748, 40.295361 ], [ -75.127725, 40.294978 ], [ -75.127721, 40.293904 ], [ -75.127721, 40.293665 ], [ -75.127716, 40.293392 ], [ -75.127713, 40.293307 ], [ -75.12777, 40.293247 ], [ -75.127838, 40.292753 ], [ -75.127951, 40.292407 ], [ -75.128069, 40.292094 ], [ -75.128375, 40.291605 ], [ -75.128442, 40.291498 ], [ -75.128661, 40.291184 ], [ -75.128788, 40.291014 ], [ -75.128843, 40.290923 ], [ -75.129018, 40.290665 ], [ -75.129212, 40.29038 ], [ -75.12937, 40.290121 ], [ -75.129575, 40.289752 ], [ -75.12966, 40.289533 ], [ -75.129669, 40.289488 ], [ -75.129705, 40.289322 ], [ -75.129719, 40.289166 ], [ -75.129728, 40.289083 ], [ -75.129735, 40.288982 ], [ -75.129741, 40.288861 ], [ -75.129734, 40.288753 ], [ -75.12973, 40.2887 ], [ -75.129723, 40.288608 ], [ -75.129697, 40.288498 ], [ -75.129652, 40.288315 ], [ -75.129595, 40.28817 ], [ -75.129534, 40.288025 ], [ -75.129448, 40.287861 ], [ -75.12932, 40.28767 ], [ -75.129153, 40.287459 ], [ -75.128925, 40.287261 ], [ -75.128687, 40.287074 ], [ -75.12857, 40.287001 ], [ -75.128115, 40.286719 ], [ -75.127929, 40.286604 ], [ -75.127842, 40.286535 ], [ -75.127741, 40.286472 ], [ -75.127246, 40.286161 ], [ -75.127026, 40.286023 ], [ -75.126942, 40.285967 ], [ -75.126871, 40.285913 ], [ -75.126787, 40.285844 ], [ -75.126723, 40.285782 ], [ -75.126657, 40.285717 ], [ -75.126594, 40.285641 ], [ -75.126556, 40.285596 ], [ -75.126505, 40.28553 ], [ -75.126479, 40.285486 ], [ -75.126404, 40.285368 ], [ -75.126362, 40.285292 ], [ -75.126313, 40.285199 ], [ -75.126286, 40.285145 ], [ -75.126254, 40.28507 ], [ -75.126196, 40.284938 ], [ -75.125995, 40.284456 ], [ -75.125951, 40.284227 ], [ -75.125928, 40.283946 ], [ -75.12592, 40.283663 ], [ -75.125926, 40.283443 ], [ -75.125936, 40.283269 ], [ -75.125957, 40.282891 ], [ -75.125979, 40.282618 ], [ -75.125983, 40.282551 ], [ -75.125931, 40.282458 ], [ -75.12598, 40.281604 ], [ -75.125995, 40.281372 ], [ -75.126005, 40.281206 ], [ -75.126016, 40.281037 ], [ -75.12602, 40.280997 ], [ -75.126026, 40.280906 ], [ -75.12606, 40.280587 ], [ -75.126081, 40.280446 ], [ -75.126089, 40.280391 ], [ -75.126108, 40.280256 ], [ -75.126117, 40.280198 ], [ -75.126127, 40.280136 ], [ -75.126139, 40.280063 ], [ -75.126179, 40.279844 ], [ -75.126213, 40.279716 ], [ -75.12628, 40.279446 ], [ -75.126327, 40.279298 ], [ -75.126348, 40.27923 ], [ -75.126359, 40.279195 ], [ -75.126404, 40.279052 ], [ -75.12644, 40.278937 ], [ -75.126463, 40.27887 ], [ -75.126491, 40.278788 ], [ -75.126674, 40.278261 ], [ -75.126928, 40.277598 ], [ -75.127026, 40.277522 ], [ -75.127088, 40.277353 ], [ -75.127157, 40.277163 ], [ -75.127381, 40.276638 ], [ -75.127573, 40.276185 ], [ -75.127648, 40.276005 ], [ -75.127714, 40.275846 ], [ -75.127778, 40.27569 ], [ -75.127929, 40.275285 ], [ -75.127938, 40.275261 ], [ -75.128284, 40.274432 ], [ -75.128339, 40.274291 ], [ -75.128413, 40.274105 ], [ -75.12849, 40.273892 ], [ -75.128532, 40.27377 ], [ -75.12892, 40.272652 ], [ -75.129049, 40.272251 ], [ -75.129162, 40.271923 ], [ -75.129235, 40.271682 ], [ -75.12932, 40.271404 ], [ -75.129499, 40.27083 ], [ -75.129678, 40.270224 ], [ -75.130104, 40.268733 ], [ -75.130138, 40.268612 ], [ -75.130245, 40.268234 ], [ -75.130308, 40.268023 ], [ -75.130372, 40.26781 ], [ -75.130436, 40.267567 ], [ -75.130494, 40.267337 ], [ -75.130626, 40.266864 ], [ -75.130586, 40.26676 ], [ -75.130645, 40.266551 ], [ -75.130654, 40.266517 ], [ -75.13071, 40.266262 ], [ -75.130735, 40.266104 ], [ -75.130753, 40.265983 ], [ -75.130777, 40.265746 ], [ -75.130808, 40.265375 ], [ -75.130819, 40.265232 ], [ -75.130832, 40.265076 ], [ -75.130839, 40.264973 ], [ -75.130849, 40.264858 ], [ -75.130855, 40.264779 ], [ -75.130885, 40.264313 ], [ -75.130904, 40.264058 ], [ -75.130922, 40.263802 ], [ -75.130969, 40.263744 ], [ -75.130972, 40.263712 ], [ -75.130973, 40.263694 ], [ -75.130974, 40.263675 ], [ -75.130979, 40.263553 ], [ -75.130991, 40.263235 ], [ -75.131, 40.263019 ], [ -75.130995, 40.26289 ], [ -75.130935, 40.262806 ], [ -75.130955, 40.262333 ], [ -75.130986, 40.261936 ], [ -75.131012, 40.261697 ], [ -75.131056, 40.26141 ], [ -75.131141, 40.260988 ], [ -75.131221, 40.26058 ], [ -75.131301, 40.260163 ], [ -75.131404, 40.259685 ], [ -75.131484, 40.259268 ], [ -75.131605, 40.258713 ], [ -75.131793, 40.25778 ], [ -75.13189, 40.257345 ], [ -75.131892, 40.257334 ], [ -75.13199, 40.256924 ], [ -75.132095, 40.256563 ], [ -75.132233, 40.256105 ], [ -75.13239, 40.255621 ], [ -75.132492, 40.255289 ], [ -75.132567, 40.255019 ], [ -75.132601, 40.254898 ], [ -75.132643, 40.254748 ], [ -75.132663, 40.254674 ], [ -75.132677, 40.254625 ], [ -75.132724, 40.254453 ], [ -75.132803, 40.254376 ], [ -75.132848, 40.254163 ], [ -75.132935, 40.253747 ], [ -75.132971, 40.253482 ], [ -75.133048, 40.252987 ], [ -75.133091, 40.252717 ], [ -75.133128, 40.252412 ], [ -75.133142, 40.25228 ], [ -75.133175, 40.251999 ], [ -75.133237, 40.251444 ], [ -75.133276, 40.251174 ], [ -75.133279, 40.25116 ], [ -75.13332, 40.250933 ], [ -75.133425, 40.250477 ], [ -75.133442, 40.250412 ], [ -75.133512, 40.250195 ], [ -75.133674, 40.249823 ], [ -75.133706, 40.249749 ], [ -75.133755, 40.249655 ], [ -75.133817, 40.249531 ], [ -75.133901, 40.249383 ], [ -75.133972, 40.24925 ], [ -75.134127, 40.248988 ], [ -75.134348, 40.248655 ], [ -75.134614, 40.248258 ], [ -75.134845, 40.247893 ], [ -75.135018, 40.247603 ], [ -75.135111, 40.24743 ], [ -75.135342, 40.246931 ], [ -75.135562, 40.246429 ], [ -75.135795, 40.24587 ], [ -75.135852, 40.245732 ], [ -75.135984, 40.245422 ], [ -75.136066, 40.245234 ], [ -75.136181, 40.244926 ], [ -75.136263, 40.244625 ], [ -75.13631, 40.244446 ], [ -75.136337, 40.244326 ], [ -75.13636, 40.244204 ], [ -75.136374, 40.244095 ], [ -75.136377, 40.244001 ], [ -75.13633, 40.243931 ], [ -75.13637, 40.243415 ], [ -75.136374, 40.243276 ], [ -75.136389, 40.242791 ], [ -75.136392, 40.242722 ], [ -75.136394, 40.242649 ], [ -75.136401, 40.24245 ], [ -75.13641, 40.242256 ], [ -75.136416, 40.242056 ], [ -75.136417, 40.242022 ], [ -75.136425, 40.241744 ], [ -75.136426, 40.2417 ], [ -75.136428, 40.241648 ], [ -75.13647, 40.240483 ], [ -75.136473, 40.240385 ], [ -75.136474, 40.2403 ], [ -75.136477, 40.240161 ], [ -75.136481, 40.239933 ], [ -75.136485, 40.239718 ], [ -75.13649, 40.239521 ], [ -75.13649, 40.23946 ], [ -75.136491, 40.239394 ], [ -75.136496, 40.23929 ], [ -75.136502, 40.239021 ], [ -75.136506, 40.23892 ], [ -75.136508, 40.238831 ], [ -75.136519, 40.23856 ], [ -75.13653, 40.23824 ], [ -75.136535, 40.23813 ], [ -75.13654, 40.23804 ], [ -75.136545, 40.237938 ], [ -75.136553, 40.237766 ], [ -75.136566, 40.237643 ], [ -75.136598, 40.23729 ], [ -75.136653, 40.236917 ], [ -75.136732, 40.236422 ], [ -75.136792, 40.236104 ], [ -75.136849, 40.235865 ], [ -75.136879, 40.235737 ], [ -75.13692, 40.235571 ], [ -75.136935, 40.235505 ], [ -75.136986, 40.235293 ], [ -75.137033, 40.23506 ], [ -75.137081, 40.234807 ], [ -75.137112, 40.234654 ], [ -75.137143, 40.234546 ], [ -75.13717, 40.234451 ], [ -75.137211, 40.234306 ], [ -75.137265, 40.23411 ], [ -75.1373, 40.233996 ], [ -75.137314, 40.23395 ], [ -75.137399, 40.233874 ], [ -75.137433, 40.23374 ], [ -75.137535, 40.233354 ], [ -75.137577, 40.233214 ], [ -75.137734, 40.232687 ], [ -75.137768, 40.232576 ], [ -75.1378, 40.232459 ], [ -75.137875, 40.232182 ], [ -75.137991, 40.23177 ], [ -75.138092, 40.23144 ], [ -75.138172, 40.231207 ], [ -75.138233, 40.231033 ], [ -75.138347, 40.230692 ], [ -75.138381, 40.230602 ], [ -75.13841, 40.230505 ], [ -75.138483, 40.230315 ], [ -75.138702, 40.229743 ], [ -75.13877, 40.229554 ], [ -75.13879, 40.229498 ], [ -75.138819, 40.229431 ], [ -75.1389, 40.229227 ], [ -75.138928, 40.229155 ], [ -75.139055, 40.22884 ], [ -75.139079, 40.228781 ], [ -75.139271, 40.228324 ], [ -75.139322, 40.228193 ], [ -75.139301, 40.228114 ], [ -75.139406, 40.227875 ], [ -75.139572, 40.227512 ], [ -75.139651, 40.227319 ], [ -75.139825, 40.226887 ], [ -75.139866, 40.226769 ], [ -75.139926, 40.226555 ], [ -75.140003, 40.226154 ], [ -75.140027, 40.225964 ], [ -75.140037, 40.225777 ], [ -75.140048, 40.225442 ], [ -75.140051, 40.225364 ], [ -75.140047, 40.225179 ], [ -75.140042, 40.22502 ], [ -75.140039, 40.224914 ], [ -75.140036, 40.22482 ], [ -75.140023, 40.224463 ], [ -75.140005, 40.22408 ], [ -75.140003, 40.224036 ], [ -75.139997, 40.223904 ], [ -75.13999, 40.223656 ], [ -75.139986, 40.223548 ], [ -75.139983, 40.223455 ], [ -75.139979, 40.223335 ], [ -75.139975, 40.223227 ], [ -75.139951, 40.222597 ], [ -75.13992, 40.221953 ], [ -75.139907, 40.221747 ], [ -75.139899, 40.221537 ], [ -75.139882, 40.221019 ], [ -75.139878, 40.220803 ], [ -75.139873, 40.220634 ], [ -75.139866, 40.220512 ], [ -75.139859, 40.220393 ], [ -75.139911, 40.220312 ], [ -75.13991, 40.220178 ], [ -75.139894, 40.219839 ], [ -75.139871, 40.219491 ], [ -75.139834, 40.218944 ], [ -75.139828, 40.218826 ], [ -75.139815, 40.218716 ], [ -75.139747, 40.218633 ], [ -75.139727, 40.218309 ], [ -75.139724, 40.218267 ], [ -75.139703, 40.217931 ], [ -75.139693, 40.217797 ], [ -75.139684, 40.217665 ], [ -75.139665, 40.217386 ], [ -75.139647, 40.217079 ], [ -75.139628, 40.216726 ], [ -75.139611, 40.216418 ], [ -75.139591, 40.216055 ], [ -75.139588, 40.215964 ], [ -75.139585, 40.215835 ], [ -75.139574, 40.215388 ], [ -75.139572, 40.21532 ], [ -75.139569, 40.215244 ], [ -75.139543, 40.214573 ], [ -75.139524, 40.214037 ], [ -75.139519, 40.213899 ], [ -75.139505, 40.213696 ], [ -75.139491, 40.213533 ], [ -75.139446, 40.212964 ], [ -75.139438, 40.212754 ], [ -75.139429, 40.212534 ], [ -75.139418, 40.21241 ], [ -75.139414, 40.212277 ], [ -75.139403, 40.212176 ], [ -75.139395, 40.212091 ], [ -75.139383, 40.211905 ], [ -75.139384, 40.211834 ], [ -75.139406, 40.211762 ], [ -75.139457, 40.211703 ], [ -75.139476, 40.21158 ], [ -75.139479, 40.211507 ], [ -75.139484, 40.21138 ], [ -75.139493, 40.211123 ], [ -75.139506, 40.210859 ], [ -75.139534, 40.210566 ], [ -75.139545, 40.21042 ], [ -75.139558, 40.210207 ], [ -75.139581, 40.209889 ], [ -75.139606, 40.209444 ], [ -75.139631, 40.208946 ], [ -75.139643, 40.208594 ], [ -75.139606, 40.208538 ], [ -75.13968, 40.207488 ], [ -75.139764, 40.206358 ], [ -75.139782, 40.206129 ], [ -75.139794, 40.205946 ], [ -75.139805, 40.205793 ], [ -75.139817, 40.205603 ], [ -75.13982, 40.205407 ], [ -75.13982, 40.205265 ], [ -75.139816, 40.205183 ], [ -75.139804, 40.205096 ], [ -75.13978, 40.20494 ], [ -75.139712, 40.204543 ], [ -75.13969, 40.204415 ], [ -75.139671, 40.204312 ], [ -75.139648, 40.204189 ], [ -75.13963, 40.204083 ], [ -75.139529, 40.203516 ], [ -75.13941, 40.202846 ], [ -75.139318, 40.202278 ], [ -75.139096, 40.200948 ], [ -75.138896, 40.199694 ], [ -75.138789, 40.199095 ], [ -75.138703, 40.198765 ], [ -75.138522, 40.198097 ], [ -75.138387, 40.1976 ], [ -75.138036, 40.196391 ], [ -75.138003, 40.196272 ], [ -75.137734, 40.195309 ], [ -75.137653, 40.195028 ], [ -75.13762, 40.194913 ], [ -75.137407, 40.194173 ], [ -75.137124, 40.193182 ], [ -75.136802, 40.192054 ], [ -75.136545, 40.191127 ], [ -75.136507, 40.191009 ], [ -75.136479, 40.19094 ], [ -75.136449, 40.190871 ], [ -75.136405, 40.190771 ], [ -75.13635, 40.190674 ], [ -75.136265, 40.190522 ], [ -75.13617, 40.190374 ], [ -75.135873, 40.189915 ], [ -75.135764, 40.189751 ], [ -75.135708, 40.189665 ], [ -75.135639, 40.189563 ], [ -75.13551, 40.189355 ], [ -75.13543, 40.189226 ], [ -75.135392, 40.189166 ], [ -75.135354, 40.189105 ], [ -75.135357, 40.189007 ], [ -75.134996, 40.188406 ], [ -75.13498, 40.188387 ], [ -75.134884, 40.188339 ], [ -75.134464, 40.18766 ], [ -75.134012, 40.186955 ], [ -75.133456, 40.18608 ], [ -75.133021, 40.185395 ], [ -75.132423, 40.184464 ], [ -75.132104, 40.183934 ], [ -75.132033, 40.183803 ], [ -75.132003, 40.183754 ], [ -75.132009, 40.183682 ], [ -75.131993, 40.183644 ], [ -75.131737, 40.183018 ], [ -75.131669, 40.182855 ], [ -75.131591, 40.182627 ], [ -75.131549, 40.182502 ], [ -75.131514, 40.182399 ], [ -75.131282, 40.181794 ], [ -75.131019, 40.181156 ], [ -75.130929, 40.180929 ], [ -75.130747, 40.180465 ], [ -75.13071, 40.180361 ], [ -75.130679, 40.180279 ], [ -75.130618, 40.180133 ], [ -75.130554, 40.180022 ], [ -75.130392, 40.179795 ], [ -75.130344, 40.179742 ], [ -75.13031, 40.179707 ], [ -75.130228, 40.179629 ], [ -75.13014, 40.179556 ], [ -75.12975, 40.179223 ], [ -75.129601, 40.179112 ], [ -75.12955, 40.179071 ], [ -75.129362, 40.178929 ], [ -75.129211, 40.178802 ], [ -75.129075, 40.178686 ], [ -75.128939, 40.178571 ], [ -75.128835, 40.178475 ], [ -75.128763, 40.178396 ], [ -75.128682, 40.178284 ], [ -75.128616, 40.178182 ], [ -75.128526, 40.178028 ], [ -75.128476, 40.177918 ], [ -75.128442, 40.177827 ], [ -75.128419, 40.177751 ], [ -75.12838, 40.177597 ], [ -75.128351, 40.177468 ], [ -75.128332, 40.177353 ], [ -75.128312, 40.177254 ], [ -75.128307, 40.177209 ], [ -75.128299, 40.17711 ], [ -75.128278, 40.176933 ], [ -75.128231, 40.176873 ], [ -75.128221, 40.176659 ], [ -75.128203, 40.176299 ], [ -75.128153, 40.175287 ], [ -75.128107, 40.174188 ], [ -75.128104, 40.174141 ], [ -75.128104, 40.174105 ], [ -75.128086, 40.173514 ], [ -75.128065, 40.173046 ], [ -75.128059, 40.172892 ], [ -75.128115, 40.172812 ], [ -75.12809, 40.172202 ], [ -75.128079, 40.172081 ], [ -75.128063, 40.171941 ], [ -75.128036, 40.171833 ], [ -75.128003, 40.171759 ], [ -75.127865, 40.171482 ], [ -75.127586, 40.170936 ], [ -75.127453, 40.170663 ], [ -75.127389, 40.170528 ], [ -75.127298, 40.17035 ], [ -75.127062, 40.169914 ], [ -75.126945, 40.169703 ], [ -75.126894, 40.169604 ], [ -75.126856, 40.169536 ], [ -75.126789, 40.169399 ], [ -75.126611, 40.169053 ], [ -75.12655, 40.168928 ], [ -75.126398, 40.168633 ], [ -75.126348, 40.168526 ], [ -75.12628, 40.168405 ], [ -75.126244, 40.168333 ], [ -75.126207, 40.168262 ], [ -75.12619, 40.168227 ], [ -75.126106, 40.168068 ], [ -75.125997, 40.167843 ], [ -75.125812, 40.167493 ], [ -75.125721, 40.167311 ], [ -75.125697, 40.167258 ], [ -75.125602, 40.167017 ], [ -75.125511, 40.166765 ], [ -75.125461, 40.166615 ], [ -75.125365, 40.166323 ], [ -75.125277, 40.166067 ], [ -75.125171, 40.165738 ], [ -75.125093, 40.165493 ], [ -75.125073, 40.165445 ], [ -75.125047, 40.165382 ], [ -75.124989, 40.165194 ], [ -75.124966, 40.16513 ], [ -75.124929, 40.16502 ], [ -75.124839, 40.164783 ], [ -75.124822, 40.164736 ], [ -75.124791, 40.16464 ], [ -75.124665, 40.164288 ], [ -75.124354, 40.163471 ], [ -75.124228, 40.163109 ], [ -75.124181, 40.162977 ], [ -75.12415, 40.162863 ], [ -75.124083, 40.162689 ], [ -75.124046, 40.16259 ], [ -75.123922, 40.162227 ], [ -75.1239, 40.162154 ], [ -75.123892, 40.16213 ], [ -75.123779, 40.161772 ], [ -75.123704, 40.161567 ], [ -75.123627, 40.161328 ], [ -75.123604, 40.161266 ], [ -75.123579, 40.161192 ], [ -75.123565, 40.161145 ], [ -75.123541, 40.161078 ], [ -75.123507, 40.160965 ], [ -75.12334, 40.160439 ], [ -75.123195, 40.159984 ], [ -75.123035, 40.159459 ], [ -75.122925, 40.159121 ], [ -75.122805, 40.158674 ], [ -75.122746, 40.158442 ], [ -75.122722, 40.158352 ], [ -75.12268, 40.158201 ], [ -75.122632, 40.158065 ], [ -75.122418, 40.157433 ], [ -75.122411, 40.157413 ], [ -75.122326, 40.157134 ], [ -75.122264, 40.15697 ], [ -75.122228, 40.156848 ], [ -75.122183, 40.156711 ], [ -75.122092, 40.156437 ], [ -75.122053, 40.156307 ], [ -75.122008, 40.15615 ], [ -75.121945, 40.155922 ], [ -75.121792, 40.154658 ], [ -75.121761, 40.154347 ], [ -75.121747, 40.154255 ], [ -75.121727, 40.154126 ], [ -75.121718, 40.154066 ], [ -75.12164, 40.153983 ], [ -75.121616, 40.15377 ], [ -75.121577, 40.153451 ], [ -75.121517, 40.153054 ], [ -75.121485, 40.152895 ], [ -75.121443, 40.152705 ], [ -75.121349, 40.152387 ], [ -75.121276, 40.152162 ], [ -75.121203, 40.151958 ], [ -75.121094, 40.151686 ], [ -75.120901, 40.151292 ], [ -75.120712, 40.150912 ], [ -75.120638, 40.150766 ], [ -75.120528, 40.150569 ], [ -75.12043, 40.150378 ], [ -75.120254, 40.15003 ], [ -75.120176, 40.149876 ], [ -75.119784, 40.149152 ], [ -75.119719, 40.149032 ], [ -75.119626, 40.148861 ], [ -75.119211, 40.148102 ], [ -75.119126, 40.147966 ], [ -75.119072, 40.147884 ], [ -75.119016, 40.1478 ], [ -75.118954, 40.147723 ], [ -75.118878, 40.147634 ], [ -75.1188, 40.147543 ], [ -75.118636, 40.147351 ], [ -75.11854, 40.147239 ], [ -75.118479, 40.147172 ], [ -75.118301, 40.146963 ], [ -75.118161, 40.146799 ], [ -75.118045, 40.146662 ], [ -75.117874, 40.14646 ], [ -75.117776, 40.146346 ], [ -75.117595, 40.146133 ], [ -75.117434, 40.145939 ], [ -75.117368, 40.145859 ], [ -75.11721, 40.145669 ], [ -75.116996, 40.145418 ], [ -75.116961, 40.145378 ], [ -75.116957, 40.145325 ], [ -75.116891, 40.14523 ], [ -75.11679, 40.145106 ], [ -75.116554, 40.144874 ], [ -75.116506, 40.144828 ], [ -75.116461, 40.144788 ], [ -75.116385, 40.144718 ], [ -75.116272, 40.144618 ], [ -75.116239, 40.144583 ], [ -75.116198, 40.144527 ], [ -75.116164, 40.144459 ], [ -75.116137, 40.144404 ], [ -75.116091, 40.144304 ], [ -75.116059, 40.144206 ], [ -75.116035, 40.144121 ], [ -75.11598, 40.143988 ], [ -75.115952, 40.143913 ], [ -75.115914, 40.143842 ], [ -75.115861, 40.143778 ], [ -75.115799, 40.143723 ], [ -75.115755, 40.143696 ], [ -75.11571, 40.143668 ], [ -75.115663, 40.143637 ], [ -75.115824, 40.143379 ], [ -75.11599, 40.143106 ], [ -75.116024, 40.143049 ], [ -75.116272, 40.142649 ], [ -75.116783, 40.141898 ], [ -75.116865, 40.141788 ], [ -75.116936, 40.141692 ], [ -75.117025, 40.141574 ], [ -75.117099, 40.141541 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115012, 40.143277 ], [ -75.114874, 40.143203 ], [ -75.114775, 40.14315 ], [ -75.114627, 40.143083 ], [ -75.11452, 40.143035 ], [ -75.113852, 40.142786 ], [ -75.113576, 40.142663 ], [ -75.113363, 40.142567 ], [ -75.113243, 40.142506 ], [ -75.113114, 40.142435 ], [ -75.113013, 40.142374 ], [ -75.112826, 40.142253 ], [ -75.112697, 40.142156 ], [ -75.11258, 40.142053 ], [ -75.112475, 40.141943 ], [ -75.11244, 40.141898 ], [ -75.112395, 40.141838 ], [ -75.112247, 40.14163 ], [ -75.112164, 40.141495 ], [ -75.112128, 40.141436 ], [ -75.112062, 40.141303 ], [ -75.112012, 40.141168 ], [ -75.111978, 40.141028 ], [ -75.111967, 40.140975 ], [ -75.111961, 40.140889 ], [ -75.111959, 40.140718 ], [ -75.111961, 40.140671 ], [ -75.111969, 40.140618 ], [ -75.111995, 40.140519 ], [ -75.112031, 40.140409 ], [ -75.112061, 40.140328 ], [ -75.112152, 40.140167 ], [ -75.112327, 40.139807 ], [ -75.112451, 40.139576 ], [ -75.112608, 40.139275 ], [ -75.112661, 40.139175 ], [ -75.112804, 40.138923 ], [ -75.112819, 40.138878 ], [ -75.113149, 40.138208 ], [ -75.113235, 40.138031 ], [ -75.113419, 40.137647 ], [ -75.113475, 40.137535 ], [ -75.11363, 40.137243 ], [ -75.113699, 40.137114 ], [ -75.114156, 40.136364 ], [ -75.114612, 40.135605 ], [ -75.114753, 40.135377 ], [ -75.114879, 40.135174 ], [ -75.114982, 40.134989 ], [ -75.115066, 40.134817 ], [ -75.115087, 40.134765 ], [ -75.115116, 40.13469 ], [ -75.115158, 40.134575 ], [ -75.115258, 40.134238 ], [ -75.115359, 40.133938 ], [ -75.115451, 40.133641 ], [ -75.115528, 40.13339 ], [ -75.115805, 40.132501 ], [ -75.116011, 40.131828 ], [ -75.116106, 40.131541 ], [ -75.116241, 40.131104 ], [ -75.116325, 40.130832 ], [ -75.116394, 40.130607 ], [ -75.116553, 40.129999 ], [ -75.116625, 40.129704 ], [ -75.116732, 40.129294 ], [ -75.116806, 40.128989 ], [ -75.116886, 40.128648 ], [ -75.116928, 40.128436 ], [ -75.117081, 40.12755 ], [ -75.117098, 40.127452 ], [ -75.117314, 40.126101 ], [ -75.117346, 40.125879 ], [ -75.117363, 40.125703 ], [ -75.117375, 40.125523 ], [ -75.117389, 40.125211 ], [ -75.117387, 40.125097 ], [ -75.117389, 40.125052 ], [ -75.117376, 40.124652 ], [ -75.117375, 40.124193 ], [ -75.11737, 40.123745 ], [ -75.117364, 40.12323 ], [ -75.11737, 40.123062 ], [ -75.117376, 40.122955 ], [ -75.1174, 40.122738 ], [ -75.117429, 40.1226 ], [ -75.117469, 40.122443 ], [ -75.11749, 40.122381 ], [ -75.117539, 40.122254 ], [ -75.117643, 40.122001 ], [ -75.117824, 40.121682 ], [ -75.118073, 40.121238 ], [ -75.118293, 40.120844 ], [ -75.118811, 40.119952 ], [ -75.118983, 40.119658 ], [ -75.119121, 40.11942 ], [ -75.119382, 40.118945 ], [ -75.119745, 40.118303 ], [ -75.120137, 40.117627 ], [ -75.120305, 40.117338 ], [ -75.12064, 40.116749 ], [ -75.120773, 40.116519 ], [ -75.120991, 40.116122 ], [ -75.121149, 40.115849 ], [ -75.121625, 40.115013 ], [ -75.121867, 40.114585 ], [ -75.122158, 40.114078 ], [ -75.122528, 40.113433 ], [ -75.122888, 40.112822 ], [ -75.122963, 40.112688 ], [ -75.123128, 40.112404 ], [ -75.123266, 40.11214 ], [ -75.123333, 40.11201 ], [ -75.123367, 40.11193 ], [ -75.123424, 40.111757 ], [ -75.123496, 40.111519 ], [ -75.123531, 40.111292 ], [ -75.12355, 40.111069 ], [ -75.12355, 40.110825 ], [ -75.123545, 40.110741 ], [ -75.123532, 40.11064 ], [ -75.123466, 40.110298 ], [ -75.12344, 40.110116 ], [ -75.123379, 40.109758 ], [ -75.123302, 40.109324 ], [ -75.123261, 40.109066 ], [ -75.123251, 40.108975 ], [ -75.123244, 40.108865 ], [ -75.12324, 40.108771 ], [ -75.12324, 40.108613 ], [ -75.123245, 40.108568 ], [ -75.123263, 40.108371 ], [ -75.123272, 40.108301 ], [ -75.123274, 40.108284 ], [ -75.123289, 40.108213 ], [ -75.123308, 40.108132 ], [ -75.123334, 40.108047 ], [ -75.123398, 40.107876 ], [ -75.123479, 40.107701 ], [ -75.123525, 40.10761 ], [ -75.123643, 40.107378 ], [ -75.123823, 40.107065 ], [ -75.123942, 40.106867 ], [ -75.124021, 40.106718 ], [ -75.12407, 40.106636 ], [ -75.124248, 40.106322 ], [ -75.12462, 40.10567 ], [ -75.124755, 40.105419 ], [ -75.124845, 40.105255 ], [ -75.125048, 40.104918 ], [ -75.12525, 40.104583 ], [ -75.12545, 40.104237 ], [ -75.125486, 40.104164 ], [ -75.125512, 40.104092 ], [ -75.125571, 40.103918 ], [ -75.125598, 40.103808 ], [ -75.125661, 40.103573 ], [ -75.125677, 40.103322 ], [ -75.125731, 40.102793 ], [ -75.125756, 40.102458 ], [ -75.125766, 40.102329 ], [ -75.12577, 40.102261 ], [ -75.125828, 40.101808 ], [ -75.125907, 40.10073 ], [ -75.125916, 40.100584 ], [ -75.125946, 40.100152 ], [ -75.125954, 40.100088 ], [ -75.125956, 40.099951 ], [ -75.125955, 40.099825 ], [ -75.125947, 40.099758 ], [ -75.125908, 40.099711 ], [ -75.125903, 40.099468 ], [ -75.1259, 40.099404 ], [ -75.12589, 40.099213 ], [ -75.125879, 40.098946 ], [ -75.125869, 40.098588 ], [ -75.125863, 40.098364 ], [ -75.125862, 40.098307 ], [ -75.125857, 40.097873 ], [ -75.125852, 40.097463 ], [ -75.125845, 40.097141 ], [ -75.125841, 40.096959 ], [ -75.125838, 40.096844 ], [ -75.12583, 40.096544 ], [ -75.125827, 40.096413 ], [ -75.125822, 40.096275 ], [ -75.125807, 40.095855 ], [ -75.125796, 40.0956 ], [ -75.125781, 40.095448 ], [ -75.125768, 40.095369 ], [ -75.125729, 40.095197 ], [ -75.125692, 40.095051 ], [ -75.125622, 40.094746 ], [ -75.125522, 40.094305 ], [ -75.12547, 40.094059 ], [ -75.125357, 40.093525 ], [ -75.125316, 40.093326 ], [ -75.1253, 40.093247 ], [ -75.125294, 40.0932 ], [ -75.12529, 40.093156 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093088 ], [ -75.1253, 40.093027 ], [ -75.125314, 40.092971 ], [ -75.125427, 40.092661 ], [ -75.125509, 40.092493 ], [ -75.125552, 40.092399 ], [ -75.125613, 40.092257 ], [ -75.125686, 40.0922 ], [ -75.125699, 40.092175 ], [ -75.125751, 40.092061 ], [ -75.125891, 40.09176 ], [ -75.126412, 40.090576 ], [ -75.126655, 40.090019 ], [ -75.126826, 40.089569 ], [ -75.126894, 40.089391 ], [ -75.126956, 40.089239 ], [ -75.127014, 40.089101 ], [ -75.127076, 40.088975 ], [ -75.127157, 40.088814 ], [ -75.127239, 40.08865 ], [ -75.127297, 40.088533 ], [ -75.127547, 40.088049 ], [ -75.127595, 40.087948 ], [ -75.127772, 40.087567 ], [ -75.127817, 40.087461 ], [ -75.127848, 40.087378 ], [ -75.127881, 40.08726 ], [ -75.127912, 40.087119 ], [ -75.127944, 40.08703 ], [ -75.127963, 40.086926 ], [ -75.127986, 40.086726 ], [ -75.128001, 40.086558 ], [ -75.128008, 40.086442 ], [ -75.128014, 40.086368 ], [ -75.128025, 40.08584 ], [ -75.12804, 40.085142 ], [ -75.128031, 40.08488 ], [ -75.128019, 40.08475 ], [ -75.127988, 40.08453 ], [ -75.12795, 40.084348 ], [ -75.127918, 40.084239 ], [ -75.127789, 40.083873 ], [ -75.127718, 40.083662 ], [ -75.127551, 40.083176 ], [ -75.127307, 40.082484 ], [ -75.127257, 40.082344 ], [ -75.127157, 40.082063 ], [ -75.126914, 40.081323 ], [ -75.126843, 40.081112 ], [ -75.126779, 40.080931 ], [ -75.126663, 40.080607 ], [ -75.126553, 40.08029 ], [ -75.126408, 40.079851 ], [ -75.126385, 40.079775 ], [ -75.126365, 40.079681 ], [ -75.126334, 40.079513 ], [ -75.126314, 40.079347 ], [ -75.126308, 40.079198 ], [ -75.126307, 40.079097 ], [ -75.126314, 40.078982 ], [ -75.126348, 40.078773 ], [ -75.12637, 40.078674 ], [ -75.126386, 40.078593 ], [ -75.126444, 40.078376 ], [ -75.126487, 40.078246 ], [ -75.126571, 40.07804 ], [ -75.126649, 40.077886 ], [ -75.126717, 40.077777 ], [ -75.126747, 40.077726 ], [ -75.126793, 40.077656 ], [ -75.126865, 40.077569 ], [ -75.126903, 40.077523 ], [ -75.127065, 40.077334 ], [ -75.127344, 40.077038 ], [ -75.127659, 40.076698 ], [ -75.127834, 40.076509 ], [ -75.127916, 40.076426 ], [ -75.128024, 40.076316 ], [ -75.128297, 40.076039 ], [ -75.128556, 40.075764 ], [ -75.128812, 40.075488 ], [ -75.128973, 40.075325 ], [ -75.12911, 40.075185 ], [ -75.129498, 40.07479 ], [ -75.129713, 40.074566 ], [ -75.129809, 40.074478 ], [ -75.129938, 40.074365 ], [ -75.130035, 40.074289 ], [ -75.130183, 40.074183 ], [ -75.130324, 40.074092 ], [ -75.130472, 40.074 ], [ -75.130948, 40.073715 ], [ -75.131177, 40.073575 ], [ -75.131294, 40.073495 ], [ -75.131383, 40.073434 ], [ -75.131444, 40.073384 ], [ -75.131468, 40.073364 ], [ -75.131708, 40.073167 ], [ -75.132106, 40.072821 ], [ -75.132713, 40.072296 ], [ -75.133166, 40.071895 ], [ -75.133275, 40.071795 ], [ -75.133382, 40.071694 ], [ -75.133477, 40.071585 ], [ -75.133543, 40.071514 ], [ -75.133567, 40.071483 ], [ -75.133715, 40.071301 ], [ -75.133771, 40.071224 ], [ -75.133816, 40.071155 ], [ -75.133911, 40.070999 ], [ -75.133967, 40.070884 ], [ -75.134036, 40.070716 ], [ -75.134093, 40.070564 ], [ -75.134132, 40.070425 ], [ -75.134204, 40.070163 ], [ -75.134278, 40.069673 ], [ -75.1343, 40.069509 ], [ -75.134332, 40.069272 ], [ -75.134383, 40.068928 ], [ -75.134605, 40.06762 ], [ -75.134622, 40.067479 ], [ -75.134665, 40.067222 ], [ -75.134697, 40.066989 ], [ -75.134722, 40.066869 ], [ -75.134836, 40.066137 ], [ -75.134874, 40.065897 ], [ -75.134925, 40.065615 ], [ -75.134948, 40.06552 ], [ -75.134971, 40.065419 ], [ -75.13501, 40.065301 ], [ -75.135059, 40.065155 ], [ -75.135126, 40.064991 ], [ -75.135209, 40.064783 ], [ -75.135286, 40.064589 ], [ -75.135398, 40.064316 ], [ -75.135412, 40.064285 ], [ -75.135472, 40.064156 ], [ -75.135589, 40.063922 ], [ -75.135609, 40.063885 ], [ -75.135691, 40.063733 ], [ -75.135798, 40.063539 ], [ -75.135967, 40.063249 ], [ -75.136048, 40.063109 ], [ -75.136202, 40.062866 ], [ -75.13644, 40.062467 ], [ -75.136742, 40.061969 ], [ -75.136788, 40.061893 ], [ -75.136828, 40.061816 ], [ -75.136868, 40.06175 ], [ -75.136958, 40.061592 ], [ -75.137009, 40.061497 ], [ -75.137062, 40.061391 ], [ -75.137053, 40.061295 ], [ -75.137203, 40.061049 ], [ -75.137286, 40.060919 ], [ -75.137609, 40.060382 ], [ -75.137693, 40.060241 ], [ -75.137948, 40.059829 ], [ -75.138171, 40.059467 ], [ -75.138624, 40.058732 ], [ -75.139061, 40.058006 ], [ -75.139411, 40.057432 ], [ -75.139695, 40.056968 ], [ -75.139938, 40.05658 ], [ -75.140245, 40.056073 ], [ -75.140692, 40.055336 ], [ -75.140757, 40.055301 ], [ -75.140799, 40.055233 ], [ -75.140875, 40.055115 ], [ -75.140922, 40.055045 ], [ -75.141142, 40.054781 ], [ -75.141202, 40.054708 ], [ -75.141272, 40.054651 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307746", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.133258, 40.333982 ], [ -75.133276, 40.333917 ], [ -75.133305, 40.333613 ], [ -75.13333, 40.333481 ], [ -75.133355, 40.33342 ], [ -75.133421, 40.333315 ], [ -75.133789, 40.332999 ], [ -75.134036, 40.33247 ], [ -75.134061, 40.332392 ], [ -75.134061, 40.332277 ], [ -75.134048, 40.332234 ], [ -75.133997, 40.332176 ], [ -75.133848, 40.332074 ], [ -75.132921, 40.331555 ], [ -75.132327, 40.331168 ], [ -75.132037, 40.331485 ], [ -75.131355, 40.332119 ], [ -75.130997, 40.332477 ], [ -75.130834, 40.332667 ], [ -75.130736, 40.332845 ], [ -75.130697, 40.332968 ], [ -75.13069, 40.333037 ], [ -75.130704, 40.333203 ], [ -75.130774, 40.333515 ], [ -75.130868, 40.333802 ], [ -75.130949, 40.334001 ], [ -75.129685, 40.334149 ], [ -75.129591, 40.333764 ], [ -75.129511, 40.333431 ], [ -75.129418, 40.332949 ], [ -75.129384, 40.33276 ], [ -75.129355, 40.332592 ], [ -75.129339, 40.332489 ], [ -75.129296, 40.332165 ], [ -75.129271, 40.331801 ], [ -75.129256, 40.331386 ], [ -75.129251, 40.331011 ], [ -75.129256, 40.330515 ], [ -75.129288, 40.330002 ], [ -75.129315, 40.329746 ], [ -75.129353, 40.329342 ], [ -75.129447, 40.328747 ], [ -75.129536, 40.328234 ], [ -75.129627, 40.327783 ], [ -75.129684, 40.32747 ], [ -75.129694, 40.327404 ], [ -75.129723, 40.327217 ], [ -75.129778, 40.326804 ], [ -75.129865, 40.326331 ], [ -75.129913, 40.326045 ], [ -75.129929, 40.325945 ], [ -75.129944, 40.325858 ], [ -75.12996, 40.325786 ], [ -75.130008, 40.325515 ], [ -75.130037, 40.3254 ], [ -75.130051, 40.32534 ], [ -75.13017, 40.324816 ], [ -75.130225, 40.324581 ], [ -75.130291, 40.32428 ], [ -75.130351, 40.324008 ], [ -75.130401, 40.323784 ], [ -75.130439, 40.323612 ], [ -75.13048, 40.323417 ], [ -75.130544, 40.32314 ], [ -75.130569, 40.323035 ], [ -75.130585, 40.322949 ], [ -75.130627, 40.322767 ], [ -75.130654, 40.322649 ], [ -75.130707, 40.322256 ], [ -75.130727, 40.322063 ], [ -75.130733, 40.321977 ], [ -75.130728, 40.321527 ], [ -75.130723, 40.321105 ], [ -75.130719, 40.320811 ], [ -75.130715, 40.320454 ], [ -75.130704, 40.319658 ], [ -75.130694, 40.319568 ], [ -75.130686, 40.319297 ], [ -75.13068, 40.319086 ], [ -75.130669, 40.31881 ], [ -75.130668, 40.318638 ], [ -75.130662, 40.318401 ], [ -75.130641, 40.31733 ], [ -75.130631, 40.316644 ], [ -75.130626, 40.316071 ], [ -75.130623, 40.315919 ], [ -75.13062, 40.315745 ], [ -75.130627, 40.315169 ], [ -75.130629, 40.31489 ], [ -75.130614, 40.314071 ], [ -75.130588, 40.313122 ], [ -75.13058, 40.312807 ], [ -75.130597, 40.311461 ], [ -75.130597, 40.311327 ], [ -75.130603, 40.311218 ], [ -75.130611, 40.310986 ], [ -75.130629, 40.310794 ], [ -75.130633, 40.310721 ], [ -75.130631, 40.310541 ], [ -75.130614, 40.310364 ], [ -75.130588, 40.31022 ], [ -75.130552, 40.310103 ], [ -75.130507, 40.309996 ], [ -75.130414, 40.309827 ], [ -75.13037, 40.30975 ], [ -75.130241, 40.309525 ], [ -75.13017, 40.30941 ], [ -75.13007, 40.309225 ], [ -75.129741, 40.308676 ], [ -75.129624, 40.308468 ], [ -75.129584, 40.308378 ], [ -75.129553, 40.308296 ], [ -75.129533, 40.308203 ], [ -75.129513, 40.308101 ], [ -75.129496, 40.308014 ], [ -75.129476, 40.307916 ], [ -75.129367, 40.307367 ], [ -75.129273, 40.306816 ], [ -75.129245, 40.306667 ], [ -75.129207, 40.306481 ], [ -75.12911, 40.305979 ], [ -75.12908, 40.305834 ], [ -75.129059, 40.305717 ], [ -75.12901, 40.305323 ], [ -75.128942, 40.304843 ], [ -75.128824, 40.303902 ], [ -75.128805, 40.303751 ], [ -75.128783, 40.303605 ], [ -75.12877, 40.303525 ], [ -75.128759, 40.303443 ], [ -75.128742, 40.303339 ], [ -75.128659, 40.302852 ], [ -75.128586, 40.302445 ], [ -75.128473, 40.301822 ], [ -75.128467, 40.301767 ], [ -75.128494, 40.301685 ], [ -75.128476, 40.301502 ], [ -75.128446, 40.301269 ], [ -75.12838, 40.30083 ], [ -75.128306, 40.300345 ], [ -75.128274, 40.300135 ], [ -75.128202, 40.299747 ], [ -75.128165, 40.299502 ], [ -75.128084, 40.298968 ], [ -75.128067, 40.298873 ], [ -75.128052, 40.298772 ], [ -75.128016, 40.298552 ], [ -75.127996, 40.298426 ], [ -75.127941, 40.298016 ], [ -75.127935, 40.297968 ], [ -75.127923, 40.29784 ], [ -75.127914, 40.297734 ], [ -75.127911, 40.297696 ], [ -75.127896, 40.297362 ], [ -75.127883, 40.297204 ], [ -75.127832, 40.29714 ], [ -75.12781, 40.296741 ], [ -75.127772, 40.295756 ], [ -75.127748, 40.295361 ], [ -75.127725, 40.294978 ], [ -75.127721, 40.293904 ], [ -75.127721, 40.293665 ], [ -75.127716, 40.293392 ], [ -75.127713, 40.293307 ], [ -75.12777, 40.293247 ], [ -75.127838, 40.292753 ], [ -75.127951, 40.292407 ], [ -75.128069, 40.292094 ], [ -75.128375, 40.291605 ], [ -75.128442, 40.291498 ], [ -75.128661, 40.291184 ], [ -75.128788, 40.291014 ], [ -75.128843, 40.290923 ], [ -75.129018, 40.290665 ], [ -75.129212, 40.29038 ], [ -75.12937, 40.290121 ], [ -75.129575, 40.289752 ], [ -75.12966, 40.289533 ], [ -75.129669, 40.289488 ], [ -75.129705, 40.289322 ], [ -75.129719, 40.289166 ], [ -75.129728, 40.289083 ], [ -75.129735, 40.288982 ], [ -75.129741, 40.288861 ], [ -75.129734, 40.288753 ], [ -75.12973, 40.2887 ], [ -75.129723, 40.288608 ], [ -75.129697, 40.288498 ], [ -75.129652, 40.288315 ], [ -75.129595, 40.28817 ], [ -75.129534, 40.288025 ], [ -75.129448, 40.287861 ], [ -75.12932, 40.28767 ], [ -75.129153, 40.287459 ], [ -75.128925, 40.287261 ], [ -75.128687, 40.287074 ], [ -75.12857, 40.287001 ], [ -75.128115, 40.286719 ], [ -75.127929, 40.286604 ], [ -75.127842, 40.286535 ], [ -75.127741, 40.286472 ], [ -75.127246, 40.286161 ], [ -75.127026, 40.286023 ], [ -75.126942, 40.285967 ], [ -75.126871, 40.285913 ], [ -75.126787, 40.285844 ], [ -75.126723, 40.285782 ], [ -75.126657, 40.285717 ], [ -75.126594, 40.285641 ], [ -75.126556, 40.285596 ], [ -75.126505, 40.28553 ], [ -75.126479, 40.285486 ], [ -75.126404, 40.285368 ], [ -75.126362, 40.285292 ], [ -75.126313, 40.285199 ], [ -75.126286, 40.285145 ], [ -75.126254, 40.28507 ], [ -75.126196, 40.284938 ], [ -75.125995, 40.284456 ], [ -75.125951, 40.284227 ], [ -75.125928, 40.283946 ], [ -75.12592, 40.283663 ], [ -75.125926, 40.283443 ], [ -75.125936, 40.283269 ], [ -75.125957, 40.282891 ], [ -75.125979, 40.282618 ], [ -75.125983, 40.282551 ], [ -75.125931, 40.282458 ], [ -75.12598, 40.281604 ], [ -75.125995, 40.281372 ], [ -75.126005, 40.281206 ], [ -75.126016, 40.281037 ], [ -75.12602, 40.280997 ], [ -75.126026, 40.280906 ], [ -75.12606, 40.280587 ], [ -75.126081, 40.280446 ], [ -75.126089, 40.280391 ], [ -75.126108, 40.280256 ], [ -75.126117, 40.280198 ], [ -75.126127, 40.280136 ], [ -75.126139, 40.280063 ], [ -75.126179, 40.279844 ], [ -75.126213, 40.279716 ], [ -75.12628, 40.279446 ], [ -75.126327, 40.279298 ], [ -75.126348, 40.27923 ], [ -75.126359, 40.279195 ], [ -75.126404, 40.279052 ], [ -75.12644, 40.278937 ], [ -75.126463, 40.27887 ], [ -75.126491, 40.278788 ], [ -75.126674, 40.278261 ], [ -75.126928, 40.277598 ], [ -75.127026, 40.277522 ], [ -75.127088, 40.277353 ], [ -75.127157, 40.277163 ], [ -75.127381, 40.276638 ], [ -75.127573, 40.276185 ], [ -75.127648, 40.276005 ], [ -75.127714, 40.275846 ], [ -75.127778, 40.27569 ], [ -75.127929, 40.275285 ], [ -75.127938, 40.275261 ], [ -75.128284, 40.274432 ], [ -75.128339, 40.274291 ], [ -75.128413, 40.274105 ], [ -75.12849, 40.273892 ], [ -75.128532, 40.27377 ], [ -75.12892, 40.272652 ], [ -75.129049, 40.272251 ], [ -75.129162, 40.271923 ], [ -75.129235, 40.271682 ], [ -75.12932, 40.271404 ], [ -75.129499, 40.27083 ], [ -75.129678, 40.270224 ], [ -75.130104, 40.268733 ], [ -75.130138, 40.268612 ], [ -75.130245, 40.268234 ], [ -75.130308, 40.268023 ], [ -75.130372, 40.26781 ], [ -75.130436, 40.267567 ], [ -75.130494, 40.267337 ], [ -75.130626, 40.266864 ], [ -75.130586, 40.26676 ], [ -75.130645, 40.266551 ], [ -75.130654, 40.266517 ], [ -75.13071, 40.266262 ], [ -75.130735, 40.266104 ], [ -75.130753, 40.265983 ], [ -75.130777, 40.265746 ], [ -75.130808, 40.265375 ], [ -75.130819, 40.265232 ], [ -75.130832, 40.265076 ], [ -75.130839, 40.264973 ], [ -75.130849, 40.264858 ], [ -75.130855, 40.264779 ], [ -75.130885, 40.264313 ], [ -75.130904, 40.264058 ], [ -75.130922, 40.263802 ], [ -75.130969, 40.263744 ], [ -75.130972, 40.263712 ], [ -75.130973, 40.263694 ], [ -75.130974, 40.263675 ], [ -75.130979, 40.263553 ], [ -75.130991, 40.263235 ], [ -75.131, 40.263019 ], [ -75.130995, 40.26289 ], [ -75.130935, 40.262806 ], [ -75.130955, 40.262333 ], [ -75.130986, 40.261936 ], [ -75.131012, 40.261697 ], [ -75.131056, 40.26141 ], [ -75.131141, 40.260988 ], [ -75.131221, 40.26058 ], [ -75.131301, 40.260163 ], [ -75.131404, 40.259685 ], [ -75.131484, 40.259268 ], [ -75.131605, 40.258713 ], [ -75.131793, 40.25778 ], [ -75.13189, 40.257345 ], [ -75.131892, 40.257334 ], [ -75.13199, 40.256924 ], [ -75.132095, 40.256563 ], [ -75.132233, 40.256105 ], [ -75.13239, 40.255621 ], [ -75.132492, 40.255289 ], [ -75.132567, 40.255019 ], [ -75.132601, 40.254898 ], [ -75.132643, 40.254748 ], [ -75.132663, 40.254674 ], [ -75.132677, 40.254625 ], [ -75.132724, 40.254453 ], [ -75.132803, 40.254376 ], [ -75.132848, 40.254163 ], [ -75.132935, 40.253747 ], [ -75.132971, 40.253482 ], [ -75.133048, 40.252987 ], [ -75.133091, 40.252717 ], [ -75.133128, 40.252412 ], [ -75.133142, 40.25228 ], [ -75.133175, 40.251999 ], [ -75.133237, 40.251444 ], [ -75.133276, 40.251174 ], [ -75.133279, 40.25116 ], [ -75.13332, 40.250933 ], [ -75.133425, 40.250477 ], [ -75.133442, 40.250412 ], [ -75.133512, 40.250195 ], [ -75.133674, 40.249823 ], [ -75.133706, 40.249749 ], [ -75.133755, 40.249655 ], [ -75.133817, 40.249531 ], [ -75.133901, 40.249383 ], [ -75.133972, 40.24925 ], [ -75.134127, 40.248988 ], [ -75.134348, 40.248655 ], [ -75.134614, 40.248258 ], [ -75.134845, 40.247893 ], [ -75.135018, 40.247603 ], [ -75.135111, 40.24743 ], [ -75.135342, 40.246931 ], [ -75.135562, 40.246429 ], [ -75.135795, 40.24587 ], [ -75.135852, 40.245732 ], [ -75.135984, 40.245422 ], [ -75.136066, 40.245234 ], [ -75.136181, 40.244926 ], [ -75.136263, 40.244625 ], [ -75.13631, 40.244446 ], [ -75.136337, 40.244326 ], [ -75.13636, 40.244204 ], [ -75.136374, 40.244095 ], [ -75.136377, 40.244001 ], [ -75.13633, 40.243931 ], [ -75.13637, 40.243415 ], [ -75.136374, 40.243276 ], [ -75.136389, 40.242791 ], [ -75.136392, 40.242722 ], [ -75.136394, 40.242649 ], [ -75.136401, 40.24245 ], [ -75.13641, 40.242256 ], [ -75.136416, 40.242056 ], [ -75.136417, 40.242022 ], [ -75.136425, 40.241744 ], [ -75.136426, 40.2417 ], [ -75.136428, 40.241648 ], [ -75.13647, 40.240483 ], [ -75.136473, 40.240385 ], [ -75.136474, 40.2403 ], [ -75.136477, 40.240161 ], [ -75.136481, 40.239933 ], [ -75.136485, 40.239718 ], [ -75.13649, 40.239521 ], [ -75.13649, 40.23946 ], [ -75.136491, 40.239394 ], [ -75.136496, 40.23929 ], [ -75.136502, 40.239021 ], [ -75.136506, 40.23892 ], [ -75.136508, 40.238831 ], [ -75.136519, 40.23856 ], [ -75.13653, 40.23824 ], [ -75.136535, 40.23813 ], [ -75.13654, 40.23804 ], [ -75.136545, 40.237938 ], [ -75.136553, 40.237766 ], [ -75.136566, 40.237643 ], [ -75.136598, 40.23729 ], [ -75.136653, 40.236917 ], [ -75.136732, 40.236422 ], [ -75.136792, 40.236104 ], [ -75.136849, 40.235865 ], [ -75.136879, 40.235737 ], [ -75.13692, 40.235571 ], [ -75.136935, 40.235505 ], [ -75.136986, 40.235293 ], [ -75.137033, 40.23506 ], [ -75.137081, 40.234807 ], [ -75.137112, 40.234654 ], [ -75.137143, 40.234546 ], [ -75.13717, 40.234451 ], [ -75.137211, 40.234306 ], [ -75.137265, 40.23411 ], [ -75.1373, 40.233996 ], [ -75.137314, 40.23395 ], [ -75.137399, 40.233874 ], [ -75.137433, 40.23374 ], [ -75.137535, 40.233354 ], [ -75.137577, 40.233214 ], [ -75.137734, 40.232687 ], [ -75.137768, 40.232576 ], [ -75.1378, 40.232459 ], [ -75.137875, 40.232182 ], [ -75.137991, 40.23177 ], [ -75.138092, 40.23144 ], [ -75.138172, 40.231207 ], [ -75.138233, 40.231033 ], [ -75.138347, 40.230692 ], [ -75.138381, 40.230602 ], [ -75.13841, 40.230505 ], [ -75.138483, 40.230315 ], [ -75.138702, 40.229743 ], [ -75.13877, 40.229554 ], [ -75.13879, 40.229498 ], [ -75.138819, 40.229431 ], [ -75.1389, 40.229227 ], [ -75.138928, 40.229155 ], [ -75.139055, 40.22884 ], [ -75.139079, 40.228781 ], [ -75.139271, 40.228324 ], [ -75.139322, 40.228193 ], [ -75.139301, 40.228114 ], [ -75.139406, 40.227875 ], [ -75.139572, 40.227512 ], [ -75.139651, 40.227319 ], [ -75.139825, 40.226887 ], [ -75.139866, 40.226769 ], [ -75.139926, 40.226555 ], [ -75.140003, 40.226154 ], [ -75.140027, 40.225964 ], [ -75.140037, 40.225777 ], [ -75.140048, 40.225442 ], [ -75.140051, 40.225364 ], [ -75.140047, 40.225179 ], [ -75.140042, 40.22502 ], [ -75.140039, 40.224914 ], [ -75.140036, 40.22482 ], [ -75.140023, 40.224463 ], [ -75.140005, 40.22408 ], [ -75.140003, 40.224036 ], [ -75.139997, 40.223904 ], [ -75.13999, 40.223656 ], [ -75.139986, 40.223548 ], [ -75.139983, 40.223455 ], [ -75.139979, 40.223335 ], [ -75.139975, 40.223227 ], [ -75.139951, 40.222597 ], [ -75.13992, 40.221953 ], [ -75.139907, 40.221747 ], [ -75.139899, 40.221537 ], [ -75.139882, 40.221019 ], [ -75.139956, 40.221011 ], [ -75.140192, 40.220957 ], [ -75.140738, 40.220805 ], [ -75.141295, 40.220649 ], [ -75.142403, 40.220346 ], [ -75.142555, 40.220301 ], [ -75.142688, 40.220261 ], [ -75.142842, 40.220217 ], [ -75.14293, 40.220183 ], [ -75.143098, 40.220089 ], [ -75.143351, 40.219901 ], [ -75.143577, 40.219688 ], [ -75.143675, 40.219605 ], [ -75.144476, 40.218837 ], [ -75.14488, 40.218426 ], [ -75.145429, 40.217906 ], [ -75.145947, 40.217396 ], [ -75.146453, 40.216904 ], [ -75.146937, 40.216467 ], [ -75.145771, 40.215757 ], [ -75.14554, 40.215619 ], [ -75.145488, 40.215587 ], [ -75.145422, 40.215545 ], [ -75.14491, 40.215228 ], [ -75.144719, 40.215109 ], [ -75.144578, 40.215029 ], [ -75.144065, 40.214724 ], [ -75.143932, 40.214646 ], [ -75.143867, 40.21461 ], [ -75.143419, 40.214352 ], [ -75.143222, 40.214242 ], [ -75.142398, 40.213757 ], [ -75.141693, 40.213323 ], [ -75.140609, 40.212653 ], [ -75.13981, 40.212148 ], [ -75.139531, 40.211941 ], [ -75.139491, 40.211913 ], [ -75.139413, 40.211856 ], [ -75.139384, 40.211834 ], [ -75.139406, 40.211762 ], [ -75.139457, 40.211703 ], [ -75.139476, 40.21158 ], [ -75.139479, 40.211507 ], [ -75.139484, 40.21138 ], [ -75.139493, 40.211123 ], [ -75.139506, 40.210859 ], [ -75.139534, 40.210566 ], [ -75.139545, 40.21042 ], [ -75.139558, 40.210207 ], [ -75.139581, 40.209889 ], [ -75.139606, 40.209444 ], [ -75.139631, 40.208946 ], [ -75.139643, 40.208594 ], [ -75.139606, 40.208538 ], [ -75.13968, 40.207488 ], [ -75.139764, 40.206358 ], [ -75.139782, 40.206129 ], [ -75.139794, 40.205946 ], [ -75.139805, 40.205793 ], [ -75.139817, 40.205603 ], [ -75.13982, 40.205407 ], [ -75.13982, 40.205265 ], [ -75.139816, 40.205183 ], [ -75.139804, 40.205096 ], [ -75.13978, 40.20494 ], [ -75.139712, 40.204543 ], [ -75.13969, 40.204415 ], [ -75.139671, 40.204312 ], [ -75.139648, 40.204189 ], [ -75.13963, 40.204083 ], [ -75.139529, 40.203516 ], [ -75.13941, 40.202846 ], [ -75.139318, 40.202278 ], [ -75.139096, 40.200948 ], [ -75.138896, 40.199694 ], [ -75.138789, 40.199095 ], [ -75.138703, 40.198765 ], [ -75.138522, 40.198097 ], [ -75.138387, 40.1976 ], [ -75.138036, 40.196391 ], [ -75.138003, 40.196272 ], [ -75.137734, 40.195309 ], [ -75.137653, 40.195028 ], [ -75.13762, 40.194913 ], [ -75.137407, 40.194173 ], [ -75.137124, 40.193182 ], [ -75.136802, 40.192054 ], [ -75.136545, 40.191127 ], [ -75.136507, 40.191009 ], [ -75.136479, 40.19094 ], [ -75.136449, 40.190871 ], [ -75.136405, 40.190771 ], [ -75.13635, 40.190674 ], [ -75.136265, 40.190522 ], [ -75.13617, 40.190374 ], [ -75.135873, 40.189915 ], [ -75.135764, 40.189751 ], [ -75.135708, 40.189665 ], [ -75.135639, 40.189563 ], [ -75.13551, 40.189355 ], [ -75.13543, 40.189226 ], [ -75.135392, 40.189166 ], [ -75.135354, 40.189105 ], [ -75.135357, 40.189007 ], [ -75.134996, 40.188406 ], [ -75.13498, 40.188387 ], [ -75.134884, 40.188339 ], [ -75.134464, 40.18766 ], [ -75.134012, 40.186955 ], [ -75.133456, 40.18608 ], [ -75.133021, 40.185395 ], [ -75.132423, 40.184464 ], [ -75.132104, 40.183934 ], [ -75.132033, 40.183803 ], [ -75.132003, 40.183754 ], [ -75.132009, 40.183682 ], [ -75.131993, 40.183644 ], [ -75.131737, 40.183018 ], [ -75.131669, 40.182855 ], [ -75.131591, 40.182627 ], [ -75.131549, 40.182502 ], [ -75.131514, 40.182399 ], [ -75.131282, 40.181794 ], [ -75.131019, 40.181156 ], [ -75.130929, 40.180929 ], [ -75.130747, 40.180465 ], [ -75.13071, 40.180361 ], [ -75.130679, 40.180279 ], [ -75.130618, 40.180133 ], [ -75.130554, 40.180022 ], [ -75.130392, 40.179795 ], [ -75.130344, 40.179742 ], [ -75.13031, 40.179707 ], [ -75.130228, 40.179629 ], [ -75.13014, 40.179556 ], [ -75.12975, 40.179223 ], [ -75.129601, 40.179112 ], [ -75.12955, 40.179071 ], [ -75.129362, 40.178929 ], [ -75.129211, 40.178802 ], [ -75.129075, 40.178686 ], [ -75.128939, 40.178571 ], [ -75.128835, 40.178475 ], [ -75.128763, 40.178396 ], [ -75.128682, 40.178284 ], [ -75.128616, 40.178182 ], [ -75.128526, 40.178028 ], [ -75.128476, 40.177918 ], [ -75.128442, 40.177827 ], [ -75.128419, 40.177751 ], [ -75.12838, 40.177597 ], [ -75.128351, 40.177468 ], [ -75.128332, 40.177353 ], [ -75.128312, 40.177254 ], [ -75.128307, 40.177209 ], [ -75.128299, 40.17711 ], [ -75.128278, 40.176933 ], [ -75.128231, 40.176873 ], [ -75.128221, 40.176659 ], [ -75.128203, 40.176299 ], [ -75.128153, 40.175287 ], [ -75.128107, 40.174188 ], [ -75.128104, 40.174141 ], [ -75.128104, 40.174105 ], [ -75.128086, 40.173514 ], [ -75.128065, 40.173046 ], [ -75.128059, 40.172892 ], [ -75.128115, 40.172812 ], [ -75.12809, 40.172202 ], [ -75.128079, 40.172081 ], [ -75.128063, 40.171941 ], [ -75.128036, 40.171833 ], [ -75.128003, 40.171759 ], [ -75.127865, 40.171482 ], [ -75.127586, 40.170936 ], [ -75.127453, 40.170663 ], [ -75.127389, 40.170528 ], [ -75.127298, 40.17035 ], [ -75.127062, 40.169914 ], [ -75.126945, 40.169703 ], [ -75.126894, 40.169604 ], [ -75.126856, 40.169536 ], [ -75.126789, 40.169399 ], [ -75.126611, 40.169053 ], [ -75.12655, 40.168928 ], [ -75.126398, 40.168633 ], [ -75.126348, 40.168526 ], [ -75.12628, 40.168405 ], [ -75.126244, 40.168333 ], [ -75.126207, 40.168262 ], [ -75.12619, 40.168227 ], [ -75.126106, 40.168068 ], [ -75.125997, 40.167843 ], [ -75.125812, 40.167493 ], [ -75.125721, 40.167311 ], [ -75.125697, 40.167258 ], [ -75.125602, 40.167017 ], [ -75.125511, 40.166765 ], [ -75.125461, 40.166615 ], [ -75.125365, 40.166323 ], [ -75.125277, 40.166067 ], [ -75.125171, 40.165738 ], [ -75.125093, 40.165493 ], [ -75.125073, 40.165445 ], [ -75.125047, 40.165382 ], [ -75.124989, 40.165194 ], [ -75.124966, 40.16513 ], [ -75.124929, 40.16502 ], [ -75.124839, 40.164783 ], [ -75.124822, 40.164736 ], [ -75.124791, 40.16464 ], [ -75.124665, 40.164288 ], [ -75.124354, 40.163471 ], [ -75.124228, 40.163109 ], [ -75.124181, 40.162977 ], [ -75.12415, 40.162863 ], [ -75.124083, 40.162689 ], [ -75.124046, 40.16259 ], [ -75.123922, 40.162227 ], [ -75.1239, 40.162154 ], [ -75.123892, 40.16213 ], [ -75.123779, 40.161772 ], [ -75.123704, 40.161567 ], [ -75.123627, 40.161328 ], [ -75.123604, 40.161266 ], [ -75.123579, 40.161192 ], [ -75.123565, 40.161145 ], [ -75.123541, 40.161078 ], [ -75.123507, 40.160965 ], [ -75.12334, 40.160439 ], [ -75.123195, 40.159984 ], [ -75.123035, 40.159459 ], [ -75.122925, 40.159121 ], [ -75.122805, 40.158674 ], [ -75.122746, 40.158442 ], [ -75.122722, 40.158352 ], [ -75.12268, 40.158201 ], [ -75.122632, 40.158065 ], [ -75.122418, 40.157433 ], [ -75.122411, 40.157413 ], [ -75.122326, 40.157134 ], [ -75.122264, 40.15697 ], [ -75.122228, 40.156848 ], [ -75.122183, 40.156711 ], [ -75.122092, 40.156437 ], [ -75.122053, 40.156307 ], [ -75.122008, 40.15615 ], [ -75.121945, 40.155922 ], [ -75.121792, 40.154658 ], [ -75.121761, 40.154347 ], [ -75.121747, 40.154255 ], [ -75.121727, 40.154126 ], [ -75.121718, 40.154066 ], [ -75.12164, 40.153983 ], [ -75.121616, 40.15377 ], [ -75.121577, 40.153451 ], [ -75.121517, 40.153054 ], [ -75.121485, 40.152895 ], [ -75.121443, 40.152705 ], [ -75.121349, 40.152387 ], [ -75.121276, 40.152162 ], [ -75.121203, 40.151958 ], [ -75.121094, 40.151686 ], [ -75.120901, 40.151292 ], [ -75.120712, 40.150912 ], [ -75.120638, 40.150766 ], [ -75.120528, 40.150569 ], [ -75.12043, 40.150378 ], [ -75.120254, 40.15003 ], [ -75.120176, 40.149876 ], [ -75.119784, 40.149152 ], [ -75.119719, 40.149032 ], [ -75.119626, 40.148861 ], [ -75.119211, 40.148102 ], [ -75.119126, 40.147966 ], [ -75.119072, 40.147884 ], [ -75.119016, 40.1478 ], [ -75.118954, 40.147723 ], [ -75.118878, 40.147634 ], [ -75.1188, 40.147543 ], [ -75.118636, 40.147351 ], [ -75.11854, 40.147239 ], [ -75.118479, 40.147172 ], [ -75.118301, 40.146963 ], [ -75.118161, 40.146799 ], [ -75.118045, 40.146662 ], [ -75.117874, 40.14646 ], [ -75.117776, 40.146346 ], [ -75.117595, 40.146133 ], [ -75.117434, 40.145939 ], [ -75.117368, 40.145859 ], [ -75.11721, 40.145669 ], [ -75.116996, 40.145418 ], [ -75.116961, 40.145378 ], [ -75.116957, 40.145325 ], [ -75.116891, 40.14523 ], [ -75.11679, 40.145106 ], [ -75.116554, 40.144874 ], [ -75.116506, 40.144828 ], [ -75.116461, 40.144788 ], [ -75.116385, 40.144718 ], [ -75.116272, 40.144618 ], [ -75.116239, 40.144583 ], [ -75.116198, 40.144527 ], [ -75.116164, 40.144459 ], [ -75.116137, 40.144404 ], [ -75.116091, 40.144304 ], [ -75.116059, 40.144206 ], [ -75.116035, 40.144121 ], [ -75.11598, 40.143988 ], [ -75.115952, 40.143913 ], [ -75.115914, 40.143842 ], [ -75.115861, 40.143778 ], [ -75.115799, 40.143723 ], [ -75.115755, 40.143696 ], [ -75.11571, 40.143668 ], [ -75.115663, 40.143637 ], [ -75.115824, 40.143379 ], [ -75.11599, 40.143106 ], [ -75.116024, 40.143049 ], [ -75.116272, 40.142649 ], [ -75.116783, 40.141898 ], [ -75.116865, 40.141788 ], [ -75.116936, 40.141692 ], [ -75.117025, 40.141574 ], [ -75.117099, 40.141541 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115012, 40.143277 ], [ -75.114874, 40.143203 ], [ -75.114775, 40.14315 ], [ -75.114627, 40.143083 ], [ -75.11452, 40.143035 ], [ -75.113852, 40.142786 ], [ -75.113576, 40.142663 ], [ -75.113363, 40.142567 ], [ -75.113243, 40.142506 ], [ -75.113114, 40.142435 ], [ -75.113013, 40.142374 ], [ -75.112826, 40.142253 ], [ -75.112697, 40.142156 ], [ -75.11258, 40.142053 ], [ -75.112475, 40.141943 ], [ -75.11244, 40.141898 ], [ -75.112395, 40.141838 ], [ -75.112247, 40.14163 ], [ -75.112164, 40.141495 ], [ -75.112128, 40.141436 ], [ -75.112062, 40.141303 ], [ -75.112012, 40.141168 ], [ -75.111978, 40.141028 ], [ -75.111967, 40.140975 ], [ -75.111961, 40.140889 ], [ -75.111959, 40.140718 ], [ -75.111961, 40.140671 ], [ -75.111969, 40.140618 ], [ -75.111995, 40.140519 ], [ -75.112031, 40.140409 ], [ -75.112061, 40.140328 ], [ -75.112152, 40.140167 ], [ -75.112327, 40.139807 ], [ -75.112451, 40.139576 ], [ -75.112608, 40.139275 ], [ -75.112661, 40.139175 ], [ -75.112804, 40.138923 ], [ -75.112819, 40.138878 ], [ -75.113149, 40.138208 ], [ -75.113235, 40.138031 ], [ -75.113419, 40.137647 ], [ -75.113475, 40.137535 ], [ -75.11363, 40.137243 ], [ -75.113699, 40.137114 ], [ -75.114156, 40.136364 ], [ -75.114612, 40.135605 ], [ -75.114753, 40.135377 ], [ -75.114879, 40.135174 ], [ -75.114982, 40.134989 ], [ -75.115066, 40.134817 ], [ -75.115087, 40.134765 ], [ -75.115116, 40.13469 ], [ -75.115158, 40.134575 ], [ -75.115258, 40.134238 ], [ -75.115359, 40.133938 ], [ -75.115451, 40.133641 ], [ -75.115528, 40.13339 ], [ -75.115805, 40.132501 ], [ -75.116011, 40.131828 ], [ -75.116106, 40.131541 ], [ -75.116241, 40.131104 ], [ -75.116325, 40.130832 ], [ -75.116394, 40.130607 ], [ -75.116553, 40.129999 ], [ -75.116625, 40.129704 ], [ -75.116732, 40.129294 ], [ -75.116806, 40.128989 ], [ -75.116886, 40.128648 ], [ -75.116928, 40.128436 ], [ -75.117081, 40.12755 ], [ -75.117098, 40.127452 ], [ -75.117314, 40.126101 ], [ -75.117346, 40.125879 ], [ -75.117363, 40.125703 ], [ -75.117375, 40.125523 ], [ -75.117389, 40.125211 ], [ -75.117387, 40.125097 ], [ -75.117389, 40.125052 ], [ -75.117376, 40.124652 ], [ -75.117375, 40.124193 ], [ -75.11737, 40.123745 ], [ -75.117364, 40.12323 ], [ -75.11737, 40.123062 ], [ -75.117376, 40.122955 ], [ -75.1174, 40.122738 ], [ -75.117429, 40.1226 ], [ -75.117469, 40.122443 ], [ -75.11749, 40.122381 ], [ -75.117539, 40.122254 ], [ -75.117643, 40.122001 ], [ -75.117824, 40.121682 ], [ -75.118073, 40.121238 ], [ -75.118293, 40.120844 ], [ -75.118811, 40.119952 ], [ -75.118983, 40.119658 ], [ -75.119121, 40.11942 ], [ -75.119382, 40.118945 ], [ -75.119745, 40.118303 ], [ -75.120137, 40.117627 ], [ -75.120305, 40.117338 ], [ -75.12064, 40.116749 ], [ -75.120773, 40.116519 ], [ -75.120991, 40.116122 ], [ -75.121149, 40.115849 ], [ -75.121625, 40.115013 ], [ -75.121867, 40.114585 ], [ -75.122158, 40.114078 ], [ -75.122528, 40.113433 ], [ -75.122888, 40.112822 ], [ -75.122963, 40.112688 ], [ -75.123128, 40.112404 ], [ -75.123266, 40.11214 ], [ -75.123333, 40.11201 ], [ -75.123367, 40.11193 ], [ -75.123424, 40.111757 ], [ -75.123496, 40.111519 ], [ -75.123531, 40.111292 ], [ -75.12355, 40.111069 ], [ -75.12355, 40.110825 ], [ -75.123545, 40.110741 ], [ -75.123532, 40.11064 ], [ -75.123466, 40.110298 ], [ -75.12344, 40.110116 ], [ -75.123379, 40.109758 ], [ -75.123302, 40.109324 ], [ -75.123261, 40.109066 ], [ -75.123251, 40.108975 ], [ -75.123244, 40.108865 ], [ -75.12324, 40.108771 ], [ -75.12324, 40.108613 ], [ -75.123245, 40.108568 ], [ -75.123263, 40.108371 ], [ -75.123272, 40.108301 ], [ -75.123274, 40.108284 ], [ -75.123289, 40.108213 ], [ -75.123308, 40.108132 ], [ -75.123334, 40.108047 ], [ -75.123398, 40.107876 ], [ -75.123479, 40.107701 ], [ -75.123525, 40.10761 ], [ -75.123643, 40.107378 ], [ -75.123823, 40.107065 ], [ -75.123942, 40.106867 ], [ -75.124021, 40.106718 ], [ -75.12407, 40.106636 ], [ -75.124248, 40.106322 ], [ -75.12462, 40.10567 ], [ -75.124755, 40.105419 ], [ -75.124845, 40.105255 ], [ -75.125048, 40.104918 ], [ -75.12525, 40.104583 ], [ -75.12545, 40.104237 ], [ -75.125486, 40.104164 ], [ -75.125512, 40.104092 ], [ -75.125571, 40.103918 ], [ -75.125598, 40.103808 ], [ -75.125661, 40.103573 ], [ -75.125677, 40.103322 ], [ -75.125731, 40.102793 ], [ -75.125756, 40.102458 ], [ -75.125766, 40.102329 ], [ -75.12577, 40.102261 ], [ -75.125828, 40.101808 ], [ -75.125907, 40.10073 ], [ -75.125916, 40.100584 ], [ -75.125946, 40.100152 ], [ -75.125954, 40.100088 ], [ -75.125956, 40.099951 ], [ -75.125955, 40.099825 ], [ -75.125947, 40.099758 ], [ -75.125908, 40.099711 ], [ -75.125903, 40.099468 ], [ -75.1259, 40.099404 ], [ -75.12589, 40.099213 ], [ -75.125879, 40.098946 ], [ -75.125869, 40.098588 ], [ -75.125863, 40.098364 ], [ -75.125862, 40.098307 ], [ -75.125857, 40.097873 ], [ -75.125852, 40.097463 ], [ -75.125845, 40.097141 ], [ -75.125841, 40.096959 ], [ -75.125838, 40.096844 ], [ -75.12583, 40.096544 ], [ -75.125827, 40.096413 ], [ -75.125822, 40.096275 ], [ -75.125807, 40.095855 ], [ -75.125796, 40.0956 ], [ -75.125781, 40.095448 ], [ -75.125768, 40.095369 ], [ -75.125729, 40.095197 ], [ -75.125692, 40.095051 ], [ -75.125622, 40.094746 ], [ -75.125522, 40.094305 ], [ -75.12547, 40.094059 ], [ -75.125357, 40.093525 ], [ -75.125316, 40.093326 ], [ -75.1253, 40.093247 ], [ -75.125294, 40.0932 ], [ -75.12529, 40.093156 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093088 ], [ -75.1253, 40.093027 ], [ -75.125314, 40.092971 ], [ -75.125427, 40.092661 ], [ -75.125509, 40.092493 ], [ -75.125552, 40.092399 ], [ -75.125613, 40.092257 ], [ -75.125686, 40.0922 ], [ -75.125699, 40.092175 ], [ -75.125751, 40.092061 ], [ -75.125891, 40.09176 ], [ -75.126412, 40.090576 ], [ -75.126655, 40.090019 ], [ -75.126826, 40.089569 ], [ -75.126894, 40.089391 ], [ -75.126956, 40.089239 ], [ -75.127014, 40.089101 ], [ -75.127076, 40.088975 ], [ -75.127157, 40.088814 ], [ -75.127239, 40.08865 ], [ -75.127297, 40.088533 ], [ -75.127547, 40.088049 ], [ -75.127595, 40.087948 ], [ -75.127772, 40.087567 ], [ -75.127817, 40.087461 ], [ -75.127848, 40.087378 ], [ -75.127881, 40.08726 ], [ -75.127912, 40.087119 ], [ -75.127944, 40.08703 ], [ -75.127963, 40.086926 ], [ -75.127986, 40.086726 ], [ -75.128001, 40.086558 ], [ -75.128008, 40.086442 ], [ -75.128014, 40.086368 ], [ -75.128025, 40.08584 ], [ -75.12804, 40.085142 ], [ -75.128031, 40.08488 ], [ -75.128019, 40.08475 ], [ -75.127988, 40.08453 ], [ -75.12795, 40.084348 ], [ -75.127918, 40.084239 ], [ -75.127789, 40.083873 ], [ -75.127718, 40.083662 ], [ -75.127551, 40.083176 ], [ -75.127307, 40.082484 ], [ -75.127257, 40.082344 ], [ -75.127157, 40.082063 ], [ -75.126914, 40.081323 ], [ -75.126843, 40.081112 ], [ -75.126779, 40.080931 ], [ -75.126663, 40.080607 ], [ -75.126553, 40.08029 ], [ -75.126408, 40.079851 ], [ -75.126385, 40.079775 ], [ -75.126365, 40.079681 ], [ -75.126334, 40.079513 ], [ -75.126314, 40.079347 ], [ -75.126308, 40.079198 ], [ -75.126307, 40.079097 ], [ -75.126314, 40.078982 ], [ -75.126348, 40.078773 ], [ -75.12637, 40.078674 ], [ -75.126386, 40.078593 ], [ -75.126444, 40.078376 ], [ -75.126487, 40.078246 ], [ -75.126571, 40.07804 ], [ -75.126649, 40.077886 ], [ -75.126717, 40.077777 ], [ -75.126747, 40.077726 ], [ -75.126793, 40.077656 ], [ -75.126865, 40.077569 ], [ -75.126903, 40.077523 ], [ -75.127065, 40.077334 ], [ -75.127344, 40.077038 ], [ -75.127659, 40.076698 ], [ -75.127834, 40.076509 ], [ -75.127916, 40.076426 ], [ -75.128024, 40.076316 ], [ -75.128297, 40.076039 ], [ -75.128556, 40.075764 ], [ -75.128812, 40.075488 ], [ -75.128973, 40.075325 ], [ -75.12911, 40.075185 ], [ -75.129498, 40.07479 ], [ -75.129713, 40.074566 ], [ -75.129809, 40.074478 ], [ -75.129938, 40.074365 ], [ -75.130035, 40.074289 ], [ -75.130183, 40.074183 ], [ -75.130324, 40.074092 ], [ -75.130472, 40.074 ], [ -75.130948, 40.073715 ], [ -75.131177, 40.073575 ], [ -75.131294, 40.073495 ], [ -75.131383, 40.073434 ], [ -75.131444, 40.073384 ], [ -75.131468, 40.073364 ], [ -75.131708, 40.073167 ], [ -75.132106, 40.072821 ], [ -75.132713, 40.072296 ], [ -75.133166, 40.071895 ], [ -75.133275, 40.071795 ], [ -75.133382, 40.071694 ], [ -75.133477, 40.071585 ], [ -75.133543, 40.071514 ], [ -75.133567, 40.071483 ], [ -75.133715, 40.071301 ], [ -75.133771, 40.071224 ], [ -75.133816, 40.071155 ], [ -75.133911, 40.070999 ], [ -75.133967, 40.070884 ], [ -75.134036, 40.070716 ], [ -75.134093, 40.070564 ], [ -75.134132, 40.070425 ], [ -75.134204, 40.070163 ], [ -75.134278, 40.069673 ], [ -75.1343, 40.069509 ], [ -75.134332, 40.069272 ], [ -75.134383, 40.068928 ], [ -75.134605, 40.06762 ], [ -75.134622, 40.067479 ], [ -75.134665, 40.067222 ], [ -75.134697, 40.066989 ], [ -75.134722, 40.066869 ], [ -75.134836, 40.066137 ], [ -75.134874, 40.065897 ], [ -75.134925, 40.065615 ], [ -75.134948, 40.06552 ], [ -75.134971, 40.065419 ], [ -75.13501, 40.065301 ], [ -75.135059, 40.065155 ], [ -75.135126, 40.064991 ], [ -75.135209, 40.064783 ], [ -75.135286, 40.064589 ], [ -75.135398, 40.064316 ], [ -75.135412, 40.064285 ], [ -75.135472, 40.064156 ], [ -75.135589, 40.063922 ], [ -75.135609, 40.063885 ], [ -75.135691, 40.063733 ], [ -75.135798, 40.063539 ], [ -75.135967, 40.063249 ], [ -75.136048, 40.063109 ], [ -75.136202, 40.062866 ], [ -75.13644, 40.062467 ], [ -75.136742, 40.061969 ], [ -75.136788, 40.061893 ], [ -75.136828, 40.061816 ], [ -75.136868, 40.06175 ], [ -75.136958, 40.061592 ], [ -75.137009, 40.061497 ], [ -75.137062, 40.061391 ], [ -75.137053, 40.061295 ], [ -75.137203, 40.061049 ], [ -75.137286, 40.060919 ], [ -75.137609, 40.060382 ], [ -75.137693, 40.060241 ], [ -75.137948, 40.059829 ], [ -75.138171, 40.059467 ], [ -75.138624, 40.058732 ], [ -75.139061, 40.058006 ], [ -75.139411, 40.057432 ], [ -75.139695, 40.056968 ], [ -75.139938, 40.05658 ], [ -75.140245, 40.056073 ], [ -75.140692, 40.055336 ], [ -75.140757, 40.055301 ], [ -75.140799, 40.055233 ], [ -75.140875, 40.055115 ], [ -75.140922, 40.055045 ], [ -75.141142, 40.054781 ], [ -75.141202, 40.054708 ], [ -75.141272, 40.054651 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307747", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.103104, 40.161958 ], [ -75.103017, 40.161944 ], [ -75.102899, 40.161919 ], [ -75.102784, 40.161892 ], [ -75.10268, 40.161863 ], [ -75.102584, 40.161839 ], [ -75.102511, 40.161828 ], [ -75.102437, 40.161823 ], [ -75.102215, 40.161815 ], [ -75.102072, 40.161812 ], [ -75.101903, 40.161806 ], [ -75.10176, 40.161806 ], [ -75.101643, 40.161809 ], [ -75.101542, 40.16182 ], [ -75.10145, 40.161834 ], [ -75.101351, 40.161851 ], [ -75.101252, 40.161878 ], [ -75.101094, 40.161924 ], [ -75.100979, 40.161958 ], [ -75.100887, 40.161994 ], [ -75.100817, 40.162028 ], [ -75.100765, 40.162061 ], [ -75.100701, 40.162113 ], [ -75.100648, 40.162158 ], [ -75.100421, 40.162375 ], [ -75.100287, 40.16249 ], [ -75.100219, 40.162544 ], [ -75.100124, 40.162606 ], [ -75.100019, 40.16267 ], [ -75.099933, 40.162717 ], [ -75.099831, 40.162769 ], [ -75.099783, 40.162789 ], [ -75.099716, 40.162811 ], [ -75.099662, 40.162825 ], [ -75.099603, 40.162835 ], [ -75.099521, 40.162845 ], [ -75.09942, 40.162855 ], [ -75.099255, 40.162865 ], [ -75.099002, 40.162859 ], [ -75.0953, 40.162687 ], [ -75.092559, 40.16256 ], [ -75.091788, 40.162524 ], [ -75.090921, 40.162479 ], [ -75.09172, 40.161601 ], [ -75.091932, 40.161358 ], [ -75.092264, 40.160975 ], [ -75.092381, 40.16086 ], [ -75.092435, 40.160806 ], [ -75.092501, 40.16075 ], [ -75.092561, 40.1607 ], [ -75.092686, 40.160622 ], [ -75.092787, 40.160565 ], [ -75.093113, 40.160422 ], [ -75.093285, 40.160374 ], [ -75.093362, 40.160353 ], [ -75.093425, 40.160343 ], [ -75.093536, 40.160331 ], [ -75.093626, 40.160322 ], [ -75.093704, 40.160318 ], [ -75.09391, 40.160312 ], [ -75.094327, 40.160317 ], [ -75.096062, 40.160326 ], [ -75.096153, 40.160323 ], [ -75.096249, 40.160315 ], [ -75.096302, 40.160308 ], [ -75.096414, 40.160287 ], [ -75.096524, 40.160264 ], [ -75.09664, 40.160233 ], [ -75.096734, 40.160204 ], [ -75.096843, 40.160163 ], [ -75.096949, 40.160118 ], [ -75.097032, 40.160074 ], [ -75.097144, 40.160008 ], [ -75.097242, 40.159941 ], [ -75.097321, 40.15988 ], [ -75.097399, 40.159808 ], [ -75.097811, 40.159397 ], [ -75.098018, 40.159197 ], [ -75.099003, 40.158254 ], [ -75.099263, 40.15799 ], [ -75.100805, 40.156461 ], [ -75.101337, 40.155946 ], [ -75.102238, 40.155059 ], [ -75.102724, 40.154626 ], [ -75.10334, 40.154121 ], [ -75.103416, 40.15405 ], [ -75.103548, 40.153909 ], [ -75.103669, 40.153763 ], [ -75.104299, 40.152996 ], [ -75.104582, 40.152702 ], [ -75.105649, 40.151654 ], [ -75.106466, 40.150861 ], [ -75.106946, 40.150391 ], [ -75.107395, 40.149985 ], [ -75.107927, 40.149469 ], [ -75.109512, 40.14792 ], [ -75.110368, 40.147107 ], [ -75.110993, 40.146504 ], [ -75.111614, 40.145892 ], [ -75.112269, 40.145257 ], [ -75.112797, 40.14474 ], [ -75.113554, 40.143988 ], [ -75.11446, 40.143091 ], [ -75.114601, 40.143159 ], [ -75.115012, 40.143388 ], [ -75.115144, 40.14346 ], [ -75.115298, 40.143544 ], [ -75.115603, 40.143707 ], [ -75.115687, 40.143769 ], [ -75.115749, 40.143831 ], [ -75.115797, 40.143901 ], [ -75.115819, 40.143943 ], [ -75.115841, 40.143992 ], [ -75.11587, 40.144068 ], [ -75.115979, 40.144355 ], [ -75.116028, 40.144473 ], [ -75.116098, 40.144576 ], [ -75.116106, 40.144586 ], [ -75.116134, 40.144621 ], [ -75.11619, 40.144678 ], [ -75.116295, 40.144777 ], [ -75.116469, 40.144926 ], [ -75.116554, 40.144874 ], [ -75.116672, 40.144798 ], [ -75.11693, 40.144621 ], [ -75.117122, 40.144491 ], [ -75.117933, 40.14394 ], [ -75.118983, 40.14322 ], [ -75.119157, 40.143102 ], [ -75.119268, 40.143028 ], [ -75.119273, 40.143025 ], [ -75.119494, 40.142883 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115012, 40.143277 ], [ -75.114874, 40.143203 ], [ -75.114775, 40.14315 ], [ -75.114627, 40.143083 ], [ -75.11452, 40.143035 ], [ -75.113852, 40.142786 ], [ -75.113576, 40.142663 ], [ -75.113363, 40.142567 ], [ -75.113243, 40.142506 ], [ -75.113114, 40.142435 ], [ -75.113013, 40.142374 ], [ -75.112826, 40.142253 ], [ -75.112697, 40.142156 ], [ -75.11258, 40.142053 ], [ -75.112475, 40.141943 ], [ -75.11244, 40.141898 ], [ -75.112395, 40.141838 ], [ -75.112247, 40.14163 ], [ -75.112164, 40.141495 ], [ -75.112128, 40.141436 ], [ -75.112062, 40.141303 ], [ -75.112012, 40.141168 ], [ -75.111978, 40.141028 ], [ -75.111967, 40.140975 ], [ -75.111961, 40.140889 ], [ -75.111959, 40.140718 ], [ -75.111961, 40.140671 ], [ -75.111969, 40.140618 ], [ -75.111995, 40.140519 ], [ -75.112031, 40.140409 ], [ -75.112061, 40.140328 ], [ -75.112152, 40.140167 ], [ -75.112327, 40.139807 ], [ -75.112451, 40.139576 ], [ -75.112608, 40.139275 ], [ -75.112661, 40.139175 ], [ -75.112804, 40.138923 ], [ -75.112819, 40.138878 ], [ -75.113149, 40.138208 ], [ -75.113235, 40.138031 ], [ -75.113419, 40.137647 ], [ -75.113475, 40.137535 ], [ -75.11363, 40.137243 ], [ -75.113699, 40.137114 ], [ -75.114156, 40.136364 ], [ -75.114612, 40.135605 ], [ -75.114753, 40.135377 ], [ -75.114879, 40.135174 ], [ -75.114982, 40.134989 ], [ -75.115066, 40.134817 ], [ -75.115087, 40.134765 ], [ -75.115116, 40.13469 ], [ -75.115158, 40.134575 ], [ -75.115258, 40.134238 ], [ -75.115359, 40.133938 ], [ -75.115451, 40.133641 ], [ -75.115528, 40.13339 ], [ -75.115805, 40.132501 ], [ -75.116011, 40.131828 ], [ -75.116106, 40.131541 ], [ -75.116241, 40.131104 ], [ -75.116325, 40.130832 ], [ -75.116394, 40.130607 ], [ -75.116553, 40.129999 ], [ -75.116625, 40.129704 ], [ -75.116732, 40.129294 ], [ -75.116806, 40.128989 ], [ -75.116886, 40.128648 ], [ -75.116928, 40.128436 ], [ -75.117081, 40.12755 ], [ -75.117098, 40.127452 ], [ -75.117314, 40.126101 ], [ -75.117346, 40.125879 ], [ -75.117363, 40.125703 ], [ -75.117375, 40.125523 ], [ -75.117389, 40.125211 ], [ -75.117387, 40.125097 ], [ -75.117389, 40.125052 ], [ -75.117376, 40.124652 ], [ -75.117375, 40.124193 ], [ -75.11737, 40.123745 ], [ -75.117364, 40.12323 ], [ -75.11737, 40.123062 ], [ -75.117376, 40.122955 ], [ -75.1174, 40.122738 ], [ -75.117429, 40.1226 ], [ -75.117469, 40.122443 ], [ -75.11749, 40.122381 ], [ -75.117539, 40.122254 ], [ -75.117643, 40.122001 ], [ -75.117824, 40.121682 ], [ -75.118073, 40.121238 ], [ -75.118293, 40.120844 ], [ -75.118811, 40.119952 ], [ -75.118983, 40.119658 ], [ -75.119121, 40.11942 ], [ -75.119382, 40.118945 ], [ -75.119745, 40.118303 ], [ -75.120137, 40.117627 ], [ -75.120305, 40.117338 ], [ -75.12064, 40.116749 ], [ -75.120773, 40.116519 ], [ -75.120991, 40.116122 ], [ -75.121149, 40.115849 ], [ -75.121625, 40.115013 ], [ -75.121867, 40.114585 ], [ -75.122158, 40.114078 ], [ -75.122528, 40.113433 ], [ -75.122888, 40.112822 ], [ -75.122963, 40.112688 ], [ -75.123128, 40.112404 ], [ -75.123266, 40.11214 ], [ -75.123333, 40.11201 ], [ -75.123367, 40.11193 ], [ -75.123424, 40.111757 ], [ -75.123496, 40.111519 ], [ -75.123531, 40.111292 ], [ -75.12355, 40.111069 ], [ -75.12355, 40.110825 ], [ -75.123545, 40.110741 ], [ -75.123532, 40.11064 ], [ -75.123466, 40.110298 ], [ -75.12344, 40.110116 ], [ -75.123379, 40.109758 ], [ -75.123302, 40.109324 ], [ -75.123261, 40.109066 ], [ -75.123251, 40.108975 ], [ -75.123244, 40.108865 ], [ -75.12324, 40.108771 ], [ -75.12324, 40.108613 ], [ -75.123245, 40.108568 ], [ -75.123263, 40.108371 ], [ -75.123272, 40.108301 ], [ -75.123274, 40.108284 ], [ -75.123289, 40.108213 ], [ -75.123308, 40.108132 ], [ -75.123334, 40.108047 ], [ -75.123398, 40.107876 ], [ -75.123479, 40.107701 ], [ -75.123525, 40.10761 ], [ -75.123643, 40.107378 ], [ -75.123823, 40.107065 ], [ -75.123942, 40.106867 ], [ -75.124021, 40.106718 ], [ -75.12407, 40.106636 ], [ -75.124248, 40.106322 ], [ -75.12462, 40.10567 ], [ -75.124755, 40.105419 ], [ -75.124845, 40.105255 ], [ -75.125048, 40.104918 ], [ -75.12525, 40.104583 ], [ -75.12545, 40.104237 ], [ -75.125486, 40.104164 ], [ -75.125512, 40.104092 ], [ -75.125571, 40.103918 ], [ -75.125598, 40.103808 ], [ -75.125661, 40.103573 ], [ -75.125677, 40.103322 ], [ -75.125731, 40.102793 ], [ -75.125756, 40.102458 ], [ -75.125766, 40.102329 ], [ -75.12577, 40.102261 ], [ -75.125828, 40.101808 ], [ -75.125907, 40.10073 ], [ -75.125916, 40.100584 ], [ -75.125946, 40.100152 ], [ -75.125954, 40.100088 ], [ -75.125956, 40.099951 ], [ -75.125955, 40.099825 ], [ -75.125947, 40.099758 ], [ -75.125908, 40.099711 ], [ -75.125903, 40.099468 ], [ -75.1259, 40.099404 ], [ -75.12589, 40.099213 ], [ -75.125879, 40.098946 ], [ -75.125869, 40.098588 ], [ -75.125863, 40.098364 ], [ -75.125862, 40.098307 ], [ -75.125857, 40.097873 ], [ -75.125852, 40.097463 ], [ -75.125845, 40.097141 ], [ -75.125841, 40.096959 ], [ -75.125838, 40.096844 ], [ -75.12583, 40.096544 ], [ -75.125827, 40.096413 ], [ -75.125822, 40.096275 ], [ -75.125807, 40.095855 ], [ -75.125796, 40.0956 ], [ -75.125781, 40.095448 ], [ -75.125768, 40.095369 ], [ -75.125729, 40.095197 ], [ -75.125692, 40.095051 ], [ -75.125622, 40.094746 ], [ -75.125522, 40.094305 ], [ -75.12547, 40.094059 ], [ -75.125357, 40.093525 ], [ -75.125316, 40.093326 ], [ -75.1253, 40.093247 ], [ -75.125294, 40.0932 ], [ -75.12529, 40.093156 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093088 ], [ -75.1253, 40.093027 ], [ -75.125314, 40.092971 ], [ -75.125427, 40.092661 ], [ -75.125509, 40.092493 ], [ -75.125552, 40.092399 ], [ -75.125613, 40.092257 ], [ -75.125686, 40.0922 ], [ -75.125699, 40.092175 ], [ -75.125751, 40.092061 ], [ -75.125891, 40.09176 ], [ -75.126412, 40.090576 ], [ -75.126655, 40.090019 ], [ -75.126826, 40.089569 ], [ -75.126894, 40.089391 ], [ -75.126956, 40.089239 ], [ -75.127014, 40.089101 ], [ -75.127076, 40.088975 ], [ -75.127157, 40.088814 ], [ -75.127239, 40.08865 ], [ -75.127297, 40.088533 ], [ -75.127547, 40.088049 ], [ -75.127595, 40.087948 ], [ -75.127772, 40.087567 ], [ -75.127817, 40.087461 ], [ -75.127848, 40.087378 ], [ -75.127881, 40.08726 ], [ -75.127912, 40.087119 ], [ -75.127944, 40.08703 ], [ -75.127963, 40.086926 ], [ -75.127986, 40.086726 ], [ -75.128001, 40.086558 ], [ -75.128008, 40.086442 ], [ -75.128014, 40.086368 ], [ -75.128025, 40.08584 ], [ -75.12804, 40.085142 ], [ -75.128031, 40.08488 ], [ -75.128019, 40.08475 ], [ -75.127988, 40.08453 ], [ -75.12795, 40.084348 ], [ -75.127918, 40.084239 ], [ -75.127789, 40.083873 ], [ -75.127718, 40.083662 ], [ -75.127551, 40.083176 ], [ -75.127307, 40.082484 ], [ -75.127257, 40.082344 ], [ -75.127157, 40.082063 ], [ -75.126914, 40.081323 ], [ -75.126843, 40.081112 ], [ -75.126779, 40.080931 ], [ -75.126663, 40.080607 ], [ -75.126553, 40.08029 ], [ -75.126408, 40.079851 ], [ -75.126385, 40.079775 ], [ -75.126365, 40.079681 ], [ -75.126334, 40.079513 ], [ -75.126314, 40.079347 ], [ -75.126308, 40.079198 ], [ -75.126307, 40.079097 ], [ -75.126314, 40.078982 ], [ -75.126348, 40.078773 ], [ -75.12637, 40.078674 ], [ -75.126386, 40.078593 ], [ -75.126444, 40.078376 ], [ -75.126487, 40.078246 ], [ -75.126571, 40.07804 ], [ -75.126649, 40.077886 ], [ -75.126717, 40.077777 ], [ -75.126747, 40.077726 ], [ -75.126793, 40.077656 ], [ -75.126865, 40.077569 ], [ -75.126903, 40.077523 ], [ -75.127065, 40.077334 ], [ -75.127344, 40.077038 ], [ -75.127659, 40.076698 ], [ -75.127834, 40.076509 ], [ -75.127916, 40.076426 ], [ -75.128024, 40.076316 ], [ -75.128297, 40.076039 ], [ -75.128556, 40.075764 ], [ -75.128812, 40.075488 ], [ -75.128973, 40.075325 ], [ -75.12911, 40.075185 ], [ -75.129498, 40.07479 ], [ -75.129713, 40.074566 ], [ -75.129809, 40.074478 ], [ -75.129938, 40.074365 ], [ -75.130035, 40.074289 ], [ -75.130183, 40.074183 ], [ -75.130324, 40.074092 ], [ -75.130472, 40.074 ], [ -75.130948, 40.073715 ], [ -75.131177, 40.073575 ], [ -75.131294, 40.073495 ], [ -75.131383, 40.073434 ], [ -75.131444, 40.073384 ], [ -75.131468, 40.073364 ], [ -75.131708, 40.073167 ], [ -75.132106, 40.072821 ], [ -75.132713, 40.072296 ], [ -75.133166, 40.071895 ], [ -75.133275, 40.071795 ], [ -75.133382, 40.071694 ], [ -75.133477, 40.071585 ], [ -75.133543, 40.071514 ], [ -75.133567, 40.071483 ], [ -75.133715, 40.071301 ], [ -75.133771, 40.071224 ], [ -75.133816, 40.071155 ], [ -75.133911, 40.070999 ], [ -75.133967, 40.070884 ], [ -75.134036, 40.070716 ], [ -75.134093, 40.070564 ], [ -75.134132, 40.070425 ], [ -75.134204, 40.070163 ], [ -75.134278, 40.069673 ], [ -75.1343, 40.069509 ], [ -75.134332, 40.069272 ], [ -75.134383, 40.068928 ], [ -75.134605, 40.06762 ], [ -75.134622, 40.067479 ], [ -75.134665, 40.067222 ], [ -75.134697, 40.066989 ], [ -75.134722, 40.066869 ], [ -75.134836, 40.066137 ], [ -75.134874, 40.065897 ], [ -75.134925, 40.065615 ], [ -75.134948, 40.06552 ], [ -75.134971, 40.065419 ], [ -75.13501, 40.065301 ], [ -75.135059, 40.065155 ], [ -75.135126, 40.064991 ], [ -75.135209, 40.064783 ], [ -75.135286, 40.064589 ], [ -75.135398, 40.064316 ], [ -75.135412, 40.064285 ], [ -75.135472, 40.064156 ], [ -75.135589, 40.063922 ], [ -75.135609, 40.063885 ], [ -75.135691, 40.063733 ], [ -75.135798, 40.063539 ], [ -75.135967, 40.063249 ], [ -75.136048, 40.063109 ], [ -75.136202, 40.062866 ], [ -75.13644, 40.062467 ], [ -75.136742, 40.061969 ], [ -75.136788, 40.061893 ], [ -75.136828, 40.061816 ], [ -75.136868, 40.06175 ], [ -75.136958, 40.061592 ], [ -75.137009, 40.061497 ], [ -75.137062, 40.061391 ], [ -75.137053, 40.061295 ], [ -75.137203, 40.061049 ], [ -75.137286, 40.060919 ], [ -75.137609, 40.060382 ], [ -75.137693, 40.060241 ], [ -75.137948, 40.059829 ], [ -75.138171, 40.059467 ], [ -75.138624, 40.058732 ], [ -75.139061, 40.058006 ], [ -75.139411, 40.057432 ], [ -75.139695, 40.056968 ], [ -75.139938, 40.05658 ], [ -75.140245, 40.056073 ], [ -75.140692, 40.055336 ], [ -75.140757, 40.055301 ], [ -75.140799, 40.055233 ], [ -75.140875, 40.055115 ], [ -75.140922, 40.055045 ], [ -75.141142, 40.054781 ], [ -75.141202, 40.054708 ], [ -75.141272, 40.054651 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307748", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115012, 40.143277 ], [ -75.114874, 40.143203 ], [ -75.114775, 40.14315 ], [ -75.114627, 40.143083 ], [ -75.11452, 40.143035 ], [ -75.113852, 40.142786 ], [ -75.113576, 40.142663 ], [ -75.113363, 40.142567 ], [ -75.113243, 40.142506 ], [ -75.113114, 40.142435 ], [ -75.113013, 40.142374 ], [ -75.112826, 40.142253 ], [ -75.112697, 40.142156 ], [ -75.11258, 40.142053 ], [ -75.112475, 40.141943 ], [ -75.11244, 40.141898 ], [ -75.112395, 40.141838 ], [ -75.112247, 40.14163 ], [ -75.112164, 40.141495 ], [ -75.112128, 40.141436 ], [ -75.112062, 40.141303 ], [ -75.112012, 40.141168 ], [ -75.111978, 40.141028 ], [ -75.111967, 40.140975 ], [ -75.111961, 40.140889 ], [ -75.111959, 40.140718 ], [ -75.111961, 40.140671 ], [ -75.111969, 40.140618 ], [ -75.111995, 40.140519 ], [ -75.112031, 40.140409 ], [ -75.112061, 40.140328 ], [ -75.112152, 40.140167 ], [ -75.112327, 40.139807 ], [ -75.112451, 40.139576 ], [ -75.112608, 40.139275 ], [ -75.112661, 40.139175 ], [ -75.112804, 40.138923 ], [ -75.112819, 40.138878 ], [ -75.113149, 40.138208 ], [ -75.113235, 40.138031 ], [ -75.113419, 40.137647 ], [ -75.113475, 40.137535 ], [ -75.11363, 40.137243 ], [ -75.113699, 40.137114 ], [ -75.114156, 40.136364 ], [ -75.114612, 40.135605 ], [ -75.114753, 40.135377 ], [ -75.114879, 40.135174 ], [ -75.114982, 40.134989 ], [ -75.115066, 40.134817 ], [ -75.115087, 40.134765 ], [ -75.115116, 40.13469 ], [ -75.115158, 40.134575 ], [ -75.115258, 40.134238 ], [ -75.115359, 40.133938 ], [ -75.115451, 40.133641 ], [ -75.115528, 40.13339 ], [ -75.115805, 40.132501 ], [ -75.116011, 40.131828 ], [ -75.116106, 40.131541 ], [ -75.116241, 40.131104 ], [ -75.116325, 40.130832 ], [ -75.116394, 40.130607 ], [ -75.116553, 40.129999 ], [ -75.116625, 40.129704 ], [ -75.116732, 40.129294 ], [ -75.116806, 40.128989 ], [ -75.116886, 40.128648 ], [ -75.116928, 40.128436 ], [ -75.117081, 40.12755 ], [ -75.117098, 40.127452 ], [ -75.117314, 40.126101 ], [ -75.117346, 40.125879 ], [ -75.117363, 40.125703 ], [ -75.117375, 40.125523 ], [ -75.117389, 40.125211 ], [ -75.117387, 40.125097 ], [ -75.117389, 40.125052 ], [ -75.117376, 40.124652 ], [ -75.117375, 40.124193 ], [ -75.11737, 40.123745 ], [ -75.117364, 40.12323 ], [ -75.11737, 40.123062 ], [ -75.117376, 40.122955 ], [ -75.1174, 40.122738 ], [ -75.117429, 40.1226 ], [ -75.117469, 40.122443 ], [ -75.11749, 40.122381 ], [ -75.117539, 40.122254 ], [ -75.117643, 40.122001 ], [ -75.117824, 40.121682 ], [ -75.118073, 40.121238 ], [ -75.118293, 40.120844 ], [ -75.118811, 40.119952 ], [ -75.118983, 40.119658 ], [ -75.119121, 40.11942 ], [ -75.119382, 40.118945 ], [ -75.119745, 40.118303 ], [ -75.120137, 40.117627 ], [ -75.120305, 40.117338 ], [ -75.12064, 40.116749 ], [ -75.120773, 40.116519 ], [ -75.120991, 40.116122 ], [ -75.121149, 40.115849 ], [ -75.121625, 40.115013 ], [ -75.121867, 40.114585 ], [ -75.122158, 40.114078 ], [ -75.122528, 40.113433 ], [ -75.122888, 40.112822 ], [ -75.122963, 40.112688 ], [ -75.123128, 40.112404 ], [ -75.123266, 40.11214 ], [ -75.123333, 40.11201 ], [ -75.123367, 40.11193 ], [ -75.123424, 40.111757 ], [ -75.123496, 40.111519 ], [ -75.123531, 40.111292 ], [ -75.12355, 40.111069 ], [ -75.12355, 40.110825 ], [ -75.123545, 40.110741 ], [ -75.123532, 40.11064 ], [ -75.123466, 40.110298 ], [ -75.12344, 40.110116 ], [ -75.123379, 40.109758 ], [ -75.123302, 40.109324 ], [ -75.123261, 40.109066 ], [ -75.123251, 40.108975 ], [ -75.123244, 40.108865 ], [ -75.12324, 40.108771 ], [ -75.12324, 40.108613 ], [ -75.123245, 40.108568 ], [ -75.123263, 40.108371 ], [ -75.123272, 40.108301 ], [ -75.123274, 40.108284 ], [ -75.123289, 40.108213 ], [ -75.123308, 40.108132 ], [ -75.123334, 40.108047 ], [ -75.123398, 40.107876 ], [ -75.123479, 40.107701 ], [ -75.123525, 40.10761 ], [ -75.123643, 40.107378 ], [ -75.123823, 40.107065 ], [ -75.123942, 40.106867 ], [ -75.124021, 40.106718 ], [ -75.12407, 40.106636 ], [ -75.124248, 40.106322 ], [ -75.12462, 40.10567 ], [ -75.124755, 40.105419 ], [ -75.124845, 40.105255 ], [ -75.125048, 40.104918 ], [ -75.12525, 40.104583 ], [ -75.12545, 40.104237 ], [ -75.125486, 40.104164 ], [ -75.125512, 40.104092 ], [ -75.125571, 40.103918 ], [ -75.125598, 40.103808 ], [ -75.125661, 40.103573 ], [ -75.125677, 40.103322 ], [ -75.125731, 40.102793 ], [ -75.125756, 40.102458 ], [ -75.125766, 40.102329 ], [ -75.12577, 40.102261 ], [ -75.125828, 40.101808 ], [ -75.125907, 40.10073 ], [ -75.125916, 40.100584 ], [ -75.125946, 40.100152 ], [ -75.125954, 40.100088 ], [ -75.125956, 40.099951 ], [ -75.125955, 40.099825 ], [ -75.125947, 40.099758 ], [ -75.125908, 40.099711 ], [ -75.125903, 40.099468 ], [ -75.1259, 40.099404 ], [ -75.12589, 40.099213 ], [ -75.125879, 40.098946 ], [ -75.125869, 40.098588 ], [ -75.125863, 40.098364 ], [ -75.125862, 40.098307 ], [ -75.125857, 40.097873 ], [ -75.125852, 40.097463 ], [ -75.125845, 40.097141 ], [ -75.125841, 40.096959 ], [ -75.125838, 40.096844 ], [ -75.12583, 40.096544 ], [ -75.125827, 40.096413 ], [ -75.125822, 40.096275 ], [ -75.125807, 40.095855 ], [ -75.125796, 40.0956 ], [ -75.125781, 40.095448 ], [ -75.125768, 40.095369 ], [ -75.125729, 40.095197 ], [ -75.125692, 40.095051 ], [ -75.125622, 40.094746 ], [ -75.125522, 40.094305 ], [ -75.12547, 40.094059 ], [ -75.125357, 40.093525 ], [ -75.125316, 40.093326 ], [ -75.1253, 40.093247 ], [ -75.125294, 40.0932 ], [ -75.12529, 40.093156 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093088 ], [ -75.1253, 40.093027 ], [ -75.125314, 40.092971 ], [ -75.125427, 40.092661 ], [ -75.125509, 40.092493 ], [ -75.125552, 40.092399 ], [ -75.125613, 40.092257 ], [ -75.125686, 40.0922 ], [ -75.125699, 40.092175 ], [ -75.125751, 40.092061 ], [ -75.125891, 40.09176 ], [ -75.126412, 40.090576 ], [ -75.126655, 40.090019 ], [ -75.126826, 40.089569 ], [ -75.126894, 40.089391 ], [ -75.126956, 40.089239 ], [ -75.127014, 40.089101 ], [ -75.127076, 40.088975 ], [ -75.127157, 40.088814 ], [ -75.127239, 40.08865 ], [ -75.127297, 40.088533 ], [ -75.127547, 40.088049 ], [ -75.127595, 40.087948 ], [ -75.127772, 40.087567 ], [ -75.127817, 40.087461 ], [ -75.127848, 40.087378 ], [ -75.127881, 40.08726 ], [ -75.127912, 40.087119 ], [ -75.127944, 40.08703 ], [ -75.127963, 40.086926 ], [ -75.127986, 40.086726 ], [ -75.128001, 40.086558 ], [ -75.128008, 40.086442 ], [ -75.128014, 40.086368 ], [ -75.128025, 40.08584 ], [ -75.12804, 40.085142 ], [ -75.128031, 40.08488 ], [ -75.128019, 40.08475 ], [ -75.127988, 40.08453 ], [ -75.12795, 40.084348 ], [ -75.127918, 40.084239 ], [ -75.127789, 40.083873 ], [ -75.127718, 40.083662 ], [ -75.127551, 40.083176 ], [ -75.127307, 40.082484 ], [ -75.127257, 40.082344 ], [ -75.127157, 40.082063 ], [ -75.126914, 40.081323 ], [ -75.126843, 40.081112 ], [ -75.126779, 40.080931 ], [ -75.126663, 40.080607 ], [ -75.126553, 40.08029 ], [ -75.126408, 40.079851 ], [ -75.126385, 40.079775 ], [ -75.126365, 40.079681 ], [ -75.126334, 40.079513 ], [ -75.126314, 40.079347 ], [ -75.126308, 40.079198 ], [ -75.126307, 40.079097 ], [ -75.126314, 40.078982 ], [ -75.126348, 40.078773 ], [ -75.12637, 40.078674 ], [ -75.126386, 40.078593 ], [ -75.126444, 40.078376 ], [ -75.126487, 40.078246 ], [ -75.126571, 40.07804 ], [ -75.126649, 40.077886 ], [ -75.126717, 40.077777 ], [ -75.126747, 40.077726 ], [ -75.126793, 40.077656 ], [ -75.126865, 40.077569 ], [ -75.126903, 40.077523 ], [ -75.127065, 40.077334 ], [ -75.127344, 40.077038 ], [ -75.127659, 40.076698 ], [ -75.127834, 40.076509 ], [ -75.127916, 40.076426 ], [ -75.128024, 40.076316 ], [ -75.128297, 40.076039 ], [ -75.128556, 40.075764 ], [ -75.128812, 40.075488 ], [ -75.128973, 40.075325 ], [ -75.12911, 40.075185 ], [ -75.129498, 40.07479 ], [ -75.129713, 40.074566 ], [ -75.129809, 40.074478 ], [ -75.129938, 40.074365 ], [ -75.130035, 40.074289 ], [ -75.130183, 40.074183 ], [ -75.130324, 40.074092 ], [ -75.130472, 40.074 ], [ -75.130948, 40.073715 ], [ -75.131177, 40.073575 ], [ -75.131294, 40.073495 ], [ -75.131383, 40.073434 ], [ -75.131444, 40.073384 ], [ -75.131468, 40.073364 ], [ -75.131708, 40.073167 ], [ -75.132106, 40.072821 ], [ -75.132713, 40.072296 ], [ -75.133166, 40.071895 ], [ -75.133275, 40.071795 ], [ -75.133382, 40.071694 ], [ -75.133477, 40.071585 ], [ -75.133543, 40.071514 ], [ -75.133567, 40.071483 ], [ -75.133715, 40.071301 ], [ -75.133771, 40.071224 ], [ -75.133816, 40.071155 ], [ -75.133911, 40.070999 ], [ -75.133967, 40.070884 ], [ -75.134036, 40.070716 ], [ -75.134093, 40.070564 ], [ -75.134132, 40.070425 ], [ -75.134204, 40.070163 ], [ -75.134278, 40.069673 ], [ -75.1343, 40.069509 ], [ -75.134332, 40.069272 ], [ -75.134383, 40.068928 ], [ -75.134605, 40.06762 ], [ -75.134622, 40.067479 ], [ -75.134665, 40.067222 ], [ -75.134697, 40.066989 ], [ -75.134722, 40.066869 ], [ -75.134836, 40.066137 ], [ -75.134874, 40.065897 ], [ -75.134925, 40.065615 ], [ -75.134948, 40.06552 ], [ -75.134971, 40.065419 ], [ -75.13501, 40.065301 ], [ -75.135059, 40.065155 ], [ -75.135126, 40.064991 ], [ -75.135209, 40.064783 ], [ -75.135286, 40.064589 ], [ -75.135398, 40.064316 ], [ -75.135412, 40.064285 ], [ -75.135472, 40.064156 ], [ -75.135589, 40.063922 ], [ -75.135609, 40.063885 ], [ -75.135691, 40.063733 ], [ -75.135798, 40.063539 ], [ -75.135967, 40.063249 ], [ -75.136048, 40.063109 ], [ -75.136202, 40.062866 ], [ -75.13644, 40.062467 ], [ -75.136742, 40.061969 ], [ -75.136788, 40.061893 ], [ -75.136828, 40.061816 ], [ -75.136868, 40.06175 ], [ -75.136958, 40.061592 ], [ -75.137009, 40.061497 ], [ -75.137062, 40.061391 ], [ -75.137053, 40.061295 ], [ -75.137203, 40.061049 ], [ -75.137286, 40.060919 ], [ -75.137609, 40.060382 ], [ -75.137693, 40.060241 ], [ -75.137948, 40.059829 ], [ -75.138171, 40.059467 ], [ -75.138624, 40.058732 ], [ -75.139061, 40.058006 ], [ -75.139411, 40.057432 ], [ -75.139695, 40.056968 ], [ -75.139938, 40.05658 ], [ -75.140245, 40.056073 ], [ -75.140692, 40.055336 ], [ -75.140757, 40.055301 ], [ -75.140799, 40.055233 ], [ -75.140875, 40.055115 ], [ -75.140922, 40.055045 ], [ -75.141142, 40.054781 ], [ -75.141202, 40.054708 ], [ -75.141272, 40.054651 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307749", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.145604, 40.162736 ], [ -75.145392, 40.162945 ], [ -75.145383, 40.162987 ], [ -75.145398, 40.163034 ], [ -75.145423, 40.163076 ], [ -75.145483, 40.163098 ], [ -75.145542, 40.163091 ], [ -75.1456, 40.163067 ], [ -75.145617, 40.163005 ], [ -75.145617, 40.162938 ], [ -75.14558, 40.162877 ], [ -75.145578, 40.162822 ], [ -75.145604, 40.162736 ], [ -75.146835, 40.161556 ], [ -75.148313, 40.160095 ], [ -75.148365, 40.160046 ], [ -75.147426, 40.159493 ], [ -75.147165, 40.15934 ], [ -75.146895, 40.15918 ], [ -75.146602, 40.159008 ], [ -75.145998, 40.158626 ], [ -75.145819, 40.158512 ], [ -75.145703, 40.158439 ], [ -75.144623, 40.157822 ], [ -75.144615, 40.157805 ], [ -75.144601, 40.157775 ], [ -75.144592, 40.157769 ], [ -75.144496, 40.157718 ], [ -75.144462, 40.1577 ], [ -75.144268, 40.157588 ], [ -75.1441, 40.157489 ], [ -75.144088, 40.157481 ], [ -75.143726, 40.157267 ], [ -75.143114, 40.156907 ], [ -75.142688, 40.156673 ], [ -75.141826, 40.156163 ], [ -75.141344, 40.155878 ], [ -75.141274, 40.155837 ], [ -75.14123, 40.155811 ], [ -75.141187, 40.15578 ], [ -75.141131, 40.155741 ], [ -75.141041, 40.155725 ], [ -75.140887, 40.155608 ], [ -75.140315, 40.155274 ], [ -75.139623, 40.154872 ], [ -75.139321, 40.154696 ], [ -75.139209, 40.154626 ], [ -75.139001, 40.154495 ], [ -75.138947, 40.15446 ], [ -75.13888, 40.154416 ], [ -75.138702, 40.154303 ], [ -75.138344, 40.154086 ], [ -75.13815, 40.153969 ], [ -75.137981, 40.15387 ], [ -75.137836, 40.153783 ], [ -75.137356, 40.15349 ], [ -75.137126, 40.15335 ], [ -75.135643, 40.152449 ], [ -75.134898, 40.152013 ], [ -75.134488, 40.151772 ], [ -75.134383, 40.151711 ], [ -75.134074, 40.151517 ], [ -75.133847, 40.151385 ], [ -75.133547, 40.151209 ], [ -75.13266, 40.15069 ], [ -75.131492, 40.149974 ], [ -75.131435, 40.149882 ], [ -75.13028, 40.149178 ], [ -75.130068, 40.149049 ], [ -75.129615, 40.148773 ], [ -75.129513, 40.148714 ], [ -75.129432, 40.148664 ], [ -75.129009, 40.148413 ], [ -75.128718, 40.148241 ], [ -75.128323, 40.148016 ], [ -75.127816, 40.147738 ], [ -75.126982, 40.147245 ], [ -75.126611, 40.14702 ], [ -75.126344, 40.146862 ], [ -75.126138, 40.146738 ], [ -75.125504, 40.146364 ], [ -75.125277, 40.146232 ], [ -75.124659, 40.145868 ], [ -75.124541, 40.145793 ], [ -75.124459, 40.145781 ], [ -75.124394, 40.14574 ], [ -75.124065, 40.145541 ], [ -75.12358, 40.145247 ], [ -75.122403, 40.144548 ], [ -75.122068, 40.144356 ], [ -75.121695, 40.144133 ], [ -75.121651, 40.144061 ], [ -75.121476, 40.143949 ], [ -75.121061, 40.143688 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115012, 40.143277 ], [ -75.114874, 40.143203 ], [ -75.114775, 40.14315 ], [ -75.114627, 40.143083 ], [ -75.11452, 40.143035 ], [ -75.113852, 40.142786 ], [ -75.113576, 40.142663 ], [ -75.113363, 40.142567 ], [ -75.113243, 40.142506 ], [ -75.113114, 40.142435 ], [ -75.113013, 40.142374 ], [ -75.112826, 40.142253 ], [ -75.112697, 40.142156 ], [ -75.11258, 40.142053 ], [ -75.112475, 40.141943 ], [ -75.11244, 40.141898 ], [ -75.112395, 40.141838 ], [ -75.112247, 40.14163 ], [ -75.112164, 40.141495 ], [ -75.112128, 40.141436 ], [ -75.112062, 40.141303 ], [ -75.112012, 40.141168 ], [ -75.111978, 40.141028 ], [ -75.111967, 40.140975 ], [ -75.111961, 40.140889 ], [ -75.111959, 40.140718 ], [ -75.111961, 40.140671 ], [ -75.111969, 40.140618 ], [ -75.111995, 40.140519 ], [ -75.112031, 40.140409 ], [ -75.112061, 40.140328 ], [ -75.112152, 40.140167 ], [ -75.112327, 40.139807 ], [ -75.112451, 40.139576 ], [ -75.112608, 40.139275 ], [ -75.112661, 40.139175 ], [ -75.112804, 40.138923 ], [ -75.112819, 40.138878 ], [ -75.113149, 40.138208 ], [ -75.113235, 40.138031 ], [ -75.113419, 40.137647 ], [ -75.113475, 40.137535 ], [ -75.11363, 40.137243 ], [ -75.113699, 40.137114 ], [ -75.114156, 40.136364 ], [ -75.114612, 40.135605 ], [ -75.114753, 40.135377 ], [ -75.114879, 40.135174 ], [ -75.114982, 40.134989 ], [ -75.115066, 40.134817 ], [ -75.115087, 40.134765 ], [ -75.115116, 40.13469 ], [ -75.115158, 40.134575 ], [ -75.115258, 40.134238 ], [ -75.115359, 40.133938 ], [ -75.115451, 40.133641 ], [ -75.115528, 40.13339 ], [ -75.115805, 40.132501 ], [ -75.116011, 40.131828 ], [ -75.116106, 40.131541 ], [ -75.116241, 40.131104 ], [ -75.116325, 40.130832 ], [ -75.116394, 40.130607 ], [ -75.116553, 40.129999 ], [ -75.116625, 40.129704 ], [ -75.116732, 40.129294 ], [ -75.116806, 40.128989 ], [ -75.116886, 40.128648 ], [ -75.116928, 40.128436 ], [ -75.117081, 40.12755 ], [ -75.117098, 40.127452 ], [ -75.117314, 40.126101 ], [ -75.117346, 40.125879 ], [ -75.117363, 40.125703 ], [ -75.117375, 40.125523 ], [ -75.117389, 40.125211 ], [ -75.117387, 40.125097 ], [ -75.117389, 40.125052 ], [ -75.117376, 40.124652 ], [ -75.117375, 40.124193 ], [ -75.11737, 40.123745 ], [ -75.117364, 40.12323 ], [ -75.11737, 40.123062 ], [ -75.117376, 40.122955 ], [ -75.1174, 40.122738 ], [ -75.117429, 40.1226 ], [ -75.117469, 40.122443 ], [ -75.11749, 40.122381 ], [ -75.117539, 40.122254 ], [ -75.117643, 40.122001 ], [ -75.117824, 40.121682 ], [ -75.118073, 40.121238 ], [ -75.118293, 40.120844 ], [ -75.118811, 40.119952 ], [ -75.118983, 40.119658 ], [ -75.119121, 40.11942 ], [ -75.119382, 40.118945 ], [ -75.119745, 40.118303 ], [ -75.120137, 40.117627 ], [ -75.120305, 40.117338 ], [ -75.12064, 40.116749 ], [ -75.120773, 40.116519 ], [ -75.120991, 40.116122 ], [ -75.121149, 40.115849 ], [ -75.121625, 40.115013 ], [ -75.121867, 40.114585 ], [ -75.122158, 40.114078 ], [ -75.122528, 40.113433 ], [ -75.122888, 40.112822 ], [ -75.122963, 40.112688 ], [ -75.123128, 40.112404 ], [ -75.123266, 40.11214 ], [ -75.123333, 40.11201 ], [ -75.123367, 40.11193 ], [ -75.123424, 40.111757 ], [ -75.123496, 40.111519 ], [ -75.123531, 40.111292 ], [ -75.12355, 40.111069 ], [ -75.12355, 40.110825 ], [ -75.123545, 40.110741 ], [ -75.123532, 40.11064 ], [ -75.123466, 40.110298 ], [ -75.12344, 40.110116 ], [ -75.123379, 40.109758 ], [ -75.123302, 40.109324 ], [ -75.123261, 40.109066 ], [ -75.123251, 40.108975 ], [ -75.123244, 40.108865 ], [ -75.12324, 40.108771 ], [ -75.12324, 40.108613 ], [ -75.123245, 40.108568 ], [ -75.123263, 40.108371 ], [ -75.123272, 40.108301 ], [ -75.123274, 40.108284 ], [ -75.123289, 40.108213 ], [ -75.123308, 40.108132 ], [ -75.123334, 40.108047 ], [ -75.123398, 40.107876 ], [ -75.123479, 40.107701 ], [ -75.123525, 40.10761 ], [ -75.123643, 40.107378 ], [ -75.123823, 40.107065 ], [ -75.123942, 40.106867 ], [ -75.124021, 40.106718 ], [ -75.12407, 40.106636 ], [ -75.124248, 40.106322 ], [ -75.12462, 40.10567 ], [ -75.124755, 40.105419 ], [ -75.124845, 40.105255 ], [ -75.125048, 40.104918 ], [ -75.12525, 40.104583 ], [ -75.12545, 40.104237 ], [ -75.125486, 40.104164 ], [ -75.125512, 40.104092 ], [ -75.125571, 40.103918 ], [ -75.125598, 40.103808 ], [ -75.125661, 40.103573 ], [ -75.125677, 40.103322 ], [ -75.125731, 40.102793 ], [ -75.125756, 40.102458 ], [ -75.125766, 40.102329 ], [ -75.12577, 40.102261 ], [ -75.125828, 40.101808 ], [ -75.125907, 40.10073 ], [ -75.125916, 40.100584 ], [ -75.125946, 40.100152 ], [ -75.125954, 40.100088 ], [ -75.125956, 40.099951 ], [ -75.125955, 40.099825 ], [ -75.125947, 40.099758 ], [ -75.125908, 40.099711 ], [ -75.125903, 40.099468 ], [ -75.1259, 40.099404 ], [ -75.12589, 40.099213 ], [ -75.125879, 40.098946 ], [ -75.125869, 40.098588 ], [ -75.125863, 40.098364 ], [ -75.125862, 40.098307 ], [ -75.125857, 40.097873 ], [ -75.125852, 40.097463 ], [ -75.125845, 40.097141 ], [ -75.125841, 40.096959 ], [ -75.125838, 40.096844 ], [ -75.12583, 40.096544 ], [ -75.125827, 40.096413 ], [ -75.125822, 40.096275 ], [ -75.125807, 40.095855 ], [ -75.125796, 40.0956 ], [ -75.125781, 40.095448 ], [ -75.125768, 40.095369 ], [ -75.125729, 40.095197 ], [ -75.125692, 40.095051 ], [ -75.125622, 40.094746 ], [ -75.125522, 40.094305 ], [ -75.12547, 40.094059 ], [ -75.125357, 40.093525 ], [ -75.125316, 40.093326 ], [ -75.1253, 40.093247 ], [ -75.125294, 40.0932 ], [ -75.12529, 40.093156 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093088 ], [ -75.1253, 40.093027 ], [ -75.125314, 40.092971 ], [ -75.125427, 40.092661 ], [ -75.125509, 40.092493 ], [ -75.125552, 40.092399 ], [ -75.125613, 40.092257 ], [ -75.125686, 40.0922 ], [ -75.125699, 40.092175 ], [ -75.125751, 40.092061 ], [ -75.125891, 40.09176 ], [ -75.126412, 40.090576 ], [ -75.126655, 40.090019 ], [ -75.126826, 40.089569 ], [ -75.126894, 40.089391 ], [ -75.126956, 40.089239 ], [ -75.127014, 40.089101 ], [ -75.127076, 40.088975 ], [ -75.127157, 40.088814 ], [ -75.127239, 40.08865 ], [ -75.127297, 40.088533 ], [ -75.127547, 40.088049 ], [ -75.127595, 40.087948 ], [ -75.127772, 40.087567 ], [ -75.127817, 40.087461 ], [ -75.127848, 40.087378 ], [ -75.127881, 40.08726 ], [ -75.127912, 40.087119 ], [ -75.127944, 40.08703 ], [ -75.127963, 40.086926 ], [ -75.127986, 40.086726 ], [ -75.128001, 40.086558 ], [ -75.128008, 40.086442 ], [ -75.128014, 40.086368 ], [ -75.128025, 40.08584 ], [ -75.12804, 40.085142 ], [ -75.128031, 40.08488 ], [ -75.128019, 40.08475 ], [ -75.127988, 40.08453 ], [ -75.12795, 40.084348 ], [ -75.127918, 40.084239 ], [ -75.127789, 40.083873 ], [ -75.127718, 40.083662 ], [ -75.127551, 40.083176 ], [ -75.127307, 40.082484 ], [ -75.127257, 40.082344 ], [ -75.127157, 40.082063 ], [ -75.126914, 40.081323 ], [ -75.126843, 40.081112 ], [ -75.126779, 40.080931 ], [ -75.126663, 40.080607 ], [ -75.126553, 40.08029 ], [ -75.126408, 40.079851 ], [ -75.126385, 40.079775 ], [ -75.126365, 40.079681 ], [ -75.126334, 40.079513 ], [ -75.126314, 40.079347 ], [ -75.126308, 40.079198 ], [ -75.126307, 40.079097 ], [ -75.126314, 40.078982 ], [ -75.126348, 40.078773 ], [ -75.12637, 40.078674 ], [ -75.126386, 40.078593 ], [ -75.126444, 40.078376 ], [ -75.126487, 40.078246 ], [ -75.126571, 40.07804 ], [ -75.126649, 40.077886 ], [ -75.126717, 40.077777 ], [ -75.126747, 40.077726 ], [ -75.126793, 40.077656 ], [ -75.126865, 40.077569 ], [ -75.126903, 40.077523 ], [ -75.127065, 40.077334 ], [ -75.127344, 40.077038 ], [ -75.127659, 40.076698 ], [ -75.127834, 40.076509 ], [ -75.127916, 40.076426 ], [ -75.128024, 40.076316 ], [ -75.128297, 40.076039 ], [ -75.128556, 40.075764 ], [ -75.128812, 40.075488 ], [ -75.128973, 40.075325 ], [ -75.12911, 40.075185 ], [ -75.129498, 40.07479 ], [ -75.129713, 40.074566 ], [ -75.129809, 40.074478 ], [ -75.129938, 40.074365 ], [ -75.130035, 40.074289 ], [ -75.130183, 40.074183 ], [ -75.130324, 40.074092 ], [ -75.130472, 40.074 ], [ -75.130948, 40.073715 ], [ -75.131177, 40.073575 ], [ -75.131294, 40.073495 ], [ -75.131383, 40.073434 ], [ -75.131444, 40.073384 ], [ -75.131468, 40.073364 ], [ -75.131708, 40.073167 ], [ -75.132106, 40.072821 ], [ -75.132713, 40.072296 ], [ -75.133166, 40.071895 ], [ -75.133275, 40.071795 ], [ -75.133382, 40.071694 ], [ -75.133477, 40.071585 ], [ -75.133543, 40.071514 ], [ -75.133567, 40.071483 ], [ -75.133715, 40.071301 ], [ -75.133771, 40.071224 ], [ -75.133816, 40.071155 ], [ -75.133911, 40.070999 ], [ -75.133967, 40.070884 ], [ -75.134036, 40.070716 ], [ -75.134093, 40.070564 ], [ -75.134132, 40.070425 ], [ -75.134204, 40.070163 ], [ -75.134278, 40.069673 ], [ -75.1343, 40.069509 ], [ -75.134332, 40.069272 ], [ -75.134383, 40.068928 ], [ -75.134605, 40.06762 ], [ -75.134622, 40.067479 ], [ -75.134665, 40.067222 ], [ -75.134697, 40.066989 ], [ -75.134722, 40.066869 ], [ -75.134836, 40.066137 ], [ -75.134874, 40.065897 ], [ -75.134925, 40.065615 ], [ -75.134948, 40.06552 ], [ -75.134971, 40.065419 ], [ -75.13501, 40.065301 ], [ -75.135059, 40.065155 ], [ -75.135126, 40.064991 ], [ -75.135209, 40.064783 ], [ -75.135286, 40.064589 ], [ -75.135398, 40.064316 ], [ -75.135412, 40.064285 ], [ -75.135472, 40.064156 ], [ -75.135589, 40.063922 ], [ -75.135609, 40.063885 ], [ -75.135691, 40.063733 ], [ -75.135798, 40.063539 ], [ -75.135967, 40.063249 ], [ -75.136048, 40.063109 ], [ -75.136202, 40.062866 ], [ -75.13644, 40.062467 ], [ -75.136742, 40.061969 ], [ -75.136788, 40.061893 ], [ -75.136828, 40.061816 ], [ -75.136868, 40.06175 ], [ -75.136958, 40.061592 ], [ -75.137009, 40.061497 ], [ -75.137062, 40.061391 ], [ -75.137053, 40.061295 ], [ -75.137203, 40.061049 ], [ -75.137286, 40.060919 ], [ -75.137609, 40.060382 ], [ -75.137693, 40.060241 ], [ -75.137948, 40.059829 ], [ -75.138171, 40.059467 ], [ -75.138624, 40.058732 ], [ -75.139061, 40.058006 ], [ -75.139411, 40.057432 ], [ -75.139695, 40.056968 ], [ -75.139938, 40.05658 ], [ -75.140245, 40.056073 ], [ -75.140692, 40.055336 ], [ -75.140757, 40.055301 ], [ -75.140799, 40.055233 ], [ -75.140875, 40.055115 ], [ -75.140922, 40.055045 ], [ -75.141142, 40.054781 ], [ -75.141202, 40.054708 ], [ -75.141272, 40.054651 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307750", "route_id": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.134073, 40.229256 ], [ -75.133993, 40.228977 ], [ -75.133959, 40.228738 ], [ -75.133959, 40.228521 ], [ -75.133999, 40.228335 ], [ -75.13408, 40.228163 ], [ -75.134168, 40.228003 ], [ -75.134454, 40.227724 ], [ -75.135002, 40.227207 ], [ -75.135161, 40.227299 ], [ -75.135434, 40.227473 ], [ -75.135517, 40.227524 ], [ -75.135662, 40.227611 ], [ -75.135986, 40.227806 ], [ -75.136006, 40.227818 ], [ -75.136867, 40.228335 ], [ -75.13692, 40.228438 ], [ -75.136941, 40.228453 ], [ -75.136975, 40.228472 ], [ -75.137624, 40.228864 ], [ -75.137868, 40.229005 ], [ -75.137962, 40.229061 ], [ -75.138356, 40.229304 ], [ -75.138469, 40.229374 ], [ -75.138653, 40.229486 ], [ -75.138769, 40.229554 ], [ -75.13879, 40.229498 ], [ -75.138819, 40.229431 ], [ -75.1389, 40.229227 ], [ -75.138928, 40.229155 ], [ -75.139055, 40.22884 ], [ -75.139079, 40.228781 ], [ -75.139271, 40.228324 ], [ -75.139322, 40.228193 ], [ -75.139301, 40.228114 ], [ -75.139406, 40.227875 ], [ -75.139572, 40.227512 ], [ -75.139651, 40.227319 ], [ -75.139825, 40.226887 ], [ -75.139866, 40.226769 ], [ -75.139926, 40.226555 ], [ -75.140003, 40.226154 ], [ -75.140027, 40.225964 ], [ -75.140037, 40.225777 ], [ -75.140048, 40.225442 ], [ -75.140051, 40.225364 ], [ -75.140047, 40.225179 ], [ -75.140042, 40.22502 ], [ -75.140039, 40.224914 ], [ -75.140036, 40.22482 ], [ -75.140023, 40.224463 ], [ -75.140005, 40.22408 ], [ -75.140003, 40.224036 ], [ -75.139997, 40.223904 ], [ -75.13999, 40.223656 ], [ -75.139986, 40.223548 ], [ -75.139983, 40.223455 ], [ -75.139979, 40.223335 ], [ -75.139975, 40.223227 ], [ -75.139951, 40.222597 ], [ -75.13992, 40.221953 ], [ -75.139907, 40.221747 ], [ -75.139899, 40.221537 ], [ -75.139882, 40.221019 ], [ -75.139878, 40.220803 ], [ -75.139873, 40.220634 ], [ -75.139866, 40.220512 ], [ -75.139859, 40.220393 ], [ -75.139911, 40.220312 ], [ -75.13991, 40.220178 ], [ -75.139894, 40.219839 ], [ -75.139871, 40.219491 ], [ -75.139834, 40.218944 ], [ -75.139828, 40.218826 ], [ -75.139815, 40.218716 ], [ -75.139747, 40.218633 ], [ -75.139727, 40.218309 ], [ -75.139724, 40.218267 ], [ -75.139703, 40.217931 ], [ -75.139693, 40.217797 ], [ -75.139684, 40.217665 ], [ -75.139665, 40.217386 ], [ -75.139647, 40.217079 ], [ -75.139628, 40.216726 ], [ -75.139611, 40.216418 ], [ -75.139591, 40.216055 ], [ -75.139588, 40.215964 ], [ -75.139585, 40.215835 ], [ -75.139574, 40.215388 ], [ -75.139572, 40.21532 ], [ -75.139569, 40.215244 ], [ -75.139543, 40.214573 ], [ -75.139524, 40.214037 ], [ -75.139519, 40.213899 ], [ -75.139505, 40.213696 ], [ -75.139491, 40.213533 ], [ -75.139446, 40.212964 ], [ -75.139438, 40.212754 ], [ -75.139429, 40.212534 ], [ -75.139418, 40.21241 ], [ -75.139414, 40.212277 ], [ -75.139403, 40.212176 ], [ -75.139395, 40.212091 ], [ -75.139383, 40.211905 ], [ -75.139384, 40.211834 ], [ -75.139406, 40.211762 ], [ -75.139457, 40.211703 ], [ -75.139476, 40.21158 ], [ -75.139479, 40.211507 ], [ -75.139484, 40.21138 ], [ -75.139493, 40.211123 ], [ -75.139506, 40.210859 ], [ -75.139534, 40.210566 ], [ -75.139545, 40.21042 ], [ -75.139558, 40.210207 ], [ -75.139581, 40.209889 ], [ -75.139606, 40.209444 ], [ -75.139631, 40.208946 ], [ -75.139643, 40.208594 ], [ -75.139606, 40.208538 ], [ -75.13968, 40.207488 ], [ -75.139764, 40.206358 ], [ -75.139782, 40.206129 ], [ -75.139794, 40.205946 ], [ -75.139805, 40.205793 ], [ -75.139817, 40.205603 ], [ -75.13982, 40.205407 ], [ -75.13982, 40.205265 ], [ -75.139816, 40.205183 ], [ -75.139804, 40.205096 ], [ -75.13978, 40.20494 ], [ -75.139712, 40.204543 ], [ -75.13969, 40.204415 ], [ -75.139671, 40.204312 ], [ -75.139648, 40.204189 ], [ -75.13963, 40.204083 ], [ -75.139529, 40.203516 ], [ -75.13941, 40.202846 ], [ -75.139318, 40.202278 ], [ -75.139096, 40.200948 ], [ -75.138896, 40.199694 ], [ -75.138789, 40.199095 ], [ -75.138703, 40.198765 ], [ -75.138522, 40.198097 ], [ -75.138387, 40.1976 ], [ -75.138036, 40.196391 ], [ -75.138003, 40.196272 ], [ -75.137734, 40.195309 ], [ -75.137653, 40.195028 ], [ -75.13762, 40.194913 ], [ -75.137407, 40.194173 ], [ -75.137124, 40.193182 ], [ -75.136802, 40.192054 ], [ -75.136545, 40.191127 ], [ -75.136507, 40.191009 ], [ -75.136479, 40.19094 ], [ -75.136449, 40.190871 ], [ -75.136405, 40.190771 ], [ -75.13635, 40.190674 ], [ -75.136265, 40.190522 ], [ -75.13617, 40.190374 ], [ -75.135873, 40.189915 ], [ -75.135764, 40.189751 ], [ -75.135708, 40.189665 ], [ -75.135639, 40.189563 ], [ -75.13551, 40.189355 ], [ -75.13543, 40.189226 ], [ -75.135392, 40.189166 ], [ -75.135354, 40.189105 ], [ -75.135357, 40.189007 ], [ -75.134996, 40.188406 ], [ -75.13498, 40.188387 ], [ -75.134884, 40.188339 ], [ -75.134464, 40.18766 ], [ -75.134012, 40.186955 ], [ -75.133456, 40.18608 ], [ -75.133021, 40.185395 ], [ -75.132423, 40.184464 ], [ -75.132104, 40.183934 ], [ -75.132033, 40.183803 ], [ -75.132003, 40.183754 ], [ -75.132009, 40.183682 ], [ -75.131993, 40.183644 ], [ -75.131737, 40.183018 ], [ -75.131669, 40.182855 ], [ -75.131591, 40.182627 ], [ -75.131549, 40.182502 ], [ -75.131514, 40.182399 ], [ -75.131282, 40.181794 ], [ -75.131019, 40.181156 ], [ -75.130929, 40.180929 ], [ -75.130747, 40.180465 ], [ -75.13071, 40.180361 ], [ -75.130679, 40.180279 ], [ -75.130618, 40.180133 ], [ -75.130554, 40.180022 ], [ -75.130392, 40.179795 ], [ -75.130344, 40.179742 ], [ -75.13031, 40.179707 ], [ -75.130228, 40.179629 ], [ -75.13014, 40.179556 ], [ -75.12975, 40.179223 ], [ -75.129601, 40.179112 ], [ -75.12955, 40.179071 ], [ -75.129362, 40.178929 ], [ -75.129211, 40.178802 ], [ -75.129075, 40.178686 ], [ -75.128939, 40.178571 ], [ -75.128835, 40.178475 ], [ -75.128763, 40.178396 ], [ -75.128682, 40.178284 ], [ -75.128616, 40.178182 ], [ -75.128526, 40.178028 ], [ -75.128476, 40.177918 ], [ -75.128442, 40.177827 ], [ -75.128419, 40.177751 ], [ -75.12838, 40.177597 ], [ -75.128351, 40.177468 ], [ -75.128332, 40.177353 ], [ -75.128312, 40.177254 ], [ -75.128307, 40.177209 ], [ -75.128299, 40.17711 ], [ -75.128278, 40.176933 ], [ -75.128231, 40.176873 ], [ -75.128221, 40.176659 ], [ -75.128203, 40.176299 ], [ -75.128153, 40.175287 ], [ -75.128107, 40.174188 ], [ -75.128104, 40.174141 ], [ -75.128104, 40.174105 ], [ -75.128086, 40.173514 ], [ -75.128065, 40.173046 ], [ -75.128059, 40.172892 ], [ -75.128115, 40.172812 ], [ -75.12809, 40.172202 ], [ -75.128079, 40.172081 ], [ -75.128063, 40.171941 ], [ -75.128036, 40.171833 ], [ -75.128003, 40.171759 ], [ -75.127865, 40.171482 ], [ -75.127586, 40.170936 ], [ -75.127453, 40.170663 ], [ -75.127389, 40.170528 ], [ -75.127298, 40.17035 ], [ -75.127062, 40.169914 ], [ -75.126945, 40.169703 ], [ -75.126894, 40.169604 ], [ -75.126856, 40.169536 ], [ -75.126789, 40.169399 ], [ -75.126611, 40.169053 ], [ -75.12655, 40.168928 ], [ -75.126398, 40.168633 ], [ -75.126348, 40.168526 ], [ -75.12628, 40.168405 ], [ -75.126244, 40.168333 ], [ -75.126207, 40.168262 ], [ -75.12619, 40.168227 ], [ -75.126106, 40.168068 ], [ -75.125997, 40.167843 ], [ -75.125812, 40.167493 ], [ -75.125721, 40.167311 ], [ -75.125697, 40.167258 ], [ -75.125602, 40.167017 ], [ -75.125511, 40.166765 ], [ -75.125461, 40.166615 ], [ -75.125365, 40.166323 ], [ -75.125277, 40.166067 ], [ -75.125171, 40.165738 ], [ -75.125093, 40.165493 ], [ -75.125073, 40.165445 ], [ -75.125047, 40.165382 ], [ -75.124989, 40.165194 ], [ -75.124966, 40.16513 ], [ -75.124929, 40.16502 ], [ -75.124839, 40.164783 ], [ -75.124822, 40.164736 ], [ -75.124791, 40.16464 ], [ -75.124665, 40.164288 ], [ -75.124354, 40.163471 ], [ -75.124228, 40.163109 ], [ -75.124181, 40.162977 ], [ -75.12415, 40.162863 ], [ -75.124083, 40.162689 ], [ -75.124046, 40.16259 ], [ -75.123922, 40.162227 ], [ -75.1239, 40.162154 ], [ -75.123892, 40.16213 ], [ -75.123779, 40.161772 ], [ -75.123704, 40.161567 ], [ -75.123627, 40.161328 ], [ -75.123604, 40.161266 ], [ -75.123579, 40.161192 ], [ -75.123565, 40.161145 ], [ -75.123541, 40.161078 ], [ -75.123507, 40.160965 ], [ -75.12334, 40.160439 ], [ -75.123195, 40.159984 ], [ -75.123035, 40.159459 ], [ -75.122925, 40.159121 ], [ -75.122805, 40.158674 ], [ -75.122746, 40.158442 ], [ -75.122722, 40.158352 ], [ -75.12268, 40.158201 ], [ -75.122632, 40.158065 ], [ -75.122418, 40.157433 ], [ -75.122411, 40.157413 ], [ -75.122326, 40.157134 ], [ -75.122264, 40.15697 ], [ -75.122228, 40.156848 ], [ -75.122183, 40.156711 ], [ -75.122092, 40.156437 ], [ -75.122053, 40.156307 ], [ -75.122008, 40.15615 ], [ -75.121945, 40.155922 ], [ -75.121792, 40.154658 ], [ -75.121761, 40.154347 ], [ -75.121747, 40.154255 ], [ -75.121727, 40.154126 ], [ -75.121718, 40.154066 ], [ -75.12164, 40.153983 ], [ -75.121616, 40.15377 ], [ -75.121577, 40.153451 ], [ -75.121517, 40.153054 ], [ -75.121485, 40.152895 ], [ -75.121443, 40.152705 ], [ -75.121349, 40.152387 ], [ -75.121276, 40.152162 ], [ -75.121203, 40.151958 ], [ -75.121094, 40.151686 ], [ -75.120901, 40.151292 ], [ -75.120712, 40.150912 ], [ -75.120638, 40.150766 ], [ -75.120528, 40.150569 ], [ -75.12043, 40.150378 ], [ -75.120254, 40.15003 ], [ -75.120176, 40.149876 ], [ -75.119784, 40.149152 ], [ -75.119719, 40.149032 ], [ -75.119626, 40.148861 ], [ -75.119211, 40.148102 ], [ -75.119126, 40.147966 ], [ -75.119072, 40.147884 ], [ -75.119016, 40.1478 ], [ -75.118954, 40.147723 ], [ -75.118878, 40.147634 ], [ -75.1188, 40.147543 ], [ -75.118636, 40.147351 ], [ -75.11854, 40.147239 ], [ -75.118479, 40.147172 ], [ -75.118301, 40.146963 ], [ -75.118161, 40.146799 ], [ -75.118045, 40.146662 ], [ -75.117874, 40.14646 ], [ -75.117776, 40.146346 ], [ -75.117595, 40.146133 ], [ -75.117434, 40.145939 ], [ -75.117368, 40.145859 ], [ -75.11721, 40.145669 ], [ -75.116996, 40.145418 ], [ -75.116961, 40.145378 ], [ -75.116957, 40.145325 ], [ -75.116891, 40.14523 ], [ -75.11679, 40.145106 ], [ -75.116554, 40.144874 ], [ -75.116506, 40.144828 ], [ -75.116461, 40.144788 ], [ -75.116385, 40.144718 ], [ -75.116272, 40.144618 ], [ -75.116239, 40.144583 ], [ -75.116198, 40.144527 ], [ -75.116164, 40.144459 ], [ -75.116137, 40.144404 ], [ -75.116091, 40.144304 ], [ -75.116059, 40.144206 ], [ -75.116035, 40.144121 ], [ -75.11598, 40.143988 ], [ -75.115952, 40.143913 ], [ -75.115914, 40.143842 ], [ -75.115861, 40.143778 ], [ -75.115799, 40.143723 ], [ -75.115755, 40.143696 ], [ -75.11571, 40.143668 ], [ -75.115663, 40.143637 ], [ -75.115824, 40.143379 ], [ -75.11599, 40.143106 ], [ -75.116024, 40.143049 ], [ -75.116272, 40.142649 ], [ -75.116783, 40.141898 ], [ -75.116865, 40.141788 ], [ -75.116936, 40.141692 ], [ -75.117025, 40.141574 ], [ -75.117099, 40.141541 ], [ -75.117151, 40.141496 ], [ -75.11742, 40.141649 ], [ -75.117592, 40.14175 ], [ -75.117982, 40.141981 ], [ -75.118537, 40.14231 ], [ -75.118607, 40.142207 ], [ -75.120107, 40.140784 ], [ -75.12168, 40.140809 ], [ -75.121747, 40.140828 ], [ -75.121867, 40.140917 ], [ -75.123098, 40.141997 ], [ -75.122516, 40.142281 ], [ -75.120583, 40.143389 ], [ -75.120272, 40.143201 ], [ -75.119979, 40.143032 ], [ -75.119947, 40.143014 ], [ -75.119599, 40.142804 ], [ -75.119276, 40.142613 ], [ -75.118904, 40.142392 ], [ -75.118659, 40.142246 ], [ -75.118607, 40.142207 ], [ -75.118349, 40.142056 ], [ -75.11814, 40.141932 ], [ -75.117962, 40.141825 ], [ -75.117765, 40.141707 ], [ -75.117688, 40.141661 ], [ -75.117587, 40.141604 ], [ -75.117227, 40.141404 ], [ -75.117128, 40.141348 ], [ -75.11706, 40.141439 ], [ -75.117025, 40.141512 ], [ -75.117025, 40.141574 ], [ -75.116936, 40.141692 ], [ -75.116865, 40.141788 ], [ -75.116783, 40.141898 ], [ -75.116272, 40.142649 ], [ -75.116024, 40.143049 ], [ -75.11599, 40.143106 ], [ -75.115824, 40.143379 ], [ -75.115663, 40.143637 ], [ -75.115012, 40.143277 ], [ -75.114874, 40.143203 ], [ -75.114775, 40.14315 ], [ -75.114627, 40.143083 ], [ -75.11452, 40.143035 ], [ -75.113852, 40.142786 ], [ -75.113576, 40.142663 ], [ -75.113363, 40.142567 ], [ -75.113243, 40.142506 ], [ -75.113114, 40.142435 ], [ -75.113013, 40.142374 ], [ -75.112826, 40.142253 ], [ -75.112697, 40.142156 ], [ -75.11258, 40.142053 ], [ -75.112475, 40.141943 ], [ -75.11244, 40.141898 ], [ -75.112395, 40.141838 ], [ -75.112247, 40.14163 ], [ -75.112164, 40.141495 ], [ -75.112128, 40.141436 ], [ -75.112062, 40.141303 ], [ -75.112012, 40.141168 ], [ -75.111978, 40.141028 ], [ -75.111967, 40.140975 ], [ -75.111961, 40.140889 ], [ -75.111959, 40.140718 ], [ -75.111961, 40.140671 ], [ -75.111969, 40.140618 ], [ -75.111995, 40.140519 ], [ -75.112031, 40.140409 ], [ -75.112061, 40.140328 ], [ -75.112152, 40.140167 ], [ -75.112327, 40.139807 ], [ -75.112451, 40.139576 ], [ -75.112608, 40.139275 ], [ -75.112661, 40.139175 ], [ -75.112804, 40.138923 ], [ -75.112819, 40.138878 ], [ -75.113149, 40.138208 ], [ -75.113235, 40.138031 ], [ -75.113419, 40.137647 ], [ -75.113475, 40.137535 ], [ -75.11363, 40.137243 ], [ -75.113699, 40.137114 ], [ -75.114156, 40.136364 ], [ -75.114612, 40.135605 ], [ -75.114753, 40.135377 ], [ -75.114879, 40.135174 ], [ -75.114982, 40.134989 ], [ -75.115066, 40.134817 ], [ -75.115087, 40.134765 ], [ -75.115116, 40.13469 ], [ -75.115158, 40.134575 ], [ -75.115258, 40.134238 ], [ -75.115359, 40.133938 ], [ -75.115451, 40.133641 ], [ -75.115528, 40.13339 ], [ -75.115805, 40.132501 ], [ -75.116011, 40.131828 ], [ -75.116106, 40.131541 ], [ -75.116241, 40.131104 ], [ -75.116325, 40.130832 ], [ -75.116394, 40.130607 ], [ -75.116553, 40.129999 ], [ -75.116625, 40.129704 ], [ -75.116732, 40.129294 ], [ -75.116806, 40.128989 ], [ -75.116886, 40.128648 ], [ -75.116928, 40.128436 ], [ -75.117081, 40.12755 ], [ -75.117098, 40.127452 ], [ -75.117314, 40.126101 ], [ -75.117346, 40.125879 ], [ -75.117363, 40.125703 ], [ -75.117375, 40.125523 ], [ -75.117389, 40.125211 ], [ -75.117387, 40.125097 ], [ -75.117389, 40.125052 ], [ -75.117376, 40.124652 ], [ -75.117375, 40.124193 ], [ -75.11737, 40.123745 ], [ -75.117364, 40.12323 ], [ -75.11737, 40.123062 ], [ -75.117376, 40.122955 ], [ -75.1174, 40.122738 ], [ -75.117429, 40.1226 ], [ -75.117469, 40.122443 ], [ -75.11749, 40.122381 ], [ -75.117539, 40.122254 ], [ -75.117643, 40.122001 ], [ -75.117824, 40.121682 ], [ -75.118073, 40.121238 ], [ -75.118293, 40.120844 ], [ -75.118811, 40.119952 ], [ -75.118983, 40.119658 ], [ -75.119121, 40.11942 ], [ -75.119382, 40.118945 ], [ -75.119745, 40.118303 ], [ -75.120137, 40.117627 ], [ -75.120305, 40.117338 ], [ -75.12064, 40.116749 ], [ -75.120773, 40.116519 ], [ -75.120991, 40.116122 ], [ -75.121149, 40.115849 ], [ -75.121625, 40.115013 ], [ -75.121867, 40.114585 ], [ -75.122158, 40.114078 ], [ -75.122528, 40.113433 ], [ -75.122888, 40.112822 ], [ -75.122963, 40.112688 ], [ -75.123128, 40.112404 ], [ -75.123266, 40.11214 ], [ -75.123333, 40.11201 ], [ -75.123367, 40.11193 ], [ -75.123424, 40.111757 ], [ -75.123496, 40.111519 ], [ -75.123531, 40.111292 ], [ -75.12355, 40.111069 ], [ -75.12355, 40.110825 ], [ -75.123545, 40.110741 ], [ -75.123532, 40.11064 ], [ -75.123466, 40.110298 ], [ -75.12344, 40.110116 ], [ -75.123379, 40.109758 ], [ -75.123302, 40.109324 ], [ -75.123261, 40.109066 ], [ -75.123251, 40.108975 ], [ -75.123244, 40.108865 ], [ -75.12324, 40.108771 ], [ -75.12324, 40.108613 ], [ -75.123245, 40.108568 ], [ -75.123263, 40.108371 ], [ -75.123272, 40.108301 ], [ -75.123274, 40.108284 ], [ -75.123289, 40.108213 ], [ -75.123308, 40.108132 ], [ -75.123334, 40.108047 ], [ -75.123398, 40.107876 ], [ -75.123479, 40.107701 ], [ -75.123525, 40.10761 ], [ -75.123643, 40.107378 ], [ -75.123823, 40.107065 ], [ -75.123942, 40.106867 ], [ -75.124021, 40.106718 ], [ -75.12407, 40.106636 ], [ -75.124248, 40.106322 ], [ -75.12462, 40.10567 ], [ -75.124755, 40.105419 ], [ -75.124845, 40.105255 ], [ -75.125048, 40.104918 ], [ -75.12525, 40.104583 ], [ -75.12545, 40.104237 ], [ -75.125486, 40.104164 ], [ -75.125512, 40.104092 ], [ -75.125571, 40.103918 ], [ -75.125598, 40.103808 ], [ -75.125661, 40.103573 ], [ -75.125677, 40.103322 ], [ -75.125731, 40.102793 ], [ -75.125756, 40.102458 ], [ -75.125766, 40.102329 ], [ -75.12577, 40.102261 ], [ -75.125828, 40.101808 ], [ -75.125907, 40.10073 ], [ -75.125916, 40.100584 ], [ -75.125946, 40.100152 ], [ -75.125954, 40.100088 ], [ -75.125956, 40.099951 ], [ -75.125955, 40.099825 ], [ -75.125947, 40.099758 ], [ -75.125908, 40.099711 ], [ -75.125903, 40.099468 ], [ -75.1259, 40.099404 ], [ -75.12589, 40.099213 ], [ -75.125879, 40.098946 ], [ -75.125869, 40.098588 ], [ -75.125863, 40.098364 ], [ -75.125862, 40.098307 ], [ -75.125857, 40.097873 ], [ -75.125852, 40.097463 ], [ -75.125845, 40.097141 ], [ -75.125841, 40.096959 ], [ -75.125838, 40.096844 ], [ -75.12583, 40.096544 ], [ -75.125827, 40.096413 ], [ -75.125822, 40.096275 ], [ -75.125807, 40.095855 ], [ -75.125796, 40.0956 ], [ -75.125781, 40.095448 ], [ -75.125768, 40.095369 ], [ -75.125729, 40.095197 ], [ -75.125692, 40.095051 ], [ -75.125622, 40.094746 ], [ -75.125522, 40.094305 ], [ -75.12547, 40.094059 ], [ -75.125357, 40.093525 ], [ -75.125316, 40.093326 ], [ -75.1253, 40.093247 ], [ -75.125294, 40.0932 ], [ -75.12529, 40.093156 ], [ -75.12529, 40.093123 ], [ -75.12529, 40.093088 ], [ -75.1253, 40.093027 ], [ -75.125314, 40.092971 ], [ -75.125427, 40.092661 ], [ -75.125509, 40.092493 ], [ -75.125552, 40.092399 ], [ -75.125613, 40.092257 ], [ -75.125686, 40.0922 ], [ -75.125699, 40.092175 ], [ -75.125751, 40.092061 ], [ -75.125891, 40.09176 ], [ -75.126412, 40.090576 ], [ -75.126655, 40.090019 ], [ -75.126826, 40.089569 ], [ -75.126894, 40.089391 ], [ -75.126956, 40.089239 ], [ -75.127014, 40.089101 ], [ -75.127076, 40.088975 ], [ -75.127157, 40.088814 ], [ -75.127239, 40.08865 ], [ -75.127297, 40.088533 ], [ -75.127547, 40.088049 ], [ -75.127595, 40.087948 ], [ -75.127772, 40.087567 ], [ -75.127817, 40.087461 ], [ -75.127848, 40.087378 ], [ -75.127881, 40.08726 ], [ -75.127912, 40.087119 ], [ -75.127944, 40.08703 ], [ -75.127963, 40.086926 ], [ -75.127986, 40.086726 ], [ -75.128001, 40.086558 ], [ -75.128008, 40.086442 ], [ -75.128014, 40.086368 ], [ -75.128025, 40.08584 ], [ -75.12804, 40.085142 ], [ -75.128031, 40.08488 ], [ -75.128019, 40.08475 ], [ -75.127988, 40.08453 ], [ -75.12795, 40.084348 ], [ -75.127918, 40.084239 ], [ -75.127789, 40.083873 ], [ -75.127718, 40.083662 ], [ -75.127551, 40.083176 ], [ -75.127307, 40.082484 ], [ -75.127257, 40.082344 ], [ -75.127157, 40.082063 ], [ -75.126914, 40.081323 ], [ -75.126843, 40.081112 ], [ -75.126779, 40.080931 ], [ -75.126663, 40.080607 ], [ -75.126553, 40.08029 ], [ -75.126408, 40.079851 ], [ -75.126385, 40.079775 ], [ -75.126365, 40.079681 ], [ -75.126334, 40.079513 ], [ -75.126314, 40.079347 ], [ -75.126308, 40.079198 ], [ -75.126307, 40.079097 ], [ -75.126314, 40.078982 ], [ -75.126348, 40.078773 ], [ -75.12637, 40.078674 ], [ -75.126386, 40.078593 ], [ -75.126444, 40.078376 ], [ -75.126487, 40.078246 ], [ -75.126571, 40.07804 ], [ -75.126649, 40.077886 ], [ -75.126717, 40.077777 ], [ -75.126747, 40.077726 ], [ -75.126793, 40.077656 ], [ -75.126865, 40.077569 ], [ -75.126903, 40.077523 ], [ -75.127065, 40.077334 ], [ -75.127344, 40.077038 ], [ -75.127659, 40.076698 ], [ -75.127834, 40.076509 ], [ -75.127916, 40.076426 ], [ -75.128024, 40.076316 ], [ -75.128297, 40.076039 ], [ -75.128556, 40.075764 ], [ -75.128812, 40.075488 ], [ -75.128973, 40.075325 ], [ -75.12911, 40.075185 ], [ -75.129498, 40.07479 ], [ -75.129713, 40.074566 ], [ -75.129809, 40.074478 ], [ -75.129938, 40.074365 ], [ -75.130035, 40.074289 ], [ -75.130183, 40.074183 ], [ -75.130324, 40.074092 ], [ -75.130472, 40.074 ], [ -75.130948, 40.073715 ], [ -75.131177, 40.073575 ], [ -75.131294, 40.073495 ], [ -75.131383, 40.073434 ], [ -75.131444, 40.073384 ], [ -75.131468, 40.073364 ], [ -75.131708, 40.073167 ], [ -75.132106, 40.072821 ], [ -75.132713, 40.072296 ], [ -75.133166, 40.071895 ], [ -75.133275, 40.071795 ], [ -75.133382, 40.071694 ], [ -75.133477, 40.071585 ], [ -75.133543, 40.071514 ], [ -75.133567, 40.071483 ], [ -75.133715, 40.071301 ], [ -75.133771, 40.071224 ], [ -75.133816, 40.071155 ], [ -75.133911, 40.070999 ], [ -75.133967, 40.070884 ], [ -75.134036, 40.070716 ], [ -75.134093, 40.070564 ], [ -75.134132, 40.070425 ], [ -75.134204, 40.070163 ], [ -75.134278, 40.069673 ], [ -75.1343, 40.069509 ], [ -75.134332, 40.069272 ], [ -75.134383, 40.068928 ], [ -75.134605, 40.06762 ], [ -75.134622, 40.067479 ], [ -75.134665, 40.067222 ], [ -75.134697, 40.066989 ], [ -75.134722, 40.066869 ], [ -75.134836, 40.066137 ], [ -75.134874, 40.065897 ], [ -75.134925, 40.065615 ], [ -75.134948, 40.06552 ], [ -75.134971, 40.065419 ], [ -75.13501, 40.065301 ], [ -75.135059, 40.065155 ], [ -75.135126, 40.064991 ], [ -75.135209, 40.064783 ], [ -75.135286, 40.064589 ], [ -75.135398, 40.064316 ], [ -75.135412, 40.064285 ], [ -75.135472, 40.064156 ], [ -75.135589, 40.063922 ], [ -75.135609, 40.063885 ], [ -75.135691, 40.063733 ], [ -75.135798, 40.063539 ], [ -75.135967, 40.063249 ], [ -75.136048, 40.063109 ], [ -75.136202, 40.062866 ], [ -75.13644, 40.062467 ], [ -75.136742, 40.061969 ], [ -75.136788, 40.061893 ], [ -75.136828, 40.061816 ], [ -75.136868, 40.06175 ], [ -75.136958, 40.061592 ], [ -75.137009, 40.061497 ], [ -75.137062, 40.061391 ], [ -75.137053, 40.061295 ], [ -75.137203, 40.061049 ], [ -75.137286, 40.060919 ], [ -75.137609, 40.060382 ], [ -75.137693, 40.060241 ], [ -75.137948, 40.059829 ], [ -75.138171, 40.059467 ], [ -75.138624, 40.058732 ], [ -75.139061, 40.058006 ], [ -75.139411, 40.057432 ], [ -75.139695, 40.056968 ], [ -75.139938, 40.05658 ], [ -75.140245, 40.056073 ], [ -75.140692, 40.055336 ], [ -75.140757, 40.055301 ], [ -75.140799, 40.055233 ], [ -75.140875, 40.055115 ], [ -75.140922, 40.055045 ], [ -75.141142, 40.054781 ], [ -75.141202, 40.054708 ], [ -75.141272, 40.054651 ], [ -75.14133, 40.054607 ], [ -75.141361, 40.054471 ], [ -75.141376, 40.054395 ], [ -75.141493, 40.054151 ], [ -75.141522, 40.054086 ], [ -75.141601, 40.053942 ], [ -75.141695, 40.053801 ], [ -75.141809, 40.053633 ], [ -75.142226, 40.052845 ], [ -75.142647, 40.05218 ], [ -75.143024, 40.051609 ], [ -75.143605, 40.050747 ], [ -75.144029, 40.050126 ], [ -75.144179, 40.049879 ], [ -75.14497, 40.048677 ], [ -75.145273, 40.048198 ], [ -75.145331, 40.048089 ], [ -75.145375, 40.047981 ], [ -75.145437, 40.047809 ], [ -75.1455, 40.047591 ], [ -75.145517, 40.04739 ], [ -75.14546, 40.046949 ], [ -75.145414, 40.046744 ], [ -75.14537, 40.046548 ], [ -75.145251, 40.046186 ], [ -75.145105, 40.045819 ], [ -75.144945, 40.045415 ], [ -75.144674, 40.044737 ], [ -75.144627, 40.044562 ], [ -75.144503, 40.044101 ], [ -75.144438, 40.043751 ], [ -75.144426, 40.04297 ], [ -75.143904, 40.042902 ], [ -75.143836, 40.042894 ], [ -75.143778, 40.042885 ], [ -75.142719, 40.042749 ], [ -75.143044, 40.041236 ], [ -75.143373, 40.039697 ], [ -75.143569, 40.038822 ], [ -75.143604, 40.038697 ], [ -75.14384, 40.038751 ], [ -75.144006, 40.038787 ], [ -75.144301, 40.03885 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307769", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.115393, 40.034178 ], [ -75.1152, 40.034122 ], [ -75.11549, 40.03376 ], [ -75.116081, 40.033046 ], [ -75.116924, 40.032064 ], [ -75.117283, 40.031631 ], [ -75.118197, 40.030539 ], [ -75.118455, 40.030227 ], [ -75.119041, 40.029522 ], [ -75.119596, 40.028844 ], [ -75.120023, 40.028327 ], [ -75.120565, 40.027682 ], [ -75.120728, 40.027471 ], [ -75.121031, 40.027097 ], [ -75.121212, 40.026883 ], [ -75.121732, 40.026264 ], [ -75.121839, 40.026142 ], [ -75.121963, 40.026 ], [ -75.122064, 40.025887 ], [ -75.122261, 40.025649 ], [ -75.122385, 40.025512 ], [ -75.122633, 40.025228 ], [ -75.123039, 40.02475 ], [ -75.123187, 40.024577 ], [ -75.123815, 40.023872 ], [ -75.123859, 40.023824 ], [ -75.124406, 40.023167 ], [ -75.125013, 40.022473 ], [ -75.125667, 40.021723 ], [ -75.126161, 40.021153 ], [ -75.126194, 40.021105 ], [ -75.126223, 40.021046 ], [ -75.126245, 40.020989 ], [ -75.126274, 40.020922 ], [ -75.12632, 40.020801 ], [ -75.12648, 40.020399 ], [ -75.126564, 40.02018 ], [ -75.126646, 40.019981 ], [ -75.126813, 40.019546 ], [ -75.126978, 40.01914 ], [ -75.127032, 40.019003 ], [ -75.127085, 40.018889 ], [ -75.127175, 40.018715 ], [ -75.12598, 40.018561 ], [ -75.125008, 40.018437 ], [ -75.12512, 40.017928 ], [ -75.125548, 40.015971 ], [ -75.125818, 40.014645 ], [ -75.12587, 40.014372 ], [ -75.125941, 40.01401 ], [ -75.12598, 40.013839 ], [ -75.126054, 40.013534 ], [ -75.126098, 40.013319 ], [ -75.12616, 40.013027 ], [ -75.126265, 40.012525 ], [ -75.126503, 40.011517 ], [ -75.126565, 40.011203 ], [ -75.126649, 40.010821 ], [ -75.126764, 40.010196 ], [ -75.126956, 40.009236 ], [ -75.127186, 40.008319 ], [ -75.127212, 40.008199 ], [ -75.127242, 40.008085 ], [ -75.127333, 40.007631 ], [ -75.127408, 40.007624 ], [ -75.127487, 40.007613 ], [ -75.127557, 40.007599 ], [ -75.127669, 40.007576 ], [ -75.127828, 40.007542 ], [ -75.128025, 40.007501 ], [ -75.128509, 40.007402 ], [ -75.129387, 40.007217 ], [ -75.130636, 40.006955 ], [ -75.131057, 40.006864 ], [ -75.131503, 40.006769 ], [ -75.131571, 40.006753 ], [ -75.131588, 40.00675 ], [ -75.131607, 40.006685 ], [ -75.131751, 40.006036 ], [ -75.131864, 40.005502 ], [ -75.131892, 40.005376 ], [ -75.131926, 40.005244 ], [ -75.131959, 40.005008 ], [ -75.131959, 40.004954 ], [ -75.132065, 40.004551 ], [ -75.132263, 40.003617 ], [ -75.132573, 40.002109 ], [ -75.132891, 40.000631 ], [ -75.133242, 39.999057 ], [ -75.133355, 39.998532 ], [ -75.133428, 39.998157 ], [ -75.13356, 39.997477 ], [ -75.13364, 39.997113 ], [ -75.133656, 39.997046 ], [ -75.133679, 39.996913 ], [ -75.13371, 39.996797 ], [ -75.133738, 39.996687 ], [ -75.133777, 39.996506 ], [ -75.133879, 39.995993 ], [ -75.134204, 39.994516 ], [ -75.134514, 39.992999 ], [ -75.134867, 39.991415 ], [ -75.135192, 39.99146 ], [ -75.135458, 39.991498 ], [ -75.136018, 39.991569 ], [ -75.136152, 39.991592 ], [ -75.136383, 39.990536 ], [ -75.136505, 39.989971 ], [ -75.136568, 39.98965 ], [ -75.136626, 39.98936 ], [ -75.136665, 39.989149 ], [ -75.136813, 39.988482 ], [ -75.13713, 39.98699 ], [ -75.137445, 39.985487 ], [ -75.137795, 39.9839 ], [ -75.138133, 39.982312 ], [ -75.138455, 39.980827 ], [ -75.13877, 39.979321 ], [ -75.138888, 39.978747 ], [ -75.139095, 39.977843 ], [ -75.139412, 39.976344 ], [ -75.139718, 39.974911 ], [ -75.139952, 39.973828 ], [ -75.14007, 39.973279 ], [ -75.140247, 39.972601 ], [ -75.14029, 39.972426 ], [ -75.140305, 39.972339 ], [ -75.140307, 39.972103 ], [ -75.1403, 39.971995 ], [ -75.140276, 39.971883 ], [ -75.140056, 39.971036 ], [ -75.139985, 39.971038 ], [ -75.139242, 39.970928 ], [ -75.139327, 39.970579 ], [ -75.139479, 39.969845 ], [ -75.139545, 39.969599 ], [ -75.139558, 39.969474 ], [ -75.140644, 39.969637 ], [ -75.141509, 39.96975 ], [ -75.142355, 39.969859 ], [ -75.143084, 39.969955 ], [ -75.143226, 39.969333 ], [ -75.143386, 39.968664 ], [ -75.143528, 39.967937 ], [ -75.143615, 39.967506 ], [ -75.14364, 39.967348 ], [ -75.143709, 39.966987 ], [ -75.143751, 39.966799 ], [ -75.143999, 39.965664 ], [ -75.144068, 39.965409 ], [ -75.144308, 39.964177 ], [ -75.144397, 39.963758 ], [ -75.144506, 39.963266 ], [ -75.144624, 39.96271 ], [ -75.144682, 39.962426 ], [ -75.144738, 39.962216 ], [ -75.144819, 39.961768 ], [ -75.14496, 39.961068 ], [ -75.144973, 39.961 ], [ -75.144981, 39.960964 ], [ -75.145309, 39.959377 ], [ -75.145462, 39.958715 ], [ -75.145687, 39.95762 ], [ -75.145733, 39.957376 ], [ -75.145746, 39.957319 ], [ -75.145759, 39.957256 ], [ -75.145775, 39.957184 ], [ -75.145778, 39.957164 ], [ -75.145896, 39.956624 ], [ -75.145916, 39.956485 ], [ -75.146008, 39.956054 ], [ -75.14613, 39.955487 ], [ -75.146192, 39.955214 ], [ -75.146222, 39.955062 ], [ -75.146245, 39.954952 ], [ -75.146278, 39.954805 ], [ -75.146403, 39.954214 ], [ -75.1466, 39.953303 ], [ -75.146699, 39.952835 ], [ -75.1468, 39.952374 ], [ -75.147089, 39.951066 ], [ -75.147266, 39.950345 ], [ -75.14737, 39.949871 ], [ -75.147445, 39.949509 ], [ -75.147464, 39.949419 ], [ -75.147486, 39.949299 ], [ -75.147573, 39.948831 ], [ -75.147939, 39.947319 ], [ -75.148, 39.947046 ], [ -75.148043, 39.946861 ], [ -75.148119, 39.946495 ], [ -75.148218, 39.946028 ], [ -75.148376, 39.945325 ], [ -75.148448, 39.944942 ], [ -75.148547, 39.944458 ], [ -75.14862, 39.944092 ], [ -75.14875, 39.943511 ], [ -75.14886, 39.943042 ], [ -75.14896, 39.942617 ], [ -75.149045, 39.942212 ], [ -75.149064, 39.942135 ], [ -75.149127, 39.941831 ], [ -75.149177, 39.941597 ], [ -75.149246, 39.941302 ], [ -75.149266, 39.941201 ], [ -75.149303, 39.941055 ], [ -75.149377, 39.940737 ], [ -75.14942, 39.940532 ], [ -75.149554, 39.939904 ], [ -75.149636, 39.939554 ], [ -75.149727, 39.939147 ], [ -75.149855, 39.938544 ], [ -75.149928, 39.93822 ], [ -75.150005, 39.937885 ], [ -75.150087, 39.937543 ], [ -75.150155, 39.937222 ], [ -75.150224, 39.936904 ], [ -75.150235, 39.936856 ], [ -75.150267, 39.936726 ], [ -75.150407, 39.936126 ], [ -75.150576, 39.935345 ], [ -75.150593, 39.935264 ], [ -75.150819, 39.934269 ], [ -75.15014, 39.934199 ], [ -75.15001, 39.934179 ], [ -75.14988, 39.93416 ], [ -75.149219, 39.934079 ], [ -75.148949, 39.93405 ], [ -75.148779, 39.934029 ], [ -75.14862, 39.934009 ], [ -75.14835, 39.93398 ], [ -75.148099, 39.93395 ], [ -75.148236, 39.933786 ], [ -75.148341, 39.933602 ], [ -75.148403, 39.933496 ], [ -75.148732, 39.932905 ], [ -75.148958, 39.932508 ], [ -75.149048, 39.932347 ], [ -75.149143, 39.932162 ], [ -75.149211, 39.932003 ], [ -75.149323, 39.931725 ], [ -75.149447, 39.931385 ], [ -75.1496, 39.930977 ], [ -75.14967, 39.9308 ], [ -75.149726, 39.93072 ], [ -75.149825, 39.93061 ], [ -75.149855, 39.930586 ], [ -75.149875, 39.930577 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.150076, 39.930182 ], [ -75.15014, 39.929926 ], [ -75.150221, 39.929632 ], [ -75.150201, 39.92951 ], [ -75.150253, 39.929372 ], [ -75.150453, 39.928903 ], [ -75.150566, 39.92857 ], [ -75.150703, 39.928163 ], [ -75.150762, 39.928007 ], [ -75.150899, 39.92765 ], [ -75.151016, 39.927351 ], [ -75.151163, 39.926961 ], [ -75.15132, 39.926551 ], [ -75.151453, 39.926204 ], [ -75.151623, 39.925771 ], [ -75.151776, 39.925362 ], [ -75.151912, 39.925003 ], [ -75.15198, 39.924859 ], [ -75.152091, 39.924583 ], [ -75.152583, 39.9234 ], [ -75.152761, 39.923007 ], [ -75.152914, 39.922674 ], [ -75.153024, 39.922422 ], [ -75.153056, 39.922305 ], [ -75.153067, 39.922233 ], [ -75.153474, 39.922281 ], [ -75.153554, 39.921848 ], [ -75.153626, 39.92149 ], [ -75.153723, 39.921051 ], [ -75.153823, 39.920635 ], [ -75.1539, 39.920252 ], [ -75.153998, 39.919801 ], [ -75.154085, 39.919381 ], [ -75.154168, 39.91899 ], [ -75.154262, 39.918554 ], [ -75.154341, 39.91813 ], [ -75.154421, 39.917727 ], [ -75.154502, 39.917299 ], [ -75.154654, 39.91655 ], [ -75.154771, 39.91607 ], [ -75.155033, 39.914772 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307770", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.115393, 40.034178 ], [ -75.1152, 40.034122 ], [ -75.11549, 40.03376 ], [ -75.116081, 40.033046 ], [ -75.116924, 40.032064 ], [ -75.117283, 40.031631 ], [ -75.118197, 40.030539 ], [ -75.118455, 40.030227 ], [ -75.119041, 40.029522 ], [ -75.119596, 40.028844 ], [ -75.120023, 40.028327 ], [ -75.120565, 40.027682 ], [ -75.120728, 40.027471 ], [ -75.121031, 40.027097 ], [ -75.121212, 40.026883 ], [ -75.121732, 40.026264 ], [ -75.121839, 40.026142 ], [ -75.121963, 40.026 ], [ -75.122064, 40.025887 ], [ -75.122261, 40.025649 ], [ -75.122385, 40.025512 ], [ -75.122633, 40.025228 ], [ -75.123039, 40.02475 ], [ -75.123187, 40.024577 ], [ -75.123815, 40.023872 ], [ -75.123859, 40.023824 ], [ -75.124406, 40.023167 ], [ -75.125013, 40.022473 ], [ -75.125667, 40.021723 ], [ -75.126161, 40.021153 ], [ -75.126194, 40.021105 ], [ -75.126223, 40.021046 ], [ -75.126245, 40.020989 ], [ -75.126274, 40.020922 ], [ -75.12632, 40.020801 ], [ -75.12648, 40.020399 ], [ -75.126564, 40.02018 ], [ -75.126646, 40.019981 ], [ -75.126813, 40.019546 ], [ -75.126978, 40.01914 ], [ -75.127032, 40.019003 ], [ -75.127085, 40.018889 ], [ -75.127175, 40.018715 ], [ -75.12598, 40.018561 ], [ -75.125008, 40.018437 ], [ -75.12512, 40.017928 ], [ -75.125548, 40.015971 ], [ -75.125818, 40.014645 ], [ -75.12587, 40.014372 ], [ -75.125941, 40.01401 ], [ -75.12598, 40.013839 ], [ -75.126054, 40.013534 ], [ -75.126098, 40.013319 ], [ -75.12616, 40.013027 ], [ -75.126265, 40.012525 ], [ -75.126503, 40.011517 ], [ -75.126565, 40.011203 ], [ -75.126649, 40.010821 ], [ -75.126764, 40.010196 ], [ -75.126956, 40.009236 ], [ -75.127186, 40.008319 ], [ -75.127212, 40.008199 ], [ -75.127242, 40.008085 ], [ -75.127333, 40.007631 ], [ -75.127408, 40.007624 ], [ -75.127487, 40.007613 ], [ -75.127557, 40.007599 ], [ -75.127669, 40.007576 ], [ -75.127828, 40.007542 ], [ -75.128025, 40.007501 ], [ -75.128509, 40.007402 ], [ -75.129387, 40.007217 ], [ -75.130636, 40.006955 ], [ -75.131057, 40.006864 ], [ -75.131503, 40.006769 ], [ -75.131571, 40.006753 ], [ -75.131588, 40.00675 ], [ -75.131607, 40.006685 ], [ -75.131751, 40.006036 ], [ -75.131864, 40.005502 ], [ -75.131892, 40.005376 ], [ -75.131926, 40.005244 ], [ -75.131959, 40.005008 ], [ -75.131959, 40.004954 ], [ -75.132065, 40.004551 ], [ -75.132263, 40.003617 ], [ -75.132573, 40.002109 ], [ -75.132891, 40.000631 ], [ -75.133242, 39.999057 ], [ -75.133355, 39.998532 ], [ -75.133428, 39.998157 ], [ -75.13356, 39.997477 ], [ -75.13364, 39.997113 ], [ -75.133656, 39.997046 ], [ -75.133679, 39.996913 ], [ -75.13371, 39.996797 ], [ -75.133738, 39.996687 ], [ -75.133777, 39.996506 ], [ -75.133879, 39.995993 ], [ -75.134204, 39.994516 ], [ -75.134514, 39.992999 ], [ -75.134867, 39.991415 ], [ -75.135192, 39.99146 ], [ -75.135458, 39.991498 ], [ -75.136018, 39.991569 ], [ -75.136152, 39.991592 ], [ -75.136383, 39.990536 ], [ -75.136505, 39.989971 ], [ -75.136568, 39.98965 ], [ -75.136626, 39.98936 ], [ -75.136665, 39.989149 ], [ -75.136813, 39.988482 ], [ -75.13713, 39.98699 ], [ -75.137445, 39.985487 ], [ -75.137795, 39.9839 ], [ -75.138133, 39.982312 ], [ -75.138455, 39.980827 ], [ -75.13877, 39.979321 ], [ -75.138888, 39.978747 ], [ -75.139095, 39.977843 ], [ -75.139412, 39.976344 ], [ -75.139718, 39.974911 ], [ -75.139952, 39.973828 ], [ -75.14007, 39.973279 ], [ -75.140247, 39.972601 ], [ -75.14029, 39.972426 ], [ -75.140305, 39.972339 ], [ -75.140307, 39.972103 ], [ -75.1403, 39.971995 ], [ -75.140276, 39.971883 ], [ -75.140056, 39.971036 ], [ -75.139985, 39.971038 ], [ -75.139242, 39.970928 ], [ -75.139327, 39.970579 ], [ -75.139479, 39.969845 ], [ -75.139545, 39.969599 ], [ -75.139558, 39.969474 ], [ -75.140644, 39.969637 ], [ -75.141509, 39.96975 ], [ -75.142355, 39.969859 ], [ -75.143084, 39.969955 ], [ -75.143226, 39.969333 ], [ -75.143386, 39.968664 ], [ -75.143528, 39.967937 ], [ -75.143615, 39.967506 ], [ -75.14364, 39.967348 ], [ -75.143709, 39.966987 ], [ -75.143751, 39.966799 ], [ -75.143999, 39.965664 ], [ -75.144068, 39.965409 ], [ -75.144308, 39.964177 ], [ -75.144397, 39.963758 ], [ -75.144506, 39.963266 ], [ -75.144624, 39.96271 ], [ -75.144682, 39.962426 ], [ -75.144738, 39.962216 ], [ -75.144819, 39.961768 ], [ -75.14496, 39.961068 ], [ -75.144973, 39.961 ], [ -75.144981, 39.960964 ], [ -75.145309, 39.959377 ], [ -75.145462, 39.958715 ], [ -75.145687, 39.95762 ], [ -75.145733, 39.957376 ], [ -75.145746, 39.957319 ], [ -75.145759, 39.957256 ], [ -75.145775, 39.957184 ], [ -75.145778, 39.957164 ], [ -75.145896, 39.956624 ], [ -75.145916, 39.956485 ], [ -75.146008, 39.956054 ], [ -75.14613, 39.955487 ], [ -75.146192, 39.955214 ], [ -75.146222, 39.955062 ], [ -75.146245, 39.954952 ], [ -75.146278, 39.954805 ], [ -75.146403, 39.954214 ], [ -75.1466, 39.953303 ], [ -75.146699, 39.952835 ], [ -75.1468, 39.952374 ], [ -75.147089, 39.951066 ], [ -75.147266, 39.950345 ], [ -75.14737, 39.949871 ], [ -75.147445, 39.949509 ], [ -75.147464, 39.949419 ], [ -75.147486, 39.949299 ], [ -75.147573, 39.948831 ], [ -75.147939, 39.947319 ], [ -75.148, 39.947046 ], [ -75.148043, 39.946861 ], [ -75.148119, 39.946495 ], [ -75.148218, 39.946028 ], [ -75.148376, 39.945325 ], [ -75.148448, 39.944942 ], [ -75.148547, 39.944458 ], [ -75.14862, 39.944092 ], [ -75.14875, 39.943511 ], [ -75.14886, 39.943042 ], [ -75.14896, 39.942617 ], [ -75.149045, 39.942212 ], [ -75.149064, 39.942135 ], [ -75.149127, 39.941831 ], [ -75.149177, 39.941597 ], [ -75.149246, 39.941302 ], [ -75.149266, 39.941201 ], [ -75.149303, 39.941055 ], [ -75.149377, 39.940737 ], [ -75.14942, 39.940532 ], [ -75.149554, 39.939904 ], [ -75.149636, 39.939554 ], [ -75.149727, 39.939147 ], [ -75.149855, 39.938544 ], [ -75.149928, 39.93822 ], [ -75.150005, 39.937885 ], [ -75.150087, 39.937543 ], [ -75.150155, 39.937222 ], [ -75.150224, 39.936904 ], [ -75.150235, 39.936856 ], [ -75.150267, 39.936726 ], [ -75.150407, 39.936126 ], [ -75.150576, 39.935345 ], [ -75.150593, 39.935264 ], [ -75.150819, 39.934269 ], [ -75.15014, 39.934199 ], [ -75.15001, 39.934179 ], [ -75.14988, 39.93416 ], [ -75.149219, 39.934079 ], [ -75.148949, 39.93405 ], [ -75.148779, 39.934029 ], [ -75.14862, 39.934009 ], [ -75.14835, 39.93398 ], [ -75.148099, 39.93395 ], [ -75.148236, 39.933786 ], [ -75.148341, 39.933602 ], [ -75.148403, 39.933496 ], [ -75.148732, 39.932905 ], [ -75.148958, 39.932508 ], [ -75.149048, 39.932347 ], [ -75.149143, 39.932162 ], [ -75.149211, 39.932003 ], [ -75.149323, 39.931725 ], [ -75.149447, 39.931385 ], [ -75.1496, 39.930977 ], [ -75.14967, 39.9308 ], [ -75.149726, 39.93072 ], [ -75.149825, 39.93061 ], [ -75.149855, 39.930586 ], [ -75.149875, 39.930577 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.150076, 39.930182 ], [ -75.15014, 39.929926 ], [ -75.150221, 39.929632 ], [ -75.150201, 39.92951 ], [ -75.150253, 39.929372 ], [ -75.150453, 39.928903 ], [ -75.150566, 39.92857 ], [ -75.150703, 39.928163 ], [ -75.150762, 39.928007 ], [ -75.150899, 39.92765 ], [ -75.151016, 39.927351 ], [ -75.151163, 39.926961 ], [ -75.15132, 39.926551 ], [ -75.151453, 39.926204 ], [ -75.151623, 39.925771 ], [ -75.151776, 39.925362 ], [ -75.151912, 39.925003 ], [ -75.15198, 39.924859 ], [ -75.152091, 39.924583 ], [ -75.152583, 39.9234 ], [ -75.152761, 39.923007 ], [ -75.152914, 39.922674 ], [ -75.153024, 39.922422 ], [ -75.153056, 39.922305 ], [ -75.153067, 39.922233 ], [ -75.153474, 39.922281 ], [ -75.153554, 39.921848 ], [ -75.153626, 39.92149 ], [ -75.153723, 39.921051 ], [ -75.153823, 39.920635 ], [ -75.1539, 39.920252 ], [ -75.153998, 39.919801 ], [ -75.154085, 39.919381 ], [ -75.154168, 39.91899 ], [ -75.154262, 39.918554 ], [ -75.154341, 39.91813 ], [ -75.154421, 39.917727 ], [ -75.154502, 39.917299 ], [ -75.154654, 39.91655 ], [ -75.154771, 39.91607 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.155964, 39.914889 ], [ -75.155972, 39.914847 ], [ -75.155986, 39.914793 ], [ -75.156203, 39.913772 ], [ -75.156206, 39.913758 ], [ -75.156411, 39.912789 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307771", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.115393, 40.034178 ], [ -75.1152, 40.034122 ], [ -75.11549, 40.03376 ], [ -75.116081, 40.033046 ], [ -75.116924, 40.032064 ], [ -75.117283, 40.031631 ], [ -75.118197, 40.030539 ], [ -75.118455, 40.030227 ], [ -75.119041, 40.029522 ], [ -75.119596, 40.028844 ], [ -75.120023, 40.028327 ], [ -75.120565, 40.027682 ], [ -75.120728, 40.027471 ], [ -75.121031, 40.027097 ], [ -75.121212, 40.026883 ], [ -75.121732, 40.026264 ], [ -75.121839, 40.026142 ], [ -75.121963, 40.026 ], [ -75.122064, 40.025887 ], [ -75.122261, 40.025649 ], [ -75.122385, 40.025512 ], [ -75.122633, 40.025228 ], [ -75.123039, 40.02475 ], [ -75.123187, 40.024577 ], [ -75.123815, 40.023872 ], [ -75.123859, 40.023824 ], [ -75.124406, 40.023167 ], [ -75.125013, 40.022473 ], [ -75.125667, 40.021723 ], [ -75.126161, 40.021153 ], [ -75.126194, 40.021105 ], [ -75.126223, 40.021046 ], [ -75.126245, 40.020989 ], [ -75.126274, 40.020922 ], [ -75.12632, 40.020801 ], [ -75.12648, 40.020399 ], [ -75.126564, 40.02018 ], [ -75.126646, 40.019981 ], [ -75.126813, 40.019546 ], [ -75.126978, 40.01914 ], [ -75.127032, 40.019003 ], [ -75.127085, 40.018889 ], [ -75.127175, 40.018715 ], [ -75.12598, 40.018561 ], [ -75.125008, 40.018437 ], [ -75.12512, 40.017928 ], [ -75.125548, 40.015971 ], [ -75.125818, 40.014645 ], [ -75.12587, 40.014372 ], [ -75.125941, 40.01401 ], [ -75.12598, 40.013839 ], [ -75.126054, 40.013534 ], [ -75.126098, 40.013319 ], [ -75.12616, 40.013027 ], [ -75.126265, 40.012525 ], [ -75.126503, 40.011517 ], [ -75.126565, 40.011203 ], [ -75.126649, 40.010821 ], [ -75.126764, 40.010196 ], [ -75.126956, 40.009236 ], [ -75.127186, 40.008319 ], [ -75.127212, 40.008199 ], [ -75.127242, 40.008085 ], [ -75.127333, 40.007631 ], [ -75.127408, 40.007624 ], [ -75.127487, 40.007613 ], [ -75.127557, 40.007599 ], [ -75.127669, 40.007576 ], [ -75.127828, 40.007542 ], [ -75.128025, 40.007501 ], [ -75.128509, 40.007402 ], [ -75.129387, 40.007217 ], [ -75.130636, 40.006955 ], [ -75.131057, 40.006864 ], [ -75.131503, 40.006769 ], [ -75.131571, 40.006753 ], [ -75.131588, 40.00675 ], [ -75.131607, 40.006685 ], [ -75.131751, 40.006036 ], [ -75.131864, 40.005502 ], [ -75.131892, 40.005376 ], [ -75.131926, 40.005244 ], [ -75.131959, 40.005008 ], [ -75.131959, 40.004954 ], [ -75.132065, 40.004551 ], [ -75.132263, 40.003617 ], [ -75.132573, 40.002109 ], [ -75.132891, 40.000631 ], [ -75.133242, 39.999057 ], [ -75.133355, 39.998532 ], [ -75.133428, 39.998157 ], [ -75.13356, 39.997477 ], [ -75.13364, 39.997113 ], [ -75.133656, 39.997046 ], [ -75.133679, 39.996913 ], [ -75.13371, 39.996797 ], [ -75.133738, 39.996687 ], [ -75.133777, 39.996506 ], [ -75.133879, 39.995993 ], [ -75.134204, 39.994516 ], [ -75.134514, 39.992999 ], [ -75.134867, 39.991415 ], [ -75.135192, 39.99146 ], [ -75.135458, 39.991498 ], [ -75.136018, 39.991569 ], [ -75.136152, 39.991592 ], [ -75.136383, 39.990536 ], [ -75.136505, 39.989971 ], [ -75.136568, 39.98965 ], [ -75.136626, 39.98936 ], [ -75.136665, 39.989149 ], [ -75.136813, 39.988482 ], [ -75.13713, 39.98699 ], [ -75.137445, 39.985487 ], [ -75.137795, 39.9839 ], [ -75.138133, 39.982312 ], [ -75.138455, 39.980827 ], [ -75.13877, 39.979321 ], [ -75.138888, 39.978747 ], [ -75.139095, 39.977843 ], [ -75.139412, 39.976344 ], [ -75.139718, 39.974911 ], [ -75.139952, 39.973828 ], [ -75.14007, 39.973279 ], [ -75.140247, 39.972601 ], [ -75.14029, 39.972426 ], [ -75.140305, 39.972339 ], [ -75.140307, 39.972103 ], [ -75.1403, 39.971995 ], [ -75.140276, 39.971883 ], [ -75.140056, 39.971036 ], [ -75.139985, 39.971038 ], [ -75.139242, 39.970928 ], [ -75.139327, 39.970579 ], [ -75.139479, 39.969845 ], [ -75.139545, 39.969599 ], [ -75.139558, 39.969474 ], [ -75.140644, 39.969637 ], [ -75.141509, 39.96975 ], [ -75.142355, 39.969859 ], [ -75.143084, 39.969955 ], [ -75.143226, 39.969333 ], [ -75.143386, 39.968664 ], [ -75.143528, 39.967937 ], [ -75.143615, 39.967506 ], [ -75.14364, 39.967348 ], [ -75.143709, 39.966987 ], [ -75.143751, 39.966799 ], [ -75.143999, 39.965664 ], [ -75.144068, 39.965409 ], [ -75.144308, 39.964177 ], [ -75.144397, 39.963758 ], [ -75.144506, 39.963266 ], [ -75.144624, 39.96271 ], [ -75.144682, 39.962426 ], [ -75.144738, 39.962216 ], [ -75.144819, 39.961768 ], [ -75.14496, 39.961068 ], [ -75.144973, 39.961 ], [ -75.144981, 39.960964 ], [ -75.145309, 39.959377 ], [ -75.145462, 39.958715 ], [ -75.145687, 39.95762 ], [ -75.145733, 39.957376 ], [ -75.145746, 39.957319 ], [ -75.145759, 39.957256 ], [ -75.145775, 39.957184 ], [ -75.145778, 39.957164 ], [ -75.145896, 39.956624 ], [ -75.145916, 39.956485 ], [ -75.146008, 39.956054 ], [ -75.14613, 39.955487 ], [ -75.146192, 39.955214 ], [ -75.146222, 39.955062 ], [ -75.146245, 39.954952 ], [ -75.146278, 39.954805 ], [ -75.146403, 39.954214 ], [ -75.1466, 39.953303 ], [ -75.146699, 39.952835 ], [ -75.1468, 39.952374 ], [ -75.147089, 39.951066 ], [ -75.147266, 39.950345 ], [ -75.14737, 39.949871 ], [ -75.147445, 39.949509 ], [ -75.147464, 39.949419 ], [ -75.147486, 39.949299 ], [ -75.147573, 39.948831 ], [ -75.147939, 39.947319 ], [ -75.148, 39.947046 ], [ -75.148043, 39.946861 ], [ -75.148119, 39.946495 ], [ -75.148218, 39.946028 ], [ -75.148376, 39.945325 ], [ -75.148448, 39.944942 ], [ -75.148547, 39.944458 ], [ -75.14862, 39.944092 ], [ -75.14875, 39.943511 ], [ -75.14886, 39.943042 ], [ -75.14896, 39.942617 ], [ -75.149045, 39.942212 ], [ -75.149064, 39.942135 ], [ -75.149127, 39.941831 ], [ -75.149177, 39.941597 ], [ -75.149246, 39.941302 ], [ -75.149266, 39.941201 ], [ -75.149303, 39.941055 ], [ -75.149377, 39.940737 ], [ -75.14942, 39.940532 ], [ -75.149554, 39.939904 ], [ -75.149636, 39.939554 ], [ -75.149727, 39.939147 ], [ -75.149855, 39.938544 ], [ -75.149928, 39.93822 ], [ -75.150005, 39.937885 ], [ -75.150087, 39.937543 ], [ -75.150155, 39.937222 ], [ -75.150224, 39.936904 ], [ -75.150235, 39.936856 ], [ -75.150267, 39.936726 ], [ -75.150407, 39.936126 ], [ -75.150576, 39.935345 ], [ -75.150593, 39.935264 ], [ -75.150819, 39.934269 ], [ -75.15014, 39.934199 ], [ -75.15001, 39.934179 ], [ -75.14988, 39.93416 ], [ -75.149219, 39.934079 ], [ -75.148949, 39.93405 ], [ -75.148779, 39.934029 ], [ -75.14862, 39.934009 ], [ -75.14835, 39.93398 ], [ -75.148099, 39.93395 ], [ -75.148236, 39.933786 ], [ -75.148341, 39.933602 ], [ -75.148403, 39.933496 ], [ -75.148732, 39.932905 ], [ -75.148958, 39.932508 ], [ -75.149048, 39.932347 ], [ -75.149143, 39.932162 ], [ -75.149211, 39.932003 ], [ -75.149323, 39.931725 ], [ -75.149447, 39.931385 ], [ -75.1496, 39.930977 ], [ -75.14967, 39.9308 ], [ -75.149726, 39.93072 ], [ -75.149825, 39.93061 ], [ -75.149855, 39.930586 ], [ -75.149875, 39.930577 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.150076, 39.930182 ], [ -75.15014, 39.929926 ], [ -75.150221, 39.929632 ], [ -75.150201, 39.92951 ], [ -75.150253, 39.929372 ], [ -75.150453, 39.928903 ], [ -75.150566, 39.92857 ], [ -75.150703, 39.928163 ], [ -75.150762, 39.928007 ], [ -75.150899, 39.92765 ], [ -75.151016, 39.927351 ], [ -75.151163, 39.926961 ], [ -75.15132, 39.926551 ], [ -75.151453, 39.926204 ], [ -75.151623, 39.925771 ], [ -75.151776, 39.925362 ], [ -75.151912, 39.925003 ], [ -75.15198, 39.924859 ], [ -75.152091, 39.924583 ], [ -75.152583, 39.9234 ], [ -75.152761, 39.923007 ], [ -75.152914, 39.922674 ], [ -75.153024, 39.922422 ], [ -75.153056, 39.922305 ], [ -75.153067, 39.922233 ], [ -75.153474, 39.922281 ], [ -75.153554, 39.921848 ], [ -75.153626, 39.92149 ], [ -75.153723, 39.921051 ], [ -75.153823, 39.920635 ], [ -75.1539, 39.920252 ], [ -75.153998, 39.919801 ], [ -75.154085, 39.919381 ], [ -75.154168, 39.91899 ], [ -75.154262, 39.918554 ], [ -75.154341, 39.91813 ], [ -75.154421, 39.917727 ], [ -75.154502, 39.917299 ], [ -75.154654, 39.91655 ], [ -75.154771, 39.91607 ], [ -75.155033, 39.914772 ], [ -75.155042, 39.914726 ], [ -75.155054, 39.914669 ], [ -75.154839, 39.914647 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.149892, 39.914 ], [ -75.148866, 39.913864 ], [ -75.148341, 39.913795 ], [ -75.148116, 39.913762 ], [ -75.148007, 39.913748 ], [ -75.147757, 39.913713 ], [ -75.147669, 39.9137 ], [ -75.146626, 39.913584 ], [ -75.146503, 39.913615 ], [ -75.146402, 39.913602 ], [ -75.146151, 39.913571 ], [ -75.142276, 39.913081 ], [ -75.14081, 39.912897 ], [ -75.140085, 39.912795 ], [ -75.139676, 39.912738 ], [ -75.139239, 39.912676 ], [ -75.138812, 39.912617 ], [ -75.138255, 39.912538 ], [ -75.138178, 39.912527 ], [ -75.138087, 39.912515 ], [ -75.138162, 39.912212 ], [ -75.138264, 39.911806 ], [ -75.138652, 39.910263 ], [ -75.138693, 39.910081 ], [ -75.138725, 39.909937 ], [ -75.138882, 39.909227 ], [ -75.1391, 39.908244 ], [ -75.139287, 39.907399 ], [ -75.139378, 39.906988 ], [ -75.139158, 39.906951 ], [ -75.138931, 39.906909 ], [ -75.138848, 39.90725 ], [ -75.138829, 39.907314 ], [ -75.138792, 39.907498 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307772", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.136952, 40.041995 ], [ -75.136653, 40.04353 ], [ -75.136588, 40.043862 ], [ -75.136485, 40.044292 ], [ -75.136279, 40.045032 ], [ -75.136063, 40.046068 ], [ -75.136043, 40.046157 ], [ -75.136023, 40.04622 ], [ -75.135982, 40.0463 ], [ -75.135908, 40.046264 ], [ -75.135823, 40.046234 ], [ -75.135741, 40.046214 ], [ -75.135649, 40.046198 ], [ -75.135626, 40.046197 ], [ -75.135528, 40.046192 ], [ -75.134756, 40.046158 ], [ -75.134733, 40.046158 ], [ -75.133755, 40.046115 ], [ -75.133293, 40.046088 ], [ -75.132933, 40.04607 ], [ -75.132564, 40.046039 ], [ -75.132133, 40.046018 ], [ -75.131297, 40.045985 ], [ -75.131019, 40.045961 ], [ -75.130761, 40.045936 ], [ -75.130472, 40.045895 ], [ -75.129648, 40.045786 ], [ -75.129491, 40.045766 ], [ -75.129036, 40.045711 ], [ -75.128486, 40.045646 ], [ -75.128343, 40.045626 ], [ -75.127375, 40.045494 ], [ -75.127029, 40.045446 ], [ -75.12664, 40.045393 ], [ -75.125614, 40.045268 ], [ -75.12356, 40.04501 ], [ -75.123487, 40.04555 ], [ -75.123481, 40.045578 ], [ -75.123446, 40.04577 ], [ -75.123401, 40.046057 ], [ -75.123329, 40.04655 ], [ -75.123244, 40.046937 ], [ -75.12321, 40.047221 ], [ -75.123151, 40.04752 ], [ -75.123123, 40.047683 ], [ -75.1231, 40.047819 ], [ -75.123044, 40.048134 ], [ -75.122789, 40.049611 ], [ -75.122509, 40.051136 ], [ -75.122458, 40.051437 ], [ -75.122278, 40.05248 ], [ -75.122241, 40.052699 ], [ -75.122126, 40.052816 ], [ -75.122076, 40.052856 ], [ -75.122019, 40.052886 ], [ -75.121957, 40.052907 ], [ -75.12189, 40.052915 ], [ -75.121842, 40.052914 ], [ -75.121622, 40.052865 ], [ -75.120831, 40.052413 ], [ -75.120036, 40.051947 ], [ -75.119541, 40.051677 ], [ -75.119035, 40.051387 ], [ -75.118637, 40.051159 ], [ -75.118541, 40.051105 ], [ -75.117109, 40.050281 ], [ -75.116635, 40.050013 ], [ -75.115079, 40.04913 ], [ -75.114547, 40.048801 ], [ -75.112935, 40.047881 ], [ -75.112707, 40.047754 ], [ -75.11232, 40.04754 ], [ -75.112341, 40.047473 ], [ -75.112365, 40.047377 ], [ -75.112434, 40.04706 ], [ -75.112586, 40.046367 ], [ -75.112607, 40.046262 ], [ -75.11273, 40.045623 ], [ -75.112893, 40.044872 ], [ -75.112914, 40.044774 ], [ -75.11298, 40.044463 ], [ -75.113099, 40.043923 ], [ -75.113143, 40.043727 ], [ -75.11321, 40.043409 ], [ -75.113259, 40.043248 ], [ -75.113317, 40.043116 ], [ -75.113368, 40.043019 ], [ -75.113441, 40.042905 ], [ -75.113558, 40.04275 ], [ -75.113994, 40.042291 ], [ -75.114184, 40.042106 ], [ -75.114494, 40.041804 ], [ -75.114697, 40.041626 ], [ -75.114791, 40.04156 ], [ -75.114927, 40.04147 ], [ -75.114945, 40.04146 ], [ -75.115054, 40.041404 ], [ -75.115247, 40.041321 ], [ -75.115611, 40.041184 ], [ -75.115879, 40.041107 ], [ -75.116039, 40.041073 ], [ -75.116248, 40.041045 ], [ -75.11649, 40.041024 ], [ -75.116665, 40.041021 ], [ -75.116905, 40.041028 ], [ -75.117066, 40.041042 ], [ -75.117286, 40.041069 ], [ -75.117492, 40.041094 ], [ -75.117678, 40.041118 ], [ -75.118061, 40.041159 ], [ -75.118173, 40.041174 ], [ -75.118445, 40.041207 ], [ -75.118667, 40.041235 ], [ -75.119098, 40.041288 ], [ -75.119216, 40.041301 ], [ -75.119593, 40.041348 ], [ -75.120105, 40.041412 ], [ -75.12022, 40.040906 ], [ -75.120319, 40.040434 ], [ -75.120427, 40.039924 ], [ -75.12074, 40.038408 ], [ -75.120854, 40.03785 ], [ -75.121077, 40.036856 ], [ -75.12128, 40.035947 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.1152, 40.034122 ], [ -75.11549, 40.03376 ], [ -75.116081, 40.033046 ], [ -75.116924, 40.032064 ], [ -75.117283, 40.031631 ], [ -75.118197, 40.030539 ], [ -75.118455, 40.030227 ], [ -75.119041, 40.029522 ], [ -75.119596, 40.028844 ], [ -75.120023, 40.028327 ], [ -75.120565, 40.027682 ], [ -75.120728, 40.027471 ], [ -75.121031, 40.027097 ], [ -75.121212, 40.026883 ], [ -75.121732, 40.026264 ], [ -75.121839, 40.026142 ], [ -75.121963, 40.026 ], [ -75.122064, 40.025887 ], [ -75.122261, 40.025649 ], [ -75.122385, 40.025512 ], [ -75.122633, 40.025228 ], [ -75.123039, 40.02475 ], [ -75.123187, 40.024577 ], [ -75.123815, 40.023872 ], [ -75.123859, 40.023824 ], [ -75.124406, 40.023167 ], [ -75.125013, 40.022473 ], [ -75.125667, 40.021723 ], [ -75.126161, 40.021153 ], [ -75.126194, 40.021105 ], [ -75.126223, 40.021046 ], [ -75.126245, 40.020989 ], [ -75.126274, 40.020922 ], [ -75.12632, 40.020801 ], [ -75.12648, 40.020399 ], [ -75.126564, 40.02018 ], [ -75.126646, 40.019981 ], [ -75.126813, 40.019546 ], [ -75.126978, 40.01914 ], [ -75.127032, 40.019003 ], [ -75.127085, 40.018889 ], [ -75.127175, 40.018715 ], [ -75.12598, 40.018561 ], [ -75.125008, 40.018437 ], [ -75.12512, 40.017928 ], [ -75.125548, 40.015971 ], [ -75.125818, 40.014645 ], [ -75.12587, 40.014372 ], [ -75.125941, 40.01401 ], [ -75.12598, 40.013839 ], [ -75.126054, 40.013534 ], [ -75.126098, 40.013319 ], [ -75.12616, 40.013027 ], [ -75.126265, 40.012525 ], [ -75.126503, 40.011517 ], [ -75.126565, 40.011203 ], [ -75.126649, 40.010821 ], [ -75.126764, 40.010196 ], [ -75.126956, 40.009236 ], [ -75.127186, 40.008319 ], [ -75.127212, 40.008199 ], [ -75.127242, 40.008085 ], [ -75.127333, 40.007631 ], [ -75.127408, 40.007624 ], [ -75.127487, 40.007613 ], [ -75.127557, 40.007599 ], [ -75.127669, 40.007576 ], [ -75.127828, 40.007542 ], [ -75.128025, 40.007501 ], [ -75.128509, 40.007402 ], [ -75.129387, 40.007217 ], [ -75.130636, 40.006955 ], [ -75.131057, 40.006864 ], [ -75.131503, 40.006769 ], [ -75.131571, 40.006753 ], [ -75.131588, 40.00675 ], [ -75.131607, 40.006685 ], [ -75.131751, 40.006036 ], [ -75.131864, 40.005502 ], [ -75.131892, 40.005376 ], [ -75.131926, 40.005244 ], [ -75.131959, 40.005008 ], [ -75.131959, 40.004954 ], [ -75.132065, 40.004551 ], [ -75.132263, 40.003617 ], [ -75.132573, 40.002109 ], [ -75.132891, 40.000631 ], [ -75.133242, 39.999057 ], [ -75.133355, 39.998532 ], [ -75.133428, 39.998157 ], [ -75.13356, 39.997477 ], [ -75.13364, 39.997113 ], [ -75.133656, 39.997046 ], [ -75.133679, 39.996913 ], [ -75.13371, 39.996797 ], [ -75.133738, 39.996687 ], [ -75.133777, 39.996506 ], [ -75.133879, 39.995993 ], [ -75.134204, 39.994516 ], [ -75.134514, 39.992999 ], [ -75.134867, 39.991415 ], [ -75.135192, 39.99146 ], [ -75.135458, 39.991498 ], [ -75.136018, 39.991569 ], [ -75.136152, 39.991592 ], [ -75.136383, 39.990536 ], [ -75.136505, 39.989971 ], [ -75.136568, 39.98965 ], [ -75.136626, 39.98936 ], [ -75.136665, 39.989149 ], [ -75.136813, 39.988482 ], [ -75.13713, 39.98699 ], [ -75.137445, 39.985487 ], [ -75.137795, 39.9839 ], [ -75.138133, 39.982312 ], [ -75.138455, 39.980827 ], [ -75.13877, 39.979321 ], [ -75.138888, 39.978747 ], [ -75.139095, 39.977843 ], [ -75.139412, 39.976344 ], [ -75.139718, 39.974911 ], [ -75.139952, 39.973828 ], [ -75.14007, 39.973279 ], [ -75.140247, 39.972601 ], [ -75.14029, 39.972426 ], [ -75.140305, 39.972339 ], [ -75.140307, 39.972103 ], [ -75.1403, 39.971995 ], [ -75.140276, 39.971883 ], [ -75.140056, 39.971036 ], [ -75.139985, 39.971038 ], [ -75.139242, 39.970928 ], [ -75.139327, 39.970579 ], [ -75.139479, 39.969845 ], [ -75.139545, 39.969599 ], [ -75.139558, 39.969474 ], [ -75.140644, 39.969637 ], [ -75.141509, 39.96975 ], [ -75.142355, 39.969859 ], [ -75.143084, 39.969955 ], [ -75.143226, 39.969333 ], [ -75.143386, 39.968664 ], [ -75.143528, 39.967937 ], [ -75.143615, 39.967506 ], [ -75.14364, 39.967348 ], [ -75.143709, 39.966987 ], [ -75.143751, 39.966799 ], [ -75.143999, 39.965664 ], [ -75.144068, 39.965409 ], [ -75.144308, 39.964177 ], [ -75.144397, 39.963758 ], [ -75.144506, 39.963266 ], [ -75.144624, 39.96271 ], [ -75.144682, 39.962426 ], [ -75.144738, 39.962216 ], [ -75.144819, 39.961768 ], [ -75.14496, 39.961068 ], [ -75.144973, 39.961 ], [ -75.144981, 39.960964 ], [ -75.145309, 39.959377 ], [ -75.145462, 39.958715 ], [ -75.145687, 39.95762 ], [ -75.145733, 39.957376 ], [ -75.145746, 39.957319 ], [ -75.145759, 39.957256 ], [ -75.145775, 39.957184 ], [ -75.145778, 39.957164 ], [ -75.145896, 39.956624 ], [ -75.145916, 39.956485 ], [ -75.146008, 39.956054 ], [ -75.14613, 39.955487 ], [ -75.146192, 39.955214 ], [ -75.146222, 39.955062 ], [ -75.146245, 39.954952 ], [ -75.146278, 39.954805 ], [ -75.146403, 39.954214 ], [ -75.1466, 39.953303 ], [ -75.146699, 39.952835 ], [ -75.1468, 39.952374 ], [ -75.147089, 39.951066 ], [ -75.147266, 39.950345 ], [ -75.14737, 39.949871 ], [ -75.147445, 39.949509 ], [ -75.147464, 39.949419 ], [ -75.147486, 39.949299 ], [ -75.147573, 39.948831 ], [ -75.147939, 39.947319 ], [ -75.148, 39.947046 ], [ -75.148043, 39.946861 ], [ -75.148119, 39.946495 ], [ -75.148218, 39.946028 ], [ -75.148376, 39.945325 ], [ -75.148448, 39.944942 ], [ -75.148547, 39.944458 ], [ -75.14862, 39.944092 ], [ -75.14875, 39.943511 ], [ -75.14886, 39.943042 ], [ -75.14896, 39.942617 ], [ -75.149045, 39.942212 ], [ -75.149064, 39.942135 ], [ -75.149127, 39.941831 ], [ -75.149177, 39.941597 ], [ -75.149246, 39.941302 ], [ -75.149266, 39.941201 ], [ -75.149303, 39.941055 ], [ -75.149377, 39.940737 ], [ -75.14942, 39.940532 ], [ -75.149554, 39.939904 ], [ -75.149636, 39.939554 ], [ -75.149727, 39.939147 ], [ -75.149855, 39.938544 ], [ -75.149928, 39.93822 ], [ -75.150005, 39.937885 ], [ -75.150087, 39.937543 ], [ -75.150155, 39.937222 ], [ -75.150224, 39.936904 ], [ -75.150235, 39.936856 ], [ -75.150267, 39.936726 ], [ -75.150407, 39.936126 ], [ -75.150576, 39.935345 ], [ -75.150593, 39.935264 ], [ -75.150819, 39.934269 ], [ -75.15014, 39.934199 ], [ -75.15001, 39.934179 ], [ -75.14988, 39.93416 ], [ -75.149219, 39.934079 ], [ -75.148949, 39.93405 ], [ -75.148779, 39.934029 ], [ -75.14862, 39.934009 ], [ -75.14835, 39.93398 ], [ -75.148099, 39.93395 ], [ -75.148236, 39.933786 ], [ -75.148341, 39.933602 ], [ -75.148403, 39.933496 ], [ -75.148732, 39.932905 ], [ -75.148958, 39.932508 ], [ -75.149048, 39.932347 ], [ -75.149143, 39.932162 ], [ -75.149211, 39.932003 ], [ -75.149323, 39.931725 ], [ -75.149447, 39.931385 ], [ -75.1496, 39.930977 ], [ -75.14967, 39.9308 ], [ -75.149726, 39.93072 ], [ -75.149825, 39.93061 ], [ -75.149855, 39.930586 ], [ -75.149875, 39.930577 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.150076, 39.930182 ], [ -75.15014, 39.929926 ], [ -75.150221, 39.929632 ], [ -75.150201, 39.92951 ], [ -75.150253, 39.929372 ], [ -75.150453, 39.928903 ], [ -75.150566, 39.92857 ], [ -75.150703, 39.928163 ], [ -75.150762, 39.928007 ], [ -75.150899, 39.92765 ], [ -75.151016, 39.927351 ], [ -75.151163, 39.926961 ], [ -75.15132, 39.926551 ], [ -75.151453, 39.926204 ], [ -75.151623, 39.925771 ], [ -75.151776, 39.925362 ], [ -75.151912, 39.925003 ], [ -75.15198, 39.924859 ], [ -75.152091, 39.924583 ], [ -75.152583, 39.9234 ], [ -75.152761, 39.923007 ], [ -75.152914, 39.922674 ], [ -75.153024, 39.922422 ], [ -75.153056, 39.922305 ], [ -75.153067, 39.922233 ], [ -75.153474, 39.922281 ], [ -75.153554, 39.921848 ], [ -75.153626, 39.92149 ], [ -75.153723, 39.921051 ], [ -75.153823, 39.920635 ], [ -75.1539, 39.920252 ], [ -75.153998, 39.919801 ], [ -75.154085, 39.919381 ], [ -75.154168, 39.91899 ], [ -75.154262, 39.918554 ], [ -75.154341, 39.91813 ], [ -75.154421, 39.917727 ], [ -75.154502, 39.917299 ], [ -75.154654, 39.91655 ], [ -75.154771, 39.91607 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.155964, 39.914889 ], [ -75.155972, 39.914847 ], [ -75.155986, 39.914793 ], [ -75.156203, 39.913772 ], [ -75.156206, 39.913758 ], [ -75.156411, 39.912789 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307773", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.136952, 40.041995 ], [ -75.136653, 40.04353 ], [ -75.136588, 40.043862 ], [ -75.136485, 40.044292 ], [ -75.136279, 40.045032 ], [ -75.136063, 40.046068 ], [ -75.136043, 40.046157 ], [ -75.136023, 40.04622 ], [ -75.135982, 40.0463 ], [ -75.135908, 40.046264 ], [ -75.135823, 40.046234 ], [ -75.135741, 40.046214 ], [ -75.135649, 40.046198 ], [ -75.135626, 40.046197 ], [ -75.135528, 40.046192 ], [ -75.134756, 40.046158 ], [ -75.134733, 40.046158 ], [ -75.133755, 40.046115 ], [ -75.133293, 40.046088 ], [ -75.132933, 40.04607 ], [ -75.132564, 40.046039 ], [ -75.132133, 40.046018 ], [ -75.131297, 40.045985 ], [ -75.131019, 40.045961 ], [ -75.130761, 40.045936 ], [ -75.130472, 40.045895 ], [ -75.129648, 40.045786 ], [ -75.129491, 40.045766 ], [ -75.129036, 40.045711 ], [ -75.128486, 40.045646 ], [ -75.128343, 40.045626 ], [ -75.127375, 40.045494 ], [ -75.127029, 40.045446 ], [ -75.12664, 40.045393 ], [ -75.125614, 40.045268 ], [ -75.12356, 40.04501 ], [ -75.123487, 40.04555 ], [ -75.123481, 40.045578 ], [ -75.123446, 40.04577 ], [ -75.123401, 40.046057 ], [ -75.123329, 40.04655 ], [ -75.123244, 40.046937 ], [ -75.12321, 40.047221 ], [ -75.123151, 40.04752 ], [ -75.123123, 40.047683 ], [ -75.1231, 40.047819 ], [ -75.123044, 40.048134 ], [ -75.122789, 40.049611 ], [ -75.122509, 40.051136 ], [ -75.122458, 40.051437 ], [ -75.122278, 40.05248 ], [ -75.122241, 40.052699 ], [ -75.122126, 40.052816 ], [ -75.122076, 40.052856 ], [ -75.122019, 40.052886 ], [ -75.121957, 40.052907 ], [ -75.12189, 40.052915 ], [ -75.121842, 40.052914 ], [ -75.121622, 40.052865 ], [ -75.120831, 40.052413 ], [ -75.120036, 40.051947 ], [ -75.119541, 40.051677 ], [ -75.119035, 40.051387 ], [ -75.118637, 40.051159 ], [ -75.118541, 40.051105 ], [ -75.117109, 40.050281 ], [ -75.116635, 40.050013 ], [ -75.115079, 40.04913 ], [ -75.114547, 40.048801 ], [ -75.112935, 40.047881 ], [ -75.112707, 40.047754 ], [ -75.11232, 40.04754 ], [ -75.112341, 40.047473 ], [ -75.112365, 40.047377 ], [ -75.112434, 40.04706 ], [ -75.112586, 40.046367 ], [ -75.112607, 40.046262 ], [ -75.11273, 40.045623 ], [ -75.112893, 40.044872 ], [ -75.112914, 40.044774 ], [ -75.11298, 40.044463 ], [ -75.113099, 40.043923 ], [ -75.113143, 40.043727 ], [ -75.11321, 40.043409 ], [ -75.113259, 40.043248 ], [ -75.113317, 40.043116 ], [ -75.113368, 40.043019 ], [ -75.113441, 40.042905 ], [ -75.113558, 40.04275 ], [ -75.113994, 40.042291 ], [ -75.114184, 40.042106 ], [ -75.114494, 40.041804 ], [ -75.114697, 40.041626 ], [ -75.114791, 40.04156 ], [ -75.114927, 40.04147 ], [ -75.114945, 40.04146 ], [ -75.115054, 40.041404 ], [ -75.115247, 40.041321 ], [ -75.115611, 40.041184 ], [ -75.115879, 40.041107 ], [ -75.116039, 40.041073 ], [ -75.116248, 40.041045 ], [ -75.11649, 40.041024 ], [ -75.116665, 40.041021 ], [ -75.116905, 40.041028 ], [ -75.117066, 40.041042 ], [ -75.117286, 40.041069 ], [ -75.117492, 40.041094 ], [ -75.117678, 40.041118 ], [ -75.118061, 40.041159 ], [ -75.118173, 40.041174 ], [ -75.118445, 40.041207 ], [ -75.118667, 40.041235 ], [ -75.119098, 40.041288 ], [ -75.119216, 40.041301 ], [ -75.119593, 40.041348 ], [ -75.120105, 40.041412 ], [ -75.12022, 40.040906 ], [ -75.120319, 40.040434 ], [ -75.120427, 40.039924 ], [ -75.12074, 40.038408 ], [ -75.120854, 40.03785 ], [ -75.121077, 40.036856 ], [ -75.12128, 40.035947 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.1152, 40.034122 ], [ -75.11549, 40.03376 ], [ -75.116081, 40.033046 ], [ -75.116924, 40.032064 ], [ -75.117283, 40.031631 ], [ -75.118197, 40.030539 ], [ -75.118455, 40.030227 ], [ -75.119041, 40.029522 ], [ -75.119596, 40.028844 ], [ -75.120023, 40.028327 ], [ -75.120565, 40.027682 ], [ -75.120728, 40.027471 ], [ -75.121031, 40.027097 ], [ -75.121212, 40.026883 ], [ -75.121732, 40.026264 ], [ -75.121839, 40.026142 ], [ -75.121963, 40.026 ], [ -75.122064, 40.025887 ], [ -75.122261, 40.025649 ], [ -75.122385, 40.025512 ], [ -75.122633, 40.025228 ], [ -75.123039, 40.02475 ], [ -75.123187, 40.024577 ], [ -75.123815, 40.023872 ], [ -75.123859, 40.023824 ], [ -75.124406, 40.023167 ], [ -75.125013, 40.022473 ], [ -75.125667, 40.021723 ], [ -75.126161, 40.021153 ], [ -75.126194, 40.021105 ], [ -75.126223, 40.021046 ], [ -75.126245, 40.020989 ], [ -75.126274, 40.020922 ], [ -75.12632, 40.020801 ], [ -75.12648, 40.020399 ], [ -75.126564, 40.02018 ], [ -75.126646, 40.019981 ], [ -75.126813, 40.019546 ], [ -75.126978, 40.01914 ], [ -75.127032, 40.019003 ], [ -75.127085, 40.018889 ], [ -75.127175, 40.018715 ], [ -75.12598, 40.018561 ], [ -75.125008, 40.018437 ], [ -75.12512, 40.017928 ], [ -75.125548, 40.015971 ], [ -75.125818, 40.014645 ], [ -75.12587, 40.014372 ], [ -75.125941, 40.01401 ], [ -75.12598, 40.013839 ], [ -75.126054, 40.013534 ], [ -75.126098, 40.013319 ], [ -75.12616, 40.013027 ], [ -75.126265, 40.012525 ], [ -75.126503, 40.011517 ], [ -75.126565, 40.011203 ], [ -75.126649, 40.010821 ], [ -75.126764, 40.010196 ], [ -75.126956, 40.009236 ], [ -75.127186, 40.008319 ], [ -75.127212, 40.008199 ], [ -75.127242, 40.008085 ], [ -75.127333, 40.007631 ], [ -75.127408, 40.007624 ], [ -75.127487, 40.007613 ], [ -75.127557, 40.007599 ], [ -75.127669, 40.007576 ], [ -75.127828, 40.007542 ], [ -75.128025, 40.007501 ], [ -75.128509, 40.007402 ], [ -75.129387, 40.007217 ], [ -75.130636, 40.006955 ], [ -75.131057, 40.006864 ], [ -75.131503, 40.006769 ], [ -75.131571, 40.006753 ], [ -75.131588, 40.00675 ], [ -75.131607, 40.006685 ], [ -75.131751, 40.006036 ], [ -75.131864, 40.005502 ], [ -75.131892, 40.005376 ], [ -75.131926, 40.005244 ], [ -75.131959, 40.005008 ], [ -75.131959, 40.004954 ], [ -75.132065, 40.004551 ], [ -75.132263, 40.003617 ], [ -75.132573, 40.002109 ], [ -75.132891, 40.000631 ], [ -75.133242, 39.999057 ], [ -75.133355, 39.998532 ], [ -75.133428, 39.998157 ], [ -75.13356, 39.997477 ], [ -75.13364, 39.997113 ], [ -75.133656, 39.997046 ], [ -75.133679, 39.996913 ], [ -75.13371, 39.996797 ], [ -75.133738, 39.996687 ], [ -75.133777, 39.996506 ], [ -75.133879, 39.995993 ], [ -75.134204, 39.994516 ], [ -75.134514, 39.992999 ], [ -75.134867, 39.991415 ], [ -75.135192, 39.99146 ], [ -75.135458, 39.991498 ], [ -75.136018, 39.991569 ], [ -75.136152, 39.991592 ], [ -75.136383, 39.990536 ], [ -75.136505, 39.989971 ], [ -75.136568, 39.98965 ], [ -75.136626, 39.98936 ], [ -75.136665, 39.989149 ], [ -75.136813, 39.988482 ], [ -75.13713, 39.98699 ], [ -75.137445, 39.985487 ], [ -75.137795, 39.9839 ], [ -75.138133, 39.982312 ], [ -75.138455, 39.980827 ], [ -75.13877, 39.979321 ], [ -75.138888, 39.978747 ], [ -75.139095, 39.977843 ], [ -75.139412, 39.976344 ], [ -75.139718, 39.974911 ], [ -75.139952, 39.973828 ], [ -75.14007, 39.973279 ], [ -75.140247, 39.972601 ], [ -75.14029, 39.972426 ], [ -75.140305, 39.972339 ], [ -75.140307, 39.972103 ], [ -75.1403, 39.971995 ], [ -75.140276, 39.971883 ], [ -75.140056, 39.971036 ], [ -75.139985, 39.971038 ], [ -75.139242, 39.970928 ], [ -75.139327, 39.970579 ], [ -75.139479, 39.969845 ], [ -75.139545, 39.969599 ], [ -75.139558, 39.969474 ], [ -75.140644, 39.969637 ], [ -75.141509, 39.96975 ], [ -75.142355, 39.969859 ], [ -75.143084, 39.969955 ], [ -75.143226, 39.969333 ], [ -75.143386, 39.968664 ], [ -75.143528, 39.967937 ], [ -75.143615, 39.967506 ], [ -75.14364, 39.967348 ], [ -75.143709, 39.966987 ], [ -75.143751, 39.966799 ], [ -75.143999, 39.965664 ], [ -75.144068, 39.965409 ], [ -75.144308, 39.964177 ], [ -75.144397, 39.963758 ], [ -75.144506, 39.963266 ], [ -75.144624, 39.96271 ], [ -75.144682, 39.962426 ], [ -75.144738, 39.962216 ], [ -75.144819, 39.961768 ], [ -75.14496, 39.961068 ], [ -75.144973, 39.961 ], [ -75.144981, 39.960964 ], [ -75.145309, 39.959377 ], [ -75.145462, 39.958715 ], [ -75.145687, 39.95762 ], [ -75.145733, 39.957376 ], [ -75.145746, 39.957319 ], [ -75.145759, 39.957256 ], [ -75.145775, 39.957184 ], [ -75.145778, 39.957164 ], [ -75.145896, 39.956624 ], [ -75.145916, 39.956485 ], [ -75.146008, 39.956054 ], [ -75.14613, 39.955487 ], [ -75.146192, 39.955214 ], [ -75.146222, 39.955062 ], [ -75.146245, 39.954952 ], [ -75.146278, 39.954805 ], [ -75.146403, 39.954214 ], [ -75.1466, 39.953303 ], [ -75.146699, 39.952835 ], [ -75.1468, 39.952374 ], [ -75.147089, 39.951066 ], [ -75.147266, 39.950345 ], [ -75.14737, 39.949871 ], [ -75.147445, 39.949509 ], [ -75.147464, 39.949419 ], [ -75.147486, 39.949299 ], [ -75.147573, 39.948831 ], [ -75.147939, 39.947319 ], [ -75.148, 39.947046 ], [ -75.148043, 39.946861 ], [ -75.148119, 39.946495 ], [ -75.148218, 39.946028 ], [ -75.148376, 39.945325 ], [ -75.148448, 39.944942 ], [ -75.148547, 39.944458 ], [ -75.14862, 39.944092 ], [ -75.14875, 39.943511 ], [ -75.14886, 39.943042 ], [ -75.14896, 39.942617 ], [ -75.149045, 39.942212 ], [ -75.149064, 39.942135 ], [ -75.149127, 39.941831 ], [ -75.149177, 39.941597 ], [ -75.149246, 39.941302 ], [ -75.149266, 39.941201 ], [ -75.149303, 39.941055 ], [ -75.149377, 39.940737 ], [ -75.14942, 39.940532 ], [ -75.149554, 39.939904 ], [ -75.149636, 39.939554 ], [ -75.149727, 39.939147 ], [ -75.149855, 39.938544 ], [ -75.149928, 39.93822 ], [ -75.150005, 39.937885 ], [ -75.150087, 39.937543 ], [ -75.150155, 39.937222 ], [ -75.150224, 39.936904 ], [ -75.150235, 39.936856 ], [ -75.150267, 39.936726 ], [ -75.150407, 39.936126 ], [ -75.150576, 39.935345 ], [ -75.150593, 39.935264 ], [ -75.150819, 39.934269 ], [ -75.15014, 39.934199 ], [ -75.15001, 39.934179 ], [ -75.14988, 39.93416 ], [ -75.149219, 39.934079 ], [ -75.148949, 39.93405 ], [ -75.148779, 39.934029 ], [ -75.14862, 39.934009 ], [ -75.14835, 39.93398 ], [ -75.148099, 39.93395 ], [ -75.148236, 39.933786 ], [ -75.148341, 39.933602 ], [ -75.148403, 39.933496 ], [ -75.148732, 39.932905 ], [ -75.148958, 39.932508 ], [ -75.149048, 39.932347 ], [ -75.149143, 39.932162 ], [ -75.149211, 39.932003 ], [ -75.149323, 39.931725 ], [ -75.149447, 39.931385 ], [ -75.1496, 39.930977 ], [ -75.14967, 39.9308 ], [ -75.149726, 39.93072 ], [ -75.149825, 39.93061 ], [ -75.149855, 39.930586 ], [ -75.149875, 39.930577 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.150076, 39.930182 ], [ -75.15014, 39.929926 ], [ -75.150221, 39.929632 ], [ -75.150201, 39.92951 ], [ -75.150253, 39.929372 ], [ -75.150453, 39.928903 ], [ -75.150566, 39.92857 ], [ -75.150703, 39.928163 ], [ -75.150762, 39.928007 ], [ -75.150899, 39.92765 ], [ -75.151016, 39.927351 ], [ -75.151163, 39.926961 ], [ -75.15132, 39.926551 ], [ -75.151453, 39.926204 ], [ -75.151623, 39.925771 ], [ -75.151776, 39.925362 ], [ -75.151912, 39.925003 ], [ -75.15198, 39.924859 ], [ -75.152091, 39.924583 ], [ -75.152583, 39.9234 ], [ -75.152761, 39.923007 ], [ -75.152914, 39.922674 ], [ -75.153024, 39.922422 ], [ -75.153056, 39.922305 ], [ -75.153067, 39.922233 ], [ -75.153474, 39.922281 ], [ -75.153554, 39.921848 ], [ -75.153626, 39.92149 ], [ -75.153723, 39.921051 ], [ -75.153823, 39.920635 ], [ -75.1539, 39.920252 ], [ -75.153998, 39.919801 ], [ -75.154085, 39.919381 ], [ -75.154168, 39.91899 ], [ -75.154262, 39.918554 ], [ -75.154341, 39.91813 ], [ -75.154421, 39.917727 ], [ -75.154502, 39.917299 ], [ -75.154654, 39.91655 ], [ -75.154771, 39.91607 ], [ -75.155033, 39.914772 ], [ -75.155042, 39.914726 ], [ -75.155054, 39.914669 ], [ -75.154839, 39.914647 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.149892, 39.914 ], [ -75.148866, 39.913864 ], [ -75.148341, 39.913795 ], [ -75.148116, 39.913762 ], [ -75.148007, 39.913748 ], [ -75.147757, 39.913713 ], [ -75.147669, 39.9137 ], [ -75.146626, 39.913584 ], [ -75.146503, 39.913615 ], [ -75.146402, 39.913602 ], [ -75.146151, 39.913571 ], [ -75.142276, 39.913081 ], [ -75.14081, 39.912897 ], [ -75.140085, 39.912795 ], [ -75.139676, 39.912738 ], [ -75.139239, 39.912676 ], [ -75.138812, 39.912617 ], [ -75.138255, 39.912538 ], [ -75.138178, 39.912527 ], [ -75.138087, 39.912515 ], [ -75.138162, 39.912212 ], [ -75.138264, 39.911806 ], [ -75.138652, 39.910263 ], [ -75.138693, 39.910081 ], [ -75.138725, 39.909937 ], [ -75.138882, 39.909227 ], [ -75.1391, 39.908244 ], [ -75.139287, 39.907399 ], [ -75.139378, 39.906988 ], [ -75.139158, 39.906951 ], [ -75.138931, 39.906909 ], [ -75.138848, 39.90725 ], [ -75.138829, 39.907314 ], [ -75.138792, 39.907498 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307774", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.126565, 40.011203 ], [ -75.126649, 40.010821 ], [ -75.126764, 40.010196 ], [ -75.126956, 40.009236 ], [ -75.127186, 40.008319 ], [ -75.127212, 40.008199 ], [ -75.127242, 40.008085 ], [ -75.127333, 40.007631 ], [ -75.127408, 40.007624 ], [ -75.127487, 40.007613 ], [ -75.127557, 40.007599 ], [ -75.127669, 40.007576 ], [ -75.127828, 40.007542 ], [ -75.128025, 40.007501 ], [ -75.128509, 40.007402 ], [ -75.129387, 40.007217 ], [ -75.130636, 40.006955 ], [ -75.131057, 40.006864 ], [ -75.131503, 40.006769 ], [ -75.131571, 40.006753 ], [ -75.131588, 40.00675 ], [ -75.131607, 40.006685 ], [ -75.131751, 40.006036 ], [ -75.131864, 40.005502 ], [ -75.131892, 40.005376 ], [ -75.131926, 40.005244 ], [ -75.131959, 40.005008 ], [ -75.131959, 40.004954 ], [ -75.132065, 40.004551 ], [ -75.132263, 40.003617 ], [ -75.132573, 40.002109 ], [ -75.132891, 40.000631 ], [ -75.133242, 39.999057 ], [ -75.133355, 39.998532 ], [ -75.133428, 39.998157 ], [ -75.13356, 39.997477 ], [ -75.13364, 39.997113 ], [ -75.133656, 39.997046 ], [ -75.133679, 39.996913 ], [ -75.13371, 39.996797 ], [ -75.133738, 39.996687 ], [ -75.133777, 39.996506 ], [ -75.133879, 39.995993 ], [ -75.134204, 39.994516 ], [ -75.134514, 39.992999 ], [ -75.134867, 39.991415 ], [ -75.135192, 39.99146 ], [ -75.135458, 39.991498 ], [ -75.136018, 39.991569 ], [ -75.136152, 39.991592 ], [ -75.136383, 39.990536 ], [ -75.136505, 39.989971 ], [ -75.136568, 39.98965 ], [ -75.136626, 39.98936 ], [ -75.136665, 39.989149 ], [ -75.136813, 39.988482 ], [ -75.13713, 39.98699 ], [ -75.137445, 39.985487 ], [ -75.137795, 39.9839 ], [ -75.138133, 39.982312 ], [ -75.138455, 39.980827 ], [ -75.13877, 39.979321 ], [ -75.138888, 39.978747 ], [ -75.139095, 39.977843 ], [ -75.139412, 39.976344 ], [ -75.139718, 39.974911 ], [ -75.139952, 39.973828 ], [ -75.14007, 39.973279 ], [ -75.140247, 39.972601 ], [ -75.14029, 39.972426 ], [ -75.140305, 39.972339 ], [ -75.140307, 39.972103 ], [ -75.1403, 39.971995 ], [ -75.140276, 39.971883 ], [ -75.140056, 39.971036 ], [ -75.139985, 39.971038 ], [ -75.139242, 39.970928 ], [ -75.139327, 39.970579 ], [ -75.139479, 39.969845 ], [ -75.139545, 39.969599 ], [ -75.139558, 39.969474 ], [ -75.140644, 39.969637 ], [ -75.141509, 39.96975 ], [ -75.142355, 39.969859 ], [ -75.143084, 39.969955 ], [ -75.143226, 39.969333 ], [ -75.143386, 39.968664 ], [ -75.143528, 39.967937 ], [ -75.143615, 39.967506 ], [ -75.14364, 39.967348 ], [ -75.143709, 39.966987 ], [ -75.143751, 39.966799 ], [ -75.143999, 39.965664 ], [ -75.144068, 39.965409 ], [ -75.144308, 39.964177 ], [ -75.144397, 39.963758 ], [ -75.144506, 39.963266 ], [ -75.144624, 39.96271 ], [ -75.144682, 39.962426 ], [ -75.144738, 39.962216 ], [ -75.144819, 39.961768 ], [ -75.14496, 39.961068 ], [ -75.144973, 39.961 ], [ -75.144981, 39.960964 ], [ -75.145309, 39.959377 ], [ -75.145462, 39.958715 ], [ -75.145687, 39.95762 ], [ -75.145733, 39.957376 ], [ -75.145746, 39.957319 ], [ -75.145759, 39.957256 ], [ -75.145775, 39.957184 ], [ -75.145778, 39.957164 ], [ -75.145896, 39.956624 ], [ -75.145916, 39.956485 ], [ -75.146008, 39.956054 ], [ -75.14613, 39.955487 ], [ -75.146192, 39.955214 ], [ -75.146222, 39.955062 ], [ -75.146245, 39.954952 ], [ -75.146278, 39.954805 ], [ -75.146403, 39.954214 ], [ -75.1466, 39.953303 ], [ -75.146699, 39.952835 ], [ -75.1468, 39.952374 ], [ -75.147089, 39.951066 ], [ -75.147266, 39.950345 ], [ -75.14737, 39.949871 ], [ -75.147445, 39.949509 ], [ -75.147464, 39.949419 ], [ -75.147486, 39.949299 ], [ -75.147573, 39.948831 ], [ -75.147939, 39.947319 ], [ -75.148, 39.947046 ], [ -75.148043, 39.946861 ], [ -75.148119, 39.946495 ], [ -75.148218, 39.946028 ], [ -75.148376, 39.945325 ], [ -75.148448, 39.944942 ], [ -75.148547, 39.944458 ], [ -75.14862, 39.944092 ], [ -75.14875, 39.943511 ], [ -75.14886, 39.943042 ], [ -75.14896, 39.942617 ], [ -75.149045, 39.942212 ], [ -75.149064, 39.942135 ], [ -75.149127, 39.941831 ], [ -75.149177, 39.941597 ], [ -75.149246, 39.941302 ], [ -75.149266, 39.941201 ], [ -75.149303, 39.941055 ], [ -75.149377, 39.940737 ], [ -75.14942, 39.940532 ], [ -75.149554, 39.939904 ], [ -75.149636, 39.939554 ], [ -75.149727, 39.939147 ], [ -75.149855, 39.938544 ], [ -75.149928, 39.93822 ], [ -75.150005, 39.937885 ], [ -75.150087, 39.937543 ], [ -75.150155, 39.937222 ], [ -75.150224, 39.936904 ], [ -75.150235, 39.936856 ], [ -75.150267, 39.936726 ], [ -75.150407, 39.936126 ], [ -75.150576, 39.935345 ], [ -75.150593, 39.935264 ], [ -75.150819, 39.934269 ], [ -75.15014, 39.934199 ], [ -75.15001, 39.934179 ], [ -75.14988, 39.93416 ], [ -75.149219, 39.934079 ], [ -75.148949, 39.93405 ], [ -75.148779, 39.934029 ], [ -75.14862, 39.934009 ], [ -75.14835, 39.93398 ], [ -75.148099, 39.93395 ], [ -75.148236, 39.933786 ], [ -75.148341, 39.933602 ], [ -75.148403, 39.933496 ], [ -75.148732, 39.932905 ], [ -75.148958, 39.932508 ], [ -75.149048, 39.932347 ], [ -75.149143, 39.932162 ], [ -75.149211, 39.932003 ], [ -75.149323, 39.931725 ], [ -75.149447, 39.931385 ], [ -75.1496, 39.930977 ], [ -75.14967, 39.9308 ], [ -75.149726, 39.93072 ], [ -75.149825, 39.93061 ], [ -75.149855, 39.930586 ], [ -75.149875, 39.930577 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.150076, 39.930182 ], [ -75.15014, 39.929926 ], [ -75.150221, 39.929632 ], [ -75.150201, 39.92951 ], [ -75.150253, 39.929372 ], [ -75.150453, 39.928903 ], [ -75.150566, 39.92857 ], [ -75.150703, 39.928163 ], [ -75.150762, 39.928007 ], [ -75.150899, 39.92765 ], [ -75.151016, 39.927351 ], [ -75.151163, 39.926961 ], [ -75.15132, 39.926551 ], [ -75.151453, 39.926204 ], [ -75.151623, 39.925771 ], [ -75.151776, 39.925362 ], [ -75.151912, 39.925003 ], [ -75.15198, 39.924859 ], [ -75.152091, 39.924583 ], [ -75.152583, 39.9234 ], [ -75.152761, 39.923007 ], [ -75.152914, 39.922674 ], [ -75.153024, 39.922422 ], [ -75.153056, 39.922305 ], [ -75.153067, 39.922233 ], [ -75.153474, 39.922281 ], [ -75.153554, 39.921848 ], [ -75.153626, 39.92149 ], [ -75.153723, 39.921051 ], [ -75.153823, 39.920635 ], [ -75.1539, 39.920252 ], [ -75.153998, 39.919801 ], [ -75.154085, 39.919381 ], [ -75.154168, 39.91899 ], [ -75.154262, 39.918554 ], [ -75.154341, 39.91813 ], [ -75.154421, 39.917727 ], [ -75.154502, 39.917299 ], [ -75.154654, 39.91655 ], [ -75.154771, 39.91607 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.155964, 39.914889 ], [ -75.155972, 39.914847 ], [ -75.155986, 39.914793 ], [ -75.156203, 39.913772 ], [ -75.156206, 39.913758 ], [ -75.156411, 39.912789 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307778", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.126649, 40.010821 ], [ -75.126565, 40.011203 ], [ -75.126503, 40.011517 ], [ -75.126265, 40.012525 ], [ -75.12616, 40.013027 ], [ -75.126098, 40.013319 ], [ -75.126054, 40.013534 ], [ -75.12598, 40.013839 ], [ -75.125941, 40.01401 ], [ -75.12587, 40.014372 ], [ -75.125818, 40.014645 ], [ -75.125548, 40.015971 ], [ -75.12512, 40.017928 ], [ -75.125008, 40.018437 ], [ -75.12598, 40.018561 ], [ -75.127175, 40.018715 ], [ -75.127085, 40.018889 ], [ -75.127032, 40.019003 ], [ -75.126978, 40.01914 ], [ -75.126813, 40.019546 ], [ -75.126646, 40.019981 ], [ -75.126564, 40.02018 ], [ -75.12648, 40.020399 ], [ -75.12632, 40.020801 ], [ -75.126274, 40.020922 ], [ -75.126245, 40.020989 ], [ -75.126223, 40.021046 ], [ -75.126194, 40.021105 ], [ -75.126161, 40.021153 ], [ -75.125667, 40.021723 ], [ -75.125013, 40.022473 ], [ -75.124406, 40.023167 ], [ -75.123859, 40.023824 ], [ -75.123815, 40.023872 ], [ -75.123187, 40.024577 ], [ -75.123039, 40.02475 ], [ -75.122633, 40.025228 ], [ -75.122385, 40.025512 ], [ -75.122261, 40.025649 ], [ -75.122064, 40.025887 ], [ -75.121963, 40.026 ], [ -75.121839, 40.026142 ], [ -75.121732, 40.026264 ], [ -75.121212, 40.026883 ], [ -75.121031, 40.027097 ], [ -75.120728, 40.027471 ], [ -75.120565, 40.027682 ], [ -75.120023, 40.028327 ], [ -75.119596, 40.028844 ], [ -75.119041, 40.029522 ], [ -75.118455, 40.030227 ], [ -75.118197, 40.030539 ], [ -75.117283, 40.031631 ], [ -75.116924, 40.032064 ], [ -75.116081, 40.033046 ], [ -75.11549, 40.03376 ], [ -75.115201, 40.034122 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.12128, 40.035947 ], [ -75.121077, 40.036856 ], [ -75.120854, 40.03785 ], [ -75.12074, 40.038408 ], [ -75.120427, 40.039924 ], [ -75.120319, 40.040434 ], [ -75.12022, 40.040906 ], [ -75.120105, 40.041412 ], [ -75.119593, 40.041348 ], [ -75.119216, 40.041301 ], [ -75.119098, 40.041288 ], [ -75.118667, 40.041235 ], [ -75.118445, 40.041207 ], [ -75.118173, 40.041174 ], [ -75.118061, 40.041159 ], [ -75.117678, 40.041118 ], [ -75.117492, 40.041094 ], [ -75.117286, 40.041069 ], [ -75.117066, 40.041042 ], [ -75.116905, 40.041028 ], [ -75.116665, 40.041021 ], [ -75.11649, 40.041024 ], [ -75.116248, 40.041045 ], [ -75.116039, 40.041073 ], [ -75.115879, 40.041107 ], [ -75.115611, 40.041184 ], [ -75.115247, 40.041321 ], [ -75.115054, 40.041404 ], [ -75.114945, 40.04146 ], [ -75.114927, 40.04147 ], [ -75.114791, 40.04156 ], [ -75.114697, 40.041626 ], [ -75.114494, 40.041804 ], [ -75.114184, 40.042106 ], [ -75.113994, 40.042291 ], [ -75.113558, 40.04275 ], [ -75.113441, 40.042905 ], [ -75.113368, 40.043019 ], [ -75.113317, 40.043116 ], [ -75.113259, 40.043248 ], [ -75.11321, 40.043409 ], [ -75.113143, 40.043727 ], [ -75.113099, 40.043923 ], [ -75.11298, 40.044463 ], [ -75.112914, 40.044774 ], [ -75.112893, 40.044872 ], [ -75.11273, 40.045623 ], [ -75.112607, 40.046262 ], [ -75.112586, 40.046367 ], [ -75.112434, 40.04706 ], [ -75.112365, 40.047377 ], [ -75.112341, 40.047473 ], [ -75.11232, 40.04754 ], [ -75.112707, 40.047754 ], [ -75.112935, 40.047881 ], [ -75.114547, 40.048801 ], [ -75.115079, 40.04913 ], [ -75.116635, 40.050013 ], [ -75.117109, 40.050281 ], [ -75.118541, 40.051105 ], [ -75.118637, 40.051159 ], [ -75.119035, 40.051387 ], [ -75.119541, 40.051677 ], [ -75.120036, 40.051947 ], [ -75.120831, 40.052413 ], [ -75.121622, 40.052865 ], [ -75.122149, 40.053166 ], [ -75.122161, 40.053108 ], [ -75.122215, 40.052832 ], [ -75.122241, 40.052699 ], [ -75.122278, 40.05248 ], [ -75.122458, 40.051437 ], [ -75.122509, 40.051136 ], [ -75.122789, 40.049611 ], [ -75.123044, 40.048134 ], [ -75.1231, 40.047819 ], [ -75.123123, 40.047683 ], [ -75.123151, 40.04752 ], [ -75.12321, 40.047221 ], [ -75.123244, 40.046937 ], [ -75.123329, 40.04655 ], [ -75.123401, 40.046057 ], [ -75.123446, 40.04577 ], [ -75.123481, 40.045578 ], [ -75.123487, 40.04555 ], [ -75.12356, 40.04501 ], [ -75.125614, 40.045268 ], [ -75.12664, 40.045393 ], [ -75.127029, 40.045446 ], [ -75.127375, 40.045494 ], [ -75.128343, 40.045626 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307782", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.138792, 39.907498 ], [ -75.13862, 39.908229 ], [ -75.138453, 39.909005 ], [ -75.138264, 39.909839 ], [ -75.137962, 39.911383 ], [ -75.13775, 39.912472 ], [ -75.138087, 39.912515 ], [ -75.138178, 39.912527 ], [ -75.138255, 39.912538 ], [ -75.138812, 39.912617 ], [ -75.139239, 39.912676 ], [ -75.139676, 39.912738 ], [ -75.140085, 39.912795 ], [ -75.14081, 39.912897 ], [ -75.142276, 39.913081 ], [ -75.146151, 39.913571 ], [ -75.146402, 39.913602 ], [ -75.146503, 39.913615 ], [ -75.146593, 39.913671 ], [ -75.146874, 39.913735 ], [ -75.147639, 39.913843 ], [ -75.147727, 39.913854 ], [ -75.147976, 39.913885 ], [ -75.148079, 39.913897 ], [ -75.148305, 39.913927 ], [ -75.14881, 39.913995 ], [ -75.149151, 39.914041 ], [ -75.149861, 39.914137 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.15126, 39.915616 ], [ -75.150992, 39.916875 ], [ -75.150904, 39.917285 ], [ -75.150818, 39.917684 ], [ -75.150725, 39.918102 ], [ -75.150626, 39.918546 ], [ -75.15054, 39.918927 ], [ -75.150443, 39.919371 ], [ -75.150354, 39.919791 ], [ -75.150274, 39.920169 ], [ -75.150178, 39.920626 ], [ -75.149926, 39.921831 ], [ -75.150523, 39.921907 ], [ -75.151088, 39.92198 ], [ -75.153067, 39.922233 ], [ -75.153056, 39.922305 ], [ -75.153024, 39.922422 ], [ -75.152914, 39.922674 ], [ -75.152761, 39.923007 ], [ -75.152583, 39.9234 ], [ -75.152091, 39.924583 ], [ -75.15198, 39.924859 ], [ -75.151912, 39.925003 ], [ -75.151776, 39.925362 ], [ -75.151623, 39.925771 ], [ -75.151453, 39.926204 ], [ -75.15132, 39.926551 ], [ -75.151163, 39.926961 ], [ -75.151016, 39.927351 ], [ -75.150899, 39.92765 ], [ -75.150762, 39.928007 ], [ -75.150703, 39.928163 ], [ -75.150566, 39.92857 ], [ -75.150453, 39.928903 ], [ -75.150253, 39.929372 ], [ -75.150201, 39.92951 ], [ -75.150114, 39.929578 ], [ -75.150004, 39.929885 ], [ -75.149898, 39.930153 ], [ -75.149886, 39.930189 ], [ -75.14988, 39.930203 ], [ -75.149901, 39.930251 ], [ -75.149887, 39.930302 ], [ -75.149883, 39.930347 ], [ -75.149877, 39.930389 ], [ -75.149875, 39.930423 ], [ -75.149875, 39.93045 ], [ -75.149881, 39.930478 ], [ -75.149883, 39.930501 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.149907, 39.931064 ], [ -75.149819, 39.931399 ], [ -75.149733, 39.931774 ], [ -75.149631, 39.932227 ], [ -75.149559, 39.932592 ], [ -75.149462, 39.933017 ], [ -75.149292, 39.933752 ], [ -75.149256, 39.933903 ], [ -75.149234, 39.934028 ], [ -75.14923, 39.934058 ], [ -75.149087, 39.934663 ], [ -75.14898, 39.935145 ], [ -75.148843, 39.935785 ], [ -75.148755, 39.936153 ], [ -75.148682, 39.936485 ], [ -75.148515, 39.937273 ], [ -75.148451, 39.937498 ], [ -75.148369, 39.937923 ], [ -75.14829, 39.938263 ], [ -75.148198, 39.938624 ], [ -75.148147, 39.938868 ], [ -75.148067, 39.939287 ], [ -75.147986, 39.939627 ], [ -75.147855, 39.940338 ], [ -75.147795, 39.940538 ], [ -75.147594, 39.941398 ], [ -75.147489, 39.941922 ], [ -75.147468, 39.942018 ], [ -75.147384, 39.942403 ], [ -75.147288, 39.942845 ], [ -75.147185, 39.943327 ], [ -75.147064, 39.943897 ], [ -75.146985, 39.944266 ], [ -75.146875, 39.944756 ], [ -75.146759, 39.945353 ], [ -75.146593, 39.946079 ], [ -75.146557, 39.946222 ], [ -75.146534, 39.946318 ], [ -75.146528, 39.946341 ], [ -75.146464, 39.946633 ], [ -75.14636, 39.947103 ], [ -75.146312, 39.947325 ], [ -75.146126, 39.948132 ], [ -75.146016, 39.948625 ], [ -75.145877, 39.949249 ], [ -75.145857, 39.94934 ], [ -75.145837, 39.949434 ], [ -75.145686, 39.950148 ], [ -75.14554, 39.950781 ], [ -75.145429, 39.951273 ], [ -75.145348, 39.951637 ], [ -75.14523, 39.952185 ], [ -75.14504, 39.953051 ], [ -75.144942, 39.953499 ], [ -75.14483, 39.954015 ], [ -75.14472, 39.954553 ], [ -75.144697, 39.954685 ], [ -75.144669, 39.954791 ], [ -75.144556, 39.955295 ], [ -75.144438, 39.95585 ], [ -75.144333, 39.956392 ], [ -75.144273, 39.956738 ], [ -75.144255, 39.956812 ], [ -75.144239, 39.956905 ], [ -75.144202, 39.95708 ], [ -75.144182, 39.957183 ], [ -75.144146, 39.957333 ], [ -75.144119, 39.957437 ], [ -75.143885, 39.95852 ], [ -75.143678, 39.959523 ], [ -75.143397, 39.960803 ], [ -75.143389, 39.960856 ], [ -75.143379, 39.960902 ], [ -75.143281, 39.961408 ], [ -75.143159, 39.96199 ], [ -75.143065, 39.962371 ], [ -75.143027, 39.962534 ], [ -75.142978, 39.962783 ], [ -75.142854, 39.963401 ], [ -75.142524, 39.964988 ], [ -75.142184, 39.966606 ], [ -75.142097, 39.967045 ], [ -75.141941, 39.967721 ], [ -75.14166, 39.969 ], [ -75.141509, 39.96975 ], [ -75.141252, 39.970982 ], [ -75.141157, 39.97145 ], [ -75.141435, 39.972483 ], [ -75.141765, 39.97369 ], [ -75.141978, 39.974443 ], [ -75.142066, 39.97483 ], [ -75.142185, 39.975221 ], [ -75.142016, 39.975204 ], [ -75.141958, 39.975196 ], [ -75.141249, 39.975105 ], [ -75.140987, 39.975071 ], [ -75.140405, 39.974998 ], [ -75.139809, 39.974923 ], [ -75.139718, 39.974911 ], [ -75.139412, 39.976344 ], [ -75.139095, 39.977843 ], [ -75.138888, 39.978747 ], [ -75.13877, 39.979321 ], [ -75.138455, 39.980827 ], [ -75.138133, 39.982312 ], [ -75.137795, 39.9839 ], [ -75.137445, 39.985487 ], [ -75.13713, 39.98699 ], [ -75.136813, 39.988482 ], [ -75.136665, 39.989149 ], [ -75.136626, 39.98936 ], [ -75.136568, 39.98965 ], [ -75.136505, 39.989971 ], [ -75.136383, 39.990536 ], [ -75.136152, 39.991592 ], [ -75.136018, 39.991569 ], [ -75.135458, 39.991498 ], [ -75.135192, 39.99146 ], [ -75.134867, 39.991415 ], [ -75.13445, 39.991365 ], [ -75.134321, 39.99135 ], [ -75.134245, 39.991338 ], [ -75.133778, 39.991268 ], [ -75.133469, 39.991223 ], [ -75.133338, 39.991205 ], [ -75.133073, 39.991167 ], [ -75.132868, 39.991139 ], [ -75.132415, 39.991088 ], [ -75.131954, 39.991028 ], [ -75.131419, 39.990967 ], [ -75.13089, 39.990887 ], [ -75.130766, 39.991408 ], [ -75.130713, 39.991675 ], [ -75.130633, 39.99207 ], [ -75.130546, 39.992497 ], [ -75.130304, 39.993572 ], [ -75.130211, 39.993988 ], [ -75.130134, 39.994378 ], [ -75.130088, 39.994569 ], [ -75.130077, 39.994628 ], [ -75.130034, 39.994839 ], [ -75.13001, 39.994959 ], [ -75.129976, 39.995165 ], [ -75.129913, 39.99547 ], [ -75.129689, 39.996575 ], [ -75.129612, 39.99696 ], [ -75.129468, 39.99762 ], [ -75.129363, 39.99803 ], [ -75.129256, 39.998554 ], [ -75.129185, 39.998911 ], [ -75.128919, 40.000122 ], [ -75.128717, 40.001003 ], [ -75.128582, 40.00161 ], [ -75.128286, 40.003111 ], [ -75.128143, 40.003774 ], [ -75.128072, 40.004073 ], [ -75.128003, 40.004314 ], [ -75.127984, 40.004397 ], [ -75.127896, 40.00492 ], [ -75.127885, 40.004999 ], [ -75.12786, 40.005172 ], [ -75.127817, 40.005458 ], [ -75.127426, 40.007231 ], [ -75.127384, 40.007439 ], [ -75.127333, 40.007631 ], [ -75.127242, 40.008085 ], [ -75.127212, 40.008199 ], [ -75.127186, 40.008319 ], [ -75.126956, 40.009236 ], [ -75.126764, 40.010196 ], [ -75.126649, 40.010821 ], [ -75.126565, 40.011203 ], [ -75.126503, 40.011517 ], [ -75.126265, 40.012525 ], [ -75.12616, 40.013027 ], [ -75.126098, 40.013319 ], [ -75.126054, 40.013534 ], [ -75.12598, 40.013839 ], [ -75.125941, 40.01401 ], [ -75.12587, 40.014372 ], [ -75.125818, 40.014645 ], [ -75.125548, 40.015971 ], [ -75.12512, 40.017928 ], [ -75.125008, 40.018437 ], [ -75.12598, 40.018561 ], [ -75.127175, 40.018715 ], [ -75.127085, 40.018889 ], [ -75.127032, 40.019003 ], [ -75.126978, 40.01914 ], [ -75.126813, 40.019546 ], [ -75.126646, 40.019981 ], [ -75.126564, 40.02018 ], [ -75.12648, 40.020399 ], [ -75.12632, 40.020801 ], [ -75.126274, 40.020922 ], [ -75.126245, 40.020989 ], [ -75.126223, 40.021046 ], [ -75.126194, 40.021105 ], [ -75.126161, 40.021153 ], [ -75.125667, 40.021723 ], [ -75.125013, 40.022473 ], [ -75.124406, 40.023167 ], [ -75.123859, 40.023824 ], [ -75.123815, 40.023872 ], [ -75.123187, 40.024577 ], [ -75.123039, 40.02475 ], [ -75.122633, 40.025228 ], [ -75.122385, 40.025512 ], [ -75.122261, 40.025649 ], [ -75.122064, 40.025887 ], [ -75.121963, 40.026 ], [ -75.121839, 40.026142 ], [ -75.121732, 40.026264 ], [ -75.121212, 40.026883 ], [ -75.121031, 40.027097 ], [ -75.120728, 40.027471 ], [ -75.120565, 40.027682 ], [ -75.120023, 40.028327 ], [ -75.119596, 40.028844 ], [ -75.119041, 40.029522 ], [ -75.118455, 40.030227 ], [ -75.118197, 40.030539 ], [ -75.117283, 40.031631 ], [ -75.116924, 40.032064 ], [ -75.116081, 40.033046 ], [ -75.11549, 40.03376 ], [ -75.115201, 40.034122 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.115708, 40.034434 ], [ -75.115702, 40.034336 ], [ -75.115663, 40.034282 ], [ -75.115578, 40.034233 ], [ -75.115393, 40.034178 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307784", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.138792, 39.907498 ], [ -75.13862, 39.908229 ], [ -75.138453, 39.909005 ], [ -75.138264, 39.909839 ], [ -75.137962, 39.911383 ], [ -75.13775, 39.912472 ], [ -75.138087, 39.912515 ], [ -75.138178, 39.912527 ], [ -75.138255, 39.912538 ], [ -75.138812, 39.912617 ], [ -75.139239, 39.912676 ], [ -75.139676, 39.912738 ], [ -75.140085, 39.912795 ], [ -75.14081, 39.912897 ], [ -75.142276, 39.913081 ], [ -75.146151, 39.913571 ], [ -75.146402, 39.913602 ], [ -75.146503, 39.913615 ], [ -75.146593, 39.913671 ], [ -75.146874, 39.913735 ], [ -75.147639, 39.913843 ], [ -75.147727, 39.913854 ], [ -75.147976, 39.913885 ], [ -75.148079, 39.913897 ], [ -75.148305, 39.913927 ], [ -75.14881, 39.913995 ], [ -75.149151, 39.914041 ], [ -75.149861, 39.914137 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.15126, 39.915616 ], [ -75.150992, 39.916875 ], [ -75.150904, 39.917285 ], [ -75.150818, 39.917684 ], [ -75.150725, 39.918102 ], [ -75.150626, 39.918546 ], [ -75.15054, 39.918927 ], [ -75.150443, 39.919371 ], [ -75.150354, 39.919791 ], [ -75.150274, 39.920169 ], [ -75.150178, 39.920626 ], [ -75.149926, 39.921831 ], [ -75.150523, 39.921907 ], [ -75.151088, 39.92198 ], [ -75.153067, 39.922233 ], [ -75.153056, 39.922305 ], [ -75.153024, 39.922422 ], [ -75.152914, 39.922674 ], [ -75.152761, 39.923007 ], [ -75.152583, 39.9234 ], [ -75.152091, 39.924583 ], [ -75.15198, 39.924859 ], [ -75.151912, 39.925003 ], [ -75.151776, 39.925362 ], [ -75.151623, 39.925771 ], [ -75.151453, 39.926204 ], [ -75.15132, 39.926551 ], [ -75.151163, 39.926961 ], [ -75.151016, 39.927351 ], [ -75.150899, 39.92765 ], [ -75.150762, 39.928007 ], [ -75.150703, 39.928163 ], [ -75.150566, 39.92857 ], [ -75.150453, 39.928903 ], [ -75.150253, 39.929372 ], [ -75.150201, 39.92951 ], [ -75.150114, 39.929578 ], [ -75.150004, 39.929885 ], [ -75.149898, 39.930153 ], [ -75.149886, 39.930189 ], [ -75.14988, 39.930203 ], [ -75.149901, 39.930251 ], [ -75.149887, 39.930302 ], [ -75.149883, 39.930347 ], [ -75.149877, 39.930389 ], [ -75.149875, 39.930423 ], [ -75.149875, 39.93045 ], [ -75.149881, 39.930478 ], [ -75.149883, 39.930501 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.149907, 39.931064 ], [ -75.149819, 39.931399 ], [ -75.149733, 39.931774 ], [ -75.149631, 39.932227 ], [ -75.149559, 39.932592 ], [ -75.149462, 39.933017 ], [ -75.149292, 39.933752 ], [ -75.149256, 39.933903 ], [ -75.149234, 39.934028 ], [ -75.14923, 39.934058 ], [ -75.149087, 39.934663 ], [ -75.14898, 39.935145 ], [ -75.148843, 39.935785 ], [ -75.148755, 39.936153 ], [ -75.148682, 39.936485 ], [ -75.148515, 39.937273 ], [ -75.148451, 39.937498 ], [ -75.148369, 39.937923 ], [ -75.14829, 39.938263 ], [ -75.148198, 39.938624 ], [ -75.148147, 39.938868 ], [ -75.148067, 39.939287 ], [ -75.147986, 39.939627 ], [ -75.147855, 39.940338 ], [ -75.147795, 39.940538 ], [ -75.147594, 39.941398 ], [ -75.147489, 39.941922 ], [ -75.147468, 39.942018 ], [ -75.147384, 39.942403 ], [ -75.147288, 39.942845 ], [ -75.147185, 39.943327 ], [ -75.147064, 39.943897 ], [ -75.146985, 39.944266 ], [ -75.146875, 39.944756 ], [ -75.146759, 39.945353 ], [ -75.146593, 39.946079 ], [ -75.146557, 39.946222 ], [ -75.146534, 39.946318 ], [ -75.146528, 39.946341 ], [ -75.146464, 39.946633 ], [ -75.14636, 39.947103 ], [ -75.146312, 39.947325 ], [ -75.146126, 39.948132 ], [ -75.146016, 39.948625 ], [ -75.145877, 39.949249 ], [ -75.145857, 39.94934 ], [ -75.145837, 39.949434 ], [ -75.145686, 39.950148 ], [ -75.14554, 39.950781 ], [ -75.145429, 39.951273 ], [ -75.145348, 39.951637 ], [ -75.14523, 39.952185 ], [ -75.14504, 39.953051 ], [ -75.144942, 39.953499 ], [ -75.14483, 39.954015 ], [ -75.14472, 39.954553 ], [ -75.144697, 39.954685 ], [ -75.144669, 39.954791 ], [ -75.144556, 39.955295 ], [ -75.144438, 39.95585 ], [ -75.144333, 39.956392 ], [ -75.144273, 39.956738 ], [ -75.144255, 39.956812 ], [ -75.144239, 39.956905 ], [ -75.144202, 39.95708 ], [ -75.144182, 39.957183 ], [ -75.144146, 39.957333 ], [ -75.144119, 39.957437 ], [ -75.143885, 39.95852 ], [ -75.143678, 39.959523 ], [ -75.143397, 39.960803 ], [ -75.143389, 39.960856 ], [ -75.143379, 39.960902 ], [ -75.143281, 39.961408 ], [ -75.143159, 39.96199 ], [ -75.143065, 39.962371 ], [ -75.143027, 39.962534 ], [ -75.142978, 39.962783 ], [ -75.142854, 39.963401 ], [ -75.142524, 39.964988 ], [ -75.142184, 39.966606 ], [ -75.142097, 39.967045 ], [ -75.141941, 39.967721 ], [ -75.14166, 39.969 ], [ -75.141509, 39.96975 ], [ -75.141252, 39.970982 ], [ -75.141157, 39.97145 ], [ -75.141435, 39.972483 ], [ -75.141765, 39.97369 ], [ -75.141978, 39.974443 ], [ -75.142066, 39.97483 ], [ -75.142185, 39.975221 ], [ -75.142016, 39.975204 ], [ -75.141958, 39.975196 ], [ -75.141249, 39.975105 ], [ -75.140987, 39.975071 ], [ -75.140405, 39.974998 ], [ -75.139809, 39.974923 ], [ -75.139718, 39.974911 ], [ -75.139412, 39.976344 ], [ -75.139095, 39.977843 ], [ -75.138888, 39.978747 ], [ -75.13877, 39.979321 ], [ -75.138455, 39.980827 ], [ -75.138133, 39.982312 ], [ -75.137795, 39.9839 ], [ -75.137445, 39.985487 ], [ -75.13713, 39.98699 ], [ -75.136813, 39.988482 ], [ -75.136665, 39.989149 ], [ -75.136626, 39.98936 ], [ -75.136568, 39.98965 ], [ -75.136505, 39.989971 ], [ -75.136383, 39.990536 ], [ -75.136152, 39.991592 ], [ -75.136018, 39.991569 ], [ -75.135458, 39.991498 ], [ -75.135192, 39.99146 ], [ -75.134867, 39.991415 ], [ -75.13445, 39.991365 ], [ -75.134321, 39.99135 ], [ -75.134245, 39.991338 ], [ -75.133778, 39.991268 ], [ -75.133469, 39.991223 ], [ -75.133338, 39.991205 ], [ -75.133073, 39.991167 ], [ -75.132868, 39.991139 ], [ -75.132415, 39.991088 ], [ -75.131954, 39.991028 ], [ -75.131419, 39.990967 ], [ -75.13089, 39.990887 ], [ -75.130766, 39.991408 ], [ -75.130713, 39.991675 ], [ -75.130633, 39.99207 ], [ -75.130546, 39.992497 ], [ -75.130304, 39.993572 ], [ -75.130211, 39.993988 ], [ -75.130134, 39.994378 ], [ -75.130088, 39.994569 ], [ -75.130077, 39.994628 ], [ -75.130034, 39.994839 ], [ -75.13001, 39.994959 ], [ -75.129976, 39.995165 ], [ -75.129913, 39.99547 ], [ -75.129689, 39.996575 ], [ -75.129612, 39.99696 ], [ -75.129468, 39.99762 ], [ -75.129363, 39.99803 ], [ -75.129256, 39.998554 ], [ -75.129185, 39.998911 ], [ -75.128919, 40.000122 ], [ -75.128717, 40.001003 ], [ -75.128582, 40.00161 ], [ -75.128286, 40.003111 ], [ -75.128143, 40.003774 ], [ -75.128072, 40.004073 ], [ -75.128003, 40.004314 ], [ -75.127984, 40.004397 ], [ -75.127896, 40.00492 ], [ -75.127885, 40.004999 ], [ -75.12786, 40.005172 ], [ -75.127817, 40.005458 ], [ -75.127426, 40.007231 ], [ -75.127384, 40.007439 ], [ -75.127333, 40.007631 ], [ -75.127242, 40.008085 ], [ -75.127212, 40.008199 ], [ -75.127186, 40.008319 ], [ -75.126956, 40.009236 ], [ -75.126764, 40.010196 ], [ -75.126649, 40.010821 ], [ -75.126565, 40.011203 ], [ -75.126503, 40.011517 ], [ -75.126265, 40.012525 ], [ -75.12616, 40.013027 ], [ -75.126098, 40.013319 ], [ -75.126054, 40.013534 ], [ -75.12598, 40.013839 ], [ -75.125941, 40.01401 ], [ -75.12587, 40.014372 ], [ -75.125818, 40.014645 ], [ -75.125548, 40.015971 ], [ -75.12512, 40.017928 ], [ -75.125008, 40.018437 ], [ -75.12598, 40.018561 ], [ -75.127175, 40.018715 ], [ -75.127085, 40.018889 ], [ -75.127032, 40.019003 ], [ -75.126978, 40.01914 ], [ -75.126813, 40.019546 ], [ -75.126646, 40.019981 ], [ -75.126564, 40.02018 ], [ -75.12648, 40.020399 ], [ -75.12632, 40.020801 ], [ -75.126274, 40.020922 ], [ -75.126245, 40.020989 ], [ -75.126223, 40.021046 ], [ -75.126194, 40.021105 ], [ -75.126161, 40.021153 ], [ -75.125667, 40.021723 ], [ -75.125013, 40.022473 ], [ -75.124406, 40.023167 ], [ -75.123859, 40.023824 ], [ -75.123815, 40.023872 ], [ -75.123187, 40.024577 ], [ -75.123039, 40.02475 ], [ -75.122633, 40.025228 ], [ -75.122385, 40.025512 ], [ -75.122261, 40.025649 ], [ -75.122064, 40.025887 ], [ -75.121963, 40.026 ], [ -75.121839, 40.026142 ], [ -75.121732, 40.026264 ], [ -75.121212, 40.026883 ], [ -75.121031, 40.027097 ], [ -75.120728, 40.027471 ], [ -75.120565, 40.027682 ], [ -75.120023, 40.028327 ], [ -75.119596, 40.028844 ], [ -75.119041, 40.029522 ], [ -75.118455, 40.030227 ], [ -75.118197, 40.030539 ], [ -75.117283, 40.031631 ], [ -75.116924, 40.032064 ], [ -75.116081, 40.033046 ], [ -75.11549, 40.03376 ], [ -75.115201, 40.034122 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.12128, 40.035947 ], [ -75.121077, 40.036856 ], [ -75.120854, 40.03785 ], [ -75.12074, 40.038408 ], [ -75.120427, 40.039924 ], [ -75.120319, 40.040434 ], [ -75.12022, 40.040906 ], [ -75.120105, 40.041412 ], [ -75.119593, 40.041348 ], [ -75.119216, 40.041301 ], [ -75.119098, 40.041288 ], [ -75.118667, 40.041235 ], [ -75.118445, 40.041207 ], [ -75.118173, 40.041174 ], [ -75.118061, 40.041159 ], [ -75.117678, 40.041118 ], [ -75.117492, 40.041094 ], [ -75.117286, 40.041069 ], [ -75.117066, 40.041042 ], [ -75.116905, 40.041028 ], [ -75.116665, 40.041021 ], [ -75.11649, 40.041024 ], [ -75.116248, 40.041045 ], [ -75.116039, 40.041073 ], [ -75.115879, 40.041107 ], [ -75.115611, 40.041184 ], [ -75.115247, 40.041321 ], [ -75.115054, 40.041404 ], [ -75.114945, 40.04146 ], [ -75.114927, 40.04147 ], [ -75.114791, 40.04156 ], [ -75.114697, 40.041626 ], [ -75.114494, 40.041804 ], [ -75.114184, 40.042106 ], [ -75.113994, 40.042291 ], [ -75.113558, 40.04275 ], [ -75.113441, 40.042905 ], [ -75.113368, 40.043019 ], [ -75.113317, 40.043116 ], [ -75.113259, 40.043248 ], [ -75.11321, 40.043409 ], [ -75.113143, 40.043727 ], [ -75.113099, 40.043923 ], [ -75.11298, 40.044463 ], [ -75.112914, 40.044774 ], [ -75.112893, 40.044872 ], [ -75.11273, 40.045623 ], [ -75.112607, 40.046262 ], [ -75.112586, 40.046367 ], [ -75.112434, 40.04706 ], [ -75.112365, 40.047377 ], [ -75.112341, 40.047473 ], [ -75.11232, 40.04754 ], [ -75.112707, 40.047754 ], [ -75.112935, 40.047881 ], [ -75.114547, 40.048801 ], [ -75.115079, 40.04913 ], [ -75.116635, 40.050013 ], [ -75.117109, 40.050281 ], [ -75.118541, 40.051105 ], [ -75.118637, 40.051159 ], [ -75.119035, 40.051387 ], [ -75.119541, 40.051677 ], [ -75.120036, 40.051947 ], [ -75.120831, 40.052413 ], [ -75.121622, 40.052865 ], [ -75.122149, 40.053166 ], [ -75.122161, 40.053108 ], [ -75.122215, 40.052832 ], [ -75.122241, 40.052699 ], [ -75.122278, 40.05248 ], [ -75.122458, 40.051437 ], [ -75.122509, 40.051136 ], [ -75.122789, 40.049611 ], [ -75.123044, 40.048134 ], [ -75.1231, 40.047819 ], [ -75.123123, 40.047683 ], [ -75.123151, 40.04752 ], [ -75.12321, 40.047221 ], [ -75.123244, 40.046937 ], [ -75.123329, 40.04655 ], [ -75.123401, 40.046057 ], [ -75.123446, 40.04577 ], [ -75.123481, 40.045578 ], [ -75.123487, 40.04555 ], [ -75.12356, 40.04501 ], [ -75.125614, 40.045268 ], [ -75.12664, 40.045393 ], [ -75.127029, 40.045446 ], [ -75.127375, 40.045494 ], [ -75.128343, 40.045626 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307786", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.154839, 39.914647 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.15154, 39.914266 ], [ -75.151524, 39.914339 ], [ -75.15126, 39.915616 ], [ -75.150992, 39.916875 ], [ -75.150904, 39.917285 ], [ -75.150818, 39.917684 ], [ -75.150725, 39.918102 ], [ -75.150626, 39.918546 ], [ -75.15054, 39.918927 ], [ -75.150443, 39.919371 ], [ -75.150354, 39.919791 ], [ -75.150274, 39.920169 ], [ -75.150178, 39.920626 ], [ -75.149926, 39.921831 ], [ -75.150523, 39.921907 ], [ -75.151088, 39.92198 ], [ -75.153067, 39.922233 ], [ -75.153056, 39.922305 ], [ -75.153024, 39.922422 ], [ -75.152914, 39.922674 ], [ -75.152761, 39.923007 ], [ -75.152583, 39.9234 ], [ -75.152091, 39.924583 ], [ -75.15198, 39.924859 ], [ -75.151912, 39.925003 ], [ -75.151776, 39.925362 ], [ -75.151623, 39.925771 ], [ -75.151453, 39.926204 ], [ -75.15132, 39.926551 ], [ -75.151163, 39.926961 ], [ -75.151016, 39.927351 ], [ -75.150899, 39.92765 ], [ -75.150762, 39.928007 ], [ -75.150703, 39.928163 ], [ -75.150566, 39.92857 ], [ -75.150453, 39.928903 ], [ -75.150253, 39.929372 ], [ -75.150201, 39.92951 ], [ -75.150114, 39.929578 ], [ -75.150004, 39.929885 ], [ -75.149898, 39.930153 ], [ -75.149886, 39.930189 ], [ -75.14988, 39.930203 ], [ -75.149901, 39.930251 ], [ -75.149887, 39.930302 ], [ -75.149883, 39.930347 ], [ -75.149877, 39.930389 ], [ -75.149875, 39.930423 ], [ -75.149875, 39.93045 ], [ -75.149881, 39.930478 ], [ -75.149883, 39.930501 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.149907, 39.931064 ], [ -75.149819, 39.931399 ], [ -75.149733, 39.931774 ], [ -75.149631, 39.932227 ], [ -75.149559, 39.932592 ], [ -75.149462, 39.933017 ], [ -75.149292, 39.933752 ], [ -75.149256, 39.933903 ], [ -75.149234, 39.934028 ], [ -75.14923, 39.934058 ], [ -75.149087, 39.934663 ], [ -75.14898, 39.935145 ], [ -75.148843, 39.935785 ], [ -75.148755, 39.936153 ], [ -75.148682, 39.936485 ], [ -75.148515, 39.937273 ], [ -75.148451, 39.937498 ], [ -75.148369, 39.937923 ], [ -75.14829, 39.938263 ], [ -75.148198, 39.938624 ], [ -75.148147, 39.938868 ], [ -75.148067, 39.939287 ], [ -75.147986, 39.939627 ], [ -75.147855, 39.940338 ], [ -75.147795, 39.940538 ], [ -75.147594, 39.941398 ], [ -75.147489, 39.941922 ], [ -75.147468, 39.942018 ], [ -75.147384, 39.942403 ], [ -75.147288, 39.942845 ], [ -75.147185, 39.943327 ], [ -75.147064, 39.943897 ], [ -75.146985, 39.944266 ], [ -75.146875, 39.944756 ], [ -75.146759, 39.945353 ], [ -75.146593, 39.946079 ], [ -75.146557, 39.946222 ], [ -75.146534, 39.946318 ], [ -75.146528, 39.946341 ], [ -75.146464, 39.946633 ], [ -75.14636, 39.947103 ], [ -75.146312, 39.947325 ], [ -75.146126, 39.948132 ], [ -75.146016, 39.948625 ], [ -75.145877, 39.949249 ], [ -75.145857, 39.94934 ], [ -75.145837, 39.949434 ], [ -75.145686, 39.950148 ], [ -75.14554, 39.950781 ], [ -75.145429, 39.951273 ], [ -75.145348, 39.951637 ], [ -75.14523, 39.952185 ], [ -75.14504, 39.953051 ], [ -75.144942, 39.953499 ], [ -75.14483, 39.954015 ], [ -75.14472, 39.954553 ], [ -75.144697, 39.954685 ], [ -75.144669, 39.954791 ], [ -75.144556, 39.955295 ], [ -75.144438, 39.95585 ], [ -75.144333, 39.956392 ], [ -75.144273, 39.956738 ], [ -75.144255, 39.956812 ], [ -75.144239, 39.956905 ], [ -75.144202, 39.95708 ], [ -75.144182, 39.957183 ], [ -75.144146, 39.957333 ], [ -75.144119, 39.957437 ], [ -75.143885, 39.95852 ], [ -75.143678, 39.959523 ], [ -75.143397, 39.960803 ], [ -75.143389, 39.960856 ], [ -75.143379, 39.960902 ], [ -75.143281, 39.961408 ], [ -75.143159, 39.96199 ], [ -75.143065, 39.962371 ], [ -75.143027, 39.962534 ], [ -75.142978, 39.962783 ], [ -75.142854, 39.963401 ], [ -75.142524, 39.964988 ], [ -75.142184, 39.966606 ], [ -75.142097, 39.967045 ], [ -75.141941, 39.967721 ], [ -75.14166, 39.969 ], [ -75.141509, 39.96975 ], [ -75.141252, 39.970982 ], [ -75.141157, 39.97145 ], [ -75.141435, 39.972483 ], [ -75.141765, 39.97369 ], [ -75.141978, 39.974443 ], [ -75.142066, 39.97483 ], [ -75.142185, 39.975221 ], [ -75.142016, 39.975204 ], [ -75.141958, 39.975196 ], [ -75.141249, 39.975105 ], [ -75.140987, 39.975071 ], [ -75.140405, 39.974998 ], [ -75.139809, 39.974923 ], [ -75.139718, 39.974911 ], [ -75.139412, 39.976344 ], [ -75.139095, 39.977843 ], [ -75.138888, 39.978747 ], [ -75.13877, 39.979321 ], [ -75.138455, 39.980827 ], [ -75.138133, 39.982312 ], [ -75.137795, 39.9839 ], [ -75.137445, 39.985487 ], [ -75.13713, 39.98699 ], [ -75.136813, 39.988482 ], [ -75.136665, 39.989149 ], [ -75.136626, 39.98936 ], [ -75.136568, 39.98965 ], [ -75.136505, 39.989971 ], [ -75.136383, 39.990536 ], [ -75.136152, 39.991592 ], [ -75.136018, 39.991569 ], [ -75.135458, 39.991498 ], [ -75.135192, 39.99146 ], [ -75.134867, 39.991415 ], [ -75.13445, 39.991365 ], [ -75.134321, 39.99135 ], [ -75.134245, 39.991338 ], [ -75.133778, 39.991268 ], [ -75.133469, 39.991223 ], [ -75.133338, 39.991205 ], [ -75.133073, 39.991167 ], [ -75.132868, 39.991139 ], [ -75.132415, 39.991088 ], [ -75.131954, 39.991028 ], [ -75.131419, 39.990967 ], [ -75.13089, 39.990887 ], [ -75.130766, 39.991408 ], [ -75.130713, 39.991675 ], [ -75.130633, 39.99207 ], [ -75.130546, 39.992497 ], [ -75.130304, 39.993572 ], [ -75.130211, 39.993988 ], [ -75.130134, 39.994378 ], [ -75.130088, 39.994569 ], [ -75.130077, 39.994628 ], [ -75.130034, 39.994839 ], [ -75.13001, 39.994959 ], [ -75.129976, 39.995165 ], [ -75.129913, 39.99547 ], [ -75.129689, 39.996575 ], [ -75.129612, 39.99696 ], [ -75.129468, 39.99762 ], [ -75.129363, 39.99803 ], [ -75.129256, 39.998554 ], [ -75.129185, 39.998911 ], [ -75.128919, 40.000122 ], [ -75.128717, 40.001003 ], [ -75.128582, 40.00161 ], [ -75.128286, 40.003111 ], [ -75.128143, 40.003774 ], [ -75.128072, 40.004073 ], [ -75.128003, 40.004314 ], [ -75.127984, 40.004397 ], [ -75.127896, 40.00492 ], [ -75.127885, 40.004999 ], [ -75.12786, 40.005172 ], [ -75.127817, 40.005458 ], [ -75.127426, 40.007231 ], [ -75.127384, 40.007439 ], [ -75.127333, 40.007631 ], [ -75.127242, 40.008085 ], [ -75.127212, 40.008199 ], [ -75.127186, 40.008319 ], [ -75.126956, 40.009236 ], [ -75.126764, 40.010196 ], [ -75.126649, 40.010821 ], [ -75.126565, 40.011203 ], [ -75.126503, 40.011517 ], [ -75.126265, 40.012525 ], [ -75.12616, 40.013027 ], [ -75.126098, 40.013319 ], [ -75.126054, 40.013534 ], [ -75.12598, 40.013839 ], [ -75.125941, 40.01401 ], [ -75.12587, 40.014372 ], [ -75.125818, 40.014645 ], [ -75.125548, 40.015971 ], [ -75.12512, 40.017928 ], [ -75.125008, 40.018437 ], [ -75.12598, 40.018561 ], [ -75.127175, 40.018715 ], [ -75.127085, 40.018889 ], [ -75.127032, 40.019003 ], [ -75.126978, 40.01914 ], [ -75.126813, 40.019546 ], [ -75.126646, 40.019981 ], [ -75.126564, 40.02018 ], [ -75.12648, 40.020399 ], [ -75.12632, 40.020801 ], [ -75.126274, 40.020922 ], [ -75.126245, 40.020989 ], [ -75.126223, 40.021046 ], [ -75.126194, 40.021105 ], [ -75.126161, 40.021153 ], [ -75.125667, 40.021723 ], [ -75.125013, 40.022473 ], [ -75.124406, 40.023167 ], [ -75.123859, 40.023824 ], [ -75.123815, 40.023872 ], [ -75.123187, 40.024577 ], [ -75.123039, 40.02475 ], [ -75.122633, 40.025228 ], [ -75.122385, 40.025512 ], [ -75.122261, 40.025649 ], [ -75.122064, 40.025887 ], [ -75.121963, 40.026 ], [ -75.121839, 40.026142 ], [ -75.121732, 40.026264 ], [ -75.121212, 40.026883 ], [ -75.121031, 40.027097 ], [ -75.120728, 40.027471 ], [ -75.120565, 40.027682 ], [ -75.120023, 40.028327 ], [ -75.119596, 40.028844 ], [ -75.119041, 40.029522 ], [ -75.118455, 40.030227 ], [ -75.118197, 40.030539 ], [ -75.117283, 40.031631 ], [ -75.116924, 40.032064 ], [ -75.116081, 40.033046 ], [ -75.11549, 40.03376 ], [ -75.115201, 40.034122 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.115708, 40.034434 ], [ -75.115702, 40.034336 ], [ -75.115663, 40.034282 ], [ -75.115578, 40.034233 ], [ -75.115393, 40.034178 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307787", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.154839, 39.914647 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.15154, 39.914266 ], [ -75.151524, 39.914339 ], [ -75.15126, 39.915616 ], [ -75.150992, 39.916875 ], [ -75.150904, 39.917285 ], [ -75.150818, 39.917684 ], [ -75.150725, 39.918102 ], [ -75.150626, 39.918546 ], [ -75.15054, 39.918927 ], [ -75.150443, 39.919371 ], [ -75.150354, 39.919791 ], [ -75.150274, 39.920169 ], [ -75.150178, 39.920626 ], [ -75.149926, 39.921831 ], [ -75.150523, 39.921907 ], [ -75.151088, 39.92198 ], [ -75.153067, 39.922233 ], [ -75.153056, 39.922305 ], [ -75.153024, 39.922422 ], [ -75.152914, 39.922674 ], [ -75.152761, 39.923007 ], [ -75.152583, 39.9234 ], [ -75.152091, 39.924583 ], [ -75.15198, 39.924859 ], [ -75.151912, 39.925003 ], [ -75.151776, 39.925362 ], [ -75.151623, 39.925771 ], [ -75.151453, 39.926204 ], [ -75.15132, 39.926551 ], [ -75.151163, 39.926961 ], [ -75.151016, 39.927351 ], [ -75.150899, 39.92765 ], [ -75.150762, 39.928007 ], [ -75.150703, 39.928163 ], [ -75.150566, 39.92857 ], [ -75.150453, 39.928903 ], [ -75.150253, 39.929372 ], [ -75.150201, 39.92951 ], [ -75.150114, 39.929578 ], [ -75.150004, 39.929885 ], [ -75.149898, 39.930153 ], [ -75.149886, 39.930189 ], [ -75.14988, 39.930203 ], [ -75.149901, 39.930251 ], [ -75.149887, 39.930302 ], [ -75.149883, 39.930347 ], [ -75.149877, 39.930389 ], [ -75.149875, 39.930423 ], [ -75.149875, 39.93045 ], [ -75.149881, 39.930478 ], [ -75.149883, 39.930501 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.149907, 39.931064 ], [ -75.149819, 39.931399 ], [ -75.149733, 39.931774 ], [ -75.149631, 39.932227 ], [ -75.149559, 39.932592 ], [ -75.149462, 39.933017 ], [ -75.149292, 39.933752 ], [ -75.149256, 39.933903 ], [ -75.149234, 39.934028 ], [ -75.14923, 39.934058 ], [ -75.149087, 39.934663 ], [ -75.14898, 39.935145 ], [ -75.148843, 39.935785 ], [ -75.148755, 39.936153 ], [ -75.148682, 39.936485 ], [ -75.148515, 39.937273 ], [ -75.148451, 39.937498 ], [ -75.148369, 39.937923 ], [ -75.14829, 39.938263 ], [ -75.148198, 39.938624 ], [ -75.148147, 39.938868 ], [ -75.148067, 39.939287 ], [ -75.147986, 39.939627 ], [ -75.147855, 39.940338 ], [ -75.147795, 39.940538 ], [ -75.147594, 39.941398 ], [ -75.147489, 39.941922 ], [ -75.147468, 39.942018 ], [ -75.147384, 39.942403 ], [ -75.147288, 39.942845 ], [ -75.147185, 39.943327 ], [ -75.147064, 39.943897 ], [ -75.146985, 39.944266 ], [ -75.146875, 39.944756 ], [ -75.146759, 39.945353 ], [ -75.146593, 39.946079 ], [ -75.146557, 39.946222 ], [ -75.146534, 39.946318 ], [ -75.146528, 39.946341 ], [ -75.146464, 39.946633 ], [ -75.14636, 39.947103 ], [ -75.146312, 39.947325 ], [ -75.146126, 39.948132 ], [ -75.146016, 39.948625 ], [ -75.145877, 39.949249 ], [ -75.145857, 39.94934 ], [ -75.145837, 39.949434 ], [ -75.145686, 39.950148 ], [ -75.14554, 39.950781 ], [ -75.145429, 39.951273 ], [ -75.145348, 39.951637 ], [ -75.14523, 39.952185 ], [ -75.14504, 39.953051 ], [ -75.144942, 39.953499 ], [ -75.14483, 39.954015 ], [ -75.14472, 39.954553 ], [ -75.144697, 39.954685 ], [ -75.144669, 39.954791 ], [ -75.144556, 39.955295 ], [ -75.144438, 39.95585 ], [ -75.144333, 39.956392 ], [ -75.144273, 39.956738 ], [ -75.144255, 39.956812 ], [ -75.144239, 39.956905 ], [ -75.144202, 39.95708 ], [ -75.144182, 39.957183 ], [ -75.144146, 39.957333 ], [ -75.144119, 39.957437 ], [ -75.143885, 39.95852 ], [ -75.143678, 39.959523 ], [ -75.143397, 39.960803 ], [ -75.143389, 39.960856 ], [ -75.143379, 39.960902 ], [ -75.143281, 39.961408 ], [ -75.143159, 39.96199 ], [ -75.143065, 39.962371 ], [ -75.143027, 39.962534 ], [ -75.142978, 39.962783 ], [ -75.142854, 39.963401 ], [ -75.142524, 39.964988 ], [ -75.142184, 39.966606 ], [ -75.142097, 39.967045 ], [ -75.141941, 39.967721 ], [ -75.14166, 39.969 ], [ -75.141509, 39.96975 ], [ -75.141252, 39.970982 ], [ -75.141157, 39.97145 ], [ -75.141435, 39.972483 ], [ -75.141765, 39.97369 ], [ -75.141978, 39.974443 ], [ -75.142066, 39.97483 ], [ -75.142185, 39.975221 ], [ -75.142016, 39.975204 ], [ -75.141958, 39.975196 ], [ -75.141249, 39.975105 ], [ -75.140987, 39.975071 ], [ -75.140405, 39.974998 ], [ -75.139809, 39.974923 ], [ -75.139718, 39.974911 ], [ -75.139412, 39.976344 ], [ -75.139095, 39.977843 ], [ -75.138888, 39.978747 ], [ -75.13877, 39.979321 ], [ -75.138455, 39.980827 ], [ -75.138133, 39.982312 ], [ -75.137795, 39.9839 ], [ -75.137445, 39.985487 ], [ -75.13713, 39.98699 ], [ -75.136813, 39.988482 ], [ -75.136665, 39.989149 ], [ -75.136626, 39.98936 ], [ -75.136568, 39.98965 ], [ -75.136505, 39.989971 ], [ -75.136383, 39.990536 ], [ -75.136152, 39.991592 ], [ -75.136018, 39.991569 ], [ -75.135458, 39.991498 ], [ -75.135192, 39.99146 ], [ -75.134867, 39.991415 ], [ -75.13445, 39.991365 ], [ -75.134321, 39.99135 ], [ -75.134245, 39.991338 ], [ -75.133778, 39.991268 ], [ -75.133469, 39.991223 ], [ -75.133338, 39.991205 ], [ -75.133073, 39.991167 ], [ -75.132868, 39.991139 ], [ -75.132415, 39.991088 ], [ -75.131954, 39.991028 ], [ -75.131419, 39.990967 ], [ -75.13089, 39.990887 ], [ -75.130766, 39.991408 ], [ -75.130713, 39.991675 ], [ -75.130633, 39.99207 ], [ -75.130546, 39.992497 ], [ -75.130304, 39.993572 ], [ -75.130211, 39.993988 ], [ -75.130134, 39.994378 ], [ -75.130088, 39.994569 ], [ -75.130077, 39.994628 ], [ -75.130034, 39.994839 ], [ -75.13001, 39.994959 ], [ -75.129976, 39.995165 ], [ -75.129913, 39.99547 ], [ -75.129689, 39.996575 ], [ -75.129612, 39.99696 ], [ -75.129468, 39.99762 ], [ -75.129363, 39.99803 ], [ -75.129256, 39.998554 ], [ -75.129185, 39.998911 ], [ -75.128919, 40.000122 ], [ -75.128717, 40.001003 ], [ -75.128582, 40.00161 ], [ -75.128286, 40.003111 ], [ -75.128143, 40.003774 ], [ -75.128072, 40.004073 ], [ -75.128003, 40.004314 ], [ -75.127984, 40.004397 ], [ -75.127896, 40.00492 ], [ -75.127885, 40.004999 ], [ -75.12786, 40.005172 ], [ -75.127817, 40.005458 ], [ -75.127426, 40.007231 ], [ -75.127384, 40.007439 ], [ -75.127333, 40.007631 ], [ -75.127242, 40.008085 ], [ -75.127212, 40.008199 ], [ -75.127186, 40.008319 ], [ -75.126956, 40.009236 ], [ -75.126764, 40.010196 ], [ -75.126649, 40.010821 ], [ -75.126565, 40.011203 ], [ -75.126503, 40.011517 ], [ -75.126265, 40.012525 ], [ -75.12616, 40.013027 ], [ -75.126098, 40.013319 ], [ -75.126054, 40.013534 ], [ -75.12598, 40.013839 ], [ -75.125941, 40.01401 ], [ -75.12587, 40.014372 ], [ -75.125818, 40.014645 ], [ -75.125548, 40.015971 ], [ -75.12512, 40.017928 ], [ -75.125008, 40.018437 ], [ -75.12598, 40.018561 ], [ -75.127175, 40.018715 ], [ -75.127085, 40.018889 ], [ -75.127032, 40.019003 ], [ -75.126978, 40.01914 ], [ -75.126813, 40.019546 ], [ -75.126646, 40.019981 ], [ -75.126564, 40.02018 ], [ -75.12648, 40.020399 ], [ -75.12632, 40.020801 ], [ -75.126274, 40.020922 ], [ -75.126245, 40.020989 ], [ -75.126223, 40.021046 ], [ -75.126194, 40.021105 ], [ -75.126161, 40.021153 ], [ -75.125667, 40.021723 ], [ -75.125013, 40.022473 ], [ -75.124406, 40.023167 ], [ -75.123859, 40.023824 ], [ -75.123815, 40.023872 ], [ -75.123187, 40.024577 ], [ -75.123039, 40.02475 ], [ -75.122633, 40.025228 ], [ -75.122385, 40.025512 ], [ -75.122261, 40.025649 ], [ -75.122064, 40.025887 ], [ -75.121963, 40.026 ], [ -75.121839, 40.026142 ], [ -75.121732, 40.026264 ], [ -75.121212, 40.026883 ], [ -75.121031, 40.027097 ], [ -75.120728, 40.027471 ], [ -75.120565, 40.027682 ], [ -75.120023, 40.028327 ], [ -75.119596, 40.028844 ], [ -75.119041, 40.029522 ], [ -75.118455, 40.030227 ], [ -75.118197, 40.030539 ], [ -75.117283, 40.031631 ], [ -75.116924, 40.032064 ], [ -75.116081, 40.033046 ], [ -75.11549, 40.03376 ], [ -75.115201, 40.034122 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.12128, 40.035947 ], [ -75.121077, 40.036856 ], [ -75.120854, 40.03785 ], [ -75.12074, 40.038408 ], [ -75.120427, 40.039924 ], [ -75.120319, 40.040434 ], [ -75.12022, 40.040906 ], [ -75.120105, 40.041412 ], [ -75.119593, 40.041348 ], [ -75.119216, 40.041301 ], [ -75.119098, 40.041288 ], [ -75.118667, 40.041235 ], [ -75.118445, 40.041207 ], [ -75.118173, 40.041174 ], [ -75.118061, 40.041159 ], [ -75.117678, 40.041118 ], [ -75.117492, 40.041094 ], [ -75.117286, 40.041069 ], [ -75.117066, 40.041042 ], [ -75.116905, 40.041028 ], [ -75.116665, 40.041021 ], [ -75.11649, 40.041024 ], [ -75.116248, 40.041045 ], [ -75.116039, 40.041073 ], [ -75.115879, 40.041107 ], [ -75.115611, 40.041184 ], [ -75.115247, 40.041321 ], [ -75.115054, 40.041404 ], [ -75.114945, 40.04146 ], [ -75.114927, 40.04147 ], [ -75.114791, 40.04156 ], [ -75.114697, 40.041626 ], [ -75.114494, 40.041804 ], [ -75.114184, 40.042106 ], [ -75.113994, 40.042291 ], [ -75.113558, 40.04275 ], [ -75.113441, 40.042905 ], [ -75.113368, 40.043019 ], [ -75.113317, 40.043116 ], [ -75.113259, 40.043248 ], [ -75.11321, 40.043409 ], [ -75.113143, 40.043727 ], [ -75.113099, 40.043923 ], [ -75.11298, 40.044463 ], [ -75.112914, 40.044774 ], [ -75.112893, 40.044872 ], [ -75.11273, 40.045623 ], [ -75.112607, 40.046262 ], [ -75.112586, 40.046367 ], [ -75.112434, 40.04706 ], [ -75.112365, 40.047377 ], [ -75.112341, 40.047473 ], [ -75.11232, 40.04754 ], [ -75.112707, 40.047754 ], [ -75.112935, 40.047881 ], [ -75.114547, 40.048801 ], [ -75.115079, 40.04913 ], [ -75.116635, 40.050013 ], [ -75.117109, 40.050281 ], [ -75.118541, 40.051105 ], [ -75.118637, 40.051159 ], [ -75.119035, 40.051387 ], [ -75.119541, 40.051677 ], [ -75.120036, 40.051947 ], [ -75.120831, 40.052413 ], [ -75.121622, 40.052865 ], [ -75.122149, 40.053166 ], [ -75.122132, 40.053172 ], [ -75.122149, 40.053166 ], [ -75.122161, 40.053108 ], [ -75.122215, 40.052832 ], [ -75.122241, 40.052699 ], [ -75.122278, 40.05248 ], [ -75.122458, 40.051437 ], [ -75.122509, 40.051136 ], [ -75.122789, 40.049611 ], [ -75.123044, 40.048134 ], [ -75.1231, 40.047819 ], [ -75.123123, 40.047683 ], [ -75.123151, 40.04752 ], [ -75.12321, 40.047221 ], [ -75.123244, 40.046937 ], [ -75.123329, 40.04655 ], [ -75.123401, 40.046057 ], [ -75.123446, 40.04577 ], [ -75.123481, 40.045578 ], [ -75.123487, 40.04555 ], [ -75.12356, 40.04501 ], [ -75.125614, 40.045268 ], [ -75.12664, 40.045393 ], [ -75.127029, 40.045446 ], [ -75.127375, 40.045494 ], [ -75.128343, 40.045626 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307789", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.15574, 39.913685 ], [ -75.156193, 39.913756 ], [ -75.156206, 39.913758 ], [ -75.156203, 39.913772 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154839, 39.914647 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.15154, 39.914266 ], [ -75.151524, 39.914339 ], [ -75.15126, 39.915616 ], [ -75.150992, 39.916875 ], [ -75.150904, 39.917285 ], [ -75.150818, 39.917684 ], [ -75.150725, 39.918102 ], [ -75.150626, 39.918546 ], [ -75.15054, 39.918927 ], [ -75.150443, 39.919371 ], [ -75.150354, 39.919791 ], [ -75.150274, 39.920169 ], [ -75.150178, 39.920626 ], [ -75.149926, 39.921831 ], [ -75.150523, 39.921907 ], [ -75.151088, 39.92198 ], [ -75.153067, 39.922233 ], [ -75.153056, 39.922305 ], [ -75.153024, 39.922422 ], [ -75.152914, 39.922674 ], [ -75.152761, 39.923007 ], [ -75.152583, 39.9234 ], [ -75.152091, 39.924583 ], [ -75.15198, 39.924859 ], [ -75.151912, 39.925003 ], [ -75.151776, 39.925362 ], [ -75.151623, 39.925771 ], [ -75.151453, 39.926204 ], [ -75.15132, 39.926551 ], [ -75.151163, 39.926961 ], [ -75.151016, 39.927351 ], [ -75.150899, 39.92765 ], [ -75.150762, 39.928007 ], [ -75.150703, 39.928163 ], [ -75.150566, 39.92857 ], [ -75.150453, 39.928903 ], [ -75.150253, 39.929372 ], [ -75.150201, 39.92951 ], [ -75.150114, 39.929578 ], [ -75.150004, 39.929885 ], [ -75.149898, 39.930153 ], [ -75.149886, 39.930189 ], [ -75.14988, 39.930203 ], [ -75.149901, 39.930251 ], [ -75.149887, 39.930302 ], [ -75.149883, 39.930347 ], [ -75.149877, 39.930389 ], [ -75.149875, 39.930423 ], [ -75.149875, 39.93045 ], [ -75.149881, 39.930478 ], [ -75.149883, 39.930501 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.149907, 39.931064 ], [ -75.149819, 39.931399 ], [ -75.149733, 39.931774 ], [ -75.149631, 39.932227 ], [ -75.149559, 39.932592 ], [ -75.149462, 39.933017 ], [ -75.149292, 39.933752 ], [ -75.149256, 39.933903 ], [ -75.149234, 39.934028 ], [ -75.14923, 39.934058 ], [ -75.149087, 39.934663 ], [ -75.14898, 39.935145 ], [ -75.148843, 39.935785 ], [ -75.148755, 39.936153 ], [ -75.148682, 39.936485 ], [ -75.148515, 39.937273 ], [ -75.148451, 39.937498 ], [ -75.148369, 39.937923 ], [ -75.14829, 39.938263 ], [ -75.148198, 39.938624 ], [ -75.148147, 39.938868 ], [ -75.148067, 39.939287 ], [ -75.147986, 39.939627 ], [ -75.147855, 39.940338 ], [ -75.147795, 39.940538 ], [ -75.147594, 39.941398 ], [ -75.147489, 39.941922 ], [ -75.147468, 39.942018 ], [ -75.147384, 39.942403 ], [ -75.147288, 39.942845 ], [ -75.147185, 39.943327 ], [ -75.147064, 39.943897 ], [ -75.146985, 39.944266 ], [ -75.146875, 39.944756 ], [ -75.146759, 39.945353 ], [ -75.146593, 39.946079 ], [ -75.146557, 39.946222 ], [ -75.146534, 39.946318 ], [ -75.146528, 39.946341 ], [ -75.146464, 39.946633 ], [ -75.14636, 39.947103 ], [ -75.146312, 39.947325 ], [ -75.146126, 39.948132 ], [ -75.146016, 39.948625 ], [ -75.145877, 39.949249 ], [ -75.145857, 39.94934 ], [ -75.145837, 39.949434 ], [ -75.145686, 39.950148 ], [ -75.14554, 39.950781 ], [ -75.145429, 39.951273 ], [ -75.145348, 39.951637 ], [ -75.14523, 39.952185 ], [ -75.14504, 39.953051 ], [ -75.144942, 39.953499 ], [ -75.14483, 39.954015 ], [ -75.14472, 39.954553 ], [ -75.144697, 39.954685 ], [ -75.144669, 39.954791 ], [ -75.144556, 39.955295 ], [ -75.144438, 39.95585 ], [ -75.144333, 39.956392 ], [ -75.144273, 39.956738 ], [ -75.144255, 39.956812 ], [ -75.144239, 39.956905 ], [ -75.144202, 39.95708 ], [ -75.144182, 39.957183 ], [ -75.144146, 39.957333 ], [ -75.144119, 39.957437 ], [ -75.143885, 39.95852 ], [ -75.143678, 39.959523 ], [ -75.143397, 39.960803 ], [ -75.143389, 39.960856 ], [ -75.143379, 39.960902 ], [ -75.143281, 39.961408 ], [ -75.143159, 39.96199 ], [ -75.143065, 39.962371 ], [ -75.143027, 39.962534 ], [ -75.142978, 39.962783 ], [ -75.142854, 39.963401 ], [ -75.142524, 39.964988 ], [ -75.142184, 39.966606 ], [ -75.142097, 39.967045 ], [ -75.141941, 39.967721 ], [ -75.14166, 39.969 ], [ -75.141509, 39.96975 ], [ -75.141252, 39.970982 ], [ -75.141157, 39.97145 ], [ -75.141435, 39.972483 ], [ -75.141765, 39.97369 ], [ -75.141978, 39.974443 ], [ -75.142066, 39.97483 ], [ -75.142185, 39.975221 ], [ -75.142016, 39.975204 ], [ -75.141958, 39.975196 ], [ -75.141249, 39.975105 ], [ -75.140987, 39.975071 ], [ -75.140405, 39.974998 ], [ -75.139809, 39.974923 ], [ -75.139718, 39.974911 ], [ -75.139412, 39.976344 ], [ -75.139095, 39.977843 ], [ -75.138888, 39.978747 ], [ -75.13877, 39.979321 ], [ -75.138455, 39.980827 ], [ -75.138133, 39.982312 ], [ -75.137795, 39.9839 ], [ -75.137445, 39.985487 ], [ -75.13713, 39.98699 ], [ -75.136813, 39.988482 ], [ -75.136665, 39.989149 ], [ -75.136626, 39.98936 ], [ -75.136568, 39.98965 ], [ -75.136505, 39.989971 ], [ -75.136383, 39.990536 ], [ -75.136152, 39.991592 ], [ -75.136018, 39.991569 ], [ -75.135458, 39.991498 ], [ -75.135192, 39.99146 ], [ -75.134867, 39.991415 ], [ -75.13445, 39.991365 ], [ -75.134321, 39.99135 ], [ -75.134245, 39.991338 ], [ -75.133778, 39.991268 ], [ -75.133469, 39.991223 ], [ -75.133338, 39.991205 ], [ -75.133073, 39.991167 ], [ -75.132868, 39.991139 ], [ -75.132415, 39.991088 ], [ -75.131954, 39.991028 ], [ -75.131419, 39.990967 ], [ -75.13089, 39.990887 ], [ -75.130766, 39.991408 ], [ -75.130713, 39.991675 ], [ -75.130633, 39.99207 ], [ -75.130546, 39.992497 ], [ -75.130304, 39.993572 ], [ -75.130211, 39.993988 ], [ -75.130134, 39.994378 ], [ -75.130088, 39.994569 ], [ -75.130077, 39.994628 ], [ -75.130034, 39.994839 ], [ -75.13001, 39.994959 ], [ -75.129976, 39.995165 ], [ -75.129913, 39.99547 ], [ -75.129689, 39.996575 ], [ -75.129612, 39.99696 ], [ -75.129468, 39.99762 ], [ -75.129363, 39.99803 ], [ -75.129256, 39.998554 ], [ -75.129185, 39.998911 ], [ -75.128919, 40.000122 ], [ -75.128717, 40.001003 ], [ -75.128582, 40.00161 ], [ -75.128286, 40.003111 ], [ -75.128143, 40.003774 ], [ -75.128072, 40.004073 ], [ -75.128003, 40.004314 ], [ -75.127984, 40.004397 ], [ -75.127896, 40.00492 ], [ -75.127885, 40.004999 ], [ -75.12786, 40.005172 ], [ -75.127817, 40.005458 ], [ -75.127426, 40.007231 ], [ -75.127384, 40.007439 ], [ -75.127333, 40.007631 ], [ -75.127242, 40.008085 ], [ -75.127212, 40.008199 ], [ -75.127186, 40.008319 ], [ -75.126956, 40.009236 ], [ -75.126764, 40.010196 ], [ -75.126649, 40.010821 ], [ -75.126565, 40.011203 ], [ -75.126503, 40.011517 ], [ -75.126265, 40.012525 ], [ -75.12616, 40.013027 ], [ -75.126098, 40.013319 ], [ -75.126054, 40.013534 ], [ -75.12598, 40.013839 ], [ -75.125941, 40.01401 ], [ -75.12587, 40.014372 ], [ -75.125818, 40.014645 ], [ -75.125548, 40.015971 ], [ -75.12512, 40.017928 ], [ -75.125008, 40.018437 ], [ -75.12598, 40.018561 ], [ -75.127175, 40.018715 ], [ -75.127085, 40.018889 ], [ -75.127032, 40.019003 ], [ -75.126978, 40.01914 ], [ -75.126813, 40.019546 ], [ -75.126646, 40.019981 ], [ -75.126564, 40.02018 ], [ -75.12648, 40.020399 ], [ -75.12632, 40.020801 ], [ -75.126274, 40.020922 ], [ -75.126245, 40.020989 ], [ -75.126223, 40.021046 ], [ -75.126194, 40.021105 ], [ -75.126161, 40.021153 ], [ -75.125667, 40.021723 ], [ -75.125013, 40.022473 ], [ -75.124406, 40.023167 ], [ -75.123859, 40.023824 ], [ -75.123815, 40.023872 ], [ -75.123187, 40.024577 ], [ -75.123039, 40.02475 ], [ -75.122633, 40.025228 ], [ -75.122385, 40.025512 ], [ -75.122261, 40.025649 ], [ -75.122064, 40.025887 ], [ -75.121963, 40.026 ], [ -75.121839, 40.026142 ], [ -75.121732, 40.026264 ], [ -75.121212, 40.026883 ], [ -75.121031, 40.027097 ], [ -75.120728, 40.027471 ], [ -75.120565, 40.027682 ], [ -75.120023, 40.028327 ], [ -75.119596, 40.028844 ], [ -75.119041, 40.029522 ], [ -75.118455, 40.030227 ], [ -75.118197, 40.030539 ], [ -75.117283, 40.031631 ], [ -75.116924, 40.032064 ], [ -75.116081, 40.033046 ], [ -75.11549, 40.03376 ], [ -75.115201, 40.034122 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.115708, 40.034434 ], [ -75.115702, 40.034336 ], [ -75.115663, 40.034282 ], [ -75.115578, 40.034233 ], [ -75.115393, 40.034178 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307790", "route_id": "57" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.15574, 39.913685 ], [ -75.156193, 39.913756 ], [ -75.156206, 39.913758 ], [ -75.156203, 39.913772 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154839, 39.914647 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.15154, 39.914266 ], [ -75.151524, 39.914339 ], [ -75.15126, 39.915616 ], [ -75.150992, 39.916875 ], [ -75.150904, 39.917285 ], [ -75.150818, 39.917684 ], [ -75.150725, 39.918102 ], [ -75.150626, 39.918546 ], [ -75.15054, 39.918927 ], [ -75.150443, 39.919371 ], [ -75.150354, 39.919791 ], [ -75.150274, 39.920169 ], [ -75.150178, 39.920626 ], [ -75.149926, 39.921831 ], [ -75.150523, 39.921907 ], [ -75.151088, 39.92198 ], [ -75.153067, 39.922233 ], [ -75.153056, 39.922305 ], [ -75.153024, 39.922422 ], [ -75.152914, 39.922674 ], [ -75.152761, 39.923007 ], [ -75.152583, 39.9234 ], [ -75.152091, 39.924583 ], [ -75.15198, 39.924859 ], [ -75.151912, 39.925003 ], [ -75.151776, 39.925362 ], [ -75.151623, 39.925771 ], [ -75.151453, 39.926204 ], [ -75.15132, 39.926551 ], [ -75.151163, 39.926961 ], [ -75.151016, 39.927351 ], [ -75.150899, 39.92765 ], [ -75.150762, 39.928007 ], [ -75.150703, 39.928163 ], [ -75.150566, 39.92857 ], [ -75.150453, 39.928903 ], [ -75.150253, 39.929372 ], [ -75.150201, 39.92951 ], [ -75.150114, 39.929578 ], [ -75.150004, 39.929885 ], [ -75.149898, 39.930153 ], [ -75.149886, 39.930189 ], [ -75.14988, 39.930203 ], [ -75.149901, 39.930251 ], [ -75.149887, 39.930302 ], [ -75.149883, 39.930347 ], [ -75.149877, 39.930389 ], [ -75.149875, 39.930423 ], [ -75.149875, 39.93045 ], [ -75.149881, 39.930478 ], [ -75.149883, 39.930501 ], [ -75.1499, 39.93056 ], [ -75.149997, 39.930569 ], [ -75.149907, 39.931064 ], [ -75.149819, 39.931399 ], [ -75.149733, 39.931774 ], [ -75.149631, 39.932227 ], [ -75.149559, 39.932592 ], [ -75.149462, 39.933017 ], [ -75.149292, 39.933752 ], [ -75.149256, 39.933903 ], [ -75.149234, 39.934028 ], [ -75.14923, 39.934058 ], [ -75.149087, 39.934663 ], [ -75.14898, 39.935145 ], [ -75.148843, 39.935785 ], [ -75.148755, 39.936153 ], [ -75.148682, 39.936485 ], [ -75.148515, 39.937273 ], [ -75.148451, 39.937498 ], [ -75.148369, 39.937923 ], [ -75.14829, 39.938263 ], [ -75.148198, 39.938624 ], [ -75.148147, 39.938868 ], [ -75.148067, 39.939287 ], [ -75.147986, 39.939627 ], [ -75.147855, 39.940338 ], [ -75.147795, 39.940538 ], [ -75.147594, 39.941398 ], [ -75.147489, 39.941922 ], [ -75.147468, 39.942018 ], [ -75.147384, 39.942403 ], [ -75.147288, 39.942845 ], [ -75.147185, 39.943327 ], [ -75.147064, 39.943897 ], [ -75.146985, 39.944266 ], [ -75.146875, 39.944756 ], [ -75.146759, 39.945353 ], [ -75.146593, 39.946079 ], [ -75.146557, 39.946222 ], [ -75.146534, 39.946318 ], [ -75.146528, 39.946341 ], [ -75.146464, 39.946633 ], [ -75.14636, 39.947103 ], [ -75.146312, 39.947325 ], [ -75.146126, 39.948132 ], [ -75.146016, 39.948625 ], [ -75.145877, 39.949249 ], [ -75.145857, 39.94934 ], [ -75.145837, 39.949434 ], [ -75.145686, 39.950148 ], [ -75.14554, 39.950781 ], [ -75.145429, 39.951273 ], [ -75.145348, 39.951637 ], [ -75.14523, 39.952185 ], [ -75.14504, 39.953051 ], [ -75.144942, 39.953499 ], [ -75.14483, 39.954015 ], [ -75.14472, 39.954553 ], [ -75.144697, 39.954685 ], [ -75.144669, 39.954791 ], [ -75.144556, 39.955295 ], [ -75.144438, 39.95585 ], [ -75.144333, 39.956392 ], [ -75.144273, 39.956738 ], [ -75.144255, 39.956812 ], [ -75.144239, 39.956905 ], [ -75.144202, 39.95708 ], [ -75.144182, 39.957183 ], [ -75.144146, 39.957333 ], [ -75.144119, 39.957437 ], [ -75.143885, 39.95852 ], [ -75.143678, 39.959523 ], [ -75.143397, 39.960803 ], [ -75.143389, 39.960856 ], [ -75.143379, 39.960902 ], [ -75.143281, 39.961408 ], [ -75.143159, 39.96199 ], [ -75.143065, 39.962371 ], [ -75.143027, 39.962534 ], [ -75.142978, 39.962783 ], [ -75.142854, 39.963401 ], [ -75.142524, 39.964988 ], [ -75.142184, 39.966606 ], [ -75.142097, 39.967045 ], [ -75.141941, 39.967721 ], [ -75.14166, 39.969 ], [ -75.141509, 39.96975 ], [ -75.141252, 39.970982 ], [ -75.141157, 39.97145 ], [ -75.141435, 39.972483 ], [ -75.141765, 39.97369 ], [ -75.141978, 39.974443 ], [ -75.142066, 39.97483 ], [ -75.142185, 39.975221 ], [ -75.142016, 39.975204 ], [ -75.141958, 39.975196 ], [ -75.141249, 39.975105 ], [ -75.140987, 39.975071 ], [ -75.140405, 39.974998 ], [ -75.139809, 39.974923 ], [ -75.139718, 39.974911 ], [ -75.139412, 39.976344 ], [ -75.139095, 39.977843 ], [ -75.138888, 39.978747 ], [ -75.13877, 39.979321 ], [ -75.138455, 39.980827 ], [ -75.138133, 39.982312 ], [ -75.137795, 39.9839 ], [ -75.137445, 39.985487 ], [ -75.13713, 39.98699 ], [ -75.136813, 39.988482 ], [ -75.136665, 39.989149 ], [ -75.136626, 39.98936 ], [ -75.136568, 39.98965 ], [ -75.136505, 39.989971 ], [ -75.136383, 39.990536 ], [ -75.136152, 39.991592 ], [ -75.136018, 39.991569 ], [ -75.135458, 39.991498 ], [ -75.135192, 39.99146 ], [ -75.134867, 39.991415 ], [ -75.13445, 39.991365 ], [ -75.134321, 39.99135 ], [ -75.134245, 39.991338 ], [ -75.133778, 39.991268 ], [ -75.133469, 39.991223 ], [ -75.133338, 39.991205 ], [ -75.133073, 39.991167 ], [ -75.132868, 39.991139 ], [ -75.132415, 39.991088 ], [ -75.131954, 39.991028 ], [ -75.131419, 39.990967 ], [ -75.13089, 39.990887 ], [ -75.130766, 39.991408 ], [ -75.130713, 39.991675 ], [ -75.130633, 39.99207 ], [ -75.130546, 39.992497 ], [ -75.130304, 39.993572 ], [ -75.130211, 39.993988 ], [ -75.130134, 39.994378 ], [ -75.130088, 39.994569 ], [ -75.130077, 39.994628 ], [ -75.130034, 39.994839 ], [ -75.13001, 39.994959 ], [ -75.129976, 39.995165 ], [ -75.129913, 39.99547 ], [ -75.129689, 39.996575 ], [ -75.129612, 39.99696 ], [ -75.129468, 39.99762 ], [ -75.129363, 39.99803 ], [ -75.129256, 39.998554 ], [ -75.129185, 39.998911 ], [ -75.128919, 40.000122 ], [ -75.128717, 40.001003 ], [ -75.128582, 40.00161 ], [ -75.128286, 40.003111 ], [ -75.128143, 40.003774 ], [ -75.128072, 40.004073 ], [ -75.128003, 40.004314 ], [ -75.127984, 40.004397 ], [ -75.127896, 40.00492 ], [ -75.127885, 40.004999 ], [ -75.12786, 40.005172 ], [ -75.127817, 40.005458 ], [ -75.127426, 40.007231 ], [ -75.127384, 40.007439 ], [ -75.127333, 40.007631 ], [ -75.127242, 40.008085 ], [ -75.127212, 40.008199 ], [ -75.127186, 40.008319 ], [ -75.126956, 40.009236 ], [ -75.126764, 40.010196 ], [ -75.126649, 40.010821 ], [ -75.126565, 40.011203 ], [ -75.126503, 40.011517 ], [ -75.126265, 40.012525 ], [ -75.12616, 40.013027 ], [ -75.126098, 40.013319 ], [ -75.126054, 40.013534 ], [ -75.12598, 40.013839 ], [ -75.125941, 40.01401 ], [ -75.12587, 40.014372 ], [ -75.125818, 40.014645 ], [ -75.125548, 40.015971 ], [ -75.12512, 40.017928 ], [ -75.125008, 40.018437 ], [ -75.12598, 40.018561 ], [ -75.127175, 40.018715 ], [ -75.127085, 40.018889 ], [ -75.127032, 40.019003 ], [ -75.126978, 40.01914 ], [ -75.126813, 40.019546 ], [ -75.126646, 40.019981 ], [ -75.126564, 40.02018 ], [ -75.12648, 40.020399 ], [ -75.12632, 40.020801 ], [ -75.126274, 40.020922 ], [ -75.126245, 40.020989 ], [ -75.126223, 40.021046 ], [ -75.126194, 40.021105 ], [ -75.126161, 40.021153 ], [ -75.125667, 40.021723 ], [ -75.125013, 40.022473 ], [ -75.124406, 40.023167 ], [ -75.123859, 40.023824 ], [ -75.123815, 40.023872 ], [ -75.123187, 40.024577 ], [ -75.123039, 40.02475 ], [ -75.122633, 40.025228 ], [ -75.122385, 40.025512 ], [ -75.122261, 40.025649 ], [ -75.122064, 40.025887 ], [ -75.121963, 40.026 ], [ -75.121839, 40.026142 ], [ -75.121732, 40.026264 ], [ -75.121212, 40.026883 ], [ -75.121031, 40.027097 ], [ -75.120728, 40.027471 ], [ -75.120565, 40.027682 ], [ -75.120023, 40.028327 ], [ -75.119596, 40.028844 ], [ -75.119041, 40.029522 ], [ -75.118455, 40.030227 ], [ -75.118197, 40.030539 ], [ -75.117283, 40.031631 ], [ -75.116924, 40.032064 ], [ -75.116081, 40.033046 ], [ -75.11549, 40.03376 ], [ -75.115201, 40.034122 ], [ -75.114918, 40.034448 ], [ -75.114954, 40.034462 ], [ -75.115072, 40.034483 ], [ -75.115462, 40.034528 ], [ -75.115695, 40.034561 ], [ -75.116156, 40.034615 ], [ -75.116834, 40.034696 ], [ -75.117555, 40.034794 ], [ -75.118134, 40.034863 ], [ -75.119542, 40.035047 ], [ -75.119745, 40.035074 ], [ -75.119916, 40.035098 ], [ -75.120106, 40.035123 ], [ -75.120257, 40.035142 ], [ -75.121415, 40.035278 ], [ -75.12128, 40.035947 ], [ -75.121077, 40.036856 ], [ -75.120854, 40.03785 ], [ -75.12074, 40.038408 ], [ -75.120427, 40.039924 ], [ -75.120319, 40.040434 ], [ -75.12022, 40.040906 ], [ -75.120105, 40.041412 ], [ -75.119593, 40.041348 ], [ -75.119216, 40.041301 ], [ -75.119098, 40.041288 ], [ -75.118667, 40.041235 ], [ -75.118445, 40.041207 ], [ -75.118173, 40.041174 ], [ -75.118061, 40.041159 ], [ -75.117678, 40.041118 ], [ -75.117492, 40.041094 ], [ -75.117286, 40.041069 ], [ -75.117066, 40.041042 ], [ -75.116905, 40.041028 ], [ -75.116665, 40.041021 ], [ -75.11649, 40.041024 ], [ -75.116248, 40.041045 ], [ -75.116039, 40.041073 ], [ -75.115879, 40.041107 ], [ -75.115611, 40.041184 ], [ -75.115247, 40.041321 ], [ -75.115054, 40.041404 ], [ -75.114945, 40.04146 ], [ -75.114927, 40.04147 ], [ -75.114791, 40.04156 ], [ -75.114697, 40.041626 ], [ -75.114494, 40.041804 ], [ -75.114184, 40.042106 ], [ -75.113994, 40.042291 ], [ -75.113558, 40.04275 ], [ -75.113441, 40.042905 ], [ -75.113368, 40.043019 ], [ -75.113317, 40.043116 ], [ -75.113259, 40.043248 ], [ -75.11321, 40.043409 ], [ -75.113143, 40.043727 ], [ -75.113099, 40.043923 ], [ -75.11298, 40.044463 ], [ -75.112914, 40.044774 ], [ -75.112893, 40.044872 ], [ -75.11273, 40.045623 ], [ -75.112607, 40.046262 ], [ -75.112586, 40.046367 ], [ -75.112434, 40.04706 ], [ -75.112365, 40.047377 ], [ -75.112341, 40.047473 ], [ -75.11232, 40.04754 ], [ -75.112707, 40.047754 ], [ -75.112935, 40.047881 ], [ -75.114547, 40.048801 ], [ -75.115079, 40.04913 ], [ -75.116635, 40.050013 ], [ -75.117109, 40.050281 ], [ -75.118541, 40.051105 ], [ -75.118637, 40.051159 ], [ -75.119035, 40.051387 ], [ -75.119541, 40.051677 ], [ -75.120036, 40.051947 ], [ -75.120831, 40.052413 ], [ -75.121622, 40.052865 ], [ -75.122149, 40.053166 ], [ -75.122132, 40.053172 ], [ -75.122149, 40.053166 ], [ -75.122161, 40.053108 ], [ -75.122215, 40.052832 ], [ -75.122241, 40.052699 ], [ -75.122278, 40.05248 ], [ -75.122458, 40.051437 ], [ -75.122509, 40.051136 ], [ -75.122789, 40.049611 ], [ -75.123044, 40.048134 ], [ -75.1231, 40.047819 ], [ -75.123123, 40.047683 ], [ -75.123151, 40.04752 ], [ -75.12321, 40.047221 ], [ -75.123244, 40.046937 ], [ -75.123329, 40.04655 ], [ -75.123401, 40.046057 ], [ -75.123446, 40.04577 ], [ -75.123481, 40.045578 ], [ -75.123487, 40.04555 ], [ -75.12356, 40.04501 ], [ -75.125614, 40.045268 ], [ -75.12664, 40.045393 ], [ -75.127029, 40.045446 ], [ -75.127375, 40.045494 ], [ -75.128343, 40.045626 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307791", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030864, 40.094254 ], [ -75.030796, 40.094425 ], [ -75.030749, 40.09455 ], [ -75.030731, 40.094622 ], [ -75.030667, 40.094693 ], [ -75.030654, 40.094759 ], [ -75.03063, 40.094939 ], [ -75.030592, 40.095196 ], [ -75.030548, 40.095576 ], [ -75.030527, 40.095757 ], [ -75.030489, 40.096253 ], [ -75.030472, 40.096653 ], [ -75.030478, 40.096701 ], [ -75.030523, 40.096765 ], [ -75.030493, 40.097301 ], [ -75.030493, 40.097308 ], [ -75.03048, 40.097474 ], [ -75.030474, 40.097553 ], [ -75.030469, 40.097626 ], [ -75.030465, 40.097661 ], [ -75.030461, 40.097713 ], [ -75.030452, 40.097808 ], [ -75.030441, 40.097918 ], [ -75.030422, 40.098085 ], [ -75.030403, 40.098276 ], [ -75.030376, 40.098501 ], [ -75.030368, 40.098576 ], [ -75.030346, 40.098704 ], [ -75.030319, 40.098859 ], [ -75.030315, 40.098887 ], [ -75.030256, 40.09916 ], [ -75.030203, 40.099348 ], [ -75.030087, 40.099694 ], [ -75.029961, 40.100035 ], [ -75.029948, 40.100064 ], [ -75.029861, 40.100279 ], [ -75.029787, 40.100446 ], [ -75.029758, 40.1005 ], [ -75.029721, 40.100571 ], [ -75.029612, 40.10062 ], [ -75.029604, 40.10063 ], [ -75.029063, 40.10178 ], [ -75.029037, 40.101837 ], [ -75.028832, 40.102292 ], [ -75.028761, 40.102458 ], [ -75.028744, 40.102501 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307793", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030889, 40.094137 ], [ -75.030839, 40.094135 ], [ -75.030784, 40.094142 ], [ -75.030715, 40.094158 ], [ -75.030205, 40.094297 ], [ -75.029948, 40.094377 ], [ -75.027716, 40.095074 ], [ -75.025607, 40.095751 ], [ -75.025219, 40.09587 ], [ -75.02453, 40.096084 ], [ -75.02431, 40.096151 ], [ -75.022635, 40.096671 ], [ -75.022239, 40.096795 ], [ -75.021977, 40.09688 ], [ -75.021853, 40.096914 ], [ -75.021734, 40.09694 ], [ -75.021613, 40.096958 ], [ -75.021356, 40.096979 ], [ -75.020184, 40.097034 ], [ -75.019232, 40.097072 ], [ -75.018739, 40.097094 ], [ -75.018472, 40.097108 ], [ -75.018374, 40.097114 ], [ -75.018251, 40.097132 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.02628, 40.108247 ], [ -75.026271, 40.108266 ], [ -75.026267, 40.108288 ], [ -75.026264, 40.108341 ], [ -75.02617, 40.108479 ], [ -75.026077, 40.10863 ], [ -75.025605, 40.10932 ], [ -75.025311, 40.109748 ], [ -75.025166, 40.109961 ], [ -75.025033, 40.11015 ], [ -75.02474, 40.110571 ], [ -75.024546, 40.110854 ], [ -75.024318, 40.111187 ], [ -75.024075, 40.111533 ], [ -75.023951, 40.11171 ], [ -75.023834, 40.111878 ], [ -75.023828, 40.111886 ], [ -75.023409, 40.1125 ], [ -75.02331, 40.112645 ], [ -75.02319, 40.112823 ], [ -75.023066, 40.113005 ], [ -75.023765, 40.113421 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307794", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030889, 40.094137 ], [ -75.030839, 40.094135 ], [ -75.030784, 40.094142 ], [ -75.030715, 40.094158 ], [ -75.030205, 40.094297 ], [ -75.029948, 40.094377 ], [ -75.027716, 40.095074 ], [ -75.025607, 40.095751 ], [ -75.025219, 40.09587 ], [ -75.02453, 40.096084 ], [ -75.02431, 40.096151 ], [ -75.022635, 40.096671 ], [ -75.022239, 40.096795 ], [ -75.021977, 40.09688 ], [ -75.021853, 40.096914 ], [ -75.021734, 40.09694 ], [ -75.021613, 40.096958 ], [ -75.021356, 40.096979 ], [ -75.020184, 40.097034 ], [ -75.019232, 40.097072 ], [ -75.018739, 40.097094 ], [ -75.018472, 40.097108 ], [ -75.018374, 40.097114 ], [ -75.018251, 40.097132 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.02628, 40.108247 ], [ -75.026271, 40.108266 ], [ -75.026267, 40.108288 ], [ -75.026264, 40.108341 ], [ -75.02617, 40.108479 ], [ -75.026077, 40.10863 ], [ -75.025605, 40.10932 ], [ -75.025311, 40.109748 ], [ -75.025166, 40.109961 ], [ -75.025033, 40.11015 ], [ -75.02474, 40.110571 ], [ -75.024546, 40.110854 ], [ -75.024318, 40.111187 ], [ -75.024075, 40.111533 ], [ -75.023951, 40.11171 ], [ -75.023834, 40.111878 ], [ -75.023828, 40.111886 ], [ -75.023409, 40.1125 ], [ -75.02331, 40.112645 ], [ -75.02319, 40.112823 ], [ -75.023066, 40.113005 ], [ -75.023765, 40.113421 ], [ -75.024701, 40.113965 ], [ -75.026354, 40.114923 ], [ -75.026822, 40.115189 ], [ -75.027054, 40.115319 ], [ -75.027215, 40.115397 ], [ -75.027424, 40.115485 ], [ -75.027628, 40.115556 ], [ -75.027791, 40.11561 ], [ -75.028084, 40.115691 ], [ -75.028195, 40.115719 ], [ -75.028573, 40.115809 ], [ -75.028931, 40.115899 ], [ -75.029091, 40.115936 ], [ -75.029191, 40.115957 ], [ -75.029337, 40.116006 ], [ -75.029502, 40.116068 ], [ -75.029611, 40.116107 ], [ -75.029716, 40.116153 ], [ -75.029857, 40.116216 ], [ -75.030003, 40.116288 ], [ -75.030312, 40.116465 ], [ -75.030469, 40.116568 ], [ -75.030641, 40.116679 ], [ -75.031115, 40.116955 ], [ -75.031289, 40.117067 ], [ -75.031872, 40.117438 ], [ -75.03204, 40.117545 ], [ -75.032663, 40.117931 ], [ -75.032843, 40.118041 ], [ -75.033553, 40.118486 ], [ -75.034262, 40.118922 ], [ -75.034483, 40.119054 ], [ -75.034945, 40.119339 ], [ -75.035147, 40.119461 ], [ -75.035349, 40.119586 ], [ -75.036164, 40.120052 ], [ -75.036267, 40.120115 ], [ -75.036326, 40.120152 ], [ -75.03638, 40.120207 ], [ -75.036407, 40.120247 ], [ -75.03644, 40.120298 ], [ -75.036461, 40.120351 ], [ -75.036497, 40.120447 ], [ -75.03645, 40.120462 ], [ -75.0364, 40.120478 ], [ -75.034894, 40.121021 ], [ -75.033749, 40.121423 ], [ -75.033366, 40.121564 ], [ -75.033276, 40.121596 ], [ -75.033091, 40.121663 ], [ -75.032899, 40.121733 ], [ -75.032774, 40.12178 ], [ -75.032628, 40.121835 ], [ -75.032502, 40.121877 ], [ -75.032277, 40.121939 ], [ -75.032221, 40.121952 ], [ -75.03207, 40.121987 ], [ -75.032046, 40.121992 ], [ -75.031798, 40.122036 ], [ -75.031651, 40.122057 ], [ -75.03145, 40.122081 ], [ -75.031224, 40.122095 ], [ -75.030998, 40.122096 ], [ -75.030851, 40.122091 ], [ -75.030705, 40.122083 ], [ -75.030582, 40.122068 ], [ -75.030442, 40.122051 ], [ -75.030307, 40.122032 ], [ -75.030185, 40.122011 ], [ -75.030074, 40.12199 ], [ -75.029964, 40.121964 ], [ -75.029849, 40.121936 ], [ -75.029758, 40.121911 ], [ -75.029653, 40.12188 ], [ -75.029536, 40.121841 ], [ -75.029451, 40.121811 ], [ -75.029354, 40.12177 ], [ -75.029254, 40.12173 ], [ -75.029151, 40.121683 ], [ -75.029018, 40.121618 ], [ -75.028922, 40.121566 ], [ -75.02877, 40.121485 ], [ -75.028557, 40.121365 ], [ -75.02781, 40.120959 ], [ -75.027408, 40.120732 ], [ -75.026382, 40.120193 ], [ -75.025489, 40.119723 ], [ -75.024855, 40.119392 ], [ -75.02481, 40.119319 ], [ -75.024627, 40.119205 ], [ -75.024217, 40.11899 ], [ -75.023806, 40.118759 ], [ -75.023007, 40.118342 ], [ -75.022122, 40.117866 ], [ -75.021388, 40.117469 ], [ -75.020952, 40.117236 ], [ -75.020474, 40.11699 ], [ -75.019865, 40.116676 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307795", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030889, 40.094137 ], [ -75.030839, 40.094135 ], [ -75.030784, 40.094142 ], [ -75.030715, 40.094158 ], [ -75.030205, 40.094297 ], [ -75.029948, 40.094377 ], [ -75.027716, 40.095074 ], [ -75.025607, 40.095751 ], [ -75.025219, 40.09587 ], [ -75.02453, 40.096084 ], [ -75.02431, 40.096151 ], [ -75.022635, 40.096671 ], [ -75.022239, 40.096795 ], [ -75.021977, 40.09688 ], [ -75.021853, 40.096914 ], [ -75.021734, 40.09694 ], [ -75.021613, 40.096958 ], [ -75.021356, 40.096979 ], [ -75.020184, 40.097034 ], [ -75.019232, 40.097072 ], [ -75.018739, 40.097094 ], [ -75.018472, 40.097108 ], [ -75.018374, 40.097114 ], [ -75.018251, 40.097132 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.02628, 40.108247 ], [ -75.026271, 40.108266 ], [ -75.026267, 40.108288 ], [ -75.026264, 40.108341 ], [ -75.02617, 40.108479 ], [ -75.026077, 40.10863 ], [ -75.025605, 40.10932 ], [ -75.025311, 40.109748 ], [ -75.025166, 40.109961 ], [ -75.025033, 40.11015 ], [ -75.02474, 40.110571 ], [ -75.024546, 40.110854 ], [ -75.024318, 40.111187 ], [ -75.024075, 40.111533 ], [ -75.023951, 40.11171 ], [ -75.023834, 40.111878 ], [ -75.023828, 40.111886 ], [ -75.023409, 40.1125 ], [ -75.02331, 40.112645 ], [ -75.02319, 40.112823 ], [ -75.023066, 40.113005 ], [ -75.022754, 40.113382 ], [ -75.022672, 40.113418 ], [ -75.022665, 40.113423 ], [ -75.02259, 40.113541 ], [ -75.022567, 40.113574 ], [ -75.022412, 40.113797 ], [ -75.0224, 40.113815 ], [ -75.022299, 40.113969 ], [ -75.022302, 40.114034 ], [ -75.022115, 40.114281 ], [ -75.02202, 40.114404 ], [ -75.021914, 40.114526 ], [ -75.021819, 40.11463 ], [ -75.021727, 40.114733 ], [ -75.021628, 40.114838 ], [ -75.021074, 40.115413 ], [ -75.020516, 40.115994 ], [ -75.020143, 40.116385 ], [ -75.019865, 40.116676 ], [ -75.019821, 40.116717 ], [ -75.019781, 40.116752 ], [ -75.019522, 40.117029 ], [ -75.019269, 40.117298 ], [ -75.018549, 40.11803 ], [ -75.018509, 40.118071 ], [ -75.018468, 40.118126 ], [ -75.01843, 40.118173 ], [ -75.018391, 40.118235 ], [ -75.018369, 40.118278 ], [ -75.018355, 40.118305 ], [ -75.018331, 40.118356 ], [ -75.018212, 40.118583 ], [ -75.018189, 40.118626 ], [ -75.018025, 40.118924 ], [ -75.01777, 40.119354 ], [ -75.017761, 40.119369 ], [ -75.017662, 40.119529 ], [ -75.017526, 40.119749 ], [ -75.017441, 40.11988 ], [ -75.017207, 40.120242 ], [ -75.017151, 40.120329 ], [ -75.017008, 40.120559 ], [ -75.016782, 40.120923 ], [ -75.016202, 40.121953 ], [ -75.015886, 40.122603 ], [ -75.015796, 40.122768 ], [ -75.015712, 40.122918 ], [ -75.015702, 40.122938 ], [ -75.015614, 40.123106 ], [ -75.01556, 40.123218 ], [ -75.015491, 40.123363 ], [ -75.015391, 40.123591 ], [ -75.01511, 40.124228 ], [ -75.015024, 40.124426 ], [ -75.01492, 40.124651 ], [ -75.014812, 40.124875 ], [ -75.014786, 40.124946 ], [ -75.01475, 40.125042 ], [ -75.014719, 40.125145 ], [ -75.014638, 40.12545 ], [ -75.014598, 40.125602 ], [ -75.014442, 40.126204 ], [ -75.014316, 40.126698 ], [ -75.014263, 40.126898 ], [ -75.014042, 40.127728 ], [ -75.013968, 40.128063 ], [ -75.013921, 40.12829 ], [ -75.013876, 40.128506 ], [ -75.013781, 40.128851 ], [ -75.01361, 40.129305 ], [ -75.013463, 40.129635 ], [ -75.013211, 40.13011 ], [ -75.013116, 40.130289 ], [ -75.013001, 40.130498 ], [ -75.012558, 40.131217 ], [ -75.012466, 40.131346 ], [ -75.012231, 40.131668 ], [ -75.012121, 40.131809 ], [ -75.012008, 40.131944 ], [ -75.011896, 40.132059 ], [ -75.011794, 40.13216 ], [ -75.011789, 40.132164 ], [ -75.011696, 40.132259 ], [ -75.011625, 40.132332 ], [ -75.011539, 40.132417 ], [ -75.011448, 40.132504 ], [ -75.011353, 40.132588 ], [ -75.011268, 40.132661 ], [ -75.010813, 40.13304 ], [ -75.010266, 40.133478 ], [ -75.00993, 40.133733 ], [ -75.00975, 40.13387 ], [ -75.009548, 40.134018 ], [ -75.009127, 40.134353 ], [ -75.009149, 40.134367 ], [ -75.009605, 40.134656 ], [ -75.009766, 40.134758 ], [ -75.00983, 40.134798 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307799", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030864, 40.094254 ], [ -75.030796, 40.094425 ], [ -75.030749, 40.09455 ], [ -75.030731, 40.094622 ], [ -75.030667, 40.094693 ], [ -75.030654, 40.094759 ], [ -75.03063, 40.094939 ], [ -75.030592, 40.095196 ], [ -75.030548, 40.095576 ], [ -75.030527, 40.095757 ], [ -75.030489, 40.096253 ], [ -75.030472, 40.096653 ], [ -75.030478, 40.096701 ], [ -75.030523, 40.096765 ], [ -75.030493, 40.097301 ], [ -75.030493, 40.097308 ], [ -75.03048, 40.097474 ], [ -75.030474, 40.097553 ], [ -75.030469, 40.097626 ], [ -75.030465, 40.097661 ], [ -75.030461, 40.097713 ], [ -75.030452, 40.097808 ], [ -75.030441, 40.097918 ], [ -75.030422, 40.098085 ], [ -75.030403, 40.098276 ], [ -75.030376, 40.098501 ], [ -75.030368, 40.098576 ], [ -75.030346, 40.098704 ], [ -75.030319, 40.098859 ], [ -75.030315, 40.098887 ], [ -75.030256, 40.09916 ], [ -75.030203, 40.099348 ], [ -75.030087, 40.099694 ], [ -75.029961, 40.100035 ], [ -75.029948, 40.100064 ], [ -75.029861, 40.100279 ], [ -75.029787, 40.100446 ], [ -75.029758, 40.1005 ], [ -75.029721, 40.100571 ], [ -75.029612, 40.10062 ], [ -75.029604, 40.10063 ], [ -75.029063, 40.10178 ], [ -75.029037, 40.101837 ], [ -75.028832, 40.102292 ], [ -75.028761, 40.102458 ], [ -75.028744, 40.102501 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.02628, 40.108247 ], [ -75.026271, 40.108266 ], [ -75.026267, 40.108288 ], [ -75.026264, 40.108341 ], [ -75.02617, 40.108479 ], [ -75.026077, 40.10863 ], [ -75.025605, 40.10932 ], [ -75.025311, 40.109748 ], [ -75.025166, 40.109961 ], [ -75.025033, 40.11015 ], [ -75.02474, 40.110571 ], [ -75.024546, 40.110854 ], [ -75.024318, 40.111187 ], [ -75.024075, 40.111533 ], [ -75.023951, 40.11171 ], [ -75.023834, 40.111878 ], [ -75.023828, 40.111886 ], [ -75.023409, 40.1125 ], [ -75.02331, 40.112645 ], [ -75.02319, 40.112823 ], [ -75.023066, 40.113005 ], [ -75.022754, 40.113382 ], [ -75.022672, 40.113418 ], [ -75.022665, 40.113423 ], [ -75.02259, 40.113541 ], [ -75.022567, 40.113574 ], [ -75.022412, 40.113797 ], [ -75.0224, 40.113815 ], [ -75.022299, 40.113969 ], [ -75.022302, 40.114034 ], [ -75.022115, 40.114281 ], [ -75.02202, 40.114404 ], [ -75.021914, 40.114526 ], [ -75.021819, 40.11463 ], [ -75.021727, 40.114733 ], [ -75.021628, 40.114838 ], [ -75.021074, 40.115413 ], [ -75.020516, 40.115994 ], [ -75.020143, 40.116385 ], [ -75.019865, 40.116676 ], [ -75.019821, 40.116717 ], [ -75.019781, 40.116752 ], [ -75.019522, 40.117029 ], [ -75.019269, 40.117298 ], [ -75.018549, 40.11803 ], [ -75.018509, 40.118071 ], [ -75.018468, 40.118126 ], [ -75.01843, 40.118173 ], [ -75.018391, 40.118235 ], [ -75.018369, 40.118278 ], [ -75.018355, 40.118305 ], [ -75.018331, 40.118356 ], [ -75.018212, 40.118583 ], [ -75.018189, 40.118626 ], [ -75.018025, 40.118924 ], [ -75.01777, 40.119354 ], [ -75.017761, 40.119369 ], [ -75.017662, 40.119529 ], [ -75.017526, 40.119749 ], [ -75.017441, 40.11988 ], [ -75.017207, 40.120242 ], [ -75.017151, 40.120329 ], [ -75.017008, 40.120559 ], [ -75.016782, 40.120923 ], [ -75.016202, 40.121953 ], [ -75.015886, 40.122603 ], [ -75.015796, 40.122768 ], [ -75.015712, 40.122918 ], [ -75.015702, 40.122938 ], [ -75.015614, 40.123106 ], [ -75.01556, 40.123218 ], [ -75.015491, 40.123363 ], [ -75.015391, 40.123591 ], [ -75.01511, 40.124228 ], [ -75.015024, 40.124426 ], [ -75.01492, 40.124651 ], [ -75.014812, 40.124875 ], [ -75.014786, 40.124946 ], [ -75.01475, 40.125042 ], [ -75.014719, 40.125145 ], [ -75.014638, 40.12545 ], [ -75.014598, 40.125602 ], [ -75.014442, 40.126204 ], [ -75.014316, 40.126698 ], [ -75.014263, 40.126898 ], [ -75.014042, 40.127728 ], [ -75.013968, 40.128063 ], [ -75.013921, 40.12829 ], [ -75.013876, 40.128506 ], [ -75.013781, 40.128851 ], [ -75.01361, 40.129305 ], [ -75.013463, 40.129635 ], [ -75.013211, 40.13011 ], [ -75.013116, 40.130289 ], [ -75.013001, 40.130498 ], [ -75.012558, 40.131217 ], [ -75.012466, 40.131346 ], [ -75.012231, 40.131668 ], [ -75.012121, 40.131809 ], [ -75.012008, 40.131944 ], [ -75.011896, 40.132059 ], [ -75.011794, 40.13216 ], [ -75.011789, 40.132164 ], [ -75.011696, 40.132259 ], [ -75.011625, 40.132332 ], [ -75.011539, 40.132417 ], [ -75.011448, 40.132504 ], [ -75.011353, 40.132588 ], [ -75.011268, 40.132661 ], [ -75.010813, 40.13304 ], [ -75.010266, 40.133478 ], [ -75.00993, 40.133733 ], [ -75.00975, 40.13387 ], [ -75.009548, 40.134018 ], [ -75.009127, 40.134353 ], [ -75.009149, 40.134367 ], [ -75.009605, 40.134656 ], [ -75.009766, 40.134758 ], [ -75.00983, 40.134798 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307801", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030864, 40.094254 ], [ -75.030796, 40.094425 ], [ -75.030749, 40.09455 ], [ -75.030731, 40.094622 ], [ -75.030667, 40.094693 ], [ -75.030654, 40.094759 ], [ -75.03063, 40.094939 ], [ -75.030592, 40.095196 ], [ -75.030548, 40.095576 ], [ -75.030527, 40.095757 ], [ -75.030489, 40.096253 ], [ -75.030472, 40.096653 ], [ -75.030478, 40.096701 ], [ -75.030523, 40.096765 ], [ -75.030493, 40.097301 ], [ -75.030493, 40.097308 ], [ -75.03048, 40.097474 ], [ -75.030474, 40.097553 ], [ -75.030469, 40.097626 ], [ -75.030465, 40.097661 ], [ -75.030461, 40.097713 ], [ -75.030452, 40.097808 ], [ -75.030441, 40.097918 ], [ -75.030422, 40.098085 ], [ -75.030403, 40.098276 ], [ -75.030376, 40.098501 ], [ -75.030368, 40.098576 ], [ -75.030346, 40.098704 ], [ -75.030319, 40.098859 ], [ -75.030315, 40.098887 ], [ -75.030256, 40.09916 ], [ -75.030203, 40.099348 ], [ -75.030087, 40.099694 ], [ -75.029961, 40.100035 ], [ -75.029948, 40.100064 ], [ -75.029861, 40.100279 ], [ -75.029787, 40.100446 ], [ -75.029758, 40.1005 ], [ -75.029721, 40.100571 ], [ -75.029612, 40.10062 ], [ -75.029604, 40.10063 ], [ -75.029063, 40.10178 ], [ -75.029037, 40.101837 ], [ -75.028832, 40.102292 ], [ -75.028761, 40.102458 ], [ -75.028744, 40.102501 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.02628, 40.108247 ], [ -75.026271, 40.108266 ], [ -75.026267, 40.108288 ], [ -75.026264, 40.108341 ], [ -75.02617, 40.108479 ], [ -75.026077, 40.10863 ], [ -75.025605, 40.10932 ], [ -75.025311, 40.109748 ], [ -75.025166, 40.109961 ], [ -75.025033, 40.11015 ], [ -75.02474, 40.110571 ], [ -75.024546, 40.110854 ], [ -75.024318, 40.111187 ], [ -75.024075, 40.111533 ], [ -75.023951, 40.11171 ], [ -75.023834, 40.111878 ], [ -75.023828, 40.111886 ], [ -75.023409, 40.1125 ], [ -75.02331, 40.112645 ], [ -75.02319, 40.112823 ], [ -75.023066, 40.113005 ], [ -75.022754, 40.113382 ], [ -75.022672, 40.113418 ], [ -75.022665, 40.113423 ], [ -75.02259, 40.113541 ], [ -75.022567, 40.113574 ], [ -75.022412, 40.113797 ], [ -75.0224, 40.113815 ], [ -75.022299, 40.113969 ], [ -75.022302, 40.114034 ], [ -75.022115, 40.114281 ], [ -75.02202, 40.114404 ], [ -75.021914, 40.114526 ], [ -75.021819, 40.11463 ], [ -75.021727, 40.114733 ], [ -75.021628, 40.114838 ], [ -75.021074, 40.115413 ], [ -75.020516, 40.115994 ], [ -75.020143, 40.116385 ], [ -75.019865, 40.116676 ], [ -75.019821, 40.116717 ], [ -75.019781, 40.116752 ], [ -75.019522, 40.117029 ], [ -75.019269, 40.117298 ], [ -75.018549, 40.11803 ], [ -75.018509, 40.118071 ], [ -75.018468, 40.118126 ], [ -75.01843, 40.118173 ], [ -75.018391, 40.118235 ], [ -75.018369, 40.118278 ], [ -75.018355, 40.118305 ], [ -75.018331, 40.118356 ], [ -75.018212, 40.118583 ], [ -75.018189, 40.118626 ], [ -75.018025, 40.118924 ], [ -75.01777, 40.119354 ], [ -75.017761, 40.119369 ], [ -75.017662, 40.119529 ], [ -75.017526, 40.119749 ], [ -75.017441, 40.11988 ], [ -75.017207, 40.120242 ], [ -75.017151, 40.120329 ], [ -75.017008, 40.120559 ], [ -75.016782, 40.120923 ], [ -75.016202, 40.121953 ], [ -75.015886, 40.122603 ], [ -75.015796, 40.122768 ], [ -75.015712, 40.122918 ], [ -75.015702, 40.122938 ], [ -75.015614, 40.123106 ], [ -75.01556, 40.123218 ], [ -75.015491, 40.123363 ], [ -75.015391, 40.123591 ], [ -75.01511, 40.124228 ], [ -75.015024, 40.124426 ], [ -75.01492, 40.124651 ], [ -75.014812, 40.124875 ], [ -75.014786, 40.124946 ], [ -75.01475, 40.125042 ], [ -75.014719, 40.125145 ], [ -75.014638, 40.12545 ], [ -75.014598, 40.125602 ], [ -75.014442, 40.126204 ], [ -75.014316, 40.126698 ], [ -75.014263, 40.126898 ], [ -75.014042, 40.127728 ], [ -75.013968, 40.128063 ], [ -75.013921, 40.12829 ], [ -75.013876, 40.128506 ], [ -75.013781, 40.128851 ], [ -75.01361, 40.129305 ], [ -75.013463, 40.129635 ], [ -75.013211, 40.13011 ], [ -75.013116, 40.130289 ], [ -75.013001, 40.130498 ], [ -75.012558, 40.131217 ], [ -75.012466, 40.131346 ], [ -75.012231, 40.131668 ], [ -75.012121, 40.131809 ], [ -75.012008, 40.131944 ], [ -75.011896, 40.132059 ], [ -75.011794, 40.13216 ], [ -75.011789, 40.132164 ], [ -75.011696, 40.132259 ], [ -75.011625, 40.132332 ], [ -75.011539, 40.132417 ], [ -75.011448, 40.132504 ], [ -75.011353, 40.132588 ], [ -75.011268, 40.132661 ], [ -75.010813, 40.13304 ], [ -75.010266, 40.133478 ], [ -75.00993, 40.133733 ], [ -75.00975, 40.13387 ], [ -75.009548, 40.134018 ], [ -75.009127, 40.134353 ], [ -75.009074, 40.134395 ], [ -75.008961, 40.134504 ], [ -75.008872, 40.1346 ], [ -75.008811, 40.134677 ], [ -75.008731, 40.13478 ], [ -75.008707, 40.134814 ], [ -75.008616, 40.134948 ], [ -75.008557, 40.13504 ], [ -75.00851, 40.135135 ], [ -75.00847, 40.135224 ], [ -75.008431, 40.135317 ], [ -75.008364, 40.13547 ], [ -75.007911, 40.136725 ], [ -75.007441, 40.138028 ], [ -75.007305, 40.138386 ], [ -75.006925, 40.139405 ], [ -75.006855, 40.13959 ], [ -75.006802, 40.139732 ], [ -75.006671, 40.140086 ], [ -75.006469, 40.14061 ], [ -75.006286, 40.14109 ], [ -75.00601, 40.141797 ], [ -75.005877, 40.142154 ], [ -75.005558, 40.14298 ], [ -75.0054, 40.143325 ], [ -75.005236, 40.143786 ], [ -75.005178, 40.143944 ], [ -75.005158, 40.144003 ], [ -75.005139, 40.144056 ], [ -75.005089, 40.144189 ], [ -75.005048, 40.144293 ], [ -75.004941, 40.144574 ], [ -75.004897, 40.144689 ], [ -75.004569, 40.145547 ], [ -75.004148, 40.146643 ], [ -75.003804, 40.147525 ], [ -75.003661, 40.147904 ], [ -75.003463, 40.148435 ], [ -75.003118, 40.149333 ], [ -75.003017, 40.149588 ], [ -75.002952, 40.14975 ], [ -75.002789, 40.150168 ], [ -75.002687, 40.150417 ], [ -75.002568, 40.150689 ], [ -75.002535, 40.150773 ], [ -75.002403, 40.15112 ], [ -75.002293, 40.151376 ], [ -75.002168, 40.151702 ], [ -75.002102, 40.151871 ], [ -75.002005, 40.152122 ], [ -75.00189, 40.152423 ], [ -75.001752, 40.152791 ], [ -75.001658, 40.153041 ], [ -75.001623, 40.153137 ], [ -75.001543, 40.153353 ], [ -75.001485, 40.153514 ], [ -75.001427, 40.153665 ], [ -75.001378, 40.153766 ], [ -75.001336, 40.153828 ], [ -75.001267, 40.153898 ], [ -75.001206, 40.153949 ], [ -75.001085, 40.154039 ], [ -75.000856, 40.15415 ], [ -75.000498, 40.154313 ], [ -75.000396, 40.15436 ], [ -75.000326, 40.154393 ], [ -75.000167, 40.154463 ], [ -74.999982, 40.154546 ], [ -74.999884, 40.154588 ], [ -74.999735, 40.154653 ], [ -74.99931, 40.15484 ], [ -74.99895, 40.155007 ], [ -74.998618, 40.155159 ], [ -74.998015, 40.155432 ], [ -74.997086, 40.155823 ], [ -74.99613, 40.156228 ], [ -74.995967, 40.156298 ], [ -74.99584, 40.156351 ], [ -74.995189, 40.156622 ], [ -74.994434, 40.15694 ], [ -74.993662, 40.157274 ], [ -74.993467, 40.15736 ], [ -74.993303, 40.157441 ], [ -74.992853, 40.157705 ], [ -74.992192, 40.158124 ], [ -74.991924, 40.158297 ], [ -74.991748, 40.158418 ], [ -74.991619, 40.158513 ], [ -74.991554, 40.158566 ], [ -74.991466, 40.158623 ], [ -74.990935, 40.159034 ], [ -74.990684, 40.15922 ], [ -74.989673, 40.15998 ], [ -74.989246, 40.159652 ], [ -74.988884, 40.159403 ], [ -74.9883, 40.15893 ], [ -74.987704, 40.158446 ], [ -74.986727, 40.157654 ], [ -74.986308, 40.1573 ], [ -74.985878, 40.15694 ], [ -74.985728, 40.156839 ], [ -74.985597, 40.156799 ], [ -74.985368, 40.156751 ], [ -74.985205, 40.15668 ], [ -74.984893, 40.156513 ], [ -74.984627, 40.156355 ], [ -74.984259, 40.156132 ], [ -74.983873, 40.155896 ], [ -74.982779, 40.155277 ], [ -74.982333, 40.155015 ], [ -74.98132, 40.154418 ], [ -74.980392, 40.153898 ], [ -74.97965, 40.153485 ], [ -74.979528, 40.153411 ], [ -74.977983, 40.152521 ], [ -74.97764, 40.152339 ], [ -74.976998, 40.151987 ], [ -74.976427, 40.151689 ], [ -74.975433, 40.151092 ], [ -74.975197, 40.151334 ], [ -74.974909, 40.151627 ], [ -74.974626, 40.151922 ], [ -74.974089, 40.152484 ], [ -74.9737, 40.152913 ], [ -74.973564, 40.153056 ], [ -74.973004, 40.153647 ], [ -74.972397, 40.154232 ], [ -74.971885, 40.154754 ], [ -74.971329, 40.155331 ], [ -74.970897, 40.155775 ], [ -74.970479, 40.155521 ], [ -74.970406, 40.155477 ], [ -74.96976, 40.155118 ], [ -74.96927, 40.154854 ], [ -74.968573, 40.154424 ], [ -74.967902, 40.154022 ], [ -74.96721, 40.153617 ], [ -74.96692, 40.153445 ], [ -74.966718, 40.153331 ], [ -74.966032, 40.152937 ], [ -74.965902, 40.152857 ], [ -74.965186, 40.152436 ], [ -74.965054, 40.152356 ], [ -74.964107, 40.15179 ], [ -74.963495, 40.151422 ], [ -74.963276, 40.151274 ], [ -74.963021, 40.151067 ], [ -74.962949, 40.151005 ], [ -74.962874, 40.150934 ], [ -74.962429, 40.150497 ], [ -74.962142, 40.150219 ], [ -74.962045, 40.150127 ], [ -74.961951, 40.15004 ], [ -74.961875, 40.149958 ], [ -74.961773, 40.149844 ], [ -74.961652, 40.149704 ], [ -74.961456, 40.149443 ], [ -74.961272, 40.149207 ], [ -74.961163, 40.149054 ], [ -74.960704, 40.148441 ], [ -74.960461, 40.148123 ], [ -74.960207, 40.1478 ], [ -74.959927, 40.147445 ], [ -74.959111, 40.146435 ], [ -74.958788, 40.146042 ], [ -74.9587, 40.145928 ], [ -74.95857, 40.145772 ], [ -74.958007, 40.14499 ], [ -74.95994, 40.144385 ], [ -74.960754, 40.14413 ], [ -74.961592, 40.143842 ], [ -74.962279, 40.143612 ], [ -74.962499, 40.143542 ], [ -74.962952, 40.143378 ], [ -74.963386, 40.143228 ], [ -74.963439, 40.143228 ], [ -74.963509, 40.143201 ], [ -74.96385, 40.143059 ], [ -74.963903, 40.143034 ], [ -74.963939, 40.142986 ], [ -74.963981, 40.142964 ], [ -74.96416, 40.142885 ], [ -74.964248, 40.142831 ], [ -74.964311, 40.142793 ], [ -74.964477, 40.142672 ], [ -74.96462, 40.142552 ], [ -74.964631, 40.142544 ], [ -74.964739, 40.142452 ], [ -74.965201, 40.142016 ], [ -74.965232, 40.141985 ], [ -74.965269, 40.141952 ], [ -74.964767, 40.141684 ], [ -74.964492, 40.141518 ], [ -74.964079, 40.141287 ], [ -74.96385, 40.141151 ], [ -74.9637, 40.141064 ], [ -74.963357, 40.140865 ], [ -74.962691, 40.140485 ], [ -74.962589, 40.140428 ], [ -74.962558, 40.140409 ], [ -74.962326, 40.140273 ], [ -74.961918, 40.140032 ], [ -74.961821, 40.139978 ], [ -74.961647, 40.139879 ], [ -74.961585, 40.139844 ], [ -74.961546, 40.139824 ], [ -74.961349, 40.139711 ], [ -74.961154, 40.139603 ], [ -74.960443, 40.139198 ], [ -74.960383, 40.139163 ], [ -74.960341, 40.139136 ], [ -74.9603, 40.139111 ], [ -74.960236, 40.139072 ], [ -74.959735, 40.138777 ], [ -74.959606, 40.138701 ], [ -74.959403, 40.138586 ], [ -74.959109, 40.138405 ], [ -74.958899, 40.138275 ], [ -74.958709, 40.138152 ], [ -74.958505, 40.138011 ], [ -74.958406, 40.137943 ], [ -74.95836, 40.137909 ], [ -74.958165, 40.137744 ], [ -74.958035, 40.137621 ], [ -74.957867, 40.137463 ], [ -74.957652, 40.137242 ], [ -74.95746, 40.137018 ], [ -74.957347, 40.136868 ], [ -74.957129, 40.136526 ], [ -74.957034, 40.136348 ], [ -74.956968, 40.136224 ], [ -74.956947, 40.136184 ], [ -74.956908, 40.136099 ], [ -74.956762, 40.13577 ], [ -74.956741, 40.135734 ], [ -74.956716, 40.135686 ], [ -74.956636, 40.135635 ], [ -74.95657, 40.135506 ], [ -74.956184, 40.135627 ], [ -74.956112, 40.135642 ], [ -74.955967, 40.135675 ], [ -74.955867, 40.135697 ], [ -74.955701, 40.135728 ], [ -74.955567, 40.135756 ], [ -74.955505, 40.135768 ], [ -74.955418, 40.135786 ], [ -74.955327, 40.135806 ], [ -74.955219, 40.135829 ], [ -74.954815, 40.135903 ], [ -74.954663, 40.135936 ], [ -74.954388, 40.135995 ], [ -74.954123, 40.136068 ], [ -74.954074, 40.136081 ], [ -74.953947, 40.13612 ], [ -74.953458, 40.136266 ], [ -74.952211, 40.136643 ], [ -74.952118, 40.13667 ], [ -74.952348, 40.137008 ], [ -74.952404, 40.137092 ], [ -74.952531, 40.137264 ], [ -74.952616, 40.137386 ], [ -74.9527, 40.137497 ], [ -74.953135, 40.138157 ], [ -74.953525, 40.138007 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307802", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030889, 40.094137 ], [ -75.030839, 40.094135 ], [ -75.030784, 40.094142 ], [ -75.030715, 40.094158 ], [ -75.030205, 40.094297 ], [ -75.029948, 40.094377 ], [ -75.027716, 40.095074 ], [ -75.025607, 40.095751 ], [ -75.025219, 40.09587 ], [ -75.02453, 40.096084 ], [ -75.02431, 40.096151 ], [ -75.022635, 40.096671 ], [ -75.022239, 40.096795 ], [ -75.021977, 40.09688 ], [ -75.021853, 40.096914 ], [ -75.021734, 40.09694 ], [ -75.021613, 40.096958 ], [ -75.021356, 40.096979 ], [ -75.020184, 40.097034 ], [ -75.019232, 40.097072 ], [ -75.018739, 40.097094 ], [ -75.018472, 40.097108 ], [ -75.018374, 40.097114 ], [ -75.018251, 40.097132 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.02628, 40.108247 ], [ -75.026271, 40.108266 ], [ -75.026267, 40.108288 ], [ -75.026264, 40.108341 ], [ -75.02617, 40.108479 ], [ -75.026077, 40.10863 ], [ -75.025605, 40.10932 ], [ -75.025311, 40.109748 ], [ -75.025166, 40.109961 ], [ -75.025033, 40.11015 ], [ -75.02474, 40.110571 ], [ -75.024546, 40.110854 ], [ -75.024318, 40.111187 ], [ -75.024075, 40.111533 ], [ -75.023951, 40.11171 ], [ -75.023834, 40.111878 ], [ -75.023828, 40.111886 ], [ -75.023409, 40.1125 ], [ -75.02331, 40.112645 ], [ -75.02319, 40.112823 ], [ -75.023066, 40.113005 ], [ -75.023765, 40.113421 ], [ -75.024701, 40.113965 ], [ -75.026354, 40.114923 ], [ -75.026822, 40.115189 ], [ -75.027054, 40.115319 ], [ -75.027215, 40.115397 ], [ -75.027424, 40.115485 ], [ -75.027628, 40.115556 ], [ -75.027791, 40.11561 ], [ -75.028084, 40.115691 ], [ -75.028195, 40.115719 ], [ -75.028573, 40.115809 ], [ -75.028931, 40.115899 ], [ -75.029091, 40.115936 ], [ -75.029191, 40.115957 ], [ -75.029337, 40.116006 ], [ -75.029502, 40.116068 ], [ -75.029611, 40.116107 ], [ -75.029716, 40.116153 ], [ -75.029857, 40.116216 ], [ -75.030003, 40.116288 ], [ -75.030312, 40.116465 ], [ -75.030469, 40.116568 ], [ -75.030641, 40.116679 ], [ -75.031115, 40.116955 ], [ -75.031289, 40.117067 ], [ -75.031872, 40.117438 ], [ -75.03204, 40.117545 ], [ -75.032663, 40.117931 ], [ -75.032843, 40.118041 ], [ -75.033553, 40.118486 ], [ -75.034262, 40.118922 ], [ -75.034483, 40.119054 ], [ -75.034945, 40.119339 ], [ -75.035147, 40.119461 ], [ -75.035349, 40.119586 ], [ -75.036164, 40.120052 ], [ -75.036267, 40.120115 ], [ -75.036326, 40.120152 ], [ -75.03638, 40.120207 ], [ -75.036407, 40.120247 ], [ -75.03644, 40.120298 ], [ -75.036461, 40.120351 ], [ -75.036497, 40.120447 ], [ -75.03645, 40.120462 ], [ -75.0364, 40.120478 ], [ -75.034894, 40.121021 ], [ -75.033749, 40.121423 ], [ -75.033366, 40.121564 ], [ -75.033276, 40.121596 ], [ -75.033091, 40.121663 ], [ -75.032899, 40.121733 ], [ -75.032774, 40.12178 ], [ -75.032628, 40.121835 ], [ -75.032502, 40.121877 ], [ -75.032277, 40.121939 ], [ -75.032221, 40.121952 ], [ -75.03207, 40.121987 ], [ -75.032046, 40.121992 ], [ -75.031798, 40.122036 ], [ -75.031651, 40.122057 ], [ -75.03145, 40.122081 ], [ -75.031224, 40.122095 ], [ -75.030998, 40.122096 ], [ -75.030851, 40.122091 ], [ -75.030705, 40.122083 ], [ -75.030582, 40.122068 ], [ -75.030442, 40.122051 ], [ -75.030307, 40.122032 ], [ -75.030185, 40.122011 ], [ -75.030074, 40.12199 ], [ -75.029964, 40.121964 ], [ -75.029849, 40.121936 ], [ -75.029758, 40.121911 ], [ -75.029653, 40.12188 ], [ -75.029536, 40.121841 ], [ -75.029451, 40.121811 ], [ -75.029354, 40.12177 ], [ -75.029254, 40.12173 ], [ -75.029151, 40.121683 ], [ -75.029018, 40.121618 ], [ -75.028922, 40.121566 ], [ -75.02877, 40.121485 ], [ -75.028557, 40.121365 ], [ -75.02781, 40.120959 ], [ -75.027408, 40.120732 ], [ -75.026382, 40.120193 ], [ -75.025489, 40.119723 ], [ -75.024855, 40.119392 ], [ -75.02481, 40.119319 ], [ -75.024627, 40.119205 ], [ -75.024217, 40.11899 ], [ -75.023806, 40.118759 ], [ -75.023007, 40.118342 ], [ -75.022122, 40.117866 ], [ -75.021388, 40.117469 ], [ -75.020952, 40.117236 ], [ -75.020474, 40.11699 ], [ -75.019865, 40.116676 ], [ -75.019821, 40.116717 ], [ -75.019781, 40.116752 ], [ -75.019522, 40.117029 ], [ -75.019269, 40.117298 ], [ -75.018549, 40.11803 ], [ -75.018509, 40.118071 ], [ -75.018468, 40.118126 ], [ -75.01843, 40.118173 ], [ -75.018391, 40.118235 ], [ -75.018369, 40.118278 ], [ -75.018355, 40.118305 ], [ -75.018331, 40.118356 ], [ -75.018212, 40.118583 ], [ -75.018189, 40.118626 ], [ -75.018025, 40.118924 ], [ -75.01777, 40.119354 ], [ -75.017761, 40.119369 ], [ -75.017662, 40.119529 ], [ -75.017526, 40.119749 ], [ -75.017441, 40.11988 ], [ -75.017207, 40.120242 ], [ -75.017151, 40.120329 ], [ -75.017008, 40.120559 ], [ -75.016782, 40.120923 ], [ -75.016202, 40.121953 ], [ -75.015886, 40.122603 ], [ -75.015796, 40.122768 ], [ -75.015712, 40.122918 ], [ -75.015702, 40.122938 ], [ -75.015614, 40.123106 ], [ -75.01556, 40.123218 ], [ -75.015491, 40.123363 ], [ -75.015391, 40.123591 ], [ -75.01511, 40.124228 ], [ -75.015024, 40.124426 ], [ -75.01492, 40.124651 ], [ -75.014812, 40.124875 ], [ -75.014786, 40.124946 ], [ -75.01475, 40.125042 ], [ -75.014719, 40.125145 ], [ -75.014638, 40.12545 ], [ -75.014598, 40.125602 ], [ -75.014442, 40.126204 ], [ -75.014316, 40.126698 ], [ -75.014263, 40.126898 ], [ -75.014042, 40.127728 ], [ -75.013968, 40.128063 ], [ -75.013921, 40.12829 ], [ -75.013876, 40.128506 ], [ -75.013781, 40.128851 ], [ -75.01361, 40.129305 ], [ -75.013463, 40.129635 ], [ -75.013211, 40.13011 ], [ -75.013116, 40.130289 ], [ -75.013001, 40.130498 ], [ -75.012558, 40.131217 ], [ -75.012466, 40.131346 ], [ -75.012231, 40.131668 ], [ -75.012121, 40.131809 ], [ -75.012008, 40.131944 ], [ -75.011896, 40.132059 ], [ -75.011794, 40.13216 ], [ -75.011789, 40.132164 ], [ -75.011696, 40.132259 ], [ -75.011625, 40.132332 ], [ -75.011539, 40.132417 ], [ -75.011448, 40.132504 ], [ -75.011353, 40.132588 ], [ -75.011268, 40.132661 ], [ -75.010813, 40.13304 ], [ -75.010266, 40.133478 ], [ -75.00993, 40.133733 ], [ -75.00975, 40.13387 ], [ -75.009548, 40.134018 ], [ -75.009127, 40.134353 ], [ -75.009074, 40.134395 ], [ -75.008961, 40.134504 ], [ -75.008872, 40.1346 ], [ -75.008811, 40.134677 ], [ -75.008731, 40.13478 ], [ -75.008707, 40.134814 ], [ -75.008616, 40.134948 ], [ -75.008557, 40.13504 ], [ -75.00851, 40.135135 ], [ -75.00847, 40.135224 ], [ -75.008431, 40.135317 ], [ -75.008364, 40.13547 ], [ -75.007911, 40.136725 ], [ -75.007441, 40.138028 ], [ -75.007305, 40.138386 ], [ -75.006925, 40.139405 ], [ -75.006855, 40.13959 ], [ -75.006802, 40.139732 ], [ -75.006671, 40.140086 ], [ -75.006469, 40.14061 ], [ -75.006286, 40.14109 ], [ -75.00601, 40.141797 ], [ -75.005877, 40.142154 ], [ -75.005558, 40.14298 ], [ -75.0054, 40.143325 ], [ -75.005236, 40.143786 ], [ -75.005178, 40.143944 ], [ -75.005158, 40.144003 ], [ -75.005139, 40.144056 ], [ -75.005089, 40.144189 ], [ -75.005048, 40.144293 ], [ -75.004941, 40.144574 ], [ -75.004897, 40.144689 ], [ -75.004569, 40.145547 ], [ -75.004148, 40.146643 ], [ -75.003804, 40.147525 ], [ -75.003661, 40.147904 ], [ -75.003463, 40.148435 ], [ -75.003118, 40.149333 ], [ -75.003017, 40.149588 ], [ -75.002952, 40.14975 ], [ -75.002789, 40.150168 ], [ -75.002687, 40.150417 ], [ -75.002568, 40.150689 ], [ -75.002535, 40.150773 ], [ -75.002403, 40.15112 ], [ -75.002293, 40.151376 ], [ -75.002168, 40.151702 ], [ -75.002102, 40.151871 ], [ -75.002005, 40.152122 ], [ -75.00189, 40.152423 ], [ -75.001752, 40.152791 ], [ -75.001658, 40.153041 ], [ -75.001623, 40.153137 ], [ -75.001543, 40.153353 ], [ -75.001485, 40.153514 ], [ -75.001427, 40.153665 ], [ -75.001378, 40.153766 ], [ -75.001336, 40.153828 ], [ -75.001267, 40.153898 ], [ -75.001206, 40.153949 ], [ -75.001085, 40.154039 ], [ -75.000856, 40.15415 ], [ -75.000498, 40.154313 ], [ -75.000396, 40.15436 ], [ -75.000326, 40.154393 ], [ -75.000167, 40.154463 ], [ -74.999982, 40.154546 ], [ -74.999884, 40.154588 ], [ -74.999735, 40.154653 ], [ -74.99931, 40.15484 ], [ -74.99895, 40.155007 ], [ -74.998618, 40.155159 ], [ -74.998015, 40.155432 ], [ -74.997086, 40.155823 ], [ -74.99613, 40.156228 ], [ -74.995967, 40.156298 ], [ -74.99584, 40.156351 ], [ -74.995189, 40.156622 ], [ -74.994434, 40.15694 ], [ -74.993662, 40.157274 ], [ -74.993467, 40.15736 ], [ -74.993303, 40.157441 ], [ -74.992853, 40.157705 ], [ -74.992192, 40.158124 ], [ -74.991924, 40.158297 ], [ -74.991748, 40.158418 ], [ -74.991619, 40.158513 ], [ -74.991554, 40.158566 ], [ -74.991466, 40.158623 ], [ -74.990935, 40.159034 ], [ -74.990684, 40.15922 ], [ -74.989673, 40.15998 ], [ -74.989246, 40.159652 ], [ -74.988884, 40.159403 ], [ -74.9883, 40.15893 ], [ -74.987704, 40.158446 ], [ -74.986727, 40.157654 ], [ -74.986308, 40.1573 ], [ -74.985878, 40.15694 ], [ -74.985728, 40.156839 ], [ -74.985597, 40.156799 ], [ -74.985368, 40.156751 ], [ -74.985205, 40.15668 ], [ -74.984893, 40.156513 ], [ -74.984627, 40.156355 ], [ -74.984259, 40.156132 ], [ -74.983873, 40.155896 ], [ -74.982779, 40.155277 ], [ -74.982333, 40.155015 ], [ -74.98132, 40.154418 ], [ -74.980392, 40.153898 ], [ -74.97965, 40.153485 ], [ -74.979528, 40.153411 ], [ -74.977983, 40.152521 ], [ -74.97764, 40.152339 ], [ -74.976998, 40.151987 ], [ -74.976427, 40.151689 ], [ -74.975433, 40.151092 ], [ -74.975197, 40.151334 ], [ -74.974909, 40.151627 ], [ -74.974626, 40.151922 ], [ -74.974089, 40.152484 ], [ -74.9737, 40.152913 ], [ -74.973564, 40.153056 ], [ -74.973004, 40.153647 ], [ -74.972397, 40.154232 ], [ -74.971885, 40.154754 ], [ -74.971329, 40.155331 ], [ -74.970897, 40.155775 ], [ -74.970479, 40.155521 ], [ -74.970406, 40.155477 ], [ -74.96976, 40.155118 ], [ -74.96927, 40.154854 ], [ -74.968573, 40.154424 ], [ -74.967902, 40.154022 ], [ -74.96721, 40.153617 ], [ -74.96692, 40.153445 ], [ -74.966718, 40.153331 ], [ -74.966032, 40.152937 ], [ -74.965902, 40.152857 ], [ -74.965186, 40.152436 ], [ -74.965054, 40.152356 ], [ -74.964107, 40.15179 ], [ -74.963495, 40.151422 ], [ -74.963276, 40.151274 ], [ -74.963021, 40.151067 ], [ -74.962949, 40.151005 ], [ -74.962874, 40.150934 ], [ -74.962429, 40.150497 ], [ -74.962142, 40.150219 ], [ -74.962045, 40.150127 ], [ -74.961951, 40.15004 ], [ -74.961875, 40.149958 ], [ -74.961773, 40.149844 ], [ -74.961652, 40.149704 ], [ -74.961456, 40.149443 ], [ -74.961272, 40.149207 ], [ -74.961163, 40.149054 ], [ -74.960704, 40.148441 ], [ -74.960461, 40.148123 ], [ -74.960207, 40.1478 ], [ -74.959927, 40.147445 ], [ -74.959111, 40.146435 ], [ -74.958788, 40.146042 ], [ -74.9587, 40.145928 ], [ -74.95857, 40.145772 ], [ -74.958007, 40.14499 ], [ -74.95994, 40.144385 ], [ -74.960754, 40.14413 ], [ -74.961592, 40.143842 ], [ -74.962279, 40.143612 ], [ -74.962499, 40.143542 ], [ -74.962952, 40.143378 ], [ -74.963386, 40.143228 ], [ -74.963439, 40.143228 ], [ -74.963509, 40.143201 ], [ -74.96385, 40.143059 ], [ -74.963903, 40.143034 ], [ -74.963939, 40.142986 ], [ -74.963981, 40.142964 ], [ -74.96416, 40.142885 ], [ -74.964248, 40.142831 ], [ -74.964311, 40.142793 ], [ -74.964477, 40.142672 ], [ -74.96462, 40.142552 ], [ -74.964631, 40.142544 ], [ -74.964739, 40.142452 ], [ -74.965201, 40.142016 ], [ -74.965232, 40.141985 ], [ -74.965269, 40.141952 ], [ -74.964767, 40.141684 ], [ -74.964492, 40.141518 ], [ -74.964079, 40.141287 ], [ -74.96385, 40.141151 ], [ -74.9637, 40.141064 ], [ -74.963357, 40.140865 ], [ -74.962691, 40.140485 ], [ -74.962589, 40.140428 ], [ -74.962558, 40.140409 ], [ -74.962326, 40.140273 ], [ -74.961918, 40.140032 ], [ -74.961821, 40.139978 ], [ -74.961647, 40.139879 ], [ -74.961585, 40.139844 ], [ -74.961546, 40.139824 ], [ -74.961349, 40.139711 ], [ -74.961154, 40.139603 ], [ -74.960443, 40.139198 ], [ -74.960383, 40.139163 ], [ -74.960341, 40.139136 ], [ -74.9603, 40.139111 ], [ -74.960236, 40.139072 ], [ -74.959735, 40.138777 ], [ -74.959606, 40.138701 ], [ -74.959403, 40.138586 ], [ -74.959109, 40.138405 ], [ -74.958899, 40.138275 ], [ -74.958709, 40.138152 ], [ -74.958505, 40.138011 ], [ -74.958406, 40.137943 ], [ -74.95836, 40.137909 ], [ -74.958165, 40.137744 ], [ -74.958035, 40.137621 ], [ -74.957867, 40.137463 ], [ -74.957652, 40.137242 ], [ -74.95746, 40.137018 ], [ -74.957347, 40.136868 ], [ -74.957129, 40.136526 ], [ -74.957034, 40.136348 ], [ -74.956968, 40.136224 ], [ -74.956947, 40.136184 ], [ -74.956908, 40.136099 ], [ -74.956762, 40.13577 ], [ -74.956741, 40.135734 ], [ -74.956716, 40.135686 ], [ -74.956636, 40.135635 ], [ -74.95657, 40.135506 ], [ -74.956184, 40.135627 ], [ -74.956112, 40.135642 ], [ -74.955967, 40.135675 ], [ -74.955867, 40.135697 ], [ -74.955701, 40.135728 ], [ -74.955567, 40.135756 ], [ -74.955505, 40.135768 ], [ -74.955418, 40.135786 ], [ -74.955327, 40.135806 ], [ -74.955219, 40.135829 ], [ -74.954815, 40.135903 ], [ -74.954663, 40.135936 ], [ -74.954388, 40.135995 ], [ -74.954123, 40.136068 ], [ -74.954074, 40.136081 ], [ -74.953947, 40.13612 ], [ -74.953458, 40.136266 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307804", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077787, 40.022842 ], [ -75.078051, 40.022635 ], [ -75.078164, 40.022597 ], [ -75.078265, 40.022621 ], [ -75.078357, 40.022683 ], [ -75.078372, 40.022763 ], [ -75.078348, 40.022856 ], [ -75.077839, 40.023358 ], [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.074474, 40.028289 ], [ -75.074407, 40.028368 ], [ -75.074343, 40.028455 ], [ -75.074293, 40.028545 ], [ -75.074281, 40.028572 ], [ -75.073748, 40.029795 ], [ -75.073487, 40.030362 ], [ -75.073044, 40.03132 ], [ -75.072713, 40.03194 ], [ -75.072284, 40.032728 ], [ -75.072266, 40.032768 ], [ -75.072246, 40.032803 ], [ -75.071844, 40.033508 ], [ -75.071444, 40.034214 ], [ -75.071322, 40.034419 ], [ -75.071212, 40.034606 ], [ -75.071159, 40.034692 ], [ -75.07112, 40.034756 ], [ -75.071002, 40.034948 ], [ -75.070894, 40.035134 ], [ -75.0708, 40.035289 ], [ -75.070771, 40.035345 ], [ -75.07072, 40.035418 ], [ -75.070664, 40.035475 ], [ -75.070525, 40.035602 ], [ -75.070214, 40.035906 ], [ -75.069283, 40.036815 ], [ -75.068725, 40.037355 ], [ -75.068587, 40.037493 ], [ -75.068451, 40.037621 ], [ -75.068333, 40.037729 ], [ -75.068255, 40.0378 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065276, 40.04074 ], [ -75.064954, 40.041056 ], [ -75.064662, 40.041351 ], [ -75.064345, 40.04166 ], [ -75.064043, 40.041968 ], [ -75.063773, 40.042231 ], [ -75.063479, 40.04253 ], [ -75.063171, 40.042848 ], [ -75.062955, 40.043061 ], [ -75.062826, 40.043189 ], [ -75.062535, 40.04349 ], [ -75.062234, 40.043797 ], [ -75.062126, 40.043907 ], [ -75.061926, 40.044111 ], [ -75.061591, 40.044443 ], [ -75.061296, 40.044733 ], [ -75.061066, 40.044964 ], [ -75.060992, 40.045038 ], [ -75.060831, 40.045201 ], [ -75.060758, 40.04528 ], [ -75.060727, 40.045324 ], [ -75.060707, 40.045356 ], [ -75.060683, 40.045412 ], [ -75.060654, 40.0455 ], [ -75.060564, 40.045761 ], [ -75.060302, 40.046524 ], [ -75.060167, 40.046901 ], [ -75.060133, 40.046994 ], [ -75.060055, 40.047236 ], [ -75.060022, 40.047339 ], [ -75.059925, 40.047605 ], [ -75.059894, 40.047675 ], [ -75.059859, 40.047737 ], [ -75.059806, 40.04781 ], [ -75.059741, 40.047889 ], [ -75.05968, 40.047962 ], [ -75.059605, 40.04805 ], [ -75.058936, 40.048832 ], [ -75.058712, 40.049104 ], [ -75.058526, 40.049317 ], [ -75.05823, 40.049656 ], [ -75.058049, 40.049873 ], [ -75.057836, 40.050117 ], [ -75.05778, 40.050181 ], [ -75.057594, 40.050397 ], [ -75.057375, 40.050654 ], [ -75.057133, 40.050944 ], [ -75.056843, 40.051283 ], [ -75.056573, 40.0516 ], [ -75.056297, 40.051921 ], [ -75.056028, 40.052233 ], [ -75.055746, 40.052572 ], [ -75.055492, 40.052862 ], [ -75.055238, 40.053163 ], [ -75.054953, 40.053501 ], [ -75.054684, 40.053813 ], [ -75.054429, 40.054113 ], [ -75.054313, 40.054249 ], [ -75.05424, 40.054342 ], [ -75.054187, 40.05444 ], [ -75.054139, 40.054545 ], [ -75.054103, 40.054632 ], [ -75.054088, 40.054669 ], [ -75.053981, 40.054955 ], [ -75.053823, 40.055334 ], [ -75.053517, 40.056082 ], [ -75.053361, 40.056467 ], [ -75.053196, 40.056874 ], [ -75.053009, 40.057327 ], [ -75.052883, 40.057632 ], [ -75.052728, 40.058015 ], [ -75.052555, 40.058415 ], [ -75.05237, 40.058771 ], [ -75.052181, 40.059166 ], [ -75.052116, 40.059304 ], [ -75.052073, 40.059408 ], [ -75.052033, 40.059543 ], [ -75.052004, 40.059695 ], [ -75.051982, 40.059908 ], [ -75.05196, 40.060126 ], [ -75.051926, 40.060413 ], [ -75.051893, 40.060809 ], [ -75.051852, 40.061296 ], [ -75.051809, 40.06176 ], [ -75.051724, 40.062638 ], [ -75.051679, 40.063103 ], [ -75.051634, 40.063539 ], [ -75.051623, 40.063673 ], [ -75.051602, 40.063916 ], [ -75.05156, 40.064392 ], [ -75.051533, 40.064679 ], [ -75.0515, 40.064917 ], [ -75.051479, 40.065107 ], [ -75.051449, 40.065321 ], [ -75.051437, 40.065388 ], [ -75.051386, 40.065667 ], [ -75.051278, 40.066191 ], [ -75.051186, 40.066629 ], [ -75.051169, 40.066725 ], [ -75.051093, 40.06681 ], [ -75.05108, 40.066903 ], [ -75.051059, 40.067035 ], [ -75.051036, 40.067216 ], [ -75.050953, 40.067848 ], [ -75.050907, 40.068231 ], [ -75.050866, 40.068539 ], [ -75.050849, 40.068647 ], [ -75.050831, 40.068771 ], [ -75.050798, 40.068932 ], [ -75.050788, 40.068971 ], [ -75.050759, 40.069091 ], [ -75.050702, 40.069255 ], [ -75.050635, 40.069404 ], [ -75.050591, 40.069492 ], [ -75.050514, 40.069618 ], [ -75.050478, 40.069679 ], [ -75.050441, 40.069739 ], [ -75.050375, 40.069838 ], [ -75.050212, 40.070038 ], [ -75.050032, 40.070237 ], [ -75.049729, 40.070568 ], [ -75.049673, 40.070628 ], [ -75.049416, 40.070907 ], [ -75.049332, 40.070989 ], [ -75.049229, 40.071101 ], [ -75.048659, 40.071695 ], [ -75.048363, 40.072037 ], [ -75.048121, 40.072316 ], [ -75.04788, 40.072607 ], [ -75.047567, 40.072986 ], [ -75.047287, 40.073319 ], [ -75.047043, 40.073611 ], [ -75.046748, 40.073961 ], [ -75.046467, 40.074296 ], [ -75.046258, 40.074553 ], [ -75.046024, 40.074841 ], [ -75.045949, 40.074942 ], [ -75.045868, 40.075047 ], [ -75.04571, 40.075211 ], [ -75.045346, 40.075627 ], [ -75.044502, 40.076591 ], [ -75.044171, 40.077022 ], [ -75.044066, 40.077168 ], [ -75.043919, 40.07739 ], [ -75.043911, 40.077498 ], [ -75.043869, 40.077549 ], [ -75.043726, 40.077484 ], [ -75.043426, 40.077304 ], [ -75.043307, 40.077245 ], [ -75.04319, 40.077185 ], [ -75.043115, 40.077135 ], [ -75.042839, 40.077417 ], [ -75.041788, 40.078474 ], [ -75.041209, 40.079039 ], [ -75.04025, 40.080005 ], [ -75.039037, 40.081223 ], [ -75.038797, 40.081463 ], [ -75.038158, 40.082113 ], [ -75.037868, 40.082407 ], [ -75.037806, 40.082462 ], [ -75.037747, 40.082502 ], [ -75.037868, 40.082904 ], [ -75.038057, 40.083566 ], [ -75.038179, 40.08399 ], [ -75.038245, 40.084218 ], [ -75.03827, 40.084288 ], [ -75.038339, 40.084416 ], [ -75.038204, 40.084537 ], [ -75.038118, 40.084572 ], [ -75.037897, 40.084801 ], [ -75.037821, 40.08488 ], [ -75.037787, 40.084909 ], [ -75.037729, 40.08498 ], [ -75.037573, 40.085168 ], [ -75.037331, 40.085449 ], [ -75.037283, 40.085491 ], [ -75.037053, 40.085718 ], [ -75.036992, 40.085776 ], [ -75.036729, 40.086036 ], [ -75.036459, 40.086307 ], [ -75.036446, 40.086363 ], [ -75.036232, 40.086557 ], [ -75.036148, 40.086627 ], [ -75.036016, 40.086753 ], [ -75.035764, 40.087016 ], [ -75.03544, 40.087364 ], [ -75.035031, 40.087798 ], [ -75.0349, 40.087936 ], [ -75.034606, 40.088252 ], [ -75.034296, 40.088579 ], [ -75.034275, 40.088601 ], [ -75.034157, 40.088732 ], [ -75.034054, 40.088847 ], [ -75.033958, 40.088965 ], [ -75.033875, 40.089065 ], [ -75.033797, 40.089169 ], [ -75.033787, 40.089183 ], [ -75.033715, 40.089279 ], [ -75.033677, 40.089332 ], [ -75.033605, 40.089438 ], [ -75.033493, 40.08961 ], [ -75.033358, 40.089856 ], [ -75.033328, 40.089906 ], [ -75.033248, 40.090044 ], [ -75.033091, 40.090317 ], [ -75.032974, 40.090518 ], [ -75.032886, 40.09067 ], [ -75.03268, 40.091027 ], [ -75.032415, 40.091496 ], [ -75.03234, 40.09163 ], [ -75.032163, 40.091944 ], [ -75.031578, 40.092958 ], [ -75.03155, 40.093008 ], [ -75.031494, 40.093111 ], [ -75.03129, 40.093492 ], [ -75.031131, 40.093751 ], [ -75.031078, 40.093852 ], [ -75.031022, 40.093956 ], [ -75.030959, 40.094069 ], [ -75.030919, 40.094142 ], [ -75.030864, 40.094254 ], [ -75.030796, 40.094425 ], [ -75.030749, 40.09455 ], [ -75.030731, 40.094622 ], [ -75.030667, 40.094693 ], [ -75.030654, 40.094759 ], [ -75.03063, 40.094939 ], [ -75.030592, 40.095196 ], [ -75.030548, 40.095576 ], [ -75.030527, 40.095757 ], [ -75.030489, 40.096253 ], [ -75.030472, 40.096653 ], [ -75.030478, 40.096701 ], [ -75.030523, 40.096765 ], [ -75.030493, 40.097301 ], [ -75.030493, 40.097308 ], [ -75.03048, 40.097474 ], [ -75.030474, 40.097553 ], [ -75.030469, 40.097626 ], [ -75.030465, 40.097661 ], [ -75.030461, 40.097713 ], [ -75.030452, 40.097808 ], [ -75.030441, 40.097918 ], [ -75.030422, 40.098085 ], [ -75.030403, 40.098276 ], [ -75.030376, 40.098501 ], [ -75.030368, 40.098576 ], [ -75.030346, 40.098704 ], [ -75.030319, 40.098859 ], [ -75.030315, 40.098887 ], [ -75.030256, 40.09916 ], [ -75.030203, 40.099348 ], [ -75.030087, 40.099694 ], [ -75.029961, 40.100035 ], [ -75.029948, 40.100064 ], [ -75.029861, 40.100279 ], [ -75.029787, 40.100446 ], [ -75.029758, 40.1005 ], [ -75.029721, 40.100571 ], [ -75.029612, 40.10062 ], [ -75.029604, 40.10063 ], [ -75.029063, 40.10178 ], [ -75.029037, 40.101837 ], [ -75.028832, 40.102292 ], [ -75.028761, 40.102458 ], [ -75.028744, 40.102501 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.02628, 40.108247 ], [ -75.026271, 40.108266 ], [ -75.026267, 40.108288 ], [ -75.026264, 40.108341 ], [ -75.02617, 40.108479 ], [ -75.026077, 40.10863 ], [ -75.025605, 40.10932 ], [ -75.025311, 40.109748 ], [ -75.025166, 40.109961 ], [ -75.025033, 40.11015 ], [ -75.02474, 40.110571 ], [ -75.024546, 40.110854 ], [ -75.024318, 40.111187 ], [ -75.024075, 40.111533 ], [ -75.023951, 40.11171 ], [ -75.023834, 40.111878 ], [ -75.023828, 40.111886 ], [ -75.023409, 40.1125 ], [ -75.02331, 40.112645 ], [ -75.02319, 40.112823 ], [ -75.023066, 40.113005 ], [ -75.022754, 40.113382 ], [ -75.022672, 40.113418 ], [ -75.022665, 40.113423 ], [ -75.02259, 40.113541 ], [ -75.022567, 40.113574 ], [ -75.022412, 40.113797 ], [ -75.0224, 40.113815 ], [ -75.022299, 40.113969 ], [ -75.022302, 40.114034 ], [ -75.022115, 40.114281 ], [ -75.02202, 40.114404 ], [ -75.021914, 40.114526 ], [ -75.021819, 40.11463 ], [ -75.021727, 40.114733 ], [ -75.021628, 40.114838 ], [ -75.021074, 40.115413 ], [ -75.020516, 40.115994 ], [ -75.020143, 40.116385 ], [ -75.019865, 40.116676 ], [ -75.019821, 40.116717 ], [ -75.019781, 40.116752 ], [ -75.019522, 40.117029 ], [ -75.019269, 40.117298 ], [ -75.018549, 40.11803 ], [ -75.018509, 40.118071 ], [ -75.018468, 40.118126 ], [ -75.01843, 40.118173 ], [ -75.018391, 40.118235 ], [ -75.018369, 40.118278 ], [ -75.018355, 40.118305 ], [ -75.018331, 40.118356 ], [ -75.018212, 40.118583 ], [ -75.018189, 40.118626 ], [ -75.018025, 40.118924 ], [ -75.01777, 40.119354 ], [ -75.017761, 40.119369 ], [ -75.017662, 40.119529 ], [ -75.017526, 40.119749 ], [ -75.017441, 40.11988 ], [ -75.017207, 40.120242 ], [ -75.017151, 40.120329 ], [ -75.017008, 40.120559 ], [ -75.016782, 40.120923 ], [ -75.016202, 40.121953 ], [ -75.015886, 40.122603 ], [ -75.015796, 40.122768 ], [ -75.015712, 40.122918 ], [ -75.015702, 40.122938 ], [ -75.015614, 40.123106 ], [ -75.01556, 40.123218 ], [ -75.015491, 40.123363 ], [ -75.015391, 40.123591 ], [ -75.01511, 40.124228 ], [ -75.015024, 40.124426 ], [ -75.01492, 40.124651 ], [ -75.014812, 40.124875 ], [ -75.014786, 40.124946 ], [ -75.01475, 40.125042 ], [ -75.014719, 40.125145 ], [ -75.014638, 40.12545 ], [ -75.014598, 40.125602 ], [ -75.014442, 40.126204 ], [ -75.014316, 40.126698 ], [ -75.014263, 40.126898 ], [ -75.014042, 40.127728 ], [ -75.013968, 40.128063 ], [ -75.013921, 40.12829 ], [ -75.013876, 40.128506 ], [ -75.013781, 40.128851 ], [ -75.01361, 40.129305 ], [ -75.013463, 40.129635 ], [ -75.013211, 40.13011 ], [ -75.013116, 40.130289 ], [ -75.013001, 40.130498 ], [ -75.012558, 40.131217 ], [ -75.012466, 40.131346 ], [ -75.012231, 40.131668 ], [ -75.012121, 40.131809 ], [ -75.012008, 40.131944 ], [ -75.011896, 40.132059 ], [ -75.011794, 40.13216 ], [ -75.011789, 40.132164 ], [ -75.011696, 40.132259 ], [ -75.011625, 40.132332 ], [ -75.011539, 40.132417 ], [ -75.011448, 40.132504 ], [ -75.011353, 40.132588 ], [ -75.011268, 40.132661 ], [ -75.010813, 40.13304 ], [ -75.010266, 40.133478 ], [ -75.00993, 40.133733 ], [ -75.00975, 40.13387 ], [ -75.009548, 40.134018 ], [ -75.009127, 40.134353 ], [ -75.009074, 40.134395 ], [ -75.008961, 40.134504 ], [ -75.008872, 40.1346 ], [ -75.008811, 40.134677 ], [ -75.008731, 40.13478 ], [ -75.008707, 40.134814 ], [ -75.008616, 40.134948 ], [ -75.008557, 40.13504 ], [ -75.00851, 40.135135 ], [ -75.00847, 40.135224 ], [ -75.008431, 40.135317 ], [ -75.008364, 40.13547 ], [ -75.007911, 40.136725 ], [ -75.007441, 40.138028 ], [ -75.007305, 40.138386 ], [ -75.006925, 40.139405 ], [ -75.006855, 40.13959 ], [ -75.006802, 40.139732 ], [ -75.006671, 40.140086 ], [ -75.006469, 40.14061 ], [ -75.006286, 40.14109 ], [ -75.00601, 40.141797 ], [ -75.005877, 40.142154 ], [ -75.005558, 40.14298 ], [ -75.0054, 40.143325 ], [ -75.005236, 40.143786 ], [ -75.005178, 40.143944 ], [ -75.005158, 40.144003 ], [ -75.005139, 40.144056 ], [ -75.005089, 40.144189 ], [ -75.005048, 40.144293 ], [ -75.004941, 40.144574 ], [ -75.004897, 40.144689 ], [ -75.004569, 40.145547 ], [ -75.004148, 40.146643 ], [ -75.003804, 40.147525 ], [ -75.003661, 40.147904 ], [ -75.003463, 40.148435 ], [ -75.003118, 40.149333 ], [ -75.003017, 40.149588 ], [ -75.002952, 40.14975 ], [ -75.002789, 40.150168 ], [ -75.002687, 40.150417 ], [ -75.002568, 40.150689 ], [ -75.002535, 40.150773 ], [ -75.002403, 40.15112 ], [ -75.002293, 40.151376 ], [ -75.002168, 40.151702 ], [ -75.002102, 40.151871 ], [ -75.002005, 40.152122 ], [ -75.00189, 40.152423 ], [ -75.001752, 40.152791 ], [ -75.001658, 40.153041 ], [ -75.001623, 40.153137 ], [ -75.001543, 40.153353 ], [ -75.001485, 40.153514 ], [ -75.001427, 40.153665 ], [ -75.001378, 40.153766 ], [ -75.001336, 40.153828 ], [ -75.001267, 40.153898 ], [ -75.001206, 40.153949 ], [ -75.001085, 40.154039 ], [ -75.000856, 40.15415 ], [ -75.000498, 40.154313 ], [ -75.000396, 40.15436 ], [ -75.000326, 40.154393 ], [ -75.000167, 40.154463 ], [ -74.999982, 40.154546 ], [ -74.999884, 40.154588 ], [ -74.999735, 40.154653 ], [ -74.99931, 40.15484 ], [ -74.99895, 40.155007 ], [ -74.998618, 40.155159 ], [ -74.998015, 40.155432 ], [ -74.997086, 40.155823 ], [ -74.99613, 40.156228 ], [ -74.995967, 40.156298 ], [ -74.99584, 40.156351 ], [ -74.995189, 40.156622 ], [ -74.994434, 40.15694 ], [ -74.993662, 40.157274 ], [ -74.993467, 40.15736 ], [ -74.993303, 40.157441 ], [ -74.992853, 40.157705 ], [ -74.992192, 40.158124 ], [ -74.991924, 40.158297 ], [ -74.991748, 40.158418 ], [ -74.991619, 40.158513 ], [ -74.991554, 40.158566 ], [ -74.991466, 40.158623 ], [ -74.990935, 40.159034 ], [ -74.990684, 40.15922 ], [ -74.989673, 40.15998 ], [ -74.989246, 40.159652 ], [ -74.988884, 40.159403 ], [ -74.9883, 40.15893 ], [ -74.987704, 40.158446 ], [ -74.986727, 40.157654 ], [ -74.986308, 40.1573 ], [ -74.985878, 40.15694 ], [ -74.985728, 40.156839 ], [ -74.985597, 40.156799 ], [ -74.985368, 40.156751 ], [ -74.985205, 40.15668 ], [ -74.984893, 40.156513 ], [ -74.984627, 40.156355 ], [ -74.984259, 40.156132 ], [ -74.983873, 40.155896 ], [ -74.982779, 40.155277 ], [ -74.982333, 40.155015 ], [ -74.98132, 40.154418 ], [ -74.980392, 40.153898 ], [ -74.97965, 40.153485 ], [ -74.979528, 40.153411 ], [ -74.977983, 40.152521 ], [ -74.97764, 40.152339 ], [ -74.976998, 40.151987 ], [ -74.976427, 40.151689 ], [ -74.975433, 40.151092 ], [ -74.975197, 40.151334 ], [ -74.974909, 40.151627 ], [ -74.974626, 40.151922 ], [ -74.974089, 40.152484 ], [ -74.9737, 40.152913 ], [ -74.973564, 40.153056 ], [ -74.973004, 40.153647 ], [ -74.972397, 40.154232 ], [ -74.971885, 40.154754 ], [ -74.971329, 40.155331 ], [ -74.970897, 40.155775 ], [ -74.970479, 40.155521 ], [ -74.970406, 40.155477 ], [ -74.96976, 40.155118 ], [ -74.96927, 40.154854 ], [ -74.968573, 40.154424 ], [ -74.967902, 40.154022 ], [ -74.96721, 40.153617 ], [ -74.96692, 40.153445 ], [ -74.966718, 40.153331 ], [ -74.966032, 40.152937 ], [ -74.965902, 40.152857 ], [ -74.965186, 40.152436 ], [ -74.965054, 40.152356 ], [ -74.964107, 40.15179 ], [ -74.963495, 40.151422 ], [ -74.963276, 40.151274 ], [ -74.963021, 40.151067 ], [ -74.962949, 40.151005 ], [ -74.962874, 40.150934 ], [ -74.962429, 40.150497 ], [ -74.962142, 40.150219 ], [ -74.962045, 40.150127 ], [ -74.961951, 40.15004 ], [ -74.961875, 40.149958 ], [ -74.961773, 40.149844 ], [ -74.961652, 40.149704 ], [ -74.961456, 40.149443 ], [ -74.961272, 40.149207 ], [ -74.961163, 40.149054 ], [ -74.960704, 40.148441 ], [ -74.960461, 40.148123 ], [ -74.960207, 40.1478 ], [ -74.959927, 40.147445 ], [ -74.959111, 40.146435 ], [ -74.958788, 40.146042 ], [ -74.9587, 40.145928 ], [ -74.95857, 40.145772 ], [ -74.958007, 40.14499 ], [ -74.95994, 40.144385 ], [ -74.960754, 40.14413 ], [ -74.961592, 40.143842 ], [ -74.962279, 40.143612 ], [ -74.962499, 40.143542 ], [ -74.962952, 40.143378 ], [ -74.963386, 40.143228 ], [ -74.963439, 40.143228 ], [ -74.963509, 40.143201 ], [ -74.96385, 40.143059 ], [ -74.963903, 40.143034 ], [ -74.963939, 40.142986 ], [ -74.963981, 40.142964 ], [ -74.96416, 40.142885 ], [ -74.964248, 40.142831 ], [ -74.964311, 40.142793 ], [ -74.964477, 40.142672 ], [ -74.96462, 40.142552 ], [ -74.964631, 40.142544 ], [ -74.964739, 40.142452 ], [ -74.965201, 40.142016 ], [ -74.965232, 40.141985 ], [ -74.965269, 40.141952 ], [ -74.964767, 40.141684 ], [ -74.964492, 40.141518 ], [ -74.964079, 40.141287 ], [ -74.96385, 40.141151 ], [ -74.9637, 40.141064 ], [ -74.963357, 40.140865 ], [ -74.962691, 40.140485 ], [ -74.962589, 40.140428 ], [ -74.962558, 40.140409 ], [ -74.962326, 40.140273 ], [ -74.961918, 40.140032 ], [ -74.961821, 40.139978 ], [ -74.961647, 40.139879 ], [ -74.961585, 40.139844 ], [ -74.961546, 40.139824 ], [ -74.961349, 40.139711 ], [ -74.961154, 40.139603 ], [ -74.960443, 40.139198 ], [ -74.960383, 40.139163 ], [ -74.960341, 40.139136 ], [ -74.9603, 40.139111 ], [ -74.960236, 40.139072 ], [ -74.959735, 40.138777 ], [ -74.959606, 40.138701 ], [ -74.959403, 40.138586 ], [ -74.959109, 40.138405 ], [ -74.958899, 40.138275 ], [ -74.958709, 40.138152 ], [ -74.958505, 40.138011 ], [ -74.958406, 40.137943 ], [ -74.95836, 40.137909 ], [ -74.958165, 40.137744 ], [ -74.958035, 40.137621 ], [ -74.957867, 40.137463 ], [ -74.957652, 40.137242 ], [ -74.95746, 40.137018 ], [ -74.957347, 40.136868 ], [ -74.957129, 40.136526 ], [ -74.957034, 40.136348 ], [ -74.956968, 40.136224 ], [ -74.956947, 40.136184 ], [ -74.956908, 40.136099 ], [ -74.956762, 40.13577 ], [ -74.956741, 40.135734 ], [ -74.956716, 40.135686 ], [ -74.956636, 40.135635 ], [ -74.95657, 40.135506 ], [ -74.956184, 40.135627 ], [ -74.956112, 40.135642 ], [ -74.955967, 40.135675 ], [ -74.955867, 40.135697 ], [ -74.955701, 40.135728 ], [ -74.955567, 40.135756 ], [ -74.955505, 40.135768 ], [ -74.955418, 40.135786 ], [ -74.955327, 40.135806 ], [ -74.955219, 40.135829 ], [ -74.954815, 40.135903 ], [ -74.954663, 40.135936 ], [ -74.954388, 40.135995 ], [ -74.954123, 40.136068 ], [ -74.954074, 40.136081 ], [ -74.953947, 40.13612 ], [ -74.953458, 40.136266 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307805", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.023765, 40.113421 ], [ -75.024701, 40.113965 ], [ -75.026354, 40.114923 ], [ -75.026822, 40.115189 ], [ -75.027054, 40.115319 ], [ -75.027215, 40.115397 ], [ -75.027424, 40.115485 ], [ -75.027628, 40.115556 ], [ -75.027791, 40.11561 ], [ -75.028084, 40.115691 ], [ -75.028195, 40.115719 ], [ -75.028573, 40.115809 ], [ -75.028931, 40.115899 ], [ -75.029091, 40.115936 ], [ -75.029191, 40.115957 ], [ -75.029337, 40.116006 ], [ -75.029502, 40.116068 ], [ -75.029611, 40.116107 ], [ -75.029716, 40.116153 ], [ -75.029857, 40.116216 ], [ -75.030003, 40.116288 ], [ -75.030312, 40.116465 ], [ -75.030469, 40.116568 ], [ -75.030641, 40.116679 ], [ -75.031115, 40.116955 ], [ -75.031289, 40.117067 ], [ -75.031872, 40.117438 ], [ -75.03204, 40.117545 ], [ -75.032663, 40.117931 ], [ -75.032843, 40.118041 ], [ -75.033553, 40.118486 ], [ -75.034262, 40.118922 ], [ -75.034483, 40.119054 ], [ -75.034945, 40.119339 ], [ -75.035147, 40.119461 ], [ -75.035349, 40.119586 ], [ -75.036164, 40.120052 ], [ -75.036267, 40.120115 ], [ -75.036326, 40.120152 ], [ -75.03638, 40.120207 ], [ -75.036407, 40.120247 ], [ -75.03644, 40.120298 ], [ -75.036461, 40.120351 ], [ -75.036497, 40.120447 ], [ -75.03645, 40.120462 ], [ -75.0364, 40.120478 ], [ -75.034894, 40.121021 ], [ -75.033749, 40.121423 ], [ -75.033366, 40.121564 ], [ -75.033276, 40.121596 ], [ -75.033091, 40.121663 ], [ -75.032899, 40.121733 ], [ -75.032774, 40.12178 ], [ -75.032628, 40.121835 ], [ -75.032502, 40.121877 ], [ -75.032277, 40.121939 ], [ -75.032221, 40.121952 ], [ -75.03207, 40.121987 ], [ -75.032046, 40.121992 ], [ -75.031798, 40.122036 ], [ -75.031651, 40.122057 ], [ -75.03145, 40.122081 ], [ -75.031224, 40.122095 ], [ -75.030998, 40.122096 ], [ -75.030851, 40.122091 ], [ -75.030705, 40.122083 ], [ -75.030582, 40.122068 ], [ -75.030442, 40.122051 ], [ -75.030307, 40.122032 ], [ -75.030185, 40.122011 ], [ -75.030074, 40.12199 ], [ -75.029964, 40.121964 ], [ -75.029849, 40.121936 ], [ -75.029758, 40.121911 ], [ -75.029653, 40.12188 ], [ -75.029536, 40.121841 ], [ -75.029451, 40.121811 ], [ -75.029354, 40.12177 ], [ -75.029254, 40.12173 ], [ -75.029151, 40.121683 ], [ -75.029018, 40.121618 ], [ -75.028922, 40.121566 ], [ -75.02877, 40.121485 ], [ -75.028557, 40.121365 ], [ -75.02781, 40.120959 ], [ -75.027408, 40.120732 ], [ -75.026382, 40.120193 ], [ -75.025489, 40.119723 ], [ -75.024855, 40.119392 ], [ -75.02481, 40.119319 ], [ -75.024627, 40.119205 ], [ -75.024217, 40.11899 ], [ -75.023806, 40.118759 ], [ -75.023007, 40.118342 ], [ -75.022122, 40.117866 ], [ -75.021388, 40.117469 ], [ -75.020952, 40.117236 ], [ -75.020474, 40.11699 ], [ -75.019865, 40.116676 ], [ -75.020143, 40.116385 ], [ -75.020516, 40.115994 ], [ -75.021074, 40.115413 ], [ -75.021628, 40.114838 ], [ -75.021727, 40.114733 ], [ -75.021819, 40.11463 ], [ -75.021914, 40.114526 ], [ -75.02202, 40.114404 ], [ -75.022115, 40.114281 ], [ -75.022302, 40.114034 ], [ -75.022371, 40.114002 ], [ -75.022409, 40.11395 ], [ -75.022521, 40.113801 ], [ -75.022656, 40.11361 ], [ -75.022752, 40.113485 ], [ -75.022754, 40.113476 ], [ -75.022754, 40.113382 ], [ -75.023066, 40.113005 ], [ -75.02319, 40.112823 ], [ -75.02331, 40.112645 ], [ -75.023409, 40.1125 ], [ -75.023828, 40.111886 ], [ -75.023834, 40.111878 ], [ -75.023951, 40.11171 ], [ -75.024075, 40.111533 ], [ -75.024318, 40.111187 ], [ -75.024546, 40.110854 ], [ -75.02474, 40.110571 ], [ -75.025033, 40.11015 ], [ -75.025166, 40.109961 ], [ -75.025311, 40.109748 ], [ -75.025605, 40.10932 ], [ -75.026077, 40.10863 ], [ -75.02617, 40.108479 ], [ -75.026264, 40.108341 ], [ -75.026321, 40.108313 ], [ -75.026336, 40.108302 ], [ -75.026348, 40.108286 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028761, 40.102458 ], [ -75.028717, 40.102429 ], [ -75.028382, 40.102211 ], [ -75.028283, 40.102153 ], [ -75.02814, 40.10207 ], [ -75.027616, 40.101752 ], [ -75.027385, 40.101645 ], [ -75.027261, 40.101596 ], [ -75.027061, 40.101524 ], [ -75.026861, 40.101465 ], [ -75.026802, 40.101448 ], [ -75.02662, 40.101398 ], [ -75.026609, 40.101395 ], [ -75.026349, 40.101333 ], [ -75.02559, 40.101155 ], [ -75.025495, 40.101133 ], [ -75.025274, 40.101081 ], [ -75.024847, 40.100974 ], [ -75.024543, 40.100896 ], [ -75.024417, 40.100864 ], [ -75.024115, 40.100787 ], [ -75.023949, 40.100743 ], [ -75.023647, 40.100668 ], [ -75.023234, 40.100564 ], [ -75.022913, 40.10048 ], [ -75.022483, 40.100355 ], [ -75.022393, 40.100328 ], [ -75.022331, 40.100311 ], [ -75.022213, 40.100274 ], [ -75.022072, 40.100213 ], [ -75.021934, 40.100142 ], [ -75.021847, 40.100097 ], [ -75.021777, 40.100054 ], [ -75.021678, 40.099979 ], [ -75.0215, 40.099844 ], [ -75.020422, 40.098949 ], [ -75.019701, 40.098352 ], [ -75.018903, 40.097656 ], [ -75.018835, 40.097599 ], [ -75.018723, 40.097508 ], [ -75.0187, 40.097492 ], [ -75.018251, 40.097132 ], [ -75.018374, 40.097114 ], [ -75.018472, 40.097108 ], [ -75.018739, 40.097094 ], [ -75.019232, 40.097072 ], [ -75.020184, 40.097034 ], [ -75.021356, 40.096979 ], [ -75.021613, 40.096958 ], [ -75.021734, 40.09694 ], [ -75.021853, 40.096914 ], [ -75.021977, 40.09688 ], [ -75.022239, 40.096795 ], [ -75.022635, 40.096671 ], [ -75.02431, 40.096151 ], [ -75.02453, 40.096084 ], [ -75.025219, 40.09587 ], [ -75.025607, 40.095751 ], [ -75.027716, 40.095074 ], [ -75.029948, 40.094377 ], [ -75.030205, 40.094297 ], [ -75.030715, 40.094158 ], [ -75.030784, 40.094142 ], [ -75.030839, 40.094135 ], [ -75.030889, 40.094137 ], [ -75.030919, 40.094142 ], [ -75.030959, 40.094069 ], [ -75.031022, 40.093956 ], [ -75.031078, 40.093852 ], [ -75.031131, 40.093751 ], [ -75.03129, 40.093492 ], [ -75.031494, 40.093111 ], [ -75.03155, 40.093008 ], [ -75.031578, 40.092958 ], [ -75.032163, 40.091944 ], [ -75.03234, 40.09163 ], [ -75.032415, 40.091496 ], [ -75.03268, 40.091027 ], [ -75.032886, 40.09067 ], [ -75.032974, 40.090518 ], [ -75.033091, 40.090317 ], [ -75.033248, 40.090044 ], [ -75.033328, 40.089906 ], [ -75.033358, 40.089856 ], [ -75.033493, 40.08961 ], [ -75.033605, 40.089438 ], [ -75.033677, 40.089332 ], [ -75.033715, 40.089279 ], [ -75.033787, 40.089183 ], [ -75.033797, 40.089169 ], [ -75.033875, 40.089065 ], [ -75.033958, 40.088965 ], [ -75.034054, 40.088847 ], [ -75.034157, 40.088732 ], [ -75.034275, 40.088601 ], [ -75.034296, 40.088579 ], [ -75.034606, 40.088252 ], [ -75.0349, 40.087936 ], [ -75.035031, 40.087798 ], [ -75.03544, 40.087364 ], [ -75.035764, 40.087016 ], [ -75.036016, 40.086753 ], [ -75.036148, 40.086627 ], [ -75.036232, 40.086557 ], [ -75.036446, 40.086363 ], [ -75.036518, 40.086344 ], [ -75.036656, 40.086224 ], [ -75.036867, 40.086031 ], [ -75.036873, 40.086023 ], [ -75.037055, 40.085839 ], [ -75.037066, 40.085829 ], [ -75.03736, 40.085528 ], [ -75.037402, 40.085487 ], [ -75.037779, 40.085077 ], [ -75.037861, 40.084993 ], [ -75.037993, 40.084858 ], [ -75.038118, 40.08473 ], [ -75.038198, 40.084633 ], [ -75.038204, 40.084537 ], [ -75.038339, 40.084416 ], [ -75.03827, 40.084288 ], [ -75.038245, 40.084218 ], [ -75.038179, 40.08399 ], [ -75.038057, 40.083566 ], [ -75.037868, 40.082904 ], [ -75.037747, 40.082502 ], [ -75.037806, 40.082462 ], [ -75.037868, 40.082407 ], [ -75.038158, 40.082113 ], [ -75.038797, 40.081463 ], [ -75.039037, 40.081223 ], [ -75.04025, 40.080005 ], [ -75.041209, 40.079039 ], [ -75.041788, 40.078474 ], [ -75.042839, 40.077417 ], [ -75.043115, 40.077135 ], [ -75.04319, 40.077185 ], [ -75.043307, 40.077245 ], [ -75.043426, 40.077304 ], [ -75.043726, 40.077484 ], [ -75.043869, 40.077549 ], [ -75.043911, 40.077498 ], [ -75.044019, 40.077453 ], [ -75.044035, 40.077441 ], [ -75.044115, 40.077332 ], [ -75.044138, 40.077301 ], [ -75.044405, 40.076911 ], [ -75.044589, 40.07666 ], [ -75.04492, 40.076274 ], [ -75.045185, 40.075993 ], [ -75.045424, 40.07571 ], [ -75.045781, 40.075308 ], [ -75.045899, 40.07519 ], [ -75.045985, 40.075098 ], [ -75.046045, 40.075033 ], [ -75.04615, 40.074904 ], [ -75.046613, 40.074352 ], [ -75.046887, 40.074027 ], [ -75.047162, 40.073692 ], [ -75.047418, 40.073392 ], [ -75.047703, 40.073046 ], [ -75.048022, 40.072661 ], [ -75.048242, 40.072396 ], [ -75.048501, 40.072111 ], [ -75.048811, 40.071764 ], [ -75.049261, 40.07128 ], [ -75.049354, 40.07118 ], [ -75.049531, 40.070985 ], [ -75.049579, 40.07093 ], [ -75.050294, 40.070167 ], [ -75.050426, 40.070015 ], [ -75.050517, 40.06989 ], [ -75.050525, 40.069879 ], [ -75.050643, 40.069711 ], [ -75.050738, 40.069553 ], [ -75.050838, 40.069326 ], [ -75.050912, 40.069117 ], [ -75.05094, 40.069015 ], [ -75.050942, 40.069001 ], [ -75.050963, 40.068905 ], [ -75.050991, 40.068726 ], [ -75.051056, 40.068281 ], [ -75.051144, 40.067569 ], [ -75.051206, 40.067125 ], [ -75.051211, 40.067053 ], [ -75.051228, 40.066821 ], [ -75.051169, 40.066725 ], [ -75.051186, 40.066629 ], [ -75.051278, 40.066191 ], [ -75.051386, 40.065667 ], [ -75.051437, 40.065388 ], [ -75.051449, 40.065321 ], [ -75.051479, 40.065107 ], [ -75.0515, 40.064917 ], [ -75.051533, 40.064679 ], [ -75.05156, 40.064392 ], [ -75.051602, 40.063916 ], [ -75.051623, 40.063673 ], [ -75.051634, 40.063539 ], [ -75.051679, 40.063103 ], [ -75.051724, 40.062638 ], [ -75.051809, 40.06176 ], [ -75.051852, 40.061296 ], [ -75.051893, 40.060809 ], [ -75.051926, 40.060413 ], [ -75.05196, 40.060126 ], [ -75.051982, 40.059908 ], [ -75.052004, 40.059695 ], [ -75.052033, 40.059543 ], [ -75.052073, 40.059408 ], [ -75.052116, 40.059304 ], [ -75.052181, 40.059166 ], [ -75.05237, 40.058771 ], [ -75.052555, 40.058415 ], [ -75.052728, 40.058015 ], [ -75.052883, 40.057632 ], [ -75.053009, 40.057327 ], [ -75.053196, 40.056874 ], [ -75.053361, 40.056467 ], [ -75.053517, 40.056082 ], [ -75.053823, 40.055334 ], [ -75.053981, 40.054955 ], [ -75.054088, 40.054669 ], [ -75.054103, 40.054632 ], [ -75.054139, 40.054545 ], [ -75.054187, 40.05444 ], [ -75.05424, 40.054342 ], [ -75.054313, 40.054249 ], [ -75.054429, 40.054113 ], [ -75.054684, 40.053813 ], [ -75.054953, 40.053501 ], [ -75.055238, 40.053163 ], [ -75.055492, 40.052862 ], [ -75.055746, 40.052572 ], [ -75.056028, 40.052233 ], [ -75.056297, 40.051921 ], [ -75.056573, 40.0516 ], [ -75.056843, 40.051283 ], [ -75.057133, 40.050944 ], [ -75.057375, 40.050654 ], [ -75.057594, 40.050397 ], [ -75.05778, 40.050181 ], [ -75.057836, 40.050117 ], [ -75.058049, 40.049873 ], [ -75.05823, 40.049656 ], [ -75.058526, 40.049317 ], [ -75.058712, 40.049104 ], [ -75.058936, 40.048832 ], [ -75.059605, 40.04805 ], [ -75.05968, 40.047962 ], [ -75.059741, 40.047889 ], [ -75.059806, 40.04781 ], [ -75.059859, 40.047737 ], [ -75.059894, 40.047675 ], [ -75.059925, 40.047605 ], [ -75.060022, 40.047339 ], [ -75.060055, 40.047236 ], [ -75.060133, 40.046994 ], [ -75.060167, 40.046901 ], [ -75.060302, 40.046524 ], [ -75.060564, 40.045761 ], [ -75.060654, 40.0455 ], [ -75.060683, 40.045412 ], [ -75.060707, 40.045356 ], [ -75.060727, 40.045324 ], [ -75.060758, 40.04528 ], [ -75.060831, 40.045201 ], [ -75.060992, 40.045038 ], [ -75.061066, 40.044964 ], [ -75.061296, 40.044733 ], [ -75.061591, 40.044443 ], [ -75.061926, 40.044111 ], [ -75.062126, 40.043907 ], [ -75.062234, 40.043797 ], [ -75.062535, 40.04349 ], [ -75.062826, 40.043189 ], [ -75.062955, 40.043061 ], [ -75.063171, 40.042848 ], [ -75.063479, 40.04253 ], [ -75.063773, 40.042231 ], [ -75.064043, 40.041968 ], [ -75.064345, 40.04166 ], [ -75.064662, 40.041351 ], [ -75.064954, 40.041056 ], [ -75.065276, 40.04074 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068255, 40.0378 ], [ -75.068333, 40.037729 ], [ -75.068451, 40.037621 ], [ -75.068587, 40.037493 ], [ -75.068725, 40.037355 ], [ -75.069283, 40.036815 ], [ -75.070214, 40.035906 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307807", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.00983, 40.134798 ], [ -75.010637, 40.135287 ], [ -75.01145, 40.135784 ], [ -75.012155, 40.136209 ], [ -75.012184, 40.136227 ], [ -75.012295, 40.136294 ], [ -75.012405, 40.136362 ], [ -75.012774, 40.136585 ], [ -75.013879, 40.137262 ], [ -75.014029, 40.137129 ], [ -75.01454, 40.136647 ], [ -75.014777, 40.136413 ], [ -75.014896, 40.136308 ], [ -75.014957, 40.136249 ], [ -75.015, 40.136202 ], [ -75.015036, 40.136157 ], [ -75.015072, 40.136111 ], [ -75.015104, 40.136064 ], [ -75.015131, 40.136015 ], [ -75.015151, 40.135965 ], [ -75.015166, 40.135925 ], [ -75.015177, 40.135875 ], [ -75.015183, 40.135825 ], [ -75.015188, 40.13576 ], [ -75.015191, 40.13568 ], [ -75.015182, 40.135607 ], [ -75.01517, 40.135512 ], [ -75.015137, 40.135405 ], [ -75.014941, 40.134868 ], [ -75.014654, 40.134071 ], [ -75.0144, 40.133351 ], [ -75.014342, 40.133216 ], [ -75.014309, 40.133143 ], [ -75.014276, 40.133083 ], [ -75.014236, 40.133016 ], [ -75.014191, 40.132965 ], [ -75.01413, 40.132905 ], [ -75.014055, 40.132846 ], [ -75.01398, 40.132795 ], [ -75.013869, 40.132729 ], [ -75.013494, 40.132504 ], [ -75.013173, 40.132314 ], [ -75.013156, 40.132281 ], [ -75.013128, 40.132262 ], [ -75.013064, 40.132226 ], [ -75.012981, 40.132171 ], [ -75.012922, 40.132117 ], [ -75.012896, 40.132085 ], [ -75.012886, 40.132068 ], [ -75.012863, 40.132013 ], [ -75.012836, 40.131879 ], [ -75.012822, 40.131798 ], [ -75.012731, 40.1318 ], [ -75.012678, 40.131796 ], [ -75.012618, 40.131783 ], [ -75.012558, 40.131769 ], [ -75.012484, 40.131749 ], [ -75.012402, 40.131724 ], [ -75.012231, 40.131668 ], [ -75.012466, 40.131346 ], [ -75.012558, 40.131217 ], [ -75.013001, 40.130498 ], [ -75.013116, 40.130289 ], [ -75.013211, 40.13011 ], [ -75.013463, 40.129635 ], [ -75.01361, 40.129305 ], [ -75.013781, 40.128851 ], [ -75.013876, 40.128506 ], [ -75.013921, 40.12829 ], [ -75.013968, 40.128063 ], [ -75.014042, 40.127728 ], [ -75.014263, 40.126898 ], [ -75.014316, 40.126698 ], [ -75.014442, 40.126204 ], [ -75.014598, 40.125602 ], [ -75.014638, 40.12545 ], [ -75.014719, 40.125145 ], [ -75.01475, 40.125042 ], [ -75.014786, 40.124946 ], [ -75.014812, 40.124875 ], [ -75.01492, 40.124651 ], [ -75.015024, 40.124426 ], [ -75.01511, 40.124228 ], [ -75.015391, 40.123591 ], [ -75.015491, 40.123363 ], [ -75.01556, 40.123218 ], [ -75.015614, 40.123106 ], [ -75.015702, 40.122938 ], [ -75.015712, 40.122918 ], [ -75.015796, 40.122768 ], [ -75.015886, 40.122603 ], [ -75.016202, 40.121953 ], [ -75.016782, 40.120923 ], [ -75.017008, 40.120559 ], [ -75.017151, 40.120329 ], [ -75.017207, 40.120242 ], [ -75.017441, 40.11988 ], [ -75.017526, 40.119749 ], [ -75.017662, 40.119529 ], [ -75.017761, 40.119369 ], [ -75.01777, 40.119354 ], [ -75.018025, 40.118924 ], [ -75.018189, 40.118626 ], [ -75.018212, 40.118583 ], [ -75.018331, 40.118356 ], [ -75.018355, 40.118305 ], [ -75.018369, 40.118278 ], [ -75.018391, 40.118235 ], [ -75.01843, 40.118173 ], [ -75.018468, 40.118126 ], [ -75.018509, 40.118071 ], [ -75.018549, 40.11803 ], [ -75.019269, 40.117298 ], [ -75.019522, 40.117029 ], [ -75.019781, 40.116752 ], [ -75.019821, 40.116717 ], [ -75.019865, 40.116676 ], [ -75.020143, 40.116385 ], [ -75.020516, 40.115994 ], [ -75.021074, 40.115413 ], [ -75.021628, 40.114838 ], [ -75.021727, 40.114733 ], [ -75.021819, 40.11463 ], [ -75.021914, 40.114526 ], [ -75.02202, 40.114404 ], [ -75.022115, 40.114281 ], [ -75.022302, 40.114034 ], [ -75.022371, 40.114002 ], [ -75.022409, 40.11395 ], [ -75.022521, 40.113801 ], [ -75.022656, 40.11361 ], [ -75.022752, 40.113485 ], [ -75.022754, 40.113476 ], [ -75.022754, 40.113382 ], [ -75.023066, 40.113005 ], [ -75.02319, 40.112823 ], [ -75.02331, 40.112645 ], [ -75.023409, 40.1125 ], [ -75.023828, 40.111886 ], [ -75.023834, 40.111878 ], [ -75.023951, 40.11171 ], [ -75.024075, 40.111533 ], [ -75.024318, 40.111187 ], [ -75.024546, 40.110854 ], [ -75.02474, 40.110571 ], [ -75.025033, 40.11015 ], [ -75.025166, 40.109961 ], [ -75.025311, 40.109748 ], [ -75.025605, 40.10932 ], [ -75.026077, 40.10863 ], [ -75.02617, 40.108479 ], [ -75.026264, 40.108341 ], [ -75.026321, 40.108313 ], [ -75.026336, 40.108302 ], [ -75.026348, 40.108286 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028761, 40.102458 ], [ -75.028717, 40.102429 ], [ -75.028382, 40.102211 ], [ -75.028283, 40.102153 ], [ -75.02814, 40.10207 ], [ -75.027616, 40.101752 ], [ -75.027385, 40.101645 ], [ -75.027261, 40.101596 ], [ -75.027061, 40.101524 ], [ -75.026861, 40.101465 ], [ -75.026802, 40.101448 ], [ -75.02662, 40.101398 ], [ -75.026609, 40.101395 ], [ -75.026349, 40.101333 ], [ -75.02559, 40.101155 ], [ -75.025495, 40.101133 ], [ -75.025274, 40.101081 ], [ -75.024847, 40.100974 ], [ -75.024543, 40.100896 ], [ -75.024417, 40.100864 ], [ -75.024115, 40.100787 ], [ -75.023949, 40.100743 ], [ -75.023647, 40.100668 ], [ -75.023234, 40.100564 ], [ -75.022913, 40.10048 ], [ -75.022483, 40.100355 ], [ -75.022393, 40.100328 ], [ -75.022331, 40.100311 ], [ -75.022213, 40.100274 ], [ -75.022072, 40.100213 ], [ -75.021934, 40.100142 ], [ -75.021847, 40.100097 ], [ -75.021777, 40.100054 ], [ -75.021678, 40.099979 ], [ -75.0215, 40.099844 ], [ -75.020422, 40.098949 ], [ -75.019701, 40.098352 ], [ -75.018903, 40.097656 ], [ -75.018835, 40.097599 ], [ -75.018723, 40.097508 ], [ -75.0187, 40.097492 ], [ -75.018251, 40.097132 ], [ -75.018374, 40.097114 ], [ -75.018472, 40.097108 ], [ -75.018739, 40.097094 ], [ -75.019232, 40.097072 ], [ -75.020184, 40.097034 ], [ -75.021356, 40.096979 ], [ -75.021613, 40.096958 ], [ -75.021734, 40.09694 ], [ -75.021853, 40.096914 ], [ -75.021977, 40.09688 ], [ -75.022239, 40.096795 ], [ -75.022635, 40.096671 ], [ -75.02431, 40.096151 ], [ -75.02453, 40.096084 ], [ -75.025219, 40.09587 ], [ -75.025607, 40.095751 ], [ -75.027716, 40.095074 ], [ -75.029948, 40.094377 ], [ -75.030205, 40.094297 ], [ -75.030715, 40.094158 ], [ -75.030784, 40.094142 ], [ -75.030839, 40.094135 ], [ -75.030889, 40.094137 ], [ -75.030919, 40.094142 ], [ -75.030959, 40.094069 ], [ -75.031022, 40.093956 ], [ -75.031078, 40.093852 ], [ -75.031131, 40.093751 ], [ -75.03129, 40.093492 ], [ -75.031494, 40.093111 ], [ -75.03155, 40.093008 ], [ -75.031578, 40.092958 ], [ -75.032163, 40.091944 ], [ -75.03234, 40.09163 ], [ -75.032415, 40.091496 ], [ -75.03268, 40.091027 ], [ -75.032886, 40.09067 ], [ -75.032974, 40.090518 ], [ -75.033091, 40.090317 ], [ -75.033248, 40.090044 ], [ -75.033328, 40.089906 ], [ -75.033358, 40.089856 ], [ -75.033493, 40.08961 ], [ -75.033605, 40.089438 ], [ -75.033677, 40.089332 ], [ -75.033715, 40.089279 ], [ -75.033787, 40.089183 ], [ -75.033797, 40.089169 ], [ -75.033875, 40.089065 ], [ -75.033958, 40.088965 ], [ -75.034054, 40.088847 ], [ -75.034157, 40.088732 ], [ -75.034275, 40.088601 ], [ -75.034296, 40.088579 ], [ -75.034606, 40.088252 ], [ -75.0349, 40.087936 ], [ -75.035031, 40.087798 ], [ -75.03544, 40.087364 ], [ -75.035764, 40.087016 ], [ -75.036016, 40.086753 ], [ -75.036148, 40.086627 ], [ -75.036232, 40.086557 ], [ -75.036446, 40.086363 ], [ -75.036518, 40.086344 ], [ -75.036656, 40.086224 ], [ -75.036867, 40.086031 ], [ -75.036873, 40.086023 ], [ -75.037055, 40.085839 ], [ -75.037066, 40.085829 ], [ -75.03736, 40.085528 ], [ -75.037402, 40.085487 ], [ -75.037779, 40.085077 ], [ -75.037861, 40.084993 ], [ -75.037993, 40.084858 ], [ -75.038118, 40.08473 ], [ -75.038198, 40.084633 ], [ -75.038204, 40.084537 ], [ -75.038339, 40.084416 ], [ -75.03827, 40.084288 ], [ -75.038245, 40.084218 ], [ -75.038179, 40.08399 ], [ -75.038057, 40.083566 ], [ -75.037868, 40.082904 ], [ -75.037747, 40.082502 ], [ -75.037806, 40.082462 ], [ -75.037868, 40.082407 ], [ -75.038158, 40.082113 ], [ -75.038797, 40.081463 ], [ -75.039037, 40.081223 ], [ -75.04025, 40.080005 ], [ -75.041209, 40.079039 ], [ -75.041788, 40.078474 ], [ -75.042839, 40.077417 ], [ -75.043115, 40.077135 ], [ -75.04319, 40.077185 ], [ -75.043307, 40.077245 ], [ -75.043426, 40.077304 ], [ -75.043726, 40.077484 ], [ -75.043869, 40.077549 ], [ -75.043911, 40.077498 ], [ -75.044019, 40.077453 ], [ -75.044035, 40.077441 ], [ -75.044115, 40.077332 ], [ -75.044138, 40.077301 ], [ -75.044405, 40.076911 ], [ -75.044589, 40.07666 ], [ -75.04492, 40.076274 ], [ -75.045185, 40.075993 ], [ -75.045424, 40.07571 ], [ -75.045781, 40.075308 ], [ -75.045899, 40.07519 ], [ -75.045985, 40.075098 ], [ -75.046045, 40.075033 ], [ -75.04615, 40.074904 ], [ -75.046613, 40.074352 ], [ -75.046887, 40.074027 ], [ -75.047162, 40.073692 ], [ -75.047418, 40.073392 ], [ -75.047703, 40.073046 ], [ -75.048022, 40.072661 ], [ -75.048242, 40.072396 ], [ -75.048501, 40.072111 ], [ -75.048811, 40.071764 ], [ -75.049261, 40.07128 ], [ -75.049354, 40.07118 ], [ -75.049531, 40.070985 ], [ -75.049579, 40.07093 ], [ -75.050294, 40.070167 ], [ -75.050426, 40.070015 ], [ -75.050517, 40.06989 ], [ -75.050525, 40.069879 ], [ -75.050643, 40.069711 ], [ -75.050738, 40.069553 ], [ -75.050838, 40.069326 ], [ -75.050912, 40.069117 ], [ -75.05094, 40.069015 ], [ -75.050942, 40.069001 ], [ -75.050963, 40.068905 ], [ -75.050991, 40.068726 ], [ -75.051056, 40.068281 ], [ -75.051144, 40.067569 ], [ -75.051206, 40.067125 ], [ -75.051211, 40.067053 ], [ -75.051228, 40.066821 ], [ -75.051169, 40.066725 ], [ -75.051186, 40.066629 ], [ -75.051278, 40.066191 ], [ -75.051386, 40.065667 ], [ -75.051437, 40.065388 ], [ -75.051449, 40.065321 ], [ -75.051479, 40.065107 ], [ -75.0515, 40.064917 ], [ -75.051533, 40.064679 ], [ -75.05156, 40.064392 ], [ -75.051602, 40.063916 ], [ -75.051623, 40.063673 ], [ -75.051634, 40.063539 ], [ -75.051679, 40.063103 ], [ -75.051724, 40.062638 ], [ -75.051809, 40.06176 ], [ -75.051852, 40.061296 ], [ -75.051893, 40.060809 ], [ -75.051926, 40.060413 ], [ -75.05196, 40.060126 ], [ -75.051982, 40.059908 ], [ -75.052004, 40.059695 ], [ -75.052033, 40.059543 ], [ -75.052073, 40.059408 ], [ -75.052116, 40.059304 ], [ -75.052181, 40.059166 ], [ -75.05237, 40.058771 ], [ -75.052555, 40.058415 ], [ -75.052728, 40.058015 ], [ -75.052883, 40.057632 ], [ -75.053009, 40.057327 ], [ -75.053196, 40.056874 ], [ -75.053361, 40.056467 ], [ -75.053517, 40.056082 ], [ -75.053823, 40.055334 ], [ -75.053981, 40.054955 ], [ -75.054088, 40.054669 ], [ -75.054103, 40.054632 ], [ -75.054139, 40.054545 ], [ -75.054187, 40.05444 ], [ -75.05424, 40.054342 ], [ -75.054313, 40.054249 ], [ -75.054429, 40.054113 ], [ -75.054684, 40.053813 ], [ -75.054953, 40.053501 ], [ -75.055238, 40.053163 ], [ -75.055492, 40.052862 ], [ -75.055746, 40.052572 ], [ -75.056028, 40.052233 ], [ -75.056297, 40.051921 ], [ -75.056573, 40.0516 ], [ -75.056843, 40.051283 ], [ -75.057133, 40.050944 ], [ -75.057375, 40.050654 ], [ -75.057594, 40.050397 ], [ -75.05778, 40.050181 ], [ -75.057836, 40.050117 ], [ -75.058049, 40.049873 ], [ -75.05823, 40.049656 ], [ -75.058526, 40.049317 ], [ -75.058712, 40.049104 ], [ -75.058936, 40.048832 ], [ -75.059605, 40.04805 ], [ -75.05968, 40.047962 ], [ -75.059741, 40.047889 ], [ -75.059806, 40.04781 ], [ -75.059859, 40.047737 ], [ -75.059894, 40.047675 ], [ -75.059925, 40.047605 ], [ -75.060022, 40.047339 ], [ -75.060055, 40.047236 ], [ -75.060133, 40.046994 ], [ -75.060167, 40.046901 ], [ -75.060302, 40.046524 ], [ -75.060564, 40.045761 ], [ -75.060654, 40.0455 ], [ -75.060683, 40.045412 ], [ -75.060707, 40.045356 ], [ -75.060727, 40.045324 ], [ -75.060758, 40.04528 ], [ -75.060831, 40.045201 ], [ -75.060992, 40.045038 ], [ -75.061066, 40.044964 ], [ -75.061296, 40.044733 ], [ -75.061591, 40.044443 ], [ -75.061926, 40.044111 ], [ -75.062126, 40.043907 ], [ -75.062234, 40.043797 ], [ -75.062535, 40.04349 ], [ -75.062826, 40.043189 ], [ -75.062955, 40.043061 ], [ -75.063171, 40.042848 ], [ -75.063479, 40.04253 ], [ -75.063773, 40.042231 ], [ -75.064043, 40.041968 ], [ -75.064345, 40.04166 ], [ -75.064662, 40.041351 ], [ -75.064954, 40.041056 ], [ -75.065276, 40.04074 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068255, 40.0378 ], [ -75.068333, 40.037729 ], [ -75.068451, 40.037621 ], [ -75.068587, 40.037493 ], [ -75.068725, 40.037355 ], [ -75.069283, 40.036815 ], [ -75.070214, 40.035906 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307808", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.00983, 40.134798 ], [ -75.010637, 40.135287 ], [ -75.01145, 40.135784 ], [ -75.012155, 40.136209 ], [ -75.012184, 40.136227 ], [ -75.012295, 40.136294 ], [ -75.012405, 40.136362 ], [ -75.012774, 40.136585 ], [ -75.013879, 40.137262 ], [ -75.014029, 40.137129 ], [ -75.01454, 40.136647 ], [ -75.014777, 40.136413 ], [ -75.014896, 40.136308 ], [ -75.014957, 40.136249 ], [ -75.015, 40.136202 ], [ -75.015036, 40.136157 ], [ -75.015072, 40.136111 ], [ -75.015104, 40.136064 ], [ -75.015131, 40.136015 ], [ -75.015151, 40.135965 ], [ -75.015166, 40.135925 ], [ -75.015177, 40.135875 ], [ -75.015183, 40.135825 ], [ -75.015188, 40.13576 ], [ -75.015191, 40.13568 ], [ -75.015182, 40.135607 ], [ -75.01517, 40.135512 ], [ -75.015137, 40.135405 ], [ -75.014941, 40.134868 ], [ -75.014654, 40.134071 ], [ -75.0144, 40.133351 ], [ -75.014342, 40.133216 ], [ -75.014309, 40.133143 ], [ -75.014276, 40.133083 ], [ -75.014236, 40.133016 ], [ -75.014191, 40.132965 ], [ -75.01413, 40.132905 ], [ -75.014055, 40.132846 ], [ -75.01398, 40.132795 ], [ -75.013869, 40.132729 ], [ -75.013494, 40.132504 ], [ -75.013173, 40.132314 ], [ -75.013156, 40.132281 ], [ -75.013128, 40.132262 ], [ -75.013064, 40.132226 ], [ -75.012981, 40.132171 ], [ -75.012922, 40.132117 ], [ -75.012896, 40.132085 ], [ -75.012886, 40.132068 ], [ -75.012863, 40.132013 ], [ -75.012836, 40.131879 ], [ -75.012822, 40.131798 ], [ -75.012731, 40.1318 ], [ -75.012678, 40.131796 ], [ -75.012618, 40.131783 ], [ -75.012558, 40.131769 ], [ -75.012484, 40.131749 ], [ -75.012402, 40.131724 ], [ -75.012231, 40.131668 ], [ -75.012466, 40.131346 ], [ -75.012558, 40.131217 ], [ -75.013001, 40.130498 ], [ -75.013116, 40.130289 ], [ -75.013211, 40.13011 ], [ -75.013463, 40.129635 ], [ -75.01361, 40.129305 ], [ -75.013781, 40.128851 ], [ -75.013876, 40.128506 ], [ -75.013921, 40.12829 ], [ -75.013968, 40.128063 ], [ -75.014042, 40.127728 ], [ -75.014263, 40.126898 ], [ -75.014316, 40.126698 ], [ -75.014442, 40.126204 ], [ -75.014598, 40.125602 ], [ -75.014638, 40.12545 ], [ -75.014719, 40.125145 ], [ -75.01475, 40.125042 ], [ -75.014786, 40.124946 ], [ -75.014812, 40.124875 ], [ -75.01492, 40.124651 ], [ -75.015024, 40.124426 ], [ -75.01511, 40.124228 ], [ -75.015391, 40.123591 ], [ -75.015491, 40.123363 ], [ -75.01556, 40.123218 ], [ -75.015614, 40.123106 ], [ -75.015702, 40.122938 ], [ -75.015712, 40.122918 ], [ -75.015796, 40.122768 ], [ -75.015886, 40.122603 ], [ -75.016202, 40.121953 ], [ -75.016782, 40.120923 ], [ -75.017008, 40.120559 ], [ -75.017151, 40.120329 ], [ -75.017207, 40.120242 ], [ -75.017441, 40.11988 ], [ -75.017526, 40.119749 ], [ -75.017662, 40.119529 ], [ -75.017761, 40.119369 ], [ -75.01777, 40.119354 ], [ -75.018025, 40.118924 ], [ -75.018189, 40.118626 ], [ -75.018212, 40.118583 ], [ -75.018331, 40.118356 ], [ -75.018355, 40.118305 ], [ -75.018369, 40.118278 ], [ -75.018391, 40.118235 ], [ -75.01843, 40.118173 ], [ -75.018468, 40.118126 ], [ -75.018509, 40.118071 ], [ -75.018549, 40.11803 ], [ -75.019269, 40.117298 ], [ -75.019522, 40.117029 ], [ -75.019781, 40.116752 ], [ -75.019821, 40.116717 ], [ -75.019865, 40.116676 ], [ -75.020143, 40.116385 ], [ -75.020516, 40.115994 ], [ -75.021074, 40.115413 ], [ -75.021628, 40.114838 ], [ -75.021727, 40.114733 ], [ -75.021819, 40.11463 ], [ -75.021914, 40.114526 ], [ -75.02202, 40.114404 ], [ -75.022115, 40.114281 ], [ -75.022302, 40.114034 ], [ -75.022371, 40.114002 ], [ -75.022409, 40.11395 ], [ -75.022521, 40.113801 ], [ -75.022656, 40.11361 ], [ -75.022752, 40.113485 ], [ -75.022754, 40.113476 ], [ -75.022754, 40.113382 ], [ -75.023066, 40.113005 ], [ -75.02319, 40.112823 ], [ -75.02331, 40.112645 ], [ -75.023409, 40.1125 ], [ -75.023828, 40.111886 ], [ -75.023834, 40.111878 ], [ -75.023951, 40.11171 ], [ -75.024075, 40.111533 ], [ -75.024318, 40.111187 ], [ -75.024546, 40.110854 ], [ -75.02474, 40.110571 ], [ -75.025033, 40.11015 ], [ -75.025166, 40.109961 ], [ -75.025311, 40.109748 ], [ -75.025605, 40.10932 ], [ -75.026077, 40.10863 ], [ -75.02617, 40.108479 ], [ -75.026264, 40.108341 ], [ -75.026321, 40.108313 ], [ -75.026336, 40.108302 ], [ -75.026348, 40.108286 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028956, 40.10235 ], [ -75.029184, 40.10187 ], [ -75.029624, 40.10092 ], [ -75.029727, 40.100697 ], [ -75.029721, 40.100571 ], [ -75.029758, 40.1005 ], [ -75.029787, 40.100446 ], [ -75.029861, 40.100279 ], [ -75.029948, 40.100064 ], [ -75.029961, 40.100035 ], [ -75.030087, 40.099694 ], [ -75.030203, 40.099348 ], [ -75.030256, 40.09916 ], [ -75.030315, 40.098887 ], [ -75.030319, 40.098859 ], [ -75.030346, 40.098704 ], [ -75.030368, 40.098576 ], [ -75.030376, 40.098501 ], [ -75.030403, 40.098276 ], [ -75.030422, 40.098085 ], [ -75.030441, 40.097918 ], [ -75.030452, 40.097808 ], [ -75.030461, 40.097713 ], [ -75.030465, 40.097661 ], [ -75.030469, 40.097626 ], [ -75.030474, 40.097553 ], [ -75.03048, 40.097474 ], [ -75.030493, 40.097308 ], [ -75.030493, 40.097301 ], [ -75.030523, 40.096765 ], [ -75.030579, 40.096704 ], [ -75.030591, 40.096644 ], [ -75.030648, 40.09566 ], [ -75.030667, 40.095456 ], [ -75.030702, 40.095129 ], [ -75.030748, 40.094824 ], [ -75.030757, 40.094766 ], [ -75.030767, 40.094705 ], [ -75.030731, 40.094622 ], [ -75.030749, 40.09455 ], [ -75.030796, 40.094425 ], [ -75.030864, 40.094254 ], [ -75.030919, 40.094142 ], [ -75.030959, 40.094069 ], [ -75.031022, 40.093956 ], [ -75.031078, 40.093852 ], [ -75.031131, 40.093751 ], [ -75.03129, 40.093492 ], [ -75.031494, 40.093111 ], [ -75.03155, 40.093008 ], [ -75.031578, 40.092958 ], [ -75.032163, 40.091944 ], [ -75.03234, 40.09163 ], [ -75.032415, 40.091496 ], [ -75.03268, 40.091027 ], [ -75.032886, 40.09067 ], [ -75.032974, 40.090518 ], [ -75.033091, 40.090317 ], [ -75.033248, 40.090044 ], [ -75.033328, 40.089906 ], [ -75.033358, 40.089856 ], [ -75.033493, 40.08961 ], [ -75.033605, 40.089438 ], [ -75.033677, 40.089332 ], [ -75.033715, 40.089279 ], [ -75.033787, 40.089183 ], [ -75.033797, 40.089169 ], [ -75.033875, 40.089065 ], [ -75.033958, 40.088965 ], [ -75.034054, 40.088847 ], [ -75.034157, 40.088732 ], [ -75.034275, 40.088601 ], [ -75.034296, 40.088579 ], [ -75.034606, 40.088252 ], [ -75.0349, 40.087936 ], [ -75.035031, 40.087798 ], [ -75.03544, 40.087364 ], [ -75.035764, 40.087016 ], [ -75.036016, 40.086753 ], [ -75.036148, 40.086627 ], [ -75.036232, 40.086557 ], [ -75.036446, 40.086363 ], [ -75.036518, 40.086344 ], [ -75.036656, 40.086224 ], [ -75.036867, 40.086031 ], [ -75.036873, 40.086023 ], [ -75.037055, 40.085839 ], [ -75.037066, 40.085829 ], [ -75.03736, 40.085528 ], [ -75.037402, 40.085487 ], [ -75.037779, 40.085077 ], [ -75.037861, 40.084993 ], [ -75.037993, 40.084858 ], [ -75.038118, 40.08473 ], [ -75.038198, 40.084633 ], [ -75.038204, 40.084537 ], [ -75.038339, 40.084416 ], [ -75.03827, 40.084288 ], [ -75.038245, 40.084218 ], [ -75.038179, 40.08399 ], [ -75.038057, 40.083566 ], [ -75.037868, 40.082904 ], [ -75.037747, 40.082502 ], [ -75.037806, 40.082462 ], [ -75.037868, 40.082407 ], [ -75.038158, 40.082113 ], [ -75.038797, 40.081463 ], [ -75.039037, 40.081223 ], [ -75.04025, 40.080005 ], [ -75.041209, 40.079039 ], [ -75.041788, 40.078474 ], [ -75.042839, 40.077417 ], [ -75.043115, 40.077135 ], [ -75.04319, 40.077185 ], [ -75.043307, 40.077245 ], [ -75.043426, 40.077304 ], [ -75.043726, 40.077484 ], [ -75.043869, 40.077549 ], [ -75.043911, 40.077498 ], [ -75.044019, 40.077453 ], [ -75.044035, 40.077441 ], [ -75.044115, 40.077332 ], [ -75.044138, 40.077301 ], [ -75.044405, 40.076911 ], [ -75.044589, 40.07666 ], [ -75.04492, 40.076274 ], [ -75.045185, 40.075993 ], [ -75.045424, 40.07571 ], [ -75.045781, 40.075308 ], [ -75.045899, 40.07519 ], [ -75.045985, 40.075098 ], [ -75.046045, 40.075033 ], [ -75.04615, 40.074904 ], [ -75.046613, 40.074352 ], [ -75.046887, 40.074027 ], [ -75.047162, 40.073692 ], [ -75.047418, 40.073392 ], [ -75.047703, 40.073046 ], [ -75.048022, 40.072661 ], [ -75.048242, 40.072396 ], [ -75.048501, 40.072111 ], [ -75.048811, 40.071764 ], [ -75.049261, 40.07128 ], [ -75.049354, 40.07118 ], [ -75.049531, 40.070985 ], [ -75.049579, 40.07093 ], [ -75.050294, 40.070167 ], [ -75.050426, 40.070015 ], [ -75.050517, 40.06989 ], [ -75.050525, 40.069879 ], [ -75.050643, 40.069711 ], [ -75.050738, 40.069553 ], [ -75.050838, 40.069326 ], [ -75.050912, 40.069117 ], [ -75.05094, 40.069015 ], [ -75.050942, 40.069001 ], [ -75.050963, 40.068905 ], [ -75.050991, 40.068726 ], [ -75.051056, 40.068281 ], [ -75.051144, 40.067569 ], [ -75.051206, 40.067125 ], [ -75.051211, 40.067053 ], [ -75.051228, 40.066821 ], [ -75.051169, 40.066725 ], [ -75.051186, 40.066629 ], [ -75.051278, 40.066191 ], [ -75.051386, 40.065667 ], [ -75.051437, 40.065388 ], [ -75.051449, 40.065321 ], [ -75.051479, 40.065107 ], [ -75.0515, 40.064917 ], [ -75.051533, 40.064679 ], [ -75.05156, 40.064392 ], [ -75.051602, 40.063916 ], [ -75.051623, 40.063673 ], [ -75.051634, 40.063539 ], [ -75.051679, 40.063103 ], [ -75.051724, 40.062638 ], [ -75.051809, 40.06176 ], [ -75.051852, 40.061296 ], [ -75.051893, 40.060809 ], [ -75.051926, 40.060413 ], [ -75.05196, 40.060126 ], [ -75.051982, 40.059908 ], [ -75.052004, 40.059695 ], [ -75.052033, 40.059543 ], [ -75.052073, 40.059408 ], [ -75.052116, 40.059304 ], [ -75.052181, 40.059166 ], [ -75.05237, 40.058771 ], [ -75.052555, 40.058415 ], [ -75.052728, 40.058015 ], [ -75.052883, 40.057632 ], [ -75.053009, 40.057327 ], [ -75.053196, 40.056874 ], [ -75.053361, 40.056467 ], [ -75.053517, 40.056082 ], [ -75.053823, 40.055334 ], [ -75.053981, 40.054955 ], [ -75.054088, 40.054669 ], [ -75.054103, 40.054632 ], [ -75.054139, 40.054545 ], [ -75.054187, 40.05444 ], [ -75.05424, 40.054342 ], [ -75.054313, 40.054249 ], [ -75.054429, 40.054113 ], [ -75.054684, 40.053813 ], [ -75.054953, 40.053501 ], [ -75.055238, 40.053163 ], [ -75.055492, 40.052862 ], [ -75.055746, 40.052572 ], [ -75.056028, 40.052233 ], [ -75.056297, 40.051921 ], [ -75.056573, 40.0516 ], [ -75.056843, 40.051283 ], [ -75.057133, 40.050944 ], [ -75.057375, 40.050654 ], [ -75.057594, 40.050397 ], [ -75.05778, 40.050181 ], [ -75.057836, 40.050117 ], [ -75.058049, 40.049873 ], [ -75.05823, 40.049656 ], [ -75.058526, 40.049317 ], [ -75.058712, 40.049104 ], [ -75.058936, 40.048832 ], [ -75.059605, 40.04805 ], [ -75.05968, 40.047962 ], [ -75.059741, 40.047889 ], [ -75.059806, 40.04781 ], [ -75.059859, 40.047737 ], [ -75.059894, 40.047675 ], [ -75.059925, 40.047605 ], [ -75.060022, 40.047339 ], [ -75.060055, 40.047236 ], [ -75.060133, 40.046994 ], [ -75.060167, 40.046901 ], [ -75.060302, 40.046524 ], [ -75.060564, 40.045761 ], [ -75.060654, 40.0455 ], [ -75.060683, 40.045412 ], [ -75.060707, 40.045356 ], [ -75.060727, 40.045324 ], [ -75.060758, 40.04528 ], [ -75.060831, 40.045201 ], [ -75.060992, 40.045038 ], [ -75.061066, 40.044964 ], [ -75.061296, 40.044733 ], [ -75.061591, 40.044443 ], [ -75.061926, 40.044111 ], [ -75.062126, 40.043907 ], [ -75.062234, 40.043797 ], [ -75.062535, 40.04349 ], [ -75.062826, 40.043189 ], [ -75.062955, 40.043061 ], [ -75.063171, 40.042848 ], [ -75.063479, 40.04253 ], [ -75.063773, 40.042231 ], [ -75.064043, 40.041968 ], [ -75.064345, 40.04166 ], [ -75.064662, 40.041351 ], [ -75.064954, 40.041056 ], [ -75.065276, 40.04074 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068255, 40.0378 ], [ -75.068333, 40.037729 ], [ -75.068451, 40.037621 ], [ -75.068587, 40.037493 ], [ -75.068725, 40.037355 ], [ -75.069283, 40.036815 ], [ -75.070214, 40.035906 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307809", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953525, 40.138007 ], [ -74.953602, 40.137966 ], [ -74.953637, 40.137919 ], [ -74.953678, 40.137703 ], [ -74.95369, 40.137639 ], [ -74.953709, 40.13754 ], [ -74.953463, 40.137176 ], [ -74.953431, 40.137191 ], [ -74.952857, 40.137443 ], [ -74.9527, 40.137497 ], [ -74.952616, 40.137386 ], [ -74.952531, 40.137264 ], [ -74.952404, 40.137091 ], [ -74.952348, 40.137008 ], [ -74.952118, 40.13667 ], [ -74.952211, 40.136643 ], [ -74.953457, 40.136265 ], [ -74.953947, 40.13612 ], [ -74.954074, 40.136081 ], [ -74.954123, 40.136068 ], [ -74.954388, 40.135995 ], [ -74.954663, 40.135936 ], [ -74.954815, 40.135903 ], [ -74.95522, 40.135829 ], [ -74.955327, 40.135806 ], [ -74.955418, 40.135786 ], [ -74.955505, 40.135768 ], [ -74.955567, 40.135756 ], [ -74.955701, 40.135728 ], [ -74.955867, 40.135697 ], [ -74.955967, 40.135675 ], [ -74.956112, 40.135642 ], [ -74.956184, 40.135627 ], [ -74.95625, 40.135632 ], [ -74.956304, 40.135636 ], [ -74.956333, 40.135643 ], [ -74.956366, 40.135649 ], [ -74.956412, 40.135659 ], [ -74.956443, 40.135667 ], [ -74.956469, 40.135675 ], [ -74.956502, 40.135691 ], [ -74.956534, 40.13571 ], [ -74.956577, 40.135744 ], [ -74.956659, 40.135812 ], [ -74.956838, 40.136257 ], [ -74.956916, 40.136413 ], [ -74.956944, 40.136467 ], [ -74.957003, 40.136583 ], [ -74.957139, 40.136804 ], [ -74.957218, 40.136928 ], [ -74.957278, 40.137003 ], [ -74.957392, 40.137145 ], [ -74.957543, 40.137313 ], [ -74.957822, 40.137592 ], [ -74.957993, 40.137751 ], [ -74.958136, 40.137868 ], [ -74.95823, 40.137943 ], [ -74.958315, 40.138009 ], [ -74.958428, 40.138096 ], [ -74.958587, 40.138208 ], [ -74.958809, 40.138358 ], [ -74.958893, 40.13841 ], [ -74.959055, 40.138508 ], [ -74.959372, 40.138697 ], [ -74.959531, 40.138799 ], [ -74.959674, 40.138881 ], [ -74.960112, 40.139145 ], [ -74.960141, 40.139163 ], [ -74.960207, 40.139202 ], [ -74.960248, 40.139227 ], [ -74.960291, 40.139253 ], [ -74.960353, 40.139289 ], [ -74.960959, 40.139644 ], [ -74.961098, 40.139727 ], [ -74.961197, 40.139783 ], [ -74.96144, 40.139928 ], [ -74.961537, 40.139984 ], [ -74.961807, 40.140133 ], [ -74.961976, 40.140225 ], [ -74.962362, 40.140447 ], [ -74.962674, 40.140627 ], [ -74.963259, 40.140965 ], [ -74.964036, 40.14138 ], [ -74.964112, 40.141418 ], [ -74.964313, 40.141524 ], [ -74.964696, 40.141774 ], [ -74.964755, 40.141832 ], [ -74.964798, 40.141888 ], [ -74.964822, 40.141925 ], [ -74.964841, 40.141967 ], [ -74.964857, 40.142013 ], [ -74.964861, 40.142064 ], [ -74.964852, 40.142123 ], [ -74.964841, 40.142182 ], [ -74.964822, 40.142233 ], [ -74.964801, 40.142282 ], [ -74.964778, 40.142342 ], [ -74.964739, 40.142452 ], [ -74.964631, 40.142544 ], [ -74.96462, 40.142552 ], [ -74.964477, 40.142672 ], [ -74.964311, 40.142793 ], [ -74.964248, 40.142831 ], [ -74.96416, 40.142885 ], [ -74.963981, 40.142964 ], [ -74.963939, 40.142986 ], [ -74.963903, 40.143034 ], [ -74.96385, 40.143059 ], [ -74.963509, 40.143201 ], [ -74.963439, 40.143228 ], [ -74.963386, 40.143228 ], [ -74.962952, 40.143378 ], [ -74.962499, 40.143542 ], [ -74.962279, 40.143612 ], [ -74.961592, 40.143842 ], [ -74.960754, 40.14413 ], [ -74.95994, 40.144385 ], [ -74.958007, 40.14499 ], [ -74.95857, 40.145772 ], [ -74.9587, 40.145928 ], [ -74.958788, 40.146042 ], [ -74.959111, 40.146435 ], [ -74.959927, 40.147445 ], [ -74.960207, 40.1478 ], [ -74.960461, 40.148123 ], [ -74.960704, 40.148441 ], [ -74.961163, 40.149054 ], [ -74.961272, 40.149207 ], [ -74.961456, 40.149443 ], [ -74.961652, 40.149704 ], [ -74.961773, 40.149844 ], [ -74.961875, 40.149958 ], [ -74.961951, 40.15004 ], [ -74.962045, 40.150127 ], [ -74.962142, 40.150219 ], [ -74.962429, 40.150497 ], [ -74.962874, 40.150934 ], [ -74.962949, 40.151005 ], [ -74.963021, 40.151067 ], [ -74.963276, 40.151274 ], [ -74.963495, 40.151422 ], [ -74.964107, 40.15179 ], [ -74.965054, 40.152356 ], [ -74.965186, 40.152436 ], [ -74.965902, 40.152857 ], [ -74.966032, 40.152937 ], [ -74.966718, 40.153331 ], [ -74.96692, 40.153445 ], [ -74.96721, 40.153617 ], [ -74.967902, 40.154022 ], [ -74.968573, 40.154424 ], [ -74.96927, 40.154854 ], [ -74.96976, 40.155118 ], [ -74.970406, 40.155477 ], [ -74.970479, 40.155521 ], [ -74.970897, 40.155775 ], [ -74.971329, 40.155331 ], [ -74.971885, 40.154754 ], [ -74.972397, 40.154232 ], [ -74.973004, 40.153647 ], [ -74.973564, 40.153056 ], [ -74.9737, 40.152913 ], [ -74.974089, 40.152484 ], [ -74.974626, 40.151922 ], [ -74.974909, 40.151627 ], [ -74.975197, 40.151334 ], [ -74.975433, 40.151092 ], [ -74.976427, 40.151689 ], [ -74.976998, 40.151987 ], [ -74.97764, 40.152339 ], [ -74.977983, 40.152521 ], [ -74.979528, 40.153411 ], [ -74.97965, 40.153485 ], [ -74.980392, 40.153898 ], [ -74.98132, 40.154418 ], [ -74.982333, 40.155015 ], [ -74.982779, 40.155277 ], [ -74.983873, 40.155896 ], [ -74.984259, 40.156132 ], [ -74.984627, 40.156355 ], [ -74.984893, 40.156513 ], [ -74.985205, 40.15668 ], [ -74.985368, 40.156751 ], [ -74.985597, 40.156799 ], [ -74.985728, 40.156839 ], [ -74.985878, 40.15694 ], [ -74.986308, 40.1573 ], [ -74.986727, 40.157654 ], [ -74.987704, 40.158446 ], [ -74.9883, 40.15893 ], [ -74.988884, 40.159403 ], [ -74.989246, 40.159652 ], [ -74.989673, 40.15998 ], [ -74.990684, 40.15922 ], [ -74.990935, 40.159034 ], [ -74.991466, 40.158623 ], [ -74.991554, 40.158566 ], [ -74.991619, 40.158513 ], [ -74.991748, 40.158418 ], [ -74.991924, 40.158297 ], [ -74.992192, 40.158124 ], [ -74.992853, 40.157705 ], [ -74.993303, 40.157441 ], [ -74.993467, 40.15736 ], [ -74.993662, 40.157274 ], [ -74.994434, 40.15694 ], [ -74.995189, 40.156622 ], [ -74.99584, 40.156351 ], [ -74.995967, 40.156298 ], [ -74.99613, 40.156228 ], [ -74.997086, 40.155823 ], [ -74.998015, 40.155432 ], [ -74.998618, 40.155159 ], [ -74.99895, 40.155007 ], [ -74.99931, 40.15484 ], [ -74.999735, 40.154653 ], [ -74.999884, 40.154588 ], [ -74.999982, 40.154546 ], [ -75.000167, 40.154463 ], [ -75.000326, 40.154393 ], [ -75.000396, 40.15436 ], [ -75.000498, 40.154313 ], [ -75.000856, 40.15415 ], [ -75.001085, 40.154039 ], [ -75.001206, 40.153949 ], [ -75.001267, 40.153898 ], [ -75.001336, 40.153828 ], [ -75.001378, 40.153766 ], [ -75.001427, 40.153665 ], [ -75.001485, 40.153514 ], [ -75.001543, 40.153353 ], [ -75.001623, 40.153137 ], [ -75.001658, 40.153041 ], [ -75.001752, 40.152791 ], [ -75.00189, 40.152423 ], [ -75.002005, 40.152122 ], [ -75.002102, 40.151871 ], [ -75.002168, 40.151702 ], [ -75.002293, 40.151376 ], [ -75.002403, 40.15112 ], [ -75.002535, 40.150773 ], [ -75.002568, 40.150689 ], [ -75.002687, 40.150417 ], [ -75.002789, 40.150168 ], [ -75.002952, 40.14975 ], [ -75.003017, 40.149588 ], [ -75.003118, 40.149333 ], [ -75.003463, 40.148435 ], [ -75.003661, 40.147904 ], [ -75.003804, 40.147525 ], [ -75.004148, 40.146643 ], [ -75.004569, 40.145547 ], [ -75.004897, 40.144689 ], [ -75.004941, 40.144574 ], [ -75.005048, 40.144293 ], [ -75.005089, 40.144189 ], [ -75.005139, 40.144056 ], [ -75.005158, 40.144003 ], [ -75.005178, 40.143944 ], [ -75.005236, 40.143786 ], [ -75.0054, 40.143325 ], [ -75.005558, 40.14298 ], [ -75.005877, 40.142154 ], [ -75.00601, 40.141797 ], [ -75.006286, 40.14109 ], [ -75.006469, 40.14061 ], [ -75.006671, 40.140086 ], [ -75.006802, 40.139732 ], [ -75.006855, 40.13959 ], [ -75.006925, 40.139405 ], [ -75.007305, 40.138386 ], [ -75.007441, 40.138028 ], [ -75.007911, 40.136725 ], [ -75.008364, 40.13547 ], [ -75.008431, 40.135317 ], [ -75.00847, 40.135224 ], [ -75.00851, 40.135135 ], [ -75.008557, 40.13504 ], [ -75.008616, 40.134948 ], [ -75.008707, 40.134814 ], [ -75.008731, 40.13478 ], [ -75.008811, 40.134677 ], [ -75.008872, 40.1346 ], [ -75.008961, 40.134504 ], [ -75.009074, 40.134395 ], [ -75.009127, 40.134353 ], [ -75.009548, 40.134018 ], [ -75.00975, 40.13387 ], [ -75.00993, 40.133733 ], [ -75.010266, 40.133478 ], [ -75.010813, 40.13304 ], [ -75.011268, 40.132661 ], [ -75.011353, 40.132588 ], [ -75.011448, 40.132504 ], [ -75.011539, 40.132417 ], [ -75.011625, 40.132332 ], [ -75.011696, 40.132259 ], [ -75.011789, 40.132164 ], [ -75.011794, 40.13216 ], [ -75.011896, 40.132059 ], [ -75.012008, 40.131944 ], [ -75.012121, 40.131809 ], [ -75.012231, 40.131668 ], [ -75.012466, 40.131346 ], [ -75.012558, 40.131217 ], [ -75.013001, 40.130498 ], [ -75.013116, 40.130289 ], [ -75.013211, 40.13011 ], [ -75.013463, 40.129635 ], [ -75.01361, 40.129305 ], [ -75.013781, 40.128851 ], [ -75.013876, 40.128506 ], [ -75.013921, 40.12829 ], [ -75.013968, 40.128063 ], [ -75.014042, 40.127728 ], [ -75.014263, 40.126898 ], [ -75.014316, 40.126698 ], [ -75.014442, 40.126204 ], [ -75.014598, 40.125602 ], [ -75.014638, 40.12545 ], [ -75.014719, 40.125145 ], [ -75.01475, 40.125042 ], [ -75.014786, 40.124946 ], [ -75.014812, 40.124875 ], [ -75.01492, 40.124651 ], [ -75.015024, 40.124426 ], [ -75.01511, 40.124228 ], [ -75.015391, 40.123591 ], [ -75.015491, 40.123363 ], [ -75.01556, 40.123218 ], [ -75.015614, 40.123106 ], [ -75.015702, 40.122938 ], [ -75.015712, 40.122918 ], [ -75.015796, 40.122768 ], [ -75.015886, 40.122603 ], [ -75.016202, 40.121953 ], [ -75.016782, 40.120923 ], [ -75.017008, 40.120559 ], [ -75.017151, 40.120329 ], [ -75.017207, 40.120242 ], [ -75.017441, 40.11988 ], [ -75.017526, 40.119749 ], [ -75.017662, 40.119529 ], [ -75.017761, 40.119369 ], [ -75.01777, 40.119354 ], [ -75.018025, 40.118924 ], [ -75.018189, 40.118626 ], [ -75.018212, 40.118583 ], [ -75.018331, 40.118356 ], [ -75.018355, 40.118305 ], [ -75.018369, 40.118278 ], [ -75.018391, 40.118235 ], [ -75.01843, 40.118173 ], [ -75.018468, 40.118126 ], [ -75.018509, 40.118071 ], [ -75.018549, 40.11803 ], [ -75.019269, 40.117298 ], [ -75.019522, 40.117029 ], [ -75.019781, 40.116752 ], [ -75.019821, 40.116717 ], [ -75.019865, 40.116676 ], [ -75.020143, 40.116385 ], [ -75.020516, 40.115994 ], [ -75.021074, 40.115413 ], [ -75.021628, 40.114838 ], [ -75.021727, 40.114733 ], [ -75.021819, 40.11463 ], [ -75.021914, 40.114526 ], [ -75.02202, 40.114404 ], [ -75.022115, 40.114281 ], [ -75.022302, 40.114034 ], [ -75.022371, 40.114002 ], [ -75.022409, 40.11395 ], [ -75.022521, 40.113801 ], [ -75.022656, 40.11361 ], [ -75.022752, 40.113485 ], [ -75.022754, 40.113476 ], [ -75.022754, 40.113382 ], [ -75.023066, 40.113005 ], [ -75.02319, 40.112823 ], [ -75.02331, 40.112645 ], [ -75.023409, 40.1125 ], [ -75.023828, 40.111886 ], [ -75.023834, 40.111878 ], [ -75.023951, 40.11171 ], [ -75.024075, 40.111533 ], [ -75.024318, 40.111187 ], [ -75.024546, 40.110854 ], [ -75.02474, 40.110571 ], [ -75.025033, 40.11015 ], [ -75.025166, 40.109961 ], [ -75.025311, 40.109748 ], [ -75.025605, 40.10932 ], [ -75.026077, 40.10863 ], [ -75.02617, 40.108479 ], [ -75.026264, 40.108341 ], [ -75.026321, 40.108313 ], [ -75.026336, 40.108302 ], [ -75.026348, 40.108286 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028956, 40.10235 ], [ -75.029184, 40.10187 ], [ -75.029624, 40.10092 ], [ -75.029727, 40.100697 ], [ -75.029721, 40.100571 ], [ -75.029758, 40.1005 ], [ -75.029787, 40.100446 ], [ -75.029861, 40.100279 ], [ -75.029948, 40.100064 ], [ -75.029961, 40.100035 ], [ -75.030087, 40.099694 ], [ -75.030203, 40.099348 ], [ -75.030256, 40.09916 ], [ -75.030315, 40.098887 ], [ -75.030319, 40.098859 ], [ -75.030346, 40.098704 ], [ -75.030368, 40.098576 ], [ -75.030376, 40.098501 ], [ -75.030403, 40.098276 ], [ -75.030422, 40.098085 ], [ -75.030441, 40.097918 ], [ -75.030452, 40.097808 ], [ -75.030461, 40.097713 ], [ -75.030465, 40.097661 ], [ -75.030469, 40.097626 ], [ -75.030474, 40.097553 ], [ -75.03048, 40.097474 ], [ -75.030493, 40.097308 ], [ -75.030493, 40.097301 ], [ -75.030523, 40.096765 ], [ -75.030579, 40.096704 ], [ -75.030591, 40.096644 ], [ -75.030648, 40.09566 ], [ -75.030667, 40.095456 ], [ -75.030702, 40.095129 ], [ -75.030748, 40.094824 ], [ -75.030757, 40.094766 ], [ -75.030767, 40.094705 ], [ -75.030731, 40.094622 ], [ -75.030749, 40.09455 ], [ -75.030796, 40.094425 ], [ -75.030864, 40.094254 ], [ -75.030919, 40.094142 ], [ -75.030959, 40.094069 ], [ -75.031022, 40.093956 ], [ -75.031078, 40.093852 ], [ -75.031131, 40.093751 ], [ -75.03129, 40.093492 ], [ -75.031494, 40.093111 ], [ -75.03155, 40.093008 ], [ -75.031578, 40.092958 ], [ -75.032163, 40.091944 ], [ -75.03234, 40.09163 ], [ -75.032415, 40.091496 ], [ -75.03268, 40.091027 ], [ -75.032886, 40.09067 ], [ -75.032974, 40.090518 ], [ -75.033091, 40.090317 ], [ -75.033248, 40.090044 ], [ -75.033328, 40.089906 ], [ -75.033358, 40.089856 ], [ -75.033493, 40.08961 ], [ -75.033605, 40.089438 ], [ -75.033677, 40.089332 ], [ -75.033715, 40.089279 ], [ -75.033787, 40.089183 ], [ -75.033797, 40.089169 ], [ -75.033875, 40.089065 ], [ -75.033958, 40.088965 ], [ -75.034054, 40.088847 ], [ -75.034157, 40.088732 ], [ -75.034275, 40.088601 ], [ -75.034296, 40.088579 ], [ -75.034606, 40.088252 ], [ -75.0349, 40.087936 ], [ -75.035031, 40.087798 ], [ -75.03544, 40.087364 ], [ -75.035764, 40.087016 ], [ -75.036016, 40.086753 ], [ -75.036148, 40.086627 ], [ -75.036232, 40.086557 ], [ -75.036446, 40.086363 ], [ -75.036518, 40.086344 ], [ -75.036656, 40.086224 ], [ -75.036867, 40.086031 ], [ -75.036873, 40.086023 ], [ -75.037055, 40.085839 ], [ -75.037066, 40.085829 ], [ -75.03736, 40.085528 ], [ -75.037402, 40.085487 ], [ -75.037779, 40.085077 ], [ -75.037861, 40.084993 ], [ -75.037993, 40.084858 ], [ -75.038118, 40.08473 ], [ -75.038198, 40.084633 ], [ -75.038204, 40.084537 ], [ -75.038339, 40.084416 ], [ -75.03827, 40.084288 ], [ -75.038245, 40.084218 ], [ -75.038179, 40.08399 ], [ -75.038057, 40.083566 ], [ -75.037868, 40.082904 ], [ -75.037747, 40.082502 ], [ -75.037806, 40.082462 ], [ -75.037868, 40.082407 ], [ -75.038158, 40.082113 ], [ -75.038797, 40.081463 ], [ -75.039037, 40.081223 ], [ -75.04025, 40.080005 ], [ -75.041209, 40.079039 ], [ -75.041788, 40.078474 ], [ -75.042839, 40.077417 ], [ -75.043115, 40.077135 ], [ -75.04319, 40.077185 ], [ -75.043307, 40.077245 ], [ -75.043426, 40.077304 ], [ -75.043726, 40.077484 ], [ -75.043869, 40.077549 ], [ -75.043911, 40.077498 ], [ -75.044019, 40.077453 ], [ -75.044035, 40.077441 ], [ -75.044115, 40.077332 ], [ -75.044138, 40.077301 ], [ -75.044405, 40.076911 ], [ -75.044589, 40.07666 ], [ -75.04492, 40.076274 ], [ -75.045185, 40.075993 ], [ -75.045424, 40.07571 ], [ -75.045781, 40.075308 ], [ -75.045899, 40.07519 ], [ -75.045985, 40.075098 ], [ -75.046045, 40.075033 ], [ -75.04615, 40.074904 ], [ -75.046613, 40.074352 ], [ -75.046887, 40.074027 ], [ -75.047162, 40.073692 ], [ -75.047418, 40.073392 ], [ -75.047703, 40.073046 ], [ -75.048022, 40.072661 ], [ -75.048242, 40.072396 ], [ -75.048501, 40.072111 ], [ -75.048811, 40.071764 ], [ -75.049261, 40.07128 ], [ -75.049354, 40.07118 ], [ -75.049531, 40.070985 ], [ -75.049579, 40.07093 ], [ -75.050294, 40.070167 ], [ -75.050426, 40.070015 ], [ -75.050517, 40.06989 ], [ -75.050525, 40.069879 ], [ -75.050643, 40.069711 ], [ -75.050738, 40.069553 ], [ -75.050838, 40.069326 ], [ -75.050912, 40.069117 ], [ -75.05094, 40.069015 ], [ -75.050942, 40.069001 ], [ -75.050963, 40.068905 ], [ -75.050991, 40.068726 ], [ -75.051056, 40.068281 ], [ -75.051144, 40.067569 ], [ -75.051206, 40.067125 ], [ -75.051211, 40.067053 ], [ -75.051228, 40.066821 ], [ -75.051169, 40.066725 ], [ -75.051186, 40.066629 ], [ -75.051278, 40.066191 ], [ -75.051386, 40.065667 ], [ -75.051437, 40.065388 ], [ -75.051449, 40.065321 ], [ -75.051479, 40.065107 ], [ -75.0515, 40.064917 ], [ -75.051533, 40.064679 ], [ -75.05156, 40.064392 ], [ -75.051602, 40.063916 ], [ -75.051623, 40.063673 ], [ -75.051634, 40.063539 ], [ -75.051679, 40.063103 ], [ -75.051724, 40.062638 ], [ -75.051809, 40.06176 ], [ -75.051852, 40.061296 ], [ -75.051893, 40.060809 ], [ -75.051926, 40.060413 ], [ -75.05196, 40.060126 ], [ -75.051982, 40.059908 ], [ -75.052004, 40.059695 ], [ -75.052033, 40.059543 ], [ -75.052073, 40.059408 ], [ -75.052116, 40.059304 ], [ -75.052181, 40.059166 ], [ -75.05237, 40.058771 ], [ -75.052555, 40.058415 ], [ -75.052728, 40.058015 ], [ -75.052883, 40.057632 ], [ -75.053009, 40.057327 ], [ -75.053196, 40.056874 ], [ -75.053361, 40.056467 ], [ -75.053517, 40.056082 ], [ -75.053823, 40.055334 ], [ -75.053981, 40.054955 ], [ -75.054088, 40.054669 ], [ -75.054103, 40.054632 ], [ -75.054139, 40.054545 ], [ -75.054187, 40.05444 ], [ -75.05424, 40.054342 ], [ -75.054313, 40.054249 ], [ -75.054429, 40.054113 ], [ -75.054684, 40.053813 ], [ -75.054953, 40.053501 ], [ -75.055238, 40.053163 ], [ -75.055492, 40.052862 ], [ -75.055746, 40.052572 ], [ -75.056028, 40.052233 ], [ -75.056297, 40.051921 ], [ -75.056573, 40.0516 ], [ -75.056843, 40.051283 ], [ -75.057133, 40.050944 ], [ -75.057375, 40.050654 ], [ -75.057594, 40.050397 ], [ -75.05778, 40.050181 ], [ -75.057836, 40.050117 ], [ -75.058049, 40.049873 ], [ -75.05823, 40.049656 ], [ -75.058526, 40.049317 ], [ -75.058712, 40.049104 ], [ -75.058936, 40.048832 ], [ -75.059605, 40.04805 ], [ -75.05968, 40.047962 ], [ -75.059741, 40.047889 ], [ -75.059806, 40.04781 ], [ -75.059859, 40.047737 ], [ -75.059894, 40.047675 ], [ -75.059925, 40.047605 ], [ -75.060022, 40.047339 ], [ -75.060055, 40.047236 ], [ -75.060133, 40.046994 ], [ -75.060167, 40.046901 ], [ -75.060302, 40.046524 ], [ -75.060564, 40.045761 ], [ -75.060654, 40.0455 ], [ -75.060683, 40.045412 ], [ -75.060707, 40.045356 ], [ -75.060727, 40.045324 ], [ -75.060758, 40.04528 ], [ -75.060831, 40.045201 ], [ -75.060992, 40.045038 ], [ -75.061066, 40.044964 ], [ -75.061296, 40.044733 ], [ -75.061591, 40.044443 ], [ -75.061926, 40.044111 ], [ -75.062126, 40.043907 ], [ -75.062234, 40.043797 ], [ -75.062535, 40.04349 ], [ -75.062826, 40.043189 ], [ -75.062955, 40.043061 ], [ -75.063171, 40.042848 ], [ -75.063479, 40.04253 ], [ -75.063773, 40.042231 ], [ -75.064043, 40.041968 ], [ -75.064345, 40.04166 ], [ -75.064662, 40.041351 ], [ -75.064954, 40.041056 ], [ -75.065276, 40.04074 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068255, 40.0378 ], [ -75.068333, 40.037729 ], [ -75.068451, 40.037621 ], [ -75.068587, 40.037493 ], [ -75.068725, 40.037355 ], [ -75.069283, 40.036815 ], [ -75.070214, 40.035906 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307810", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.025497, 40.104165 ], [ -75.02525, 40.103971 ], [ -75.02535, 40.103904 ], [ -75.02655, 40.102995 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028956, 40.10235 ], [ -75.029184, 40.10187 ], [ -75.029624, 40.10092 ], [ -75.029727, 40.100697 ], [ -75.029721, 40.100571 ], [ -75.029758, 40.1005 ], [ -75.029787, 40.100446 ], [ -75.029861, 40.100279 ], [ -75.029948, 40.100064 ], [ -75.029961, 40.100035 ], [ -75.030087, 40.099694 ], [ -75.030203, 40.099348 ], [ -75.030256, 40.09916 ], [ -75.030315, 40.098887 ], [ -75.030319, 40.098859 ], [ -75.030346, 40.098704 ], [ -75.030368, 40.098576 ], [ -75.030376, 40.098501 ], [ -75.030403, 40.098276 ], [ -75.030422, 40.098085 ], [ -75.030441, 40.097918 ], [ -75.030452, 40.097808 ], [ -75.030461, 40.097713 ], [ -75.030465, 40.097661 ], [ -75.030469, 40.097626 ], [ -75.030474, 40.097553 ], [ -75.03048, 40.097474 ], [ -75.030493, 40.097308 ], [ -75.030493, 40.097301 ], [ -75.030523, 40.096765 ], [ -75.030579, 40.096704 ], [ -75.030591, 40.096644 ], [ -75.030648, 40.09566 ], [ -75.030667, 40.095456 ], [ -75.030702, 40.095129 ], [ -75.030748, 40.094824 ], [ -75.030757, 40.094766 ], [ -75.030767, 40.094705 ], [ -75.030731, 40.094622 ], [ -75.030749, 40.09455 ], [ -75.030796, 40.094425 ], [ -75.030864, 40.094254 ], [ -75.030919, 40.094142 ], [ -75.030959, 40.094069 ], [ -75.031022, 40.093956 ], [ -75.031078, 40.093852 ], [ -75.031131, 40.093751 ], [ -75.03129, 40.093492 ], [ -75.031494, 40.093111 ], [ -75.03155, 40.093008 ], [ -75.031578, 40.092958 ], [ -75.032163, 40.091944 ], [ -75.03234, 40.09163 ], [ -75.032415, 40.091496 ], [ -75.03268, 40.091027 ], [ -75.032886, 40.09067 ], [ -75.032974, 40.090518 ], [ -75.033091, 40.090317 ], [ -75.033248, 40.090044 ], [ -75.033328, 40.089906 ], [ -75.033358, 40.089856 ], [ -75.033493, 40.08961 ], [ -75.033605, 40.089438 ], [ -75.033677, 40.089332 ], [ -75.033715, 40.089279 ], [ -75.033787, 40.089183 ], [ -75.033797, 40.089169 ], [ -75.033875, 40.089065 ], [ -75.033958, 40.088965 ], [ -75.034054, 40.088847 ], [ -75.034157, 40.088732 ], [ -75.034275, 40.088601 ], [ -75.034296, 40.088579 ], [ -75.034606, 40.088252 ], [ -75.0349, 40.087936 ], [ -75.035031, 40.087798 ], [ -75.03544, 40.087364 ], [ -75.035764, 40.087016 ], [ -75.036016, 40.086753 ], [ -75.036148, 40.086627 ], [ -75.036232, 40.086557 ], [ -75.036446, 40.086363 ], [ -75.036518, 40.086344 ], [ -75.036656, 40.086224 ], [ -75.036867, 40.086031 ], [ -75.036873, 40.086023 ], [ -75.037055, 40.085839 ], [ -75.037066, 40.085829 ], [ -75.03736, 40.085528 ], [ -75.037402, 40.085487 ], [ -75.037779, 40.085077 ], [ -75.037861, 40.084993 ], [ -75.037993, 40.084858 ], [ -75.038118, 40.08473 ], [ -75.038198, 40.084633 ], [ -75.038204, 40.084537 ], [ -75.038339, 40.084416 ], [ -75.03827, 40.084288 ], [ -75.038245, 40.084218 ], [ -75.038179, 40.08399 ], [ -75.038057, 40.083566 ], [ -75.037868, 40.082904 ], [ -75.037747, 40.082502 ], [ -75.037806, 40.082462 ], [ -75.037868, 40.082407 ], [ -75.038158, 40.082113 ], [ -75.038797, 40.081463 ], [ -75.039037, 40.081223 ], [ -75.04025, 40.080005 ], [ -75.041209, 40.079039 ], [ -75.041788, 40.078474 ], [ -75.042839, 40.077417 ], [ -75.043115, 40.077135 ], [ -75.04319, 40.077185 ], [ -75.043307, 40.077245 ], [ -75.043426, 40.077304 ], [ -75.043726, 40.077484 ], [ -75.043869, 40.077549 ], [ -75.043911, 40.077498 ], [ -75.044019, 40.077453 ], [ -75.044035, 40.077441 ], [ -75.044115, 40.077332 ], [ -75.044138, 40.077301 ], [ -75.044405, 40.076911 ], [ -75.044589, 40.07666 ], [ -75.04492, 40.076274 ], [ -75.045185, 40.075993 ], [ -75.045424, 40.07571 ], [ -75.045781, 40.075308 ], [ -75.045899, 40.07519 ], [ -75.045985, 40.075098 ], [ -75.046045, 40.075033 ], [ -75.04615, 40.074904 ], [ -75.046613, 40.074352 ], [ -75.046887, 40.074027 ], [ -75.047162, 40.073692 ], [ -75.047418, 40.073392 ], [ -75.047703, 40.073046 ], [ -75.048022, 40.072661 ], [ -75.048242, 40.072396 ], [ -75.048501, 40.072111 ], [ -75.048811, 40.071764 ], [ -75.049261, 40.07128 ], [ -75.049354, 40.07118 ], [ -75.049531, 40.070985 ], [ -75.049579, 40.07093 ], [ -75.050294, 40.070167 ], [ -75.050426, 40.070015 ], [ -75.050517, 40.06989 ], [ -75.050525, 40.069879 ], [ -75.050643, 40.069711 ], [ -75.050738, 40.069553 ], [ -75.050838, 40.069326 ], [ -75.050912, 40.069117 ], [ -75.05094, 40.069015 ], [ -75.050942, 40.069001 ], [ -75.050963, 40.068905 ], [ -75.050991, 40.068726 ], [ -75.051056, 40.068281 ], [ -75.051144, 40.067569 ], [ -75.051206, 40.067125 ], [ -75.051211, 40.067053 ], [ -75.051228, 40.066821 ], [ -75.051169, 40.066725 ], [ -75.051186, 40.066629 ], [ -75.051278, 40.066191 ], [ -75.051386, 40.065667 ], [ -75.051437, 40.065388 ], [ -75.051449, 40.065321 ], [ -75.051479, 40.065107 ], [ -75.0515, 40.064917 ], [ -75.051533, 40.064679 ], [ -75.05156, 40.064392 ], [ -75.051602, 40.063916 ], [ -75.051623, 40.063673 ], [ -75.051634, 40.063539 ], [ -75.051679, 40.063103 ], [ -75.051724, 40.062638 ], [ -75.051809, 40.06176 ], [ -75.051852, 40.061296 ], [ -75.051893, 40.060809 ], [ -75.051926, 40.060413 ], [ -75.05196, 40.060126 ], [ -75.051982, 40.059908 ], [ -75.052004, 40.059695 ], [ -75.052033, 40.059543 ], [ -75.052073, 40.059408 ], [ -75.052116, 40.059304 ], [ -75.052181, 40.059166 ], [ -75.05237, 40.058771 ], [ -75.052555, 40.058415 ], [ -75.052728, 40.058015 ], [ -75.052883, 40.057632 ], [ -75.053009, 40.057327 ], [ -75.053196, 40.056874 ], [ -75.053361, 40.056467 ], [ -75.053517, 40.056082 ], [ -75.053823, 40.055334 ], [ -75.053981, 40.054955 ], [ -75.054088, 40.054669 ], [ -75.054103, 40.054632 ], [ -75.054139, 40.054545 ], [ -75.054187, 40.05444 ], [ -75.05424, 40.054342 ], [ -75.054313, 40.054249 ], [ -75.054429, 40.054113 ], [ -75.054684, 40.053813 ], [ -75.054953, 40.053501 ], [ -75.055238, 40.053163 ], [ -75.055492, 40.052862 ], [ -75.055746, 40.052572 ], [ -75.056028, 40.052233 ], [ -75.056297, 40.051921 ], [ -75.056573, 40.0516 ], [ -75.056843, 40.051283 ], [ -75.057133, 40.050944 ], [ -75.057375, 40.050654 ], [ -75.057594, 40.050397 ], [ -75.05778, 40.050181 ], [ -75.057836, 40.050117 ], [ -75.058049, 40.049873 ], [ -75.05823, 40.049656 ], [ -75.058526, 40.049317 ], [ -75.058712, 40.049104 ], [ -75.058936, 40.048832 ], [ -75.059605, 40.04805 ], [ -75.05968, 40.047962 ], [ -75.059741, 40.047889 ], [ -75.059806, 40.04781 ], [ -75.059859, 40.047737 ], [ -75.059894, 40.047675 ], [ -75.059925, 40.047605 ], [ -75.060022, 40.047339 ], [ -75.060055, 40.047236 ], [ -75.060133, 40.046994 ], [ -75.060167, 40.046901 ], [ -75.060302, 40.046524 ], [ -75.060564, 40.045761 ], [ -75.060654, 40.0455 ], [ -75.060683, 40.045412 ], [ -75.060707, 40.045356 ], [ -75.060727, 40.045324 ], [ -75.060758, 40.04528 ], [ -75.060831, 40.045201 ], [ -75.060992, 40.045038 ], [ -75.061066, 40.044964 ], [ -75.061296, 40.044733 ], [ -75.061591, 40.044443 ], [ -75.061926, 40.044111 ], [ -75.062126, 40.043907 ], [ -75.062234, 40.043797 ], [ -75.062535, 40.04349 ], [ -75.062826, 40.043189 ], [ -75.062955, 40.043061 ], [ -75.063171, 40.042848 ], [ -75.063479, 40.04253 ], [ -75.063773, 40.042231 ], [ -75.064043, 40.041968 ], [ -75.064345, 40.04166 ], [ -75.064662, 40.041351 ], [ -75.064954, 40.041056 ], [ -75.065276, 40.04074 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068255, 40.0378 ], [ -75.068333, 40.037729 ], [ -75.068451, 40.037621 ], [ -75.068587, 40.037493 ], [ -75.068725, 40.037355 ], [ -75.069283, 40.036815 ], [ -75.070214, 40.035906 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307811", "route_id": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.957003, 40.136583 ], [ -74.957139, 40.136804 ], [ -74.957218, 40.136928 ], [ -74.957278, 40.137003 ], [ -74.957392, 40.137145 ], [ -74.957543, 40.137313 ], [ -74.957822, 40.137592 ], [ -74.957993, 40.137751 ], [ -74.958136, 40.137868 ], [ -74.95823, 40.137943 ], [ -74.958315, 40.138009 ], [ -74.958428, 40.138096 ], [ -74.958587, 40.138208 ], [ -74.958809, 40.138358 ], [ -74.958893, 40.13841 ], [ -74.959055, 40.138508 ], [ -74.959372, 40.138697 ], [ -74.959531, 40.138799 ], [ -74.959674, 40.138881 ], [ -74.960112, 40.139145 ], [ -74.960141, 40.139163 ], [ -74.960207, 40.139202 ], [ -74.960248, 40.139227 ], [ -74.960291, 40.139253 ], [ -74.960353, 40.139289 ], [ -74.960959, 40.139644 ], [ -74.961098, 40.139727 ], [ -74.961197, 40.139783 ], [ -74.96144, 40.139928 ], [ -74.961537, 40.139984 ], [ -74.961807, 40.140133 ], [ -74.961976, 40.140225 ], [ -74.962362, 40.140447 ], [ -74.962674, 40.140627 ], [ -74.963259, 40.140965 ], [ -74.964036, 40.14138 ], [ -74.964112, 40.141418 ], [ -74.964313, 40.141524 ], [ -74.964696, 40.141774 ], [ -74.964755, 40.141832 ], [ -74.964798, 40.141888 ], [ -74.964822, 40.141925 ], [ -74.964841, 40.141967 ], [ -74.964857, 40.142013 ], [ -74.964861, 40.142064 ], [ -74.964852, 40.142123 ], [ -74.964841, 40.142182 ], [ -74.964822, 40.142233 ], [ -74.964801, 40.142282 ], [ -74.964778, 40.142342 ], [ -74.964739, 40.142452 ], [ -74.964631, 40.142544 ], [ -74.96462, 40.142552 ], [ -74.964477, 40.142672 ], [ -74.964311, 40.142793 ], [ -74.964248, 40.142831 ], [ -74.96416, 40.142885 ], [ -74.963981, 40.142964 ], [ -74.963939, 40.142986 ], [ -74.963903, 40.143034 ], [ -74.96385, 40.143059 ], [ -74.963509, 40.143201 ], [ -74.963439, 40.143228 ], [ -74.963386, 40.143228 ], [ -74.962952, 40.143378 ], [ -74.962499, 40.143542 ], [ -74.962279, 40.143612 ], [ -74.961592, 40.143842 ], [ -74.960754, 40.14413 ], [ -74.95994, 40.144385 ], [ -74.958007, 40.14499 ], [ -74.95857, 40.145772 ], [ -74.9587, 40.145928 ], [ -74.958788, 40.146042 ], [ -74.959111, 40.146435 ], [ -74.959927, 40.147445 ], [ -74.960207, 40.1478 ], [ -74.960461, 40.148123 ], [ -74.960704, 40.148441 ], [ -74.961163, 40.149054 ], [ -74.961272, 40.149207 ], [ -74.961456, 40.149443 ], [ -74.961652, 40.149704 ], [ -74.961773, 40.149844 ], [ -74.961875, 40.149958 ], [ -74.961951, 40.15004 ], [ -74.962045, 40.150127 ], [ -74.962142, 40.150219 ], [ -74.962429, 40.150497 ], [ -74.962874, 40.150934 ], [ -74.962949, 40.151005 ], [ -74.963021, 40.151067 ], [ -74.963276, 40.151274 ], [ -74.963495, 40.151422 ], [ -74.964107, 40.15179 ], [ -74.965054, 40.152356 ], [ -74.965186, 40.152436 ], [ -74.965902, 40.152857 ], [ -74.966032, 40.152937 ], [ -74.966718, 40.153331 ], [ -74.96692, 40.153445 ], [ -74.96721, 40.153617 ], [ -74.967902, 40.154022 ], [ -74.968573, 40.154424 ], [ -74.96927, 40.154854 ], [ -74.96976, 40.155118 ], [ -74.970406, 40.155477 ], [ -74.970479, 40.155521 ], [ -74.970897, 40.155775 ], [ -74.971329, 40.155331 ], [ -74.971885, 40.154754 ], [ -74.972397, 40.154232 ], [ -74.973004, 40.153647 ], [ -74.973564, 40.153056 ], [ -74.9737, 40.152913 ], [ -74.974089, 40.152484 ], [ -74.974626, 40.151922 ], [ -74.974909, 40.151627 ], [ -74.975197, 40.151334 ], [ -74.975433, 40.151092 ], [ -74.976427, 40.151689 ], [ -74.976998, 40.151987 ], [ -74.97764, 40.152339 ], [ -74.977983, 40.152521 ], [ -74.979528, 40.153411 ], [ -74.97965, 40.153485 ], [ -74.980392, 40.153898 ], [ -74.98132, 40.154418 ], [ -74.982333, 40.155015 ], [ -74.982779, 40.155277 ], [ -74.983873, 40.155896 ], [ -74.984259, 40.156132 ], [ -74.984627, 40.156355 ], [ -74.984893, 40.156513 ], [ -74.985205, 40.15668 ], [ -74.985368, 40.156751 ], [ -74.985597, 40.156799 ], [ -74.985728, 40.156839 ], [ -74.985878, 40.15694 ], [ -74.986308, 40.1573 ], [ -74.986727, 40.157654 ], [ -74.987704, 40.158446 ], [ -74.9883, 40.15893 ], [ -74.988884, 40.159403 ], [ -74.989246, 40.159652 ], [ -74.989673, 40.15998 ], [ -74.990684, 40.15922 ], [ -74.990935, 40.159034 ], [ -74.991466, 40.158623 ], [ -74.991554, 40.158566 ], [ -74.991619, 40.158513 ], [ -74.991748, 40.158418 ], [ -74.991924, 40.158297 ], [ -74.992192, 40.158124 ], [ -74.992853, 40.157705 ], [ -74.993303, 40.157441 ], [ -74.993467, 40.15736 ], [ -74.993662, 40.157274 ], [ -74.994434, 40.15694 ], [ -74.995189, 40.156622 ], [ -74.99584, 40.156351 ], [ -74.995967, 40.156298 ], [ -74.99613, 40.156228 ], [ -74.997086, 40.155823 ], [ -74.998015, 40.155432 ], [ -74.998618, 40.155159 ], [ -74.99895, 40.155007 ], [ -74.99931, 40.15484 ], [ -74.999735, 40.154653 ], [ -74.999884, 40.154588 ], [ -74.999982, 40.154546 ], [ -75.000167, 40.154463 ], [ -75.000326, 40.154393 ], [ -75.000396, 40.15436 ], [ -75.000498, 40.154313 ], [ -75.000856, 40.15415 ], [ -75.001085, 40.154039 ], [ -75.001206, 40.153949 ], [ -75.001267, 40.153898 ], [ -75.001336, 40.153828 ], [ -75.001378, 40.153766 ], [ -75.001427, 40.153665 ], [ -75.001485, 40.153514 ], [ -75.001543, 40.153353 ], [ -75.001623, 40.153137 ], [ -75.001658, 40.153041 ], [ -75.001752, 40.152791 ], [ -75.00189, 40.152423 ], [ -75.002005, 40.152122 ], [ -75.002102, 40.151871 ], [ -75.002168, 40.151702 ], [ -75.002293, 40.151376 ], [ -75.002403, 40.15112 ], [ -75.002535, 40.150773 ], [ -75.002568, 40.150689 ], [ -75.002687, 40.150417 ], [ -75.002789, 40.150168 ], [ -75.002952, 40.14975 ], [ -75.003017, 40.149588 ], [ -75.003118, 40.149333 ], [ -75.003463, 40.148435 ], [ -75.003661, 40.147904 ], [ -75.003804, 40.147525 ], [ -75.004148, 40.146643 ], [ -75.004569, 40.145547 ], [ -75.004897, 40.144689 ], [ -75.004941, 40.144574 ], [ -75.005048, 40.144293 ], [ -75.005089, 40.144189 ], [ -75.005139, 40.144056 ], [ -75.005158, 40.144003 ], [ -75.005178, 40.143944 ], [ -75.005236, 40.143786 ], [ -75.0054, 40.143325 ], [ -75.005558, 40.14298 ], [ -75.005877, 40.142154 ], [ -75.00601, 40.141797 ], [ -75.006286, 40.14109 ], [ -75.006469, 40.14061 ], [ -75.006671, 40.140086 ], [ -75.006802, 40.139732 ], [ -75.006855, 40.13959 ], [ -75.006925, 40.139405 ], [ -75.007305, 40.138386 ], [ -75.007441, 40.138028 ], [ -75.007911, 40.136725 ], [ -75.008364, 40.13547 ], [ -75.008431, 40.135317 ], [ -75.00847, 40.135224 ], [ -75.00851, 40.135135 ], [ -75.008557, 40.13504 ], [ -75.008616, 40.134948 ], [ -75.008707, 40.134814 ], [ -75.008731, 40.13478 ], [ -75.008811, 40.134677 ], [ -75.008872, 40.1346 ], [ -75.008961, 40.134504 ], [ -75.009074, 40.134395 ], [ -75.009127, 40.134353 ], [ -75.009548, 40.134018 ], [ -75.00975, 40.13387 ], [ -75.00993, 40.133733 ], [ -75.010266, 40.133478 ], [ -75.010813, 40.13304 ], [ -75.011268, 40.132661 ], [ -75.011353, 40.132588 ], [ -75.011448, 40.132504 ], [ -75.011539, 40.132417 ], [ -75.011625, 40.132332 ], [ -75.011696, 40.132259 ], [ -75.011789, 40.132164 ], [ -75.011794, 40.13216 ], [ -75.011896, 40.132059 ], [ -75.012008, 40.131944 ], [ -75.012121, 40.131809 ], [ -75.012231, 40.131668 ], [ -75.012466, 40.131346 ], [ -75.012558, 40.131217 ], [ -75.013001, 40.130498 ], [ -75.013116, 40.130289 ], [ -75.013211, 40.13011 ], [ -75.013463, 40.129635 ], [ -75.01361, 40.129305 ], [ -75.013781, 40.128851 ], [ -75.013876, 40.128506 ], [ -75.013921, 40.12829 ], [ -75.013968, 40.128063 ], [ -75.014042, 40.127728 ], [ -75.014263, 40.126898 ], [ -75.014316, 40.126698 ], [ -75.014442, 40.126204 ], [ -75.014598, 40.125602 ], [ -75.014638, 40.12545 ], [ -75.014719, 40.125145 ], [ -75.01475, 40.125042 ], [ -75.014786, 40.124946 ], [ -75.014812, 40.124875 ], [ -75.01492, 40.124651 ], [ -75.015024, 40.124426 ], [ -75.01511, 40.124228 ], [ -75.015391, 40.123591 ], [ -75.015491, 40.123363 ], [ -75.01556, 40.123218 ], [ -75.015614, 40.123106 ], [ -75.015702, 40.122938 ], [ -75.015712, 40.122918 ], [ -75.015796, 40.122768 ], [ -75.015886, 40.122603 ], [ -75.016202, 40.121953 ], [ -75.016782, 40.120923 ], [ -75.017008, 40.120559 ], [ -75.017151, 40.120329 ], [ -75.017207, 40.120242 ], [ -75.017441, 40.11988 ], [ -75.017526, 40.119749 ], [ -75.017662, 40.119529 ], [ -75.017761, 40.119369 ], [ -75.01777, 40.119354 ], [ -75.018025, 40.118924 ], [ -75.018189, 40.118626 ], [ -75.018212, 40.118583 ], [ -75.018331, 40.118356 ], [ -75.018355, 40.118305 ], [ -75.018369, 40.118278 ], [ -75.018391, 40.118235 ], [ -75.01843, 40.118173 ], [ -75.018468, 40.118126 ], [ -75.018509, 40.118071 ], [ -75.018549, 40.11803 ], [ -75.019269, 40.117298 ], [ -75.019522, 40.117029 ], [ -75.019781, 40.116752 ], [ -75.019821, 40.116717 ], [ -75.019865, 40.116676 ], [ -75.020143, 40.116385 ], [ -75.020516, 40.115994 ], [ -75.021074, 40.115413 ], [ -75.021628, 40.114838 ], [ -75.021727, 40.114733 ], [ -75.021819, 40.11463 ], [ -75.021914, 40.114526 ], [ -75.02202, 40.114404 ], [ -75.022115, 40.114281 ], [ -75.022302, 40.114034 ], [ -75.022371, 40.114002 ], [ -75.022409, 40.11395 ], [ -75.022521, 40.113801 ], [ -75.022656, 40.11361 ], [ -75.022752, 40.113485 ], [ -75.022754, 40.113476 ], [ -75.022754, 40.113382 ], [ -75.023066, 40.113005 ], [ -75.02319, 40.112823 ], [ -75.02331, 40.112645 ], [ -75.023409, 40.1125 ], [ -75.023828, 40.111886 ], [ -75.023834, 40.111878 ], [ -75.023951, 40.11171 ], [ -75.024075, 40.111533 ], [ -75.024318, 40.111187 ], [ -75.024546, 40.110854 ], [ -75.02474, 40.110571 ], [ -75.025033, 40.11015 ], [ -75.025166, 40.109961 ], [ -75.025311, 40.109748 ], [ -75.025605, 40.10932 ], [ -75.026077, 40.10863 ], [ -75.02617, 40.108479 ], [ -75.026264, 40.108341 ], [ -75.026321, 40.108313 ], [ -75.026336, 40.108302 ], [ -75.026348, 40.108286 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028956, 40.10235 ], [ -75.029184, 40.10187 ], [ -75.029624, 40.10092 ], [ -75.029727, 40.100697 ], [ -75.029721, 40.100571 ], [ -75.029758, 40.1005 ], [ -75.029787, 40.100446 ], [ -75.029861, 40.100279 ], [ -75.029948, 40.100064 ], [ -75.029961, 40.100035 ], [ -75.030087, 40.099694 ], [ -75.030203, 40.099348 ], [ -75.030256, 40.09916 ], [ -75.030315, 40.098887 ], [ -75.030319, 40.098859 ], [ -75.030346, 40.098704 ], [ -75.030368, 40.098576 ], [ -75.030376, 40.098501 ], [ -75.030403, 40.098276 ], [ -75.030422, 40.098085 ], [ -75.030441, 40.097918 ], [ -75.030452, 40.097808 ], [ -75.030461, 40.097713 ], [ -75.030465, 40.097661 ], [ -75.030469, 40.097626 ], [ -75.030474, 40.097553 ], [ -75.03048, 40.097474 ], [ -75.030493, 40.097308 ], [ -75.030493, 40.097301 ], [ -75.030523, 40.096765 ], [ -75.030579, 40.096704 ], [ -75.030591, 40.096644 ], [ -75.030648, 40.09566 ], [ -75.030667, 40.095456 ], [ -75.030702, 40.095129 ], [ -75.030748, 40.094824 ], [ -75.030757, 40.094766 ], [ -75.030767, 40.094705 ], [ -75.030731, 40.094622 ], [ -75.030749, 40.09455 ], [ -75.030796, 40.094425 ], [ -75.030864, 40.094254 ], [ -75.030919, 40.094142 ], [ -75.030959, 40.094069 ], [ -75.031022, 40.093956 ], [ -75.031078, 40.093852 ], [ -75.031131, 40.093751 ], [ -75.03129, 40.093492 ], [ -75.031494, 40.093111 ], [ -75.03155, 40.093008 ], [ -75.031578, 40.092958 ], [ -75.032163, 40.091944 ], [ -75.03234, 40.09163 ], [ -75.032415, 40.091496 ], [ -75.03268, 40.091027 ], [ -75.032886, 40.09067 ], [ -75.032974, 40.090518 ], [ -75.033091, 40.090317 ], [ -75.033248, 40.090044 ], [ -75.033328, 40.089906 ], [ -75.033358, 40.089856 ], [ -75.033493, 40.08961 ], [ -75.033605, 40.089438 ], [ -75.033677, 40.089332 ], [ -75.033715, 40.089279 ], [ -75.033787, 40.089183 ], [ -75.033797, 40.089169 ], [ -75.033875, 40.089065 ], [ -75.033958, 40.088965 ], [ -75.034054, 40.088847 ], [ -75.034157, 40.088732 ], [ -75.034275, 40.088601 ], [ -75.034296, 40.088579 ], [ -75.034606, 40.088252 ], [ -75.0349, 40.087936 ], [ -75.035031, 40.087798 ], [ -75.03544, 40.087364 ], [ -75.035764, 40.087016 ], [ -75.036016, 40.086753 ], [ -75.036148, 40.086627 ], [ -75.036232, 40.086557 ], [ -75.036446, 40.086363 ], [ -75.036518, 40.086344 ], [ -75.036656, 40.086224 ], [ -75.036867, 40.086031 ], [ -75.036873, 40.086023 ], [ -75.037055, 40.085839 ], [ -75.037066, 40.085829 ], [ -75.03736, 40.085528 ], [ -75.037402, 40.085487 ], [ -75.037779, 40.085077 ], [ -75.037861, 40.084993 ], [ -75.037993, 40.084858 ], [ -75.038118, 40.08473 ], [ -75.038198, 40.084633 ], [ -75.038204, 40.084537 ], [ -75.038339, 40.084416 ], [ -75.03827, 40.084288 ], [ -75.038245, 40.084218 ], [ -75.038179, 40.08399 ], [ -75.038057, 40.083566 ], [ -75.037868, 40.082904 ], [ -75.037747, 40.082502 ], [ -75.037806, 40.082462 ], [ -75.037868, 40.082407 ], [ -75.038158, 40.082113 ], [ -75.038797, 40.081463 ], [ -75.039037, 40.081223 ], [ -75.04025, 40.080005 ], [ -75.041209, 40.079039 ], [ -75.041788, 40.078474 ], [ -75.042839, 40.077417 ], [ -75.043115, 40.077135 ], [ -75.04319, 40.077185 ], [ -75.043307, 40.077245 ], [ -75.043426, 40.077304 ], [ -75.043726, 40.077484 ], [ -75.043869, 40.077549 ], [ -75.043911, 40.077498 ], [ -75.044019, 40.077453 ], [ -75.044035, 40.077441 ], [ -75.044115, 40.077332 ], [ -75.044138, 40.077301 ], [ -75.044405, 40.076911 ], [ -75.044589, 40.07666 ], [ -75.04492, 40.076274 ], [ -75.045185, 40.075993 ], [ -75.045424, 40.07571 ], [ -75.045781, 40.075308 ], [ -75.045899, 40.07519 ], [ -75.045985, 40.075098 ], [ -75.046045, 40.075033 ], [ -75.04615, 40.074904 ], [ -75.046613, 40.074352 ], [ -75.046887, 40.074027 ], [ -75.047162, 40.073692 ], [ -75.047418, 40.073392 ], [ -75.047703, 40.073046 ], [ -75.048022, 40.072661 ], [ -75.048242, 40.072396 ], [ -75.048501, 40.072111 ], [ -75.048811, 40.071764 ], [ -75.049261, 40.07128 ], [ -75.049354, 40.07118 ], [ -75.049531, 40.070985 ], [ -75.049579, 40.07093 ], [ -75.050294, 40.070167 ], [ -75.050426, 40.070015 ], [ -75.050517, 40.06989 ], [ -75.050525, 40.069879 ], [ -75.050643, 40.069711 ], [ -75.050738, 40.069553 ], [ -75.050838, 40.069326 ], [ -75.050912, 40.069117 ], [ -75.05094, 40.069015 ], [ -75.050942, 40.069001 ], [ -75.050963, 40.068905 ], [ -75.050991, 40.068726 ], [ -75.051056, 40.068281 ], [ -75.051144, 40.067569 ], [ -75.051206, 40.067125 ], [ -75.051211, 40.067053 ], [ -75.051228, 40.066821 ], [ -75.051169, 40.066725 ], [ -75.051186, 40.066629 ], [ -75.051278, 40.066191 ], [ -75.051386, 40.065667 ], [ -75.051437, 40.065388 ], [ -75.051449, 40.065321 ], [ -75.051479, 40.065107 ], [ -75.0515, 40.064917 ], [ -75.051533, 40.064679 ], [ -75.05156, 40.064392 ], [ -75.051602, 40.063916 ], [ -75.051623, 40.063673 ], [ -75.051634, 40.063539 ], [ -75.051679, 40.063103 ], [ -75.051724, 40.062638 ], [ -75.051809, 40.06176 ], [ -75.051852, 40.061296 ], [ -75.051893, 40.060809 ], [ -75.051926, 40.060413 ], [ -75.05196, 40.060126 ], [ -75.051982, 40.059908 ], [ -75.052004, 40.059695 ], [ -75.052033, 40.059543 ], [ -75.052073, 40.059408 ], [ -75.052116, 40.059304 ], [ -75.052181, 40.059166 ], [ -75.05237, 40.058771 ], [ -75.052555, 40.058415 ], [ -75.052728, 40.058015 ], [ -75.052883, 40.057632 ], [ -75.053009, 40.057327 ], [ -75.053196, 40.056874 ], [ -75.053361, 40.056467 ], [ -75.053517, 40.056082 ], [ -75.053823, 40.055334 ], [ -75.053981, 40.054955 ], [ -75.054088, 40.054669 ], [ -75.054103, 40.054632 ], [ -75.054139, 40.054545 ], [ -75.054187, 40.05444 ], [ -75.05424, 40.054342 ], [ -75.054313, 40.054249 ], [ -75.054429, 40.054113 ], [ -75.054684, 40.053813 ], [ -75.054953, 40.053501 ], [ -75.055238, 40.053163 ], [ -75.055492, 40.052862 ], [ -75.055746, 40.052572 ], [ -75.056028, 40.052233 ], [ -75.056297, 40.051921 ], [ -75.056573, 40.0516 ], [ -75.056843, 40.051283 ], [ -75.057133, 40.050944 ], [ -75.057375, 40.050654 ], [ -75.057594, 40.050397 ], [ -75.05778, 40.050181 ], [ -75.057836, 40.050117 ], [ -75.058049, 40.049873 ], [ -75.05823, 40.049656 ], [ -75.058526, 40.049317 ], [ -75.058712, 40.049104 ], [ -75.058936, 40.048832 ], [ -75.059605, 40.04805 ], [ -75.05968, 40.047962 ], [ -75.059741, 40.047889 ], [ -75.059806, 40.04781 ], [ -75.059859, 40.047737 ], [ -75.059894, 40.047675 ], [ -75.059925, 40.047605 ], [ -75.060022, 40.047339 ], [ -75.060055, 40.047236 ], [ -75.060133, 40.046994 ], [ -75.060167, 40.046901 ], [ -75.060302, 40.046524 ], [ -75.060564, 40.045761 ], [ -75.060654, 40.0455 ], [ -75.060683, 40.045412 ], [ -75.060707, 40.045356 ], [ -75.060727, 40.045324 ], [ -75.060758, 40.04528 ], [ -75.060831, 40.045201 ], [ -75.060992, 40.045038 ], [ -75.061066, 40.044964 ], [ -75.061296, 40.044733 ], [ -75.061591, 40.044443 ], [ -75.061926, 40.044111 ], [ -75.062126, 40.043907 ], [ -75.062234, 40.043797 ], [ -75.062535, 40.04349 ], [ -75.062826, 40.043189 ], [ -75.062955, 40.043061 ], [ -75.063171, 40.042848 ], [ -75.063479, 40.04253 ], [ -75.063773, 40.042231 ], [ -75.064043, 40.041968 ], [ -75.064345, 40.04166 ], [ -75.064662, 40.041351 ], [ -75.064954, 40.041056 ], [ -75.065276, 40.04074 ], [ -75.06558, 40.040439 ], [ -75.065983, 40.040037 ], [ -75.066462, 40.039561 ], [ -75.066544, 40.039479 ], [ -75.066797, 40.039211 ], [ -75.067078, 40.038934 ], [ -75.067174, 40.038841 ], [ -75.067444, 40.038577 ], [ -75.06772, 40.038308 ], [ -75.068039, 40.037996 ], [ -75.068255, 40.0378 ], [ -75.068333, 40.037729 ], [ -75.068451, 40.037621 ], [ -75.068587, 40.037493 ], [ -75.068725, 40.037355 ], [ -75.069283, 40.036815 ], [ -75.070214, 40.035906 ], [ -75.070525, 40.035602 ], [ -75.070664, 40.035475 ], [ -75.07072, 40.035418 ], [ -75.070771, 40.035345 ], [ -75.0708, 40.035289 ], [ -75.070894, 40.035134 ], [ -75.071002, 40.034948 ], [ -75.07112, 40.034756 ], [ -75.071159, 40.034692 ], [ -75.071212, 40.034606 ], [ -75.071322, 40.034419 ], [ -75.071444, 40.034214 ], [ -75.071844, 40.033508 ], [ -75.072246, 40.032803 ], [ -75.072266, 40.032768 ], [ -75.072284, 40.032728 ], [ -75.072713, 40.03194 ], [ -75.073044, 40.03132 ], [ -75.073487, 40.030362 ], [ -75.073748, 40.029795 ], [ -75.074281, 40.028572 ], [ -75.074293, 40.028545 ], [ -75.074343, 40.028455 ], [ -75.074407, 40.028368 ], [ -75.074474, 40.028289 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307823", "route_id": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.099575, 39.984277 ], [ -75.099549, 39.98429 ], [ -75.099494, 39.984318 ], [ -75.099443, 39.984344 ], [ -75.099307, 39.984362 ], [ -75.099204, 39.984301 ], [ -75.099182, 39.98423 ], [ -75.099218, 39.984133 ], [ -75.10015, 39.983639 ], [ -75.100781, 39.983303 ], [ -75.101445, 39.98297 ], [ -75.101723, 39.983292 ], [ -75.101951, 39.983545 ], [ -75.102223, 39.983853 ], [ -75.102425, 39.984084 ], [ -75.102508, 39.984179 ], [ -75.10263, 39.984314 ], [ -75.102867, 39.984576 ], [ -75.103, 39.984722 ], [ -75.103194, 39.984955 ], [ -75.103357, 39.985147 ], [ -75.10357, 39.985373 ], [ -75.103729, 39.985541 ], [ -75.104051, 39.985907 ], [ -75.104165, 39.986039 ], [ -75.104374, 39.986281 ], [ -75.104509, 39.986433 ], [ -75.104723, 39.986678 ], [ -75.104956, 39.986942 ], [ -75.105077, 39.987079 ], [ -75.105363, 39.987391 ], [ -75.105504, 39.987544 ], [ -75.105672, 39.987733 ], [ -75.105696, 39.98776 ], [ -75.105936, 39.988035 ], [ -75.106117, 39.988246 ], [ -75.106184, 39.988324 ], [ -75.106351, 39.988517 ], [ -75.106459, 39.988636 ], [ -75.106614, 39.988805 ], [ -75.106768, 39.988977 ], [ -75.107055, 39.989312 ], [ -75.107202, 39.989487 ], [ -75.10734, 39.98965 ], [ -75.107608, 39.989943 ], [ -75.107732, 39.990079 ], [ -75.108031, 39.990409 ], [ -75.108319, 39.990736 ], [ -75.108684, 39.991147 ], [ -75.108753, 39.991225 ], [ -75.108849, 39.991335 ], [ -75.109109, 39.991614 ], [ -75.109252, 39.991778 ], [ -75.109359, 39.991904 ], [ -75.109511, 39.99209 ], [ -75.109534, 39.992118 ], [ -75.109729, 39.99234 ], [ -75.109886, 39.992522 ], [ -75.110278, 39.992976 ], [ -75.110583, 39.993322 ], [ -75.110675, 39.993428 ], [ -75.111209, 39.994035 ], [ -75.111372, 39.99422 ], [ -75.111602, 39.994479 ], [ -75.111931, 39.99485 ], [ -75.11222, 39.995176 ], [ -75.112391, 39.995368 ], [ -75.112937, 39.995984 ], [ -75.113346, 39.996424 ], [ -75.11338, 39.996454 ], [ -75.113419, 39.996479 ], [ -75.113463, 39.996496 ], [ -75.113536, 39.996513 ], [ -75.1136, 39.996522 ], [ -75.113832, 39.996551 ], [ -75.114261, 39.996596 ], [ -75.115212, 39.996722 ], [ -75.115462, 39.996756 ], [ -75.11578, 39.996795 ], [ -75.115956, 39.996819 ], [ -75.116069, 39.996835 ], [ -75.116453, 39.996886 ], [ -75.116911, 39.996943 ], [ -75.117386, 39.997014 ], [ -75.117652, 39.997047 ], [ -75.118409, 39.997144 ], [ -75.119113, 39.997231 ], [ -75.119311, 39.997256 ], [ -75.119794, 39.997319 ], [ -75.120066, 39.997356 ], [ -75.120295, 39.997388 ], [ -75.121019, 39.997479 ], [ -75.121251, 39.997509 ], [ -75.121732, 39.997574 ], [ -75.121981, 39.997605 ], [ -75.122213, 39.997634 ], [ -75.12257, 39.997681 ], [ -75.1227, 39.997698 ], [ -75.122904, 39.997723 ], [ -75.12321, 39.997762 ], [ -75.123452, 39.997788 ], [ -75.123935, 39.997842 ], [ -75.124314, 39.99789 ], [ -75.12512, 39.998002 ], [ -75.125424, 39.998044 ], [ -75.125614, 39.998064 ], [ -75.125857, 39.99809 ], [ -75.126125, 39.998118 ], [ -75.126423, 39.998166 ], [ -75.12673, 39.998207 ], [ -75.126893, 39.998229 ], [ -75.127333, 39.998289 ], [ -75.127577, 39.998321 ], [ -75.127977, 39.998374 ], [ -75.128646, 39.998463 ], [ -75.128982, 39.998513 ], [ -75.129256, 39.998554 ], [ -75.129809, 39.998622 ], [ -75.130137, 39.99866 ], [ -75.130327, 39.998683 ], [ -75.130667, 39.998723 ], [ -75.130925, 39.998753 ], [ -75.131252, 39.998792 ], [ -75.131495, 39.998824 ], [ -75.131963, 39.998888 ], [ -75.132162, 39.998915 ], [ -75.132489, 39.998954 ], [ -75.132699, 39.998979 ], [ -75.132918, 39.999011 ], [ -75.133242, 39.999057 ], [ -75.133851, 39.999137 ], [ -75.134193, 39.999189 ], [ -75.134433, 39.999226 ], [ -75.13457, 39.999244 ], [ -75.134649, 39.999254 ], [ -75.134758, 39.999268 ], [ -75.134876, 39.999284 ], [ -75.135012, 39.999302 ], [ -75.13565, 39.999387 ], [ -75.136085, 39.999437 ], [ -75.137118, 39.999584 ], [ -75.138293, 39.999728 ], [ -75.138515, 39.999756 ], [ -75.139059, 39.99981 ], [ -75.139517, 39.999855 ], [ -75.139982, 39.999915 ], [ -75.14017, 39.999946 ], [ -75.140267, 39.99996 ], [ -75.14038, 39.999975 ], [ -75.140507, 39.999987 ], [ -75.140711, 40.000014 ], [ -75.141088, 40.000063 ], [ -75.141575, 40.000116 ], [ -75.141912, 40.000168 ], [ -75.142164, 40.000208 ], [ -75.142526, 40.000257 ], [ -75.142809, 40.000296 ], [ -75.142966, 40.000322 ], [ -75.143014, 40.000335 ], [ -75.143053, 40.00035 ], [ -75.143102, 40.000371 ], [ -75.143138, 40.000395 ], [ -75.143174, 40.000428 ], [ -75.143189, 40.000449 ], [ -75.143199, 40.000463 ], [ -75.143253, 40.000541 ], [ -75.143378, 40.000738 ], [ -75.143526, 40.000966 ], [ -75.143601, 40.001091 ], [ -75.143743, 40.001329 ], [ -75.143828, 40.001477 ], [ -75.143951, 40.001698 ], [ -75.144095, 40.001912 ], [ -75.144213, 40.002082 ], [ -75.144337, 40.002032 ], [ -75.145029, 40.001773 ], [ -75.1452, 40.001706 ], [ -75.145501, 40.00159 ], [ -75.145817, 40.001478 ], [ -75.146674, 40.001154 ], [ -75.146723, 40.001135 ], [ -75.146773, 40.001118 ], [ -75.147024, 40.001026 ], [ -75.147262, 40.00094 ], [ -75.147307, 40.000927 ], [ -75.147365, 40.000912 ], [ -75.147426, 40.000906 ], [ -75.147474, 40.000904 ], [ -75.147517, 40.000907 ], [ -75.147584, 40.000912 ], [ -75.147686, 40.000923 ], [ -75.148164, 40.000989 ], [ -75.149155, 40.001132 ], [ -75.149913, 40.001245 ], [ -75.150722, 40.001337 ], [ -75.151629, 40.00143 ], [ -75.152869, 40.001585 ], [ -75.152914, 40.001591 ], [ -75.152962, 40.001599 ], [ -75.153446, 40.001664 ], [ -75.153798, 40.001717 ], [ -75.153967, 40.001739 ], [ -75.154545, 40.001807 ], [ -75.156123, 40.002013 ], [ -75.156774, 40.002097 ], [ -75.157697, 40.00222 ], [ -75.159469, 40.002435 ], [ -75.159669, 40.002458 ], [ -75.160843, 40.002621 ], [ -75.162432, 40.002821 ], [ -75.163141, 40.002919 ], [ -75.16372, 40.002993 ], [ -75.163863, 40.00301 ], [ -75.164296, 40.003065 ], [ -75.165382, 40.00321 ], [ -75.165894, 40.003279 ], [ -75.166991, 40.003406 ], [ -75.167537, 40.003474 ], [ -75.168241, 40.003572 ], [ -75.168444, 40.0036 ], [ -75.168954, 40.003672 ], [ -75.169086, 40.003689 ], [ -75.169526, 40.003739 ], [ -75.169721, 40.003762 ], [ -75.16991, 40.003783 ], [ -75.170694, 40.00389 ], [ -75.171252, 40.003962 ], [ -75.171751, 40.00403 ], [ -75.17228, 40.004093 ], [ -75.172936, 40.004175 ], [ -75.173566, 40.004263 ], [ -75.173853, 40.004298 ], [ -75.174272, 40.004343 ], [ -75.174359, 40.004356 ], [ -75.174629, 40.004389 ], [ -75.174821, 40.004413 ], [ -75.175294, 40.004473 ], [ -75.175477, 40.0045 ], [ -75.175634, 40.004521 ], [ -75.176227, 40.004593 ], [ -75.176904, 40.004676 ], [ -75.177355, 40.004741 ], [ -75.177709, 40.004792 ], [ -75.177954, 40.004828 ], [ -75.178477, 40.004903 ], [ -75.178716, 40.004947 ], [ -75.179097, 40.004989 ], [ -75.179529, 40.005036 ], [ -75.179775, 40.005064 ], [ -75.180354, 40.005128 ], [ -75.181018, 40.00521 ], [ -75.181696, 40.0053 ], [ -75.182527, 40.00541 ], [ -75.183341, 40.00551 ], [ -75.184137, 40.005627 ], [ -75.184901, 40.005722 ], [ -75.185706, 40.005829 ], [ -75.186476, 40.005929 ], [ -75.186429, 40.006224 ], [ -75.186489, 40.006248 ], [ -75.186558, 40.006258 ], [ -75.186622, 40.006239 ], [ -75.186655, 40.006203 ], [ -75.186677, 40.006113 ], [ -75.186687, 40.006051 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307827", "route_id": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.099575, 39.984277 ], [ -75.099549, 39.98429 ], [ -75.099494, 39.984318 ], [ -75.099443, 39.984344 ], [ -75.099307, 39.984362 ], [ -75.099204, 39.984301 ], [ -75.099182, 39.98423 ], [ -75.099218, 39.984133 ], [ -75.10015, 39.983639 ], [ -75.100781, 39.983303 ], [ -75.101445, 39.98297 ], [ -75.101723, 39.983292 ], [ -75.101951, 39.983545 ], [ -75.102223, 39.983853 ], [ -75.102425, 39.984084 ], [ -75.102508, 39.984179 ], [ -75.10263, 39.984314 ], [ -75.102867, 39.984576 ], [ -75.103, 39.984722 ], [ -75.103194, 39.984955 ], [ -75.103357, 39.985147 ], [ -75.10357, 39.985373 ], [ -75.103729, 39.985541 ], [ -75.104051, 39.985907 ], [ -75.104165, 39.986039 ], [ -75.104374, 39.986281 ], [ -75.104509, 39.986433 ], [ -75.104723, 39.986678 ], [ -75.104956, 39.986942 ], [ -75.105077, 39.987079 ], [ -75.105363, 39.987391 ], [ -75.105504, 39.987544 ], [ -75.105672, 39.987733 ], [ -75.105696, 39.98776 ], [ -75.105936, 39.988035 ], [ -75.106117, 39.988246 ], [ -75.106184, 39.988324 ], [ -75.106351, 39.988517 ], [ -75.106459, 39.988636 ], [ -75.106614, 39.988805 ], [ -75.106768, 39.988977 ], [ -75.107055, 39.989312 ], [ -75.107202, 39.989487 ], [ -75.10734, 39.98965 ], [ -75.107608, 39.989943 ], [ -75.107732, 39.990079 ], [ -75.108031, 39.990409 ], [ -75.108319, 39.990736 ], [ -75.108684, 39.991147 ], [ -75.108753, 39.991225 ], [ -75.108849, 39.991335 ], [ -75.109109, 39.991614 ], [ -75.109252, 39.991778 ], [ -75.109359, 39.991904 ], [ -75.109511, 39.99209 ], [ -75.109534, 39.992118 ], [ -75.109729, 39.99234 ], [ -75.109886, 39.992522 ], [ -75.110278, 39.992976 ], [ -75.110583, 39.993322 ], [ -75.110675, 39.993428 ], [ -75.111209, 39.994035 ], [ -75.111372, 39.99422 ], [ -75.111602, 39.994479 ], [ -75.111931, 39.99485 ], [ -75.11222, 39.995176 ], [ -75.112391, 39.995368 ], [ -75.112937, 39.995984 ], [ -75.113346, 39.996424 ], [ -75.11338, 39.996454 ], [ -75.113419, 39.996479 ], [ -75.113463, 39.996496 ], [ -75.113536, 39.996513 ], [ -75.1136, 39.996522 ], [ -75.113832, 39.996551 ], [ -75.114261, 39.996596 ], [ -75.115212, 39.996722 ], [ -75.115462, 39.996756 ], [ -75.11578, 39.996795 ], [ -75.115956, 39.996819 ], [ -75.116069, 39.996835 ], [ -75.116453, 39.996886 ], [ -75.116911, 39.996943 ], [ -75.117386, 39.997014 ], [ -75.117652, 39.997047 ], [ -75.118409, 39.997144 ], [ -75.119113, 39.997231 ], [ -75.119311, 39.997256 ], [ -75.119794, 39.997319 ], [ -75.120066, 39.997356 ], [ -75.120295, 39.997388 ], [ -75.121019, 39.997479 ], [ -75.121251, 39.997509 ], [ -75.121732, 39.997574 ], [ -75.121981, 39.997605 ], [ -75.122213, 39.997634 ], [ -75.12257, 39.997681 ], [ -75.1227, 39.997698 ], [ -75.122904, 39.997723 ], [ -75.12321, 39.997762 ], [ -75.123452, 39.997788 ], [ -75.123935, 39.997842 ], [ -75.124314, 39.99789 ], [ -75.12512, 39.998002 ], [ -75.125424, 39.998044 ], [ -75.125614, 39.998064 ], [ -75.125857, 39.99809 ], [ -75.126125, 39.998118 ], [ -75.126423, 39.998166 ], [ -75.12673, 39.998207 ], [ -75.126893, 39.998229 ], [ -75.127333, 39.998289 ], [ -75.127577, 39.998321 ], [ -75.127977, 39.998374 ], [ -75.128646, 39.998463 ], [ -75.128982, 39.998513 ], [ -75.129256, 39.998554 ], [ -75.129809, 39.998622 ], [ -75.130137, 39.99866 ], [ -75.130327, 39.998683 ], [ -75.130667, 39.998723 ], [ -75.130925, 39.998753 ], [ -75.131252, 39.998792 ], [ -75.131495, 39.998824 ], [ -75.131963, 39.998888 ], [ -75.132162, 39.998915 ], [ -75.132489, 39.998954 ], [ -75.132699, 39.998979 ], [ -75.132918, 39.999011 ], [ -75.133242, 39.999057 ], [ -75.133851, 39.999137 ], [ -75.134193, 39.999189 ], [ -75.134433, 39.999226 ], [ -75.13457, 39.999244 ], [ -75.134649, 39.999254 ], [ -75.134758, 39.999268 ], [ -75.134876, 39.999284 ], [ -75.135012, 39.999302 ], [ -75.13565, 39.999387 ], [ -75.136085, 39.999437 ], [ -75.137118, 39.999584 ], [ -75.138293, 39.999728 ], [ -75.138515, 39.999756 ], [ -75.138468, 40.000006 ], [ -75.138256, 40.000985 ], [ -75.138182, 40.001315 ], [ -75.138137, 40.001517 ], [ -75.138061, 40.00186 ], [ -75.137883, 40.002615 ], [ -75.137841, 40.002789 ], [ -75.137695, 40.003488 ], [ -75.137665, 40.003609 ], [ -75.137626, 40.003781 ], [ -75.137613, 40.003867 ], [ -75.13752, 40.004276 ], [ -75.137447, 40.004646 ], [ -75.137203, 40.005795 ], [ -75.136997, 40.006693 ], [ -75.136862, 40.00739 ], [ -75.137577, 40.007481 ], [ -75.137858, 40.007517 ], [ -75.138838, 40.007647 ], [ -75.139664, 40.007752 ], [ -75.140504, 40.00786 ], [ -75.141123, 40.007943 ], [ -75.141773, 40.008023 ], [ -75.142282, 40.008086 ], [ -75.142764, 40.008157 ], [ -75.143348, 40.008224 ], [ -75.143791, 40.008281 ], [ -75.144005, 40.008305 ], [ -75.144328, 40.008343 ], [ -75.144977, 40.008419 ], [ -75.145347, 40.008466 ], [ -75.145513, 40.008489 ], [ -75.145631, 40.008503 ], [ -75.145898, 40.008541 ], [ -75.14665, 40.008652 ], [ -75.147603, 40.008778 ], [ -75.147461, 40.009628 ], [ -75.147335, 40.010372 ], [ -75.147314, 40.010498 ], [ -75.147267, 40.011914 ], [ -75.147261, 40.012102 ], [ -75.147257, 40.01222 ], [ -75.147252, 40.012372 ], [ -75.147232, 40.0134 ], [ -75.147224, 40.014061 ], [ -75.147211, 40.014958 ], [ -75.146648, 40.014877 ], [ -75.14653, 40.014852 ], [ -75.146419, 40.014814 ], [ -75.146177, 40.014711 ], [ -75.145834, 40.014572 ], [ -75.143222, 40.013508 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307836", "route_id": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.179802, 40.008517 ], [ -75.179964, 40.008987 ], [ -75.180039, 40.009175 ], [ -75.180047, 40.009271 ], [ -75.180097, 40.009412 ], [ -75.180147, 40.009558 ], [ -75.180161, 40.009628 ], [ -75.180149, 40.009681 ], [ -75.180103, 40.009727 ], [ -75.180064, 40.009764 ], [ -75.18001, 40.009822 ], [ -75.179546, 40.010087 ], [ -75.177037, 40.01139 ], [ -75.176716, 40.011567 ], [ -75.176365, 40.01176 ], [ -75.175944, 40.011992 ], [ -75.174089, 40.00995 ], [ -75.173115, 40.008886 ], [ -75.172898, 40.008661 ], [ -75.172791, 40.008544 ], [ -75.172611, 40.008347 ], [ -75.172264, 40.007949 ], [ -75.172201, 40.007881 ], [ -75.171753, 40.007397 ], [ -75.171467, 40.007056 ], [ -75.171207, 40.006734 ], [ -75.170825, 40.006181 ], [ -75.170341, 40.005516 ], [ -75.170175, 40.005285 ], [ -75.170069, 40.00514 ], [ -75.169879, 40.004881 ], [ -75.169538, 40.004431 ], [ -75.168954, 40.003672 ], [ -75.168444, 40.0036 ], [ -75.168241, 40.003572 ], [ -75.167537, 40.003474 ], [ -75.166991, 40.003406 ], [ -75.165894, 40.003279 ], [ -75.165382, 40.00321 ], [ -75.164296, 40.003065 ], [ -75.163863, 40.00301 ], [ -75.16372, 40.002993 ], [ -75.163141, 40.002919 ], [ -75.162432, 40.002821 ], [ -75.160843, 40.002621 ], [ -75.159669, 40.002458 ], [ -75.159469, 40.002435 ], [ -75.157697, 40.00222 ], [ -75.156774, 40.002097 ], [ -75.156123, 40.002013 ], [ -75.154545, 40.001807 ], [ -75.153967, 40.001739 ], [ -75.153798, 40.001717 ], [ -75.153446, 40.001664 ], [ -75.152962, 40.001599 ], [ -75.152914, 40.001591 ], [ -75.152869, 40.001585 ], [ -75.151629, 40.00143 ], [ -75.150722, 40.001337 ], [ -75.149913, 40.001245 ], [ -75.149155, 40.001132 ], [ -75.148164, 40.000989 ], [ -75.147686, 40.000923 ], [ -75.147584, 40.000912 ], [ -75.147517, 40.000907 ], [ -75.147474, 40.000904 ], [ -75.147426, 40.000906 ], [ -75.147365, 40.000912 ], [ -75.147307, 40.000927 ], [ -75.147262, 40.00094 ], [ -75.147024, 40.001026 ], [ -75.146773, 40.001118 ], [ -75.146723, 40.001135 ], [ -75.146674, 40.001154 ], [ -75.145817, 40.001478 ], [ -75.145501, 40.00159 ], [ -75.1452, 40.001706 ], [ -75.145029, 40.001773 ], [ -75.144842, 40.00179 ], [ -75.144592, 40.001867 ], [ -75.144505, 40.001887 ], [ -75.144443, 40.001895 ], [ -75.14438, 40.001898 ], [ -75.144322, 40.001894 ], [ -75.144263, 40.001883 ], [ -75.144217, 40.001866 ], [ -75.144168, 40.001847 ], [ -75.144117, 40.001812 ], [ -75.14408, 40.001782 ], [ -75.143951, 40.001698 ], [ -75.143828, 40.001477 ], [ -75.143743, 40.001329 ], [ -75.143601, 40.001091 ], [ -75.143526, 40.000966 ], [ -75.143378, 40.000738 ], [ -75.143253, 40.000541 ], [ -75.143199, 40.000463 ], [ -75.143189, 40.000449 ], [ -75.143174, 40.000428 ], [ -75.143138, 40.000395 ], [ -75.143102, 40.000371 ], [ -75.143053, 40.00035 ], [ -75.143014, 40.000335 ], [ -75.142966, 40.000322 ], [ -75.142809, 40.000296 ], [ -75.142526, 40.000257 ], [ -75.142164, 40.000208 ], [ -75.141912, 40.000168 ], [ -75.141575, 40.000116 ], [ -75.141088, 40.000063 ], [ -75.140711, 40.000014 ], [ -75.140507, 39.999987 ], [ -75.14038, 39.999975 ], [ -75.140267, 39.99996 ], [ -75.14017, 39.999946 ], [ -75.139982, 39.999915 ], [ -75.139517, 39.999855 ], [ -75.139059, 39.99981 ], [ -75.138515, 39.999756 ], [ -75.138293, 39.999728 ], [ -75.137118, 39.999584 ], [ -75.136085, 39.999437 ], [ -75.13565, 39.999387 ], [ -75.135012, 39.999302 ], [ -75.134876, 39.999284 ], [ -75.134758, 39.999268 ], [ -75.134649, 39.999254 ], [ -75.13457, 39.999244 ], [ -75.134433, 39.999226 ], [ -75.134193, 39.999189 ], [ -75.133851, 39.999137 ], [ -75.133242, 39.999057 ], [ -75.132918, 39.999011 ], [ -75.132699, 39.998979 ], [ -75.132489, 39.998954 ], [ -75.132162, 39.998915 ], [ -75.131963, 39.998888 ], [ -75.131495, 39.998824 ], [ -75.131252, 39.998792 ], [ -75.130925, 39.998753 ], [ -75.130667, 39.998723 ], [ -75.130327, 39.998683 ], [ -75.130137, 39.99866 ], [ -75.129809, 39.998622 ], [ -75.129256, 39.998554 ], [ -75.128982, 39.998513 ], [ -75.128646, 39.998463 ], [ -75.127977, 39.998374 ], [ -75.127577, 39.998321 ], [ -75.127333, 39.998289 ], [ -75.126893, 39.998229 ], [ -75.12673, 39.998207 ], [ -75.126423, 39.998166 ], [ -75.126125, 39.998118 ], [ -75.125857, 39.99809 ], [ -75.125614, 39.998064 ], [ -75.125424, 39.998044 ], [ -75.12512, 39.998002 ], [ -75.124314, 39.99789 ], [ -75.123935, 39.997842 ], [ -75.123452, 39.997788 ], [ -75.12321, 39.997762 ], [ -75.122904, 39.997723 ], [ -75.1227, 39.997698 ], [ -75.12257, 39.997681 ], [ -75.122213, 39.997634 ], [ -75.121981, 39.997605 ], [ -75.121732, 39.997574 ], [ -75.121251, 39.997509 ], [ -75.121019, 39.997479 ], [ -75.120295, 39.997388 ], [ -75.120066, 39.997356 ], [ -75.119794, 39.997319 ], [ -75.119311, 39.997256 ], [ -75.119113, 39.997231 ], [ -75.118409, 39.997144 ], [ -75.117652, 39.997047 ], [ -75.117386, 39.997014 ], [ -75.116911, 39.996943 ], [ -75.116453, 39.996886 ], [ -75.116069, 39.996835 ], [ -75.115956, 39.996819 ], [ -75.11578, 39.996795 ], [ -75.115462, 39.996756 ], [ -75.115212, 39.996722 ], [ -75.114261, 39.996596 ], [ -75.113832, 39.996551 ], [ -75.1136, 39.996522 ], [ -75.113536, 39.996513 ], [ -75.113463, 39.996496 ], [ -75.113419, 39.996479 ], [ -75.11338, 39.996454 ], [ -75.113346, 39.996424 ], [ -75.112937, 39.995984 ], [ -75.112391, 39.995368 ], [ -75.11222, 39.995176 ], [ -75.111931, 39.99485 ], [ -75.111602, 39.994479 ], [ -75.111372, 39.99422 ], [ -75.111209, 39.994035 ], [ -75.110675, 39.993428 ], [ -75.110583, 39.993322 ], [ -75.110278, 39.992976 ], [ -75.109886, 39.992522 ], [ -75.109729, 39.99234 ], [ -75.109534, 39.992118 ], [ -75.109511, 39.99209 ], [ -75.109359, 39.991904 ], [ -75.109252, 39.991778 ], [ -75.109109, 39.991614 ], [ -75.108849, 39.991335 ], [ -75.108753, 39.991225 ], [ -75.108684, 39.991147 ], [ -75.108319, 39.990736 ], [ -75.108031, 39.990409 ], [ -75.107732, 39.990079 ], [ -75.107608, 39.989943 ], [ -75.10734, 39.98965 ], [ -75.107202, 39.989487 ], [ -75.107055, 39.989312 ], [ -75.106768, 39.988977 ], [ -75.106614, 39.988805 ], [ -75.106459, 39.988636 ], [ -75.106351, 39.988517 ], [ -75.106184, 39.988324 ], [ -75.106117, 39.988246 ], [ -75.105936, 39.988035 ], [ -75.105696, 39.98776 ], [ -75.105672, 39.987733 ], [ -75.105504, 39.987544 ], [ -75.105363, 39.987391 ], [ -75.105077, 39.987079 ], [ -75.104956, 39.986942 ], [ -75.104723, 39.986678 ], [ -75.104509, 39.986433 ], [ -75.104374, 39.986281 ], [ -75.104165, 39.986039 ], [ -75.104051, 39.985907 ], [ -75.103729, 39.985541 ], [ -75.10357, 39.985373 ], [ -75.103357, 39.985147 ], [ -75.103194, 39.984955 ], [ -75.103, 39.984722 ], [ -75.102867, 39.984576 ], [ -75.10263, 39.984314 ], [ -75.102508, 39.984179 ], [ -75.102425, 39.984084 ], [ -75.102223, 39.983853 ], [ -75.101951, 39.983545 ], [ -75.101723, 39.983292 ], [ -75.101446, 39.98297 ], [ -75.100781, 39.983303 ], [ -75.10015, 39.983639 ], [ -75.100122, 39.983675 ], [ -75.10011, 39.983709 ], [ -75.100135, 39.983769 ], [ -75.100228, 39.983891 ], [ -75.100233, 39.983915 ], [ -75.100223, 39.983939 ], [ -75.100182, 39.983969 ], [ -75.099575, 39.984277 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307837", "route_id": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143222, 40.013508 ], [ -75.143349, 40.012918 ], [ -75.143318, 40.012848 ], [ -75.143324, 40.012741 ], [ -75.143433, 40.012239 ], [ -75.143636, 40.011415 ], [ -75.143953, 40.009966 ], [ -75.14423, 40.008786 ], [ -75.144328, 40.008343 ], [ -75.144005, 40.008305 ], [ -75.143791, 40.008281 ], [ -75.143348, 40.008224 ], [ -75.142764, 40.008157 ], [ -75.142282, 40.008086 ], [ -75.141773, 40.008023 ], [ -75.141123, 40.007943 ], [ -75.140504, 40.00786 ], [ -75.139664, 40.007752 ], [ -75.138838, 40.007647 ], [ -75.138924, 40.007186 ], [ -75.139056, 40.006583 ], [ -75.139173, 40.006051 ], [ -75.139502, 40.004543 ], [ -75.139665, 40.003847 ], [ -75.139804, 40.003136 ], [ -75.139836, 40.00299 ], [ -75.139839, 40.002958 ], [ -75.139909, 40.002776 ], [ -75.140075, 40.00194 ], [ -75.140158, 40.001568 ], [ -75.140232, 40.001256 ], [ -75.140335, 40.000674 ], [ -75.140385, 40.000461 ], [ -75.140438, 40.000295 ], [ -75.140455, 40.000197 ], [ -75.140464, 40.000143 ], [ -75.14047, 40.000102 ], [ -75.140484, 40.00006 ], [ -75.140507, 39.999987 ], [ -75.14038, 39.999975 ], [ -75.140267, 39.99996 ], [ -75.14017, 39.999946 ], [ -75.139982, 39.999915 ], [ -75.139517, 39.999855 ], [ -75.139059, 39.99981 ], [ -75.138515, 39.999756 ], [ -75.138293, 39.999728 ], [ -75.137118, 39.999584 ], [ -75.136085, 39.999437 ], [ -75.13565, 39.999387 ], [ -75.135012, 39.999302 ], [ -75.134876, 39.999284 ], [ -75.134758, 39.999268 ], [ -75.134649, 39.999254 ], [ -75.13457, 39.999244 ], [ -75.134433, 39.999226 ], [ -75.134193, 39.999189 ], [ -75.133851, 39.999137 ], [ -75.133242, 39.999057 ], [ -75.132918, 39.999011 ], [ -75.132699, 39.998979 ], [ -75.132489, 39.998954 ], [ -75.132162, 39.998915 ], [ -75.131963, 39.998888 ], [ -75.131495, 39.998824 ], [ -75.131252, 39.998792 ], [ -75.130925, 39.998753 ], [ -75.130667, 39.998723 ], [ -75.130327, 39.998683 ], [ -75.130137, 39.99866 ], [ -75.129809, 39.998622 ], [ -75.129256, 39.998554 ], [ -75.128982, 39.998513 ], [ -75.128646, 39.998463 ], [ -75.127977, 39.998374 ], [ -75.127577, 39.998321 ], [ -75.127333, 39.998289 ], [ -75.126893, 39.998229 ], [ -75.12673, 39.998207 ], [ -75.126423, 39.998166 ], [ -75.126125, 39.998118 ], [ -75.125857, 39.99809 ], [ -75.125614, 39.998064 ], [ -75.125424, 39.998044 ], [ -75.12512, 39.998002 ], [ -75.124314, 39.99789 ], [ -75.123935, 39.997842 ], [ -75.123452, 39.997788 ], [ -75.12321, 39.997762 ], [ -75.122904, 39.997723 ], [ -75.1227, 39.997698 ], [ -75.12257, 39.997681 ], [ -75.122213, 39.997634 ], [ -75.121981, 39.997605 ], [ -75.121732, 39.997574 ], [ -75.121251, 39.997509 ], [ -75.121019, 39.997479 ], [ -75.120295, 39.997388 ], [ -75.120066, 39.997356 ], [ -75.119794, 39.997319 ], [ -75.119311, 39.997256 ], [ -75.119113, 39.997231 ], [ -75.118409, 39.997144 ], [ -75.117652, 39.997047 ], [ -75.117386, 39.997014 ], [ -75.116911, 39.996943 ], [ -75.116453, 39.996886 ], [ -75.116069, 39.996835 ], [ -75.115956, 39.996819 ], [ -75.11578, 39.996795 ], [ -75.115462, 39.996756 ], [ -75.115212, 39.996722 ], [ -75.114261, 39.996596 ], [ -75.113832, 39.996551 ], [ -75.1136, 39.996522 ], [ -75.113536, 39.996513 ], [ -75.113463, 39.996496 ], [ -75.113419, 39.996479 ], [ -75.11338, 39.996454 ], [ -75.113346, 39.996424 ], [ -75.112937, 39.995984 ], [ -75.112391, 39.995368 ], [ -75.11222, 39.995176 ], [ -75.111931, 39.99485 ], [ -75.111602, 39.994479 ], [ -75.111372, 39.99422 ], [ -75.111209, 39.994035 ], [ -75.110675, 39.993428 ], [ -75.110583, 39.993322 ], [ -75.110278, 39.992976 ], [ -75.109886, 39.992522 ], [ -75.109729, 39.99234 ], [ -75.109534, 39.992118 ], [ -75.109511, 39.99209 ], [ -75.109359, 39.991904 ], [ -75.109252, 39.991778 ], [ -75.109109, 39.991614 ], [ -75.108849, 39.991335 ], [ -75.108753, 39.991225 ], [ -75.108684, 39.991147 ], [ -75.108319, 39.990736 ], [ -75.108031, 39.990409 ], [ -75.107732, 39.990079 ], [ -75.107608, 39.989943 ], [ -75.10734, 39.98965 ], [ -75.107202, 39.989487 ], [ -75.107055, 39.989312 ], [ -75.106768, 39.988977 ], [ -75.106614, 39.988805 ], [ -75.106459, 39.988636 ], [ -75.106351, 39.988517 ], [ -75.106184, 39.988324 ], [ -75.106117, 39.988246 ], [ -75.105936, 39.988035 ], [ -75.105696, 39.98776 ], [ -75.105672, 39.987733 ], [ -75.105504, 39.987544 ], [ -75.105363, 39.987391 ], [ -75.105077, 39.987079 ], [ -75.104956, 39.986942 ], [ -75.104723, 39.986678 ], [ -75.104509, 39.986433 ], [ -75.104374, 39.986281 ], [ -75.104165, 39.986039 ], [ -75.104051, 39.985907 ], [ -75.103729, 39.985541 ], [ -75.10357, 39.985373 ], [ -75.103357, 39.985147 ], [ -75.103194, 39.984955 ], [ -75.103, 39.984722 ], [ -75.102867, 39.984576 ], [ -75.10263, 39.984314 ], [ -75.102508, 39.984179 ], [ -75.102425, 39.984084 ], [ -75.102223, 39.983853 ], [ -75.101951, 39.983545 ], [ -75.101723, 39.983292 ], [ -75.101446, 39.98297 ], [ -75.100781, 39.983303 ], [ -75.10015, 39.983639 ], [ -75.100122, 39.983675 ], [ -75.10011, 39.983709 ], [ -75.100135, 39.983769 ], [ -75.100228, 39.983891 ], [ -75.100233, 39.983915 ], [ -75.100223, 39.983939 ], [ -75.100182, 39.983969 ], [ -75.099575, 39.984277 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307838", "route_id": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.176904, 40.004676 ], [ -75.176227, 40.004593 ], [ -75.175634, 40.004521 ], [ -75.175477, 40.0045 ], [ -75.175294, 40.004473 ], [ -75.174821, 40.004413 ], [ -75.174629, 40.004389 ], [ -75.174359, 40.004356 ], [ -75.174272, 40.004343 ], [ -75.173853, 40.004298 ], [ -75.173566, 40.004263 ], [ -75.172936, 40.004175 ], [ -75.17228, 40.004093 ], [ -75.171751, 40.00403 ], [ -75.171252, 40.003962 ], [ -75.170694, 40.00389 ], [ -75.16991, 40.003783 ], [ -75.169721, 40.003762 ], [ -75.169526, 40.003739 ], [ -75.169086, 40.003689 ], [ -75.168954, 40.003672 ], [ -75.168444, 40.0036 ], [ -75.168241, 40.003572 ], [ -75.167537, 40.003474 ], [ -75.166991, 40.003406 ], [ -75.165894, 40.003279 ], [ -75.165382, 40.00321 ], [ -75.164296, 40.003065 ], [ -75.163863, 40.00301 ], [ -75.16372, 40.002993 ], [ -75.163141, 40.002919 ], [ -75.162432, 40.002821 ], [ -75.160843, 40.002621 ], [ -75.159669, 40.002458 ], [ -75.159469, 40.002435 ], [ -75.157697, 40.00222 ], [ -75.156774, 40.002097 ], [ -75.156123, 40.002013 ], [ -75.154545, 40.001807 ], [ -75.153967, 40.001739 ], [ -75.153798, 40.001717 ], [ -75.153446, 40.001664 ], [ -75.152962, 40.001599 ], [ -75.152914, 40.001591 ], [ -75.152869, 40.001585 ], [ -75.151629, 40.00143 ], [ -75.150722, 40.001337 ], [ -75.149913, 40.001245 ], [ -75.149155, 40.001132 ], [ -75.148164, 40.000989 ], [ -75.147686, 40.000923 ], [ -75.147584, 40.000912 ], [ -75.147517, 40.000907 ], [ -75.147474, 40.000904 ], [ -75.147426, 40.000906 ], [ -75.147365, 40.000912 ], [ -75.147307, 40.000927 ], [ -75.147262, 40.00094 ], [ -75.147024, 40.001026 ], [ -75.146773, 40.001118 ], [ -75.146723, 40.001135 ], [ -75.146674, 40.001154 ], [ -75.145817, 40.001478 ], [ -75.145501, 40.00159 ], [ -75.1452, 40.001706 ], [ -75.145029, 40.001773 ], [ -75.144842, 40.00179 ], [ -75.144592, 40.001867 ], [ -75.144505, 40.001887 ], [ -75.144443, 40.001895 ], [ -75.14438, 40.001898 ], [ -75.144322, 40.001894 ], [ -75.144263, 40.001883 ], [ -75.144217, 40.001866 ], [ -75.144168, 40.001847 ], [ -75.144117, 40.001812 ], [ -75.14408, 40.001782 ], [ -75.143951, 40.001698 ], [ -75.143828, 40.001477 ], [ -75.143743, 40.001329 ], [ -75.143601, 40.001091 ], [ -75.143526, 40.000966 ], [ -75.143378, 40.000738 ], [ -75.143253, 40.000541 ], [ -75.143199, 40.000463 ], [ -75.143189, 40.000449 ], [ -75.143174, 40.000428 ], [ -75.143138, 40.000395 ], [ -75.143102, 40.000371 ], [ -75.143053, 40.00035 ], [ -75.143014, 40.000335 ], [ -75.142966, 40.000322 ], [ -75.142809, 40.000296 ], [ -75.142526, 40.000257 ], [ -75.142164, 40.000208 ], [ -75.141912, 40.000168 ], [ -75.141575, 40.000116 ], [ -75.141088, 40.000063 ], [ -75.140711, 40.000014 ], [ -75.140507, 39.999987 ], [ -75.14038, 39.999975 ], [ -75.140267, 39.99996 ], [ -75.14017, 39.999946 ], [ -75.139982, 39.999915 ], [ -75.139517, 39.999855 ], [ -75.139059, 39.99981 ], [ -75.138515, 39.999756 ], [ -75.138293, 39.999728 ], [ -75.137118, 39.999584 ], [ -75.136085, 39.999437 ], [ -75.13565, 39.999387 ], [ -75.135012, 39.999302 ], [ -75.134876, 39.999284 ], [ -75.134758, 39.999268 ], [ -75.134649, 39.999254 ], [ -75.13457, 39.999244 ], [ -75.134433, 39.999226 ], [ -75.134193, 39.999189 ], [ -75.133851, 39.999137 ], [ -75.133242, 39.999057 ], [ -75.132918, 39.999011 ], [ -75.132699, 39.998979 ], [ -75.132489, 39.998954 ], [ -75.132162, 39.998915 ], [ -75.131963, 39.998888 ], [ -75.131495, 39.998824 ], [ -75.131252, 39.998792 ], [ -75.130925, 39.998753 ], [ -75.130667, 39.998723 ], [ -75.130327, 39.998683 ], [ -75.130137, 39.99866 ], [ -75.129809, 39.998622 ], [ -75.129256, 39.998554 ], [ -75.128982, 39.998513 ], [ -75.128646, 39.998463 ], [ -75.127977, 39.998374 ], [ -75.127577, 39.998321 ], [ -75.127333, 39.998289 ], [ -75.126893, 39.998229 ], [ -75.12673, 39.998207 ], [ -75.126423, 39.998166 ], [ -75.126125, 39.998118 ], [ -75.125857, 39.99809 ], [ -75.125614, 39.998064 ], [ -75.125424, 39.998044 ], [ -75.12512, 39.998002 ], [ -75.124314, 39.99789 ], [ -75.123935, 39.997842 ], [ -75.123452, 39.997788 ], [ -75.12321, 39.997762 ], [ -75.122904, 39.997723 ], [ -75.1227, 39.997698 ], [ -75.12257, 39.997681 ], [ -75.122213, 39.997634 ], [ -75.121981, 39.997605 ], [ -75.121732, 39.997574 ], [ -75.121251, 39.997509 ], [ -75.121019, 39.997479 ], [ -75.120295, 39.997388 ], [ -75.120066, 39.997356 ], [ -75.119794, 39.997319 ], [ -75.119311, 39.997256 ], [ -75.119113, 39.997231 ], [ -75.118409, 39.997144 ], [ -75.117652, 39.997047 ], [ -75.117386, 39.997014 ], [ -75.116911, 39.996943 ], [ -75.116453, 39.996886 ], [ -75.116069, 39.996835 ], [ -75.115956, 39.996819 ], [ -75.11578, 39.996795 ], [ -75.115462, 39.996756 ], [ -75.115212, 39.996722 ], [ -75.114261, 39.996596 ], [ -75.113832, 39.996551 ], [ -75.1136, 39.996522 ], [ -75.113536, 39.996513 ], [ -75.113463, 39.996496 ], [ -75.113419, 39.996479 ], [ -75.11338, 39.996454 ], [ -75.113346, 39.996424 ], [ -75.112937, 39.995984 ], [ -75.112391, 39.995368 ], [ -75.11222, 39.995176 ], [ -75.111931, 39.99485 ], [ -75.111602, 39.994479 ], [ -75.111372, 39.99422 ], [ -75.111209, 39.994035 ], [ -75.110675, 39.993428 ], [ -75.110583, 39.993322 ], [ -75.110278, 39.992976 ], [ -75.109886, 39.992522 ], [ -75.109729, 39.99234 ], [ -75.109534, 39.992118 ], [ -75.109511, 39.99209 ], [ -75.109359, 39.991904 ], [ -75.109252, 39.991778 ], [ -75.109109, 39.991614 ], [ -75.108849, 39.991335 ], [ -75.108753, 39.991225 ], [ -75.108684, 39.991147 ], [ -75.108319, 39.990736 ], [ -75.108031, 39.990409 ], [ -75.107732, 39.990079 ], [ -75.107608, 39.989943 ], [ -75.10734, 39.98965 ], [ -75.107202, 39.989487 ], [ -75.107055, 39.989312 ], [ -75.106768, 39.988977 ], [ -75.106614, 39.988805 ], [ -75.106459, 39.988636 ], [ -75.106351, 39.988517 ], [ -75.106184, 39.988324 ], [ -75.106117, 39.988246 ], [ -75.105936, 39.988035 ], [ -75.105696, 39.98776 ], [ -75.105672, 39.987733 ], [ -75.105504, 39.987544 ], [ -75.105363, 39.987391 ], [ -75.105077, 39.987079 ], [ -75.104956, 39.986942 ], [ -75.104723, 39.986678 ], [ -75.104509, 39.986433 ], [ -75.104374, 39.986281 ], [ -75.104165, 39.986039 ], [ -75.104051, 39.985907 ], [ -75.103729, 39.985541 ], [ -75.10357, 39.985373 ], [ -75.103357, 39.985147 ], [ -75.103194, 39.984955 ], [ -75.103, 39.984722 ], [ -75.102867, 39.984576 ], [ -75.10263, 39.984314 ], [ -75.102508, 39.984179 ], [ -75.102425, 39.984084 ], [ -75.102223, 39.983853 ], [ -75.101951, 39.983545 ], [ -75.101723, 39.983292 ], [ -75.101446, 39.98297 ], [ -75.100781, 39.983303 ], [ -75.10015, 39.983639 ], [ -75.100122, 39.983675 ], [ -75.10011, 39.983709 ], [ -75.100135, 39.983769 ], [ -75.100228, 39.983891 ], [ -75.100233, 39.983915 ], [ -75.100223, 39.983939 ], [ -75.100182, 39.983969 ], [ -75.099575, 39.984277 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307839", "route_id": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.186687, 40.006051 ], [ -75.186704, 40.005958 ], [ -75.186476, 40.005929 ], [ -75.185705, 40.005834 ], [ -75.184901, 40.005722 ], [ -75.184137, 40.005627 ], [ -75.183341, 40.00551 ], [ -75.182527, 40.00541 ], [ -75.181696, 40.0053 ], [ -75.181018, 40.00521 ], [ -75.180354, 40.005128 ], [ -75.179775, 40.005064 ], [ -75.179529, 40.005036 ], [ -75.179097, 40.004989 ], [ -75.178716, 40.004947 ], [ -75.178477, 40.004903 ], [ -75.177954, 40.004828 ], [ -75.177709, 40.004792 ], [ -75.177355, 40.004741 ], [ -75.176904, 40.004676 ], [ -75.176227, 40.004593 ], [ -75.175634, 40.004521 ], [ -75.175477, 40.0045 ], [ -75.175294, 40.004473 ], [ -75.174821, 40.004413 ], [ -75.174629, 40.004389 ], [ -75.174359, 40.004356 ], [ -75.174272, 40.004343 ], [ -75.173853, 40.004298 ], [ -75.173566, 40.004263 ], [ -75.172936, 40.004175 ], [ -75.17228, 40.004093 ], [ -75.171751, 40.00403 ], [ -75.171252, 40.003962 ], [ -75.170694, 40.00389 ], [ -75.16991, 40.003783 ], [ -75.169721, 40.003762 ], [ -75.169526, 40.003739 ], [ -75.169086, 40.003689 ], [ -75.168954, 40.003672 ], [ -75.168444, 40.0036 ], [ -75.168241, 40.003572 ], [ -75.167537, 40.003474 ], [ -75.166991, 40.003406 ], [ -75.165894, 40.003279 ], [ -75.165382, 40.00321 ], [ -75.164296, 40.003065 ], [ -75.163863, 40.00301 ], [ -75.16372, 40.002993 ], [ -75.163141, 40.002919 ], [ -75.162432, 40.002821 ], [ -75.160843, 40.002621 ], [ -75.159669, 40.002458 ], [ -75.159469, 40.002435 ], [ -75.157697, 40.00222 ], [ -75.156774, 40.002097 ], [ -75.156123, 40.002013 ], [ -75.154545, 40.001807 ], [ -75.153967, 40.001739 ], [ -75.153798, 40.001717 ], [ -75.153446, 40.001664 ], [ -75.152962, 40.001599 ], [ -75.152914, 40.001591 ], [ -75.152869, 40.001585 ], [ -75.151629, 40.00143 ], [ -75.150722, 40.001337 ], [ -75.149913, 40.001245 ], [ -75.149155, 40.001132 ], [ -75.148164, 40.000989 ], [ -75.147686, 40.000923 ], [ -75.147584, 40.000912 ], [ -75.147517, 40.000907 ], [ -75.147474, 40.000904 ], [ -75.147426, 40.000906 ], [ -75.147365, 40.000912 ], [ -75.147307, 40.000927 ], [ -75.147262, 40.00094 ], [ -75.147024, 40.001026 ], [ -75.146773, 40.001118 ], [ -75.146723, 40.001135 ], [ -75.146674, 40.001154 ], [ -75.145817, 40.001478 ], [ -75.145501, 40.00159 ], [ -75.1452, 40.001706 ], [ -75.145029, 40.001773 ], [ -75.144842, 40.00179 ], [ -75.144592, 40.001867 ], [ -75.144505, 40.001887 ], [ -75.144443, 40.001895 ], [ -75.14438, 40.001898 ], [ -75.144322, 40.001894 ], [ -75.144263, 40.001883 ], [ -75.144217, 40.001866 ], [ -75.144168, 40.001847 ], [ -75.144117, 40.001812 ], [ -75.14408, 40.001782 ], [ -75.143951, 40.001698 ], [ -75.143828, 40.001477 ], [ -75.143743, 40.001329 ], [ -75.143601, 40.001091 ], [ -75.143526, 40.000966 ], [ -75.143378, 40.000738 ], [ -75.143253, 40.000541 ], [ -75.143199, 40.000463 ], [ -75.143189, 40.000449 ], [ -75.143174, 40.000428 ], [ -75.143138, 40.000395 ], [ -75.143102, 40.000371 ], [ -75.143053, 40.00035 ], [ -75.143014, 40.000335 ], [ -75.142966, 40.000322 ], [ -75.142809, 40.000296 ], [ -75.142526, 40.000257 ], [ -75.142164, 40.000208 ], [ -75.141912, 40.000168 ], [ -75.141575, 40.000116 ], [ -75.141088, 40.000063 ], [ -75.140711, 40.000014 ], [ -75.140507, 39.999987 ], [ -75.14038, 39.999975 ], [ -75.140267, 39.99996 ], [ -75.14017, 39.999946 ], [ -75.139982, 39.999915 ], [ -75.139517, 39.999855 ], [ -75.139059, 39.99981 ], [ -75.138515, 39.999756 ], [ -75.138293, 39.999728 ], [ -75.137118, 39.999584 ], [ -75.136085, 39.999437 ], [ -75.13565, 39.999387 ], [ -75.135012, 39.999302 ], [ -75.134876, 39.999284 ], [ -75.134758, 39.999268 ], [ -75.134649, 39.999254 ], [ -75.13457, 39.999244 ], [ -75.134433, 39.999226 ], [ -75.134193, 39.999189 ], [ -75.133851, 39.999137 ], [ -75.133242, 39.999057 ], [ -75.132918, 39.999011 ], [ -75.132699, 39.998979 ], [ -75.132489, 39.998954 ], [ -75.132162, 39.998915 ], [ -75.131963, 39.998888 ], [ -75.131495, 39.998824 ], [ -75.131252, 39.998792 ], [ -75.130925, 39.998753 ], [ -75.130667, 39.998723 ], [ -75.130327, 39.998683 ], [ -75.130137, 39.99866 ], [ -75.129809, 39.998622 ], [ -75.129256, 39.998554 ], [ -75.128982, 39.998513 ], [ -75.128646, 39.998463 ], [ -75.127977, 39.998374 ], [ -75.127577, 39.998321 ], [ -75.127333, 39.998289 ], [ -75.126893, 39.998229 ], [ -75.12673, 39.998207 ], [ -75.126423, 39.998166 ], [ -75.126125, 39.998118 ], [ -75.125857, 39.99809 ], [ -75.125614, 39.998064 ], [ -75.125424, 39.998044 ], [ -75.12512, 39.998002 ], [ -75.124314, 39.99789 ], [ -75.123935, 39.997842 ], [ -75.123452, 39.997788 ], [ -75.12321, 39.997762 ], [ -75.122904, 39.997723 ], [ -75.1227, 39.997698 ], [ -75.12257, 39.997681 ], [ -75.122213, 39.997634 ], [ -75.121981, 39.997605 ], [ -75.121732, 39.997574 ], [ -75.121251, 39.997509 ], [ -75.121019, 39.997479 ], [ -75.120295, 39.997388 ], [ -75.120066, 39.997356 ], [ -75.119794, 39.997319 ], [ -75.119311, 39.997256 ], [ -75.119113, 39.997231 ], [ -75.118409, 39.997144 ], [ -75.117652, 39.997047 ], [ -75.117386, 39.997014 ], [ -75.116911, 39.996943 ], [ -75.116453, 39.996886 ], [ -75.116069, 39.996835 ], [ -75.115956, 39.996819 ], [ -75.11578, 39.996795 ], [ -75.115462, 39.996756 ], [ -75.115212, 39.996722 ], [ -75.114261, 39.996596 ], [ -75.113832, 39.996551 ], [ -75.1136, 39.996522 ], [ -75.113536, 39.996513 ], [ -75.113463, 39.996496 ], [ -75.113419, 39.996479 ], [ -75.11338, 39.996454 ], [ -75.113346, 39.996424 ], [ -75.112937, 39.995984 ], [ -75.112391, 39.995368 ], [ -75.11222, 39.995176 ], [ -75.111931, 39.99485 ], [ -75.111602, 39.994479 ], [ -75.111372, 39.99422 ], [ -75.111209, 39.994035 ], [ -75.110675, 39.993428 ], [ -75.110583, 39.993322 ], [ -75.110278, 39.992976 ], [ -75.109886, 39.992522 ], [ -75.109729, 39.99234 ], [ -75.109534, 39.992118 ], [ -75.109511, 39.99209 ], [ -75.109359, 39.991904 ], [ -75.109252, 39.991778 ], [ -75.109109, 39.991614 ], [ -75.108849, 39.991335 ], [ -75.108753, 39.991225 ], [ -75.108684, 39.991147 ], [ -75.108319, 39.990736 ], [ -75.108031, 39.990409 ], [ -75.107732, 39.990079 ], [ -75.107608, 39.989943 ], [ -75.10734, 39.98965 ], [ -75.107202, 39.989487 ], [ -75.107055, 39.989312 ], [ -75.106768, 39.988977 ], [ -75.106614, 39.988805 ], [ -75.106459, 39.988636 ], [ -75.106351, 39.988517 ], [ -75.106184, 39.988324 ], [ -75.106117, 39.988246 ], [ -75.105936, 39.988035 ], [ -75.105696, 39.98776 ], [ -75.105672, 39.987733 ], [ -75.105504, 39.987544 ], [ -75.105363, 39.987391 ], [ -75.105077, 39.987079 ], [ -75.104956, 39.986942 ], [ -75.104723, 39.986678 ], [ -75.104509, 39.986433 ], [ -75.104374, 39.986281 ], [ -75.104165, 39.986039 ], [ -75.104051, 39.985907 ], [ -75.103729, 39.985541 ], [ -75.10357, 39.985373 ], [ -75.103357, 39.985147 ], [ -75.103194, 39.984955 ], [ -75.103, 39.984722 ], [ -75.102867, 39.984576 ], [ -75.10263, 39.984314 ], [ -75.102508, 39.984179 ], [ -75.102425, 39.984084 ], [ -75.102223, 39.983853 ], [ -75.101951, 39.983545 ], [ -75.101723, 39.983292 ], [ -75.101446, 39.98297 ], [ -75.100781, 39.983303 ], [ -75.10015, 39.983639 ], [ -75.100122, 39.983675 ], [ -75.10011, 39.983709 ], [ -75.100135, 39.983769 ], [ -75.100228, 39.983891 ], [ -75.100233, 39.983915 ], [ -75.100223, 39.983939 ], [ -75.100182, 39.983969 ], [ -75.099575, 39.984277 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307852", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.236857, 39.981201 ], [ -75.237679, 39.981483 ], [ -75.238227, 39.981671 ], [ -75.238335, 39.981708 ], [ -75.238432, 39.98174 ], [ -75.238555, 39.981785 ], [ -75.239036, 39.981956 ], [ -75.23907, 39.981967 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307854", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143308, 39.917558 ], [ -75.143343, 39.917615 ], [ -75.143475, 39.917873 ], [ -75.143704, 39.918328 ], [ -75.143808, 39.91852 ], [ -75.14386, 39.918619 ], [ -75.144069, 39.91901 ], [ -75.144897, 39.920454 ], [ -75.144974, 39.920572 ], [ -75.145222, 39.920952 ], [ -75.14526, 39.921033 ], [ -75.145293, 39.921104 ], [ -75.145308, 39.921143 ], [ -75.145313, 39.921178 ], [ -75.145321, 39.921244 ], [ -75.144851, 39.921191 ], [ -75.144751, 39.921179 ], [ -75.14363, 39.921025 ], [ -75.143425, 39.920997 ], [ -75.143421, 39.920996 ], [ -75.142991, 39.920941 ], [ -75.142649, 39.920897 ], [ -75.141518, 39.920752 ], [ -75.141513, 39.920751 ], [ -75.14136, 39.920731 ], [ -75.141356, 39.920731 ], [ -75.141274, 39.920602 ], [ -75.141107, 39.92034 ], [ -75.140767, 39.919808 ], [ -75.140726, 39.919742 ], [ -75.140551, 39.919471 ], [ -75.140353, 39.919164 ], [ -75.14025, 39.919011 ], [ -75.140159, 39.918867 ], [ -75.140064, 39.918723 ], [ -75.139911, 39.918492 ], [ -75.139121, 39.917294 ], [ -75.139074, 39.917222 ], [ -75.138961, 39.91705 ], [ -75.138874, 39.91692 ], [ -75.138794, 39.9168 ], [ -75.138682, 39.916629 ], [ -75.138442, 39.91628 ], [ -75.138207, 39.915942 ], [ -75.138182, 39.915905 ], [ -75.138081, 39.915754 ], [ -75.137991, 39.915607 ], [ -75.137984, 39.915594 ], [ -75.137923, 39.915477 ], [ -75.137883, 39.915373 ], [ -75.137831, 39.915208 ], [ -75.137815, 39.915138 ], [ -75.137793, 39.915041 ], [ -75.137779, 39.914909 ], [ -75.137779, 39.914749 ], [ -75.137785, 39.914608 ], [ -75.137806, 39.914459 ], [ -75.13784, 39.9143 ], [ -75.13787, 39.914179 ], [ -75.137948, 39.913875 ], [ -75.137997, 39.913678 ], [ -75.138153, 39.913009 ], [ -75.138255, 39.912538 ], [ -75.138812, 39.912617 ], [ -75.139239, 39.912676 ], [ -75.139676, 39.912738 ], [ -75.140085, 39.912795 ], [ -75.14081, 39.912897 ], [ -75.142276, 39.913081 ], [ -75.146151, 39.913571 ], [ -75.146402, 39.913602 ], [ -75.146503, 39.913615 ], [ -75.146593, 39.913671 ], [ -75.146874, 39.913735 ], [ -75.147639, 39.913843 ], [ -75.147727, 39.913854 ], [ -75.147976, 39.913885 ], [ -75.148079, 39.913897 ], [ -75.148305, 39.913927 ], [ -75.14881, 39.913995 ], [ -75.149151, 39.914041 ], [ -75.149861, 39.914137 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.151955, 39.914395 ], [ -75.152096, 39.914412 ], [ -75.152355, 39.914446 ], [ -75.152624, 39.914479 ], [ -75.152744, 39.914491 ], [ -75.153148, 39.914536 ], [ -75.154198, 39.914663 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.160365, 39.915469 ], [ -75.160481, 39.915483 ], [ -75.160815, 39.915528 ], [ -75.161059, 39.915562 ], [ -75.161387, 39.915602 ], [ -75.161648, 39.915639 ], [ -75.161927, 39.915681 ], [ -75.162154, 39.915711 ], [ -75.162376, 39.91574 ], [ -75.162787, 39.915796 ], [ -75.16291, 39.915814 ], [ -75.163507, 39.915887 ], [ -75.163798, 39.915925 ], [ -75.163986, 39.915952 ], [ -75.164515, 39.916019 ], [ -75.165044, 39.916084 ], [ -75.165204, 39.916104 ], [ -75.165555, 39.916148 ], [ -75.16612, 39.916224 ], [ -75.166255, 39.916236 ], [ -75.166606, 39.916281 ], [ -75.166876, 39.916315 ], [ -75.167115, 39.916345 ], [ -75.167513, 39.916398 ], [ -75.167639, 39.916416 ], [ -75.168177, 39.91648 ], [ -75.168602, 39.91654 ], [ -75.168692, 39.916551 ], [ -75.169227, 39.916616 ], [ -75.169626, 39.916668 ], [ -75.170194, 39.91674 ], [ -75.170625, 39.916792 ], [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.236857, 39.981201 ], [ -75.237679, 39.981483 ], [ -75.238227, 39.981671 ], [ -75.238335, 39.981708 ], [ -75.238432, 39.98174 ], [ -75.238555, 39.981785 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307856", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143308, 39.917558 ], [ -75.143343, 39.917615 ], [ -75.143475, 39.917873 ], [ -75.143704, 39.918328 ], [ -75.143808, 39.91852 ], [ -75.14386, 39.918619 ], [ -75.144069, 39.91901 ], [ -75.144897, 39.920454 ], [ -75.144974, 39.920572 ], [ -75.145222, 39.920952 ], [ -75.14526, 39.921033 ], [ -75.145293, 39.921104 ], [ -75.145308, 39.921143 ], [ -75.145313, 39.921178 ], [ -75.145321, 39.921244 ], [ -75.144851, 39.921191 ], [ -75.144751, 39.921179 ], [ -75.14363, 39.921025 ], [ -75.143425, 39.920997 ], [ -75.143421, 39.920996 ], [ -75.142991, 39.920941 ], [ -75.142649, 39.920897 ], [ -75.141518, 39.920752 ], [ -75.141513, 39.920751 ], [ -75.14136, 39.920731 ], [ -75.141356, 39.920731 ], [ -75.141274, 39.920602 ], [ -75.141107, 39.92034 ], [ -75.140767, 39.919808 ], [ -75.140726, 39.919742 ], [ -75.140551, 39.919471 ], [ -75.140353, 39.919164 ], [ -75.14025, 39.919011 ], [ -75.140159, 39.918867 ], [ -75.140064, 39.918723 ], [ -75.139911, 39.918492 ], [ -75.139121, 39.917294 ], [ -75.139074, 39.917222 ], [ -75.138961, 39.91705 ], [ -75.138874, 39.91692 ], [ -75.138794, 39.9168 ], [ -75.138682, 39.916629 ], [ -75.138442, 39.91628 ], [ -75.138207, 39.915942 ], [ -75.138182, 39.915905 ], [ -75.138081, 39.915754 ], [ -75.137991, 39.915607 ], [ -75.137984, 39.915594 ], [ -75.137923, 39.915477 ], [ -75.137883, 39.915373 ], [ -75.137831, 39.915208 ], [ -75.137815, 39.915138 ], [ -75.137793, 39.915041 ], [ -75.137779, 39.914909 ], [ -75.137779, 39.914749 ], [ -75.137785, 39.914608 ], [ -75.137806, 39.914459 ], [ -75.13784, 39.9143 ], [ -75.13787, 39.914179 ], [ -75.137948, 39.913875 ], [ -75.137997, 39.913678 ], [ -75.138153, 39.913009 ], [ -75.138255, 39.912538 ], [ -75.138812, 39.912617 ], [ -75.139239, 39.912676 ], [ -75.139676, 39.912738 ], [ -75.140085, 39.912795 ], [ -75.14081, 39.912897 ], [ -75.142276, 39.913081 ], [ -75.146151, 39.913571 ], [ -75.146402, 39.913602 ], [ -75.146503, 39.913615 ], [ -75.146593, 39.913671 ], [ -75.146874, 39.913735 ], [ -75.147639, 39.913843 ], [ -75.147727, 39.913854 ], [ -75.147976, 39.913885 ], [ -75.148079, 39.913897 ], [ -75.148305, 39.913927 ], [ -75.14881, 39.913995 ], [ -75.149151, 39.914041 ], [ -75.149861, 39.914137 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.151955, 39.914395 ], [ -75.152096, 39.914412 ], [ -75.152355, 39.914446 ], [ -75.152624, 39.914479 ], [ -75.152744, 39.914491 ], [ -75.153148, 39.914536 ], [ -75.154198, 39.914663 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.160365, 39.915469 ], [ -75.160481, 39.915483 ], [ -75.160815, 39.915528 ], [ -75.161059, 39.915562 ], [ -75.161387, 39.915602 ], [ -75.161648, 39.915639 ], [ -75.161927, 39.915681 ], [ -75.162154, 39.915711 ], [ -75.162376, 39.91574 ], [ -75.162787, 39.915796 ], [ -75.16291, 39.915814 ], [ -75.163507, 39.915887 ], [ -75.163798, 39.915925 ], [ -75.163986, 39.915952 ], [ -75.164515, 39.916019 ], [ -75.165044, 39.916084 ], [ -75.165204, 39.916104 ], [ -75.165555, 39.916148 ], [ -75.16612, 39.916224 ], [ -75.166255, 39.916236 ], [ -75.166606, 39.916281 ], [ -75.166876, 39.916315 ], [ -75.167115, 39.916345 ], [ -75.167513, 39.916398 ], [ -75.167639, 39.916416 ], [ -75.168177, 39.91648 ], [ -75.168602, 39.91654 ], [ -75.168692, 39.916551 ], [ -75.169227, 39.916616 ], [ -75.169626, 39.916668 ], [ -75.170194, 39.91674 ], [ -75.170625, 39.916792 ], [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.238845, 39.982219 ], [ -75.238686, 39.982461 ], [ -75.238519, 39.982738 ], [ -75.238391, 39.982937 ], [ -75.238295, 39.983087 ], [ -75.237687, 39.984075 ], [ -75.23753, 39.984313 ], [ -75.23745, 39.984448 ], [ -75.23736, 39.984595 ], [ -75.237205, 39.984796 ], [ -75.237185, 39.98483 ], [ -75.237163, 39.984869 ], [ -75.23712, 39.98495 ], [ -75.237108, 39.984997 ], [ -75.237085, 39.985077 ], [ -75.237046, 39.98523 ], [ -75.237031, 39.985344 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985535 ], [ -75.237039, 39.985622 ], [ -75.237107, 39.98599 ], [ -75.237119, 39.986041 ], [ -75.237175, 39.98605 ], [ -75.237246, 39.986069 ], [ -75.237271, 39.986078 ], [ -75.237296, 39.986092 ], [ -75.237332, 39.986131 ], [ -75.237522, 39.98636 ], [ -75.237944, 39.986885 ], [ -75.238509, 39.987597 ], [ -75.23895, 39.988141 ], [ -75.239128, 39.988358 ], [ -75.239258, 39.988516 ], [ -75.23988, 39.988208 ], [ -75.240523, 39.987916 ], [ -75.241137, 39.987638 ], [ -75.241635, 39.987389 ], [ -75.241719, 39.987342 ], [ -75.24177, 39.987254 ], [ -75.242415, 39.98807 ], [ -75.243236, 39.989114 ], [ -75.243917, 39.988793 ], [ -75.244456, 39.988546 ], [ -75.244625, 39.988478 ], [ -75.244821, 39.988409 ], [ -75.245012, 39.988358 ], [ -75.245222, 39.988316 ], [ -75.245378, 39.988293 ], [ -75.245542, 39.988276 ], [ -75.245718, 39.988264 ], [ -75.246015, 39.988257 ], [ -75.246098, 39.988263 ], [ -75.246195, 39.988254 ], [ -75.246288, 39.988236 ], [ -75.246319, 39.988226 ], [ -75.246383, 39.988206 ], [ -75.246408, 39.988231 ], [ -75.24644, 39.988256 ], [ -75.24647, 39.988271 ], [ -75.246526, 39.988292 ], [ -75.246589, 39.98831 ], [ -75.246659, 39.988329 ], [ -75.24689, 39.988386 ], [ -75.246974, 39.988409 ], [ -75.247081, 39.988439 ], [ -75.247237, 39.98849 ], [ -75.247384, 39.98855 ], [ -75.247537, 39.988617 ], [ -75.247661, 39.988681 ], [ -75.247835, 39.988778 ], [ -75.247973, 39.988864 ], [ -75.2481, 39.988957 ], [ -75.248209, 39.989041 ], [ -75.248317, 39.989139 ], [ -75.24844, 39.989266 ], [ -75.248555, 39.989391 ], [ -75.24865, 39.989502 ], [ -75.248978, 39.9899 ], [ -75.249057, 39.990007 ], [ -75.249545, 39.98969 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307860", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.238845, 39.982219 ], [ -75.238686, 39.982461 ], [ -75.238519, 39.982738 ], [ -75.238391, 39.982937 ], [ -75.238295, 39.983087 ], [ -75.237687, 39.984075 ], [ -75.23753, 39.984313 ], [ -75.23745, 39.984448 ], [ -75.23736, 39.984595 ], [ -75.237205, 39.984796 ], [ -75.237185, 39.98483 ], [ -75.237163, 39.984869 ], [ -75.23712, 39.98495 ], [ -75.237108, 39.984997 ], [ -75.237085, 39.985077 ], [ -75.237046, 39.98523 ], [ -75.237031, 39.985344 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985535 ], [ -75.237039, 39.985622 ], [ -75.237107, 39.98599 ], [ -75.237119, 39.986041 ], [ -75.237175, 39.98605 ], [ -75.237246, 39.986069 ], [ -75.237271, 39.986078 ], [ -75.237296, 39.986092 ], [ -75.237332, 39.986131 ], [ -75.237522, 39.98636 ], [ -75.237944, 39.986885 ], [ -75.238509, 39.987597 ], [ -75.23895, 39.988141 ], [ -75.239128, 39.988358 ], [ -75.239258, 39.988516 ], [ -75.23988, 39.988208 ], [ -75.240523, 39.987916 ], [ -75.241137, 39.987638 ], [ -75.241635, 39.987389 ], [ -75.241719, 39.987342 ], [ -75.24177, 39.987254 ], [ -75.242415, 39.98807 ], [ -75.243236, 39.989114 ], [ -75.243917, 39.988793 ], [ -75.244456, 39.988546 ], [ -75.244625, 39.988478 ], [ -75.244821, 39.988409 ], [ -75.245012, 39.988358 ], [ -75.245222, 39.988316 ], [ -75.245378, 39.988293 ], [ -75.245542, 39.988276 ], [ -75.245718, 39.988264 ], [ -75.246015, 39.988257 ], [ -75.246098, 39.988263 ], [ -75.246195, 39.988254 ], [ -75.246288, 39.988236 ], [ -75.246319, 39.988226 ], [ -75.246383, 39.988206 ], [ -75.246408, 39.988231 ], [ -75.24644, 39.988256 ], [ -75.24647, 39.988271 ], [ -75.246526, 39.988292 ], [ -75.246589, 39.98831 ], [ -75.246659, 39.988329 ], [ -75.24689, 39.988386 ], [ -75.246974, 39.988409 ], [ -75.247081, 39.988439 ], [ -75.247237, 39.98849 ], [ -75.247384, 39.98855 ], [ -75.247537, 39.988617 ], [ -75.247661, 39.988681 ], [ -75.247835, 39.988778 ], [ -75.247973, 39.988864 ], [ -75.2481, 39.988957 ], [ -75.248209, 39.989041 ], [ -75.248317, 39.989139 ], [ -75.24844, 39.989266 ], [ -75.248555, 39.989391 ], [ -75.24865, 39.989502 ], [ -75.248978, 39.9899 ], [ -75.249057, 39.990007 ], [ -75.249545, 39.98969 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307861", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.238845, 39.982219 ], [ -75.238686, 39.982461 ], [ -75.238519, 39.982738 ], [ -75.238391, 39.982937 ], [ -75.238295, 39.983087 ], [ -75.237687, 39.984075 ], [ -75.23753, 39.984313 ], [ -75.23745, 39.984448 ], [ -75.23736, 39.984595 ], [ -75.237205, 39.984796 ], [ -75.237185, 39.98483 ], [ -75.237163, 39.984869 ], [ -75.23712, 39.98495 ], [ -75.237108, 39.984997 ], [ -75.237085, 39.985077 ], [ -75.237046, 39.98523 ], [ -75.237031, 39.985344 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985535 ], [ -75.237039, 39.985622 ], [ -75.237107, 39.98599 ], [ -75.237119, 39.986041 ], [ -75.237175, 39.98605 ], [ -75.237246, 39.986069 ], [ -75.237271, 39.986078 ], [ -75.237296, 39.986092 ], [ -75.237332, 39.986131 ], [ -75.237522, 39.98636 ], [ -75.237944, 39.986885 ], [ -75.238509, 39.987597 ], [ -75.23895, 39.988141 ], [ -75.239128, 39.988358 ], [ -75.239258, 39.988516 ], [ -75.23988, 39.988208 ], [ -75.240523, 39.987916 ], [ -75.241137, 39.987638 ], [ -75.241635, 39.987389 ], [ -75.241719, 39.987342 ], [ -75.24177, 39.987254 ], [ -75.242415, 39.98807 ], [ -75.243236, 39.989114 ], [ -75.243917, 39.988793 ], [ -75.244456, 39.988546 ], [ -75.244625, 39.988478 ], [ -75.244821, 39.988409 ], [ -75.245012, 39.988358 ], [ -75.245222, 39.988316 ], [ -75.245378, 39.988293 ], [ -75.245542, 39.988276 ], [ -75.245718, 39.988264 ], [ -75.246015, 39.988257 ], [ -75.246098, 39.988263 ], [ -75.246195, 39.988254 ], [ -75.246288, 39.988236 ], [ -75.246319, 39.988226 ], [ -75.246383, 39.988206 ], [ -75.246408, 39.988231 ], [ -75.24644, 39.988256 ], [ -75.24647, 39.988271 ], [ -75.246526, 39.988292 ], [ -75.246589, 39.98831 ], [ -75.246659, 39.988329 ], [ -75.24689, 39.988386 ], [ -75.246974, 39.988409 ], [ -75.247081, 39.988439 ], [ -75.247237, 39.98849 ], [ -75.247384, 39.98855 ], [ -75.247537, 39.988617 ], [ -75.247661, 39.988681 ], [ -75.247835, 39.988778 ], [ -75.247973, 39.988864 ], [ -75.2481, 39.988957 ], [ -75.248209, 39.989041 ], [ -75.248317, 39.989139 ], [ -75.24844, 39.989266 ], [ -75.248555, 39.989391 ], [ -75.24865, 39.989502 ], [ -75.248978, 39.9899 ], [ -75.249057, 39.990007 ], [ -75.249123, 39.990103 ], [ -75.249141, 39.990141 ], [ -75.249156, 39.990185 ], [ -75.249164, 39.99022 ], [ -75.249174, 39.990268 ], [ -75.24918, 39.990324 ], [ -75.249184, 39.990364 ], [ -75.249189, 39.990411 ], [ -75.249205, 39.990527 ], [ -75.249515, 39.990379 ], [ -75.249794, 39.990249 ], [ -75.249969, 39.990167 ], [ -75.250204, 39.990064 ], [ -75.250318, 39.990007 ], [ -75.250779, 39.989796 ], [ -75.251217, 39.989599 ], [ -75.251437, 39.9895 ], [ -75.251913, 39.989276 ], [ -75.252117, 39.98918 ], [ -75.253036, 39.988747 ], [ -75.253357, 39.988597 ], [ -75.253975, 39.988305 ], [ -75.254322, 39.988477 ], [ -75.254448, 39.988545 ], [ -75.254486, 39.988609 ], [ -75.254763, 39.988784 ], [ -75.254859, 39.988844 ], [ -75.254922, 39.988881 ], [ -75.255213, 39.989048 ], [ -75.255291, 39.989057 ], [ -75.2561, 39.989534 ], [ -75.256343, 39.989675 ], [ -75.256593, 39.989807 ], [ -75.256855, 39.989927 ], [ -75.256936, 39.989961 ], [ -75.257122, 39.990037 ], [ -75.25733, 39.990113 ], [ -75.257397, 39.990137 ], [ -75.257676, 39.990224 ], [ -75.257931, 39.990294 ], [ -75.258095, 39.990338 ], [ -75.258369, 39.989878 ], [ -75.258429, 39.989785 ], [ -75.258518, 39.989657 ], [ -75.258715, 39.989397 ], [ -75.258895, 39.989258 ], [ -75.259041, 39.989197 ], [ -75.259369, 39.989108 ], [ -75.259528, 39.989094 ], [ -75.259712, 39.989118 ], [ -75.259901, 39.989172 ], [ -75.261384, 39.989593 ], [ -75.261766, 39.989627 ], [ -75.261983, 39.98961 ], [ -75.262153, 39.989502 ], [ -75.262153, 39.989404 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307865", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.1552, 39.907995 ], [ -75.153716, 39.907804 ], [ -75.153207, 39.907745 ], [ -75.152024, 39.90759 ], [ -75.151746, 39.907554 ], [ -75.151598, 39.907591 ], [ -75.151511, 39.907618 ], [ -75.151433, 39.907655 ], [ -75.151367, 39.9077 ], [ -75.151345, 39.907726 ], [ -75.15128, 39.907824 ], [ -75.151226, 39.907959 ], [ -75.15123, 39.908026 ], [ -75.151234, 39.908158 ], [ -75.151238, 39.908314 ], [ -75.151237, 39.908491 ], [ -75.151234, 39.908631 ], [ -75.15123, 39.908685 ], [ -75.15122, 39.908763 ], [ -75.151195, 39.90888 ], [ -75.151174, 39.908977 ], [ -75.1511, 39.909296 ], [ -75.15109, 39.90934 ], [ -75.151001, 39.909709 ], [ -75.15099, 39.909754 ], [ -75.150973, 39.909822 ], [ -75.150939, 39.909963 ], [ -75.150849, 39.910346 ], [ -75.150839, 39.910391 ], [ -75.150786, 39.910647 ], [ -75.150713, 39.911021 ], [ -75.150693, 39.911114 ], [ -75.15066, 39.911269 ], [ -75.150606, 39.911522 ], [ -75.150556, 39.911773 ], [ -75.150514, 39.911989 ], [ -75.150499, 39.912054 ], [ -75.150466, 39.912196 ], [ -75.150441, 39.9123 ], [ -75.150384, 39.912534 ], [ -75.150168, 39.913376 ], [ -75.150097, 39.913656 ], [ -75.150058, 39.913804 ], [ -75.150005, 39.914015 ], [ -75.149992, 39.914086 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.151955, 39.914395 ], [ -75.152096, 39.914412 ], [ -75.152355, 39.914446 ], [ -75.152624, 39.914479 ], [ -75.152744, 39.914491 ], [ -75.153148, 39.914536 ], [ -75.154198, 39.914663 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.160365, 39.915469 ], [ -75.160481, 39.915483 ], [ -75.160815, 39.915528 ], [ -75.161059, 39.915562 ], [ -75.161387, 39.915602 ], [ -75.161648, 39.915639 ], [ -75.161927, 39.915681 ], [ -75.162154, 39.915711 ], [ -75.162376, 39.91574 ], [ -75.162787, 39.915796 ], [ -75.16291, 39.915814 ], [ -75.163507, 39.915887 ], [ -75.163798, 39.915925 ], [ -75.163986, 39.915952 ], [ -75.164515, 39.916019 ], [ -75.165044, 39.916084 ], [ -75.165204, 39.916104 ], [ -75.165555, 39.916148 ], [ -75.16612, 39.916224 ], [ -75.166255, 39.916236 ], [ -75.166606, 39.916281 ], [ -75.166876, 39.916315 ], [ -75.167115, 39.916345 ], [ -75.167513, 39.916398 ], [ -75.167639, 39.916416 ], [ -75.168177, 39.91648 ], [ -75.168602, 39.91654 ], [ -75.168692, 39.916551 ], [ -75.169227, 39.916616 ], [ -75.169626, 39.916668 ], [ -75.170194, 39.91674 ], [ -75.170625, 39.916792 ], [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.238845, 39.982219 ], [ -75.238686, 39.982461 ], [ -75.238519, 39.982738 ], [ -75.238391, 39.982937 ], [ -75.238295, 39.983087 ], [ -75.237687, 39.984075 ], [ -75.23753, 39.984313 ], [ -75.23745, 39.984448 ], [ -75.23736, 39.984595 ], [ -75.237205, 39.984796 ], [ -75.237185, 39.98483 ], [ -75.237163, 39.984869 ], [ -75.23712, 39.98495 ], [ -75.237108, 39.984997 ], [ -75.237085, 39.985077 ], [ -75.237046, 39.98523 ], [ -75.237031, 39.985344 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985535 ], [ -75.237039, 39.985622 ], [ -75.237107, 39.98599 ], [ -75.237119, 39.986041 ], [ -75.237175, 39.98605 ], [ -75.237246, 39.986069 ], [ -75.237271, 39.986078 ], [ -75.237296, 39.986092 ], [ -75.237332, 39.986131 ], [ -75.237522, 39.98636 ], [ -75.237944, 39.986885 ], [ -75.238509, 39.987597 ], [ -75.23895, 39.988141 ], [ -75.239128, 39.988358 ], [ -75.239258, 39.988516 ], [ -75.23988, 39.988208 ], [ -75.240523, 39.987916 ], [ -75.241137, 39.987638 ], [ -75.241635, 39.987389 ], [ -75.241719, 39.987342 ], [ -75.24177, 39.987254 ], [ -75.242415, 39.98807 ], [ -75.243236, 39.989114 ], [ -75.243917, 39.988793 ], [ -75.244456, 39.988546 ], [ -75.244625, 39.988478 ], [ -75.244821, 39.988409 ], [ -75.245012, 39.988358 ], [ -75.245222, 39.988316 ], [ -75.245378, 39.988293 ], [ -75.245542, 39.988276 ], [ -75.245718, 39.988264 ], [ -75.246015, 39.988257 ], [ -75.246098, 39.988263 ], [ -75.246195, 39.988254 ], [ -75.246288, 39.988236 ], [ -75.246319, 39.988226 ], [ -75.246383, 39.988206 ], [ -75.246408, 39.988231 ], [ -75.24644, 39.988256 ], [ -75.24647, 39.988271 ], [ -75.246526, 39.988292 ], [ -75.246589, 39.98831 ], [ -75.246659, 39.988329 ], [ -75.24689, 39.988386 ], [ -75.246974, 39.988409 ], [ -75.247081, 39.988439 ], [ -75.247237, 39.98849 ], [ -75.247384, 39.98855 ], [ -75.247537, 39.988617 ], [ -75.247661, 39.988681 ], [ -75.247835, 39.988778 ], [ -75.247973, 39.988864 ], [ -75.2481, 39.988957 ], [ -75.248209, 39.989041 ], [ -75.248317, 39.989139 ], [ -75.24844, 39.989266 ], [ -75.248555, 39.989391 ], [ -75.24865, 39.989502 ], [ -75.248978, 39.9899 ], [ -75.249057, 39.990007 ], [ -75.249123, 39.990103 ], [ -75.249141, 39.990141 ], [ -75.249156, 39.990185 ], [ -75.249164, 39.99022 ], [ -75.249174, 39.990268 ], [ -75.24918, 39.990324 ], [ -75.249184, 39.990364 ], [ -75.249189, 39.990411 ], [ -75.249205, 39.990527 ], [ -75.249515, 39.990379 ], [ -75.249794, 39.990249 ], [ -75.249969, 39.990167 ], [ -75.250204, 39.990064 ], [ -75.250318, 39.990007 ], [ -75.250779, 39.989796 ], [ -75.251217, 39.989599 ], [ -75.251437, 39.9895 ], [ -75.251913, 39.989276 ], [ -75.252117, 39.98918 ], [ -75.253036, 39.988747 ], [ -75.253357, 39.988597 ], [ -75.253975, 39.988305 ], [ -75.254322, 39.988477 ], [ -75.254448, 39.988545 ], [ -75.254486, 39.988609 ], [ -75.254763, 39.988784 ], [ -75.254859, 39.988844 ], [ -75.254922, 39.988881 ], [ -75.255213, 39.989048 ], [ -75.255291, 39.989057 ], [ -75.2561, 39.989534 ], [ -75.256343, 39.989675 ], [ -75.256593, 39.989807 ], [ -75.256855, 39.989927 ], [ -75.256936, 39.989961 ], [ -75.257122, 39.990037 ], [ -75.25733, 39.990113 ], [ -75.257397, 39.990137 ], [ -75.257676, 39.990224 ], [ -75.257931, 39.990294 ], [ -75.258095, 39.990338 ], [ -75.258369, 39.989878 ], [ -75.258429, 39.989785 ], [ -75.258518, 39.989657 ], [ -75.258715, 39.989397 ], [ -75.258895, 39.989258 ], [ -75.259041, 39.989197 ], [ -75.259369, 39.989108 ], [ -75.259528, 39.989094 ], [ -75.259712, 39.989118 ], [ -75.259901, 39.989172 ], [ -75.261384, 39.989593 ], [ -75.261766, 39.989627 ], [ -75.261983, 39.98961 ], [ -75.262153, 39.989502 ], [ -75.262153, 39.989404 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307866", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.143308, 39.917558 ], [ -75.143343, 39.917615 ], [ -75.143475, 39.917873 ], [ -75.143704, 39.918328 ], [ -75.143808, 39.91852 ], [ -75.14386, 39.918619 ], [ -75.144069, 39.91901 ], [ -75.144897, 39.920454 ], [ -75.144974, 39.920572 ], [ -75.145222, 39.920952 ], [ -75.14526, 39.921033 ], [ -75.145293, 39.921104 ], [ -75.145308, 39.921143 ], [ -75.145313, 39.921178 ], [ -75.145321, 39.921244 ], [ -75.144851, 39.921191 ], [ -75.144751, 39.921179 ], [ -75.14363, 39.921025 ], [ -75.143425, 39.920997 ], [ -75.143421, 39.920996 ], [ -75.142991, 39.920941 ], [ -75.142649, 39.920897 ], [ -75.141518, 39.920752 ], [ -75.141513, 39.920751 ], [ -75.14136, 39.920731 ], [ -75.141356, 39.920731 ], [ -75.141274, 39.920602 ], [ -75.141107, 39.92034 ], [ -75.140767, 39.919808 ], [ -75.140726, 39.919742 ], [ -75.140551, 39.919471 ], [ -75.140353, 39.919164 ], [ -75.14025, 39.919011 ], [ -75.140159, 39.918867 ], [ -75.140064, 39.918723 ], [ -75.139911, 39.918492 ], [ -75.139121, 39.917294 ], [ -75.139074, 39.917222 ], [ -75.138961, 39.91705 ], [ -75.138874, 39.91692 ], [ -75.138794, 39.9168 ], [ -75.138682, 39.916629 ], [ -75.138442, 39.91628 ], [ -75.138207, 39.915942 ], [ -75.138182, 39.915905 ], [ -75.138081, 39.915754 ], [ -75.137991, 39.915607 ], [ -75.137984, 39.915594 ], [ -75.137923, 39.915477 ], [ -75.137883, 39.915373 ], [ -75.137831, 39.915208 ], [ -75.137815, 39.915138 ], [ -75.137793, 39.915041 ], [ -75.137779, 39.914909 ], [ -75.137779, 39.914749 ], [ -75.137785, 39.914608 ], [ -75.137806, 39.914459 ], [ -75.13784, 39.9143 ], [ -75.13787, 39.914179 ], [ -75.137948, 39.913875 ], [ -75.137997, 39.913678 ], [ -75.138153, 39.913009 ], [ -75.138255, 39.912538 ], [ -75.138812, 39.912617 ], [ -75.139239, 39.912676 ], [ -75.139676, 39.912738 ], [ -75.140085, 39.912795 ], [ -75.14081, 39.912897 ], [ -75.142276, 39.913081 ], [ -75.146151, 39.913571 ], [ -75.146402, 39.913602 ], [ -75.146503, 39.913615 ], [ -75.146593, 39.913671 ], [ -75.146874, 39.913735 ], [ -75.147639, 39.913843 ], [ -75.147727, 39.913854 ], [ -75.147976, 39.913885 ], [ -75.148079, 39.913897 ], [ -75.148305, 39.913927 ], [ -75.14881, 39.913995 ], [ -75.149151, 39.914041 ], [ -75.149861, 39.914137 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.151955, 39.914395 ], [ -75.152096, 39.914412 ], [ -75.152355, 39.914446 ], [ -75.152624, 39.914479 ], [ -75.152744, 39.914491 ], [ -75.153148, 39.914536 ], [ -75.154198, 39.914663 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.160365, 39.915469 ], [ -75.160481, 39.915483 ], [ -75.160815, 39.915528 ], [ -75.161059, 39.915562 ], [ -75.161387, 39.915602 ], [ -75.161648, 39.915639 ], [ -75.161927, 39.915681 ], [ -75.162154, 39.915711 ], [ -75.162376, 39.91574 ], [ -75.162787, 39.915796 ], [ -75.16291, 39.915814 ], [ -75.163507, 39.915887 ], [ -75.163798, 39.915925 ], [ -75.163986, 39.915952 ], [ -75.164515, 39.916019 ], [ -75.165044, 39.916084 ], [ -75.165204, 39.916104 ], [ -75.165555, 39.916148 ], [ -75.16612, 39.916224 ], [ -75.166255, 39.916236 ], [ -75.166606, 39.916281 ], [ -75.166876, 39.916315 ], [ -75.167115, 39.916345 ], [ -75.167513, 39.916398 ], [ -75.167639, 39.916416 ], [ -75.168177, 39.91648 ], [ -75.168602, 39.91654 ], [ -75.168692, 39.916551 ], [ -75.169227, 39.916616 ], [ -75.169626, 39.916668 ], [ -75.170194, 39.91674 ], [ -75.170625, 39.916792 ], [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.238845, 39.982219 ], [ -75.238686, 39.982461 ], [ -75.238519, 39.982738 ], [ -75.238391, 39.982937 ], [ -75.238295, 39.983087 ], [ -75.237687, 39.984075 ], [ -75.23753, 39.984313 ], [ -75.23745, 39.984448 ], [ -75.23736, 39.984595 ], [ -75.237205, 39.984796 ], [ -75.237185, 39.98483 ], [ -75.237163, 39.984869 ], [ -75.23712, 39.98495 ], [ -75.237108, 39.984997 ], [ -75.237085, 39.985077 ], [ -75.237046, 39.98523 ], [ -75.237031, 39.985344 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985535 ], [ -75.237039, 39.985622 ], [ -75.237107, 39.98599 ], [ -75.237119, 39.986041 ], [ -75.237175, 39.98605 ], [ -75.237246, 39.986069 ], [ -75.237271, 39.986078 ], [ -75.237296, 39.986092 ], [ -75.237332, 39.986131 ], [ -75.237522, 39.98636 ], [ -75.237944, 39.986885 ], [ -75.238509, 39.987597 ], [ -75.23895, 39.988141 ], [ -75.239128, 39.988358 ], [ -75.239258, 39.988516 ], [ -75.23988, 39.988208 ], [ -75.240523, 39.987916 ], [ -75.241137, 39.987638 ], [ -75.241635, 39.987389 ], [ -75.241719, 39.987342 ], [ -75.24177, 39.987254 ], [ -75.242415, 39.98807 ], [ -75.243236, 39.989114 ], [ -75.243917, 39.988793 ], [ -75.244456, 39.988546 ], [ -75.244625, 39.988478 ], [ -75.244821, 39.988409 ], [ -75.245012, 39.988358 ], [ -75.245222, 39.988316 ], [ -75.245378, 39.988293 ], [ -75.245542, 39.988276 ], [ -75.245718, 39.988264 ], [ -75.246015, 39.988257 ], [ -75.246098, 39.988263 ], [ -75.246195, 39.988254 ], [ -75.246288, 39.988236 ], [ -75.246319, 39.988226 ], [ -75.246383, 39.988206 ], [ -75.246408, 39.988231 ], [ -75.24644, 39.988256 ], [ -75.24647, 39.988271 ], [ -75.246526, 39.988292 ], [ -75.246589, 39.98831 ], [ -75.246659, 39.988329 ], [ -75.24689, 39.988386 ], [ -75.246974, 39.988409 ], [ -75.247081, 39.988439 ], [ -75.247237, 39.98849 ], [ -75.247384, 39.98855 ], [ -75.247537, 39.988617 ], [ -75.247661, 39.988681 ], [ -75.247835, 39.988778 ], [ -75.247973, 39.988864 ], [ -75.2481, 39.988957 ], [ -75.248209, 39.989041 ], [ -75.248317, 39.989139 ], [ -75.24844, 39.989266 ], [ -75.248555, 39.989391 ], [ -75.24865, 39.989502 ], [ -75.248978, 39.9899 ], [ -75.249057, 39.990007 ], [ -75.249123, 39.990103 ], [ -75.249141, 39.990141 ], [ -75.249156, 39.990185 ], [ -75.249164, 39.99022 ], [ -75.249174, 39.990268 ], [ -75.24918, 39.990324 ], [ -75.249184, 39.990364 ], [ -75.249189, 39.990411 ], [ -75.249205, 39.990527 ], [ -75.249515, 39.990379 ], [ -75.249794, 39.990249 ], [ -75.249969, 39.990167 ], [ -75.250204, 39.990064 ], [ -75.250318, 39.990007 ], [ -75.250779, 39.989796 ], [ -75.251217, 39.989599 ], [ -75.251437, 39.9895 ], [ -75.251913, 39.989276 ], [ -75.252117, 39.98918 ], [ -75.253036, 39.988747 ], [ -75.253357, 39.988597 ], [ -75.253975, 39.988305 ], [ -75.254322, 39.988477 ], [ -75.254448, 39.988545 ], [ -75.254486, 39.988609 ], [ -75.254763, 39.988784 ], [ -75.254859, 39.988844 ], [ -75.254922, 39.988881 ], [ -75.255213, 39.989048 ], [ -75.255291, 39.989057 ], [ -75.2561, 39.989534 ], [ -75.256343, 39.989675 ], [ -75.256593, 39.989807 ], [ -75.256855, 39.989927 ], [ -75.256936, 39.989961 ], [ -75.257122, 39.990037 ], [ -75.25733, 39.990113 ], [ -75.257397, 39.990137 ], [ -75.257676, 39.990224 ], [ -75.257931, 39.990294 ], [ -75.258095, 39.990338 ], [ -75.258369, 39.989878 ], [ -75.258429, 39.989785 ], [ -75.258518, 39.989657 ], [ -75.258715, 39.989397 ], [ -75.258895, 39.989258 ], [ -75.259041, 39.989197 ], [ -75.259369, 39.989108 ], [ -75.259528, 39.989094 ], [ -75.259712, 39.989118 ], [ -75.259901, 39.989172 ], [ -75.261384, 39.989593 ], [ -75.261766, 39.989627 ], [ -75.261983, 39.98961 ], [ -75.262153, 39.989502 ], [ -75.262153, 39.989404 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307867", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.242004, 39.945225 ], [ -75.241768, 39.945311 ], [ -75.240869, 39.945637 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.238845, 39.982219 ], [ -75.238686, 39.982461 ], [ -75.238519, 39.982738 ], [ -75.238391, 39.982937 ], [ -75.238295, 39.983087 ], [ -75.237687, 39.984075 ], [ -75.23753, 39.984313 ], [ -75.23745, 39.984448 ], [ -75.23736, 39.984595 ], [ -75.237205, 39.984796 ], [ -75.237185, 39.98483 ], [ -75.237163, 39.984869 ], [ -75.23712, 39.98495 ], [ -75.237108, 39.984997 ], [ -75.237085, 39.985077 ], [ -75.237046, 39.98523 ], [ -75.237031, 39.985344 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985535 ], [ -75.237039, 39.985622 ], [ -75.237107, 39.98599 ], [ -75.237119, 39.986041 ], [ -75.237175, 39.98605 ], [ -75.237246, 39.986069 ], [ -75.237271, 39.986078 ], [ -75.237296, 39.986092 ], [ -75.237332, 39.986131 ], [ -75.237522, 39.98636 ], [ -75.237944, 39.986885 ], [ -75.238509, 39.987597 ], [ -75.23895, 39.988141 ], [ -75.239128, 39.988358 ], [ -75.239258, 39.988516 ], [ -75.23988, 39.988208 ], [ -75.240523, 39.987916 ], [ -75.241137, 39.987638 ], [ -75.241635, 39.987389 ], [ -75.241719, 39.987342 ], [ -75.24177, 39.987254 ], [ -75.242415, 39.98807 ], [ -75.243236, 39.989114 ], [ -75.243917, 39.988793 ], [ -75.244456, 39.988546 ], [ -75.244625, 39.988478 ], [ -75.244821, 39.988409 ], [ -75.245012, 39.988358 ], [ -75.245222, 39.988316 ], [ -75.245378, 39.988293 ], [ -75.245542, 39.988276 ], [ -75.245718, 39.988264 ], [ -75.246015, 39.988257 ], [ -75.246098, 39.988263 ], [ -75.246195, 39.988254 ], [ -75.246288, 39.988236 ], [ -75.246319, 39.988226 ], [ -75.246383, 39.988206 ], [ -75.246408, 39.988231 ], [ -75.24644, 39.988256 ], [ -75.24647, 39.988271 ], [ -75.246526, 39.988292 ], [ -75.246589, 39.98831 ], [ -75.246659, 39.988329 ], [ -75.24689, 39.988386 ], [ -75.246974, 39.988409 ], [ -75.247081, 39.988439 ], [ -75.247237, 39.98849 ], [ -75.247384, 39.98855 ], [ -75.247537, 39.988617 ], [ -75.247661, 39.988681 ], [ -75.247835, 39.988778 ], [ -75.247973, 39.988864 ], [ -75.2481, 39.988957 ], [ -75.248209, 39.989041 ], [ -75.248317, 39.989139 ], [ -75.24844, 39.989266 ], [ -75.248555, 39.989391 ], [ -75.24865, 39.989502 ], [ -75.248978, 39.9899 ], [ -75.249057, 39.990007 ], [ -75.249545, 39.98969 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307868", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.1552, 39.907995 ], [ -75.153716, 39.907804 ], [ -75.153207, 39.907745 ], [ -75.152024, 39.90759 ], [ -75.151746, 39.907554 ], [ -75.151598, 39.907591 ], [ -75.151511, 39.907618 ], [ -75.151433, 39.907655 ], [ -75.151367, 39.9077 ], [ -75.151345, 39.907726 ], [ -75.15128, 39.907824 ], [ -75.151226, 39.907959 ], [ -75.15123, 39.908026 ], [ -75.151234, 39.908158 ], [ -75.151238, 39.908314 ], [ -75.151237, 39.908491 ], [ -75.151234, 39.908631 ], [ -75.15123, 39.908685 ], [ -75.15122, 39.908763 ], [ -75.151195, 39.90888 ], [ -75.151174, 39.908977 ], [ -75.1511, 39.909296 ], [ -75.15109, 39.90934 ], [ -75.151001, 39.909709 ], [ -75.15099, 39.909754 ], [ -75.150973, 39.909822 ], [ -75.150939, 39.909963 ], [ -75.150849, 39.910346 ], [ -75.150839, 39.910391 ], [ -75.150786, 39.910647 ], [ -75.150713, 39.911021 ], [ -75.150693, 39.911114 ], [ -75.15066, 39.911269 ], [ -75.150606, 39.911522 ], [ -75.150556, 39.911773 ], [ -75.150514, 39.911989 ], [ -75.150499, 39.912054 ], [ -75.150466, 39.912196 ], [ -75.150441, 39.9123 ], [ -75.150384, 39.912534 ], [ -75.150168, 39.913376 ], [ -75.150097, 39.913656 ], [ -75.150058, 39.913804 ], [ -75.150005, 39.914015 ], [ -75.149992, 39.914086 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.151955, 39.914395 ], [ -75.152096, 39.914412 ], [ -75.152355, 39.914446 ], [ -75.152624, 39.914479 ], [ -75.152744, 39.914491 ], [ -75.153148, 39.914536 ], [ -75.154198, 39.914663 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.160365, 39.915469 ], [ -75.160481, 39.915483 ], [ -75.160815, 39.915528 ], [ -75.161059, 39.915562 ], [ -75.161387, 39.915602 ], [ -75.161648, 39.915639 ], [ -75.161927, 39.915681 ], [ -75.162154, 39.915711 ], [ -75.162376, 39.91574 ], [ -75.162787, 39.915796 ], [ -75.16291, 39.915814 ], [ -75.163507, 39.915887 ], [ -75.163798, 39.915925 ], [ -75.163986, 39.915952 ], [ -75.164515, 39.916019 ], [ -75.165044, 39.916084 ], [ -75.165204, 39.916104 ], [ -75.165555, 39.916148 ], [ -75.16612, 39.916224 ], [ -75.166255, 39.916236 ], [ -75.166606, 39.916281 ], [ -75.166876, 39.916315 ], [ -75.167115, 39.916345 ], [ -75.167513, 39.916398 ], [ -75.167639, 39.916416 ], [ -75.168177, 39.91648 ], [ -75.168602, 39.91654 ], [ -75.168692, 39.916551 ], [ -75.169227, 39.916616 ], [ -75.169626, 39.916668 ], [ -75.170194, 39.91674 ], [ -75.170625, 39.916792 ], [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.236857, 39.981201 ], [ -75.237679, 39.981483 ], [ -75.238227, 39.981671 ], [ -75.238335, 39.981708 ], [ -75.238432, 39.98174 ], [ -75.238555, 39.981785 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307869", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.1552, 39.907995 ], [ -75.153716, 39.907804 ], [ -75.153207, 39.907745 ], [ -75.152024, 39.90759 ], [ -75.151746, 39.907554 ], [ -75.151598, 39.907591 ], [ -75.151511, 39.907618 ], [ -75.151433, 39.907655 ], [ -75.151367, 39.9077 ], [ -75.151345, 39.907726 ], [ -75.15128, 39.907824 ], [ -75.151226, 39.907959 ], [ -75.15123, 39.908026 ], [ -75.151234, 39.908158 ], [ -75.151238, 39.908314 ], [ -75.151237, 39.908491 ], [ -75.151234, 39.908631 ], [ -75.15123, 39.908685 ], [ -75.15122, 39.908763 ], [ -75.151195, 39.90888 ], [ -75.151174, 39.908977 ], [ -75.1511, 39.909296 ], [ -75.15109, 39.90934 ], [ -75.151001, 39.909709 ], [ -75.15099, 39.909754 ], [ -75.150973, 39.909822 ], [ -75.150939, 39.909963 ], [ -75.150849, 39.910346 ], [ -75.150839, 39.910391 ], [ -75.150786, 39.910647 ], [ -75.150713, 39.911021 ], [ -75.150693, 39.911114 ], [ -75.15066, 39.911269 ], [ -75.150606, 39.911522 ], [ -75.150556, 39.911773 ], [ -75.150514, 39.911989 ], [ -75.150499, 39.912054 ], [ -75.150466, 39.912196 ], [ -75.150441, 39.9123 ], [ -75.150384, 39.912534 ], [ -75.150168, 39.913376 ], [ -75.150097, 39.913656 ], [ -75.150058, 39.913804 ], [ -75.150005, 39.914015 ], [ -75.149992, 39.914086 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.151955, 39.914395 ], [ -75.152096, 39.914412 ], [ -75.152355, 39.914446 ], [ -75.152624, 39.914479 ], [ -75.152744, 39.914491 ], [ -75.153148, 39.914536 ], [ -75.154198, 39.914663 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.160365, 39.915469 ], [ -75.160481, 39.915483 ], [ -75.160815, 39.915528 ], [ -75.161059, 39.915562 ], [ -75.161387, 39.915602 ], [ -75.161648, 39.915639 ], [ -75.161927, 39.915681 ], [ -75.162154, 39.915711 ], [ -75.162376, 39.91574 ], [ -75.162787, 39.915796 ], [ -75.16291, 39.915814 ], [ -75.163507, 39.915887 ], [ -75.163798, 39.915925 ], [ -75.163986, 39.915952 ], [ -75.164515, 39.916019 ], [ -75.165044, 39.916084 ], [ -75.165204, 39.916104 ], [ -75.165555, 39.916148 ], [ -75.16612, 39.916224 ], [ -75.166255, 39.916236 ], [ -75.166606, 39.916281 ], [ -75.166876, 39.916315 ], [ -75.167115, 39.916345 ], [ -75.167513, 39.916398 ], [ -75.167639, 39.916416 ], [ -75.168177, 39.91648 ], [ -75.168602, 39.91654 ], [ -75.168692, 39.916551 ], [ -75.169227, 39.916616 ], [ -75.169626, 39.916668 ], [ -75.170194, 39.91674 ], [ -75.170625, 39.916792 ], [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.23907, 39.981967 ], [ -75.239274, 39.982033 ], [ -75.239503, 39.982108 ], [ -75.239634, 39.98215 ], [ -75.239961, 39.982259 ], [ -75.240989, 39.982609 ], [ -75.241423, 39.982755 ], [ -75.242823, 39.983238 ], [ -75.243132, 39.98334 ], [ -75.243681, 39.983529 ], [ -75.245097, 39.98401 ], [ -75.245443, 39.984131 ], [ -75.245547, 39.984175 ], [ -75.245694, 39.984238 ], [ -75.24579, 39.984284 ], [ -75.245816, 39.984253 ], [ -75.245843, 39.984231 ], [ -75.245891, 39.984201 ], [ -75.245948, 39.98417 ], [ -75.246017, 39.984137 ], [ -75.246629, 39.983826 ], [ -75.247091, 39.983592 ], [ -75.247095, 39.98359 ], [ -75.24718, 39.984046 ], [ -75.247237, 39.984348 ], [ -75.24728, 39.984574 ], [ -75.247377, 39.985071 ], [ -75.246464, 39.984617 ], [ -75.245979, 39.984374 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307873", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.1552, 39.907995 ], [ -75.153716, 39.907804 ], [ -75.153207, 39.907745 ], [ -75.152024, 39.90759 ], [ -75.151746, 39.907554 ], [ -75.151598, 39.907591 ], [ -75.151511, 39.907618 ], [ -75.151433, 39.907655 ], [ -75.151367, 39.9077 ], [ -75.151345, 39.907726 ], [ -75.15128, 39.907824 ], [ -75.151226, 39.907959 ], [ -75.15123, 39.908026 ], [ -75.151234, 39.908158 ], [ -75.151238, 39.908314 ], [ -75.151237, 39.908491 ], [ -75.151234, 39.908631 ], [ -75.15123, 39.908685 ], [ -75.15122, 39.908763 ], [ -75.151195, 39.90888 ], [ -75.151174, 39.908977 ], [ -75.1511, 39.909296 ], [ -75.15109, 39.90934 ], [ -75.151001, 39.909709 ], [ -75.15099, 39.909754 ], [ -75.150973, 39.909822 ], [ -75.150939, 39.909963 ], [ -75.150849, 39.910346 ], [ -75.150839, 39.910391 ], [ -75.150786, 39.910647 ], [ -75.150713, 39.911021 ], [ -75.150693, 39.911114 ], [ -75.15066, 39.911269 ], [ -75.150606, 39.911522 ], [ -75.150556, 39.911773 ], [ -75.150514, 39.911989 ], [ -75.150499, 39.912054 ], [ -75.150466, 39.912196 ], [ -75.150441, 39.9123 ], [ -75.150384, 39.912534 ], [ -75.150168, 39.913376 ], [ -75.150097, 39.913656 ], [ -75.150058, 39.913804 ], [ -75.150005, 39.914015 ], [ -75.149992, 39.914086 ], [ -75.149981, 39.914154 ], [ -75.150511, 39.914217 ], [ -75.151007, 39.914277 ], [ -75.151524, 39.914339 ], [ -75.151955, 39.914395 ], [ -75.152096, 39.914412 ], [ -75.152355, 39.914446 ], [ -75.152624, 39.914479 ], [ -75.152744, 39.914491 ], [ -75.153148, 39.914536 ], [ -75.154198, 39.914663 ], [ -75.155033, 39.914772 ], [ -75.155306, 39.914808 ], [ -75.155963, 39.914897 ], [ -75.156683, 39.914987 ], [ -75.157448, 39.915099 ], [ -75.157727, 39.91514 ], [ -75.15808, 39.915182 ], [ -75.158259, 39.915202 ], [ -75.158645, 39.915254 ], [ -75.158786, 39.915273 ], [ -75.159199, 39.915317 ], [ -75.159277, 39.915327 ], [ -75.159756, 39.915383 ], [ -75.159838, 39.915395 ], [ -75.160365, 39.915469 ], [ -75.160481, 39.915483 ], [ -75.160815, 39.915528 ], [ -75.161059, 39.915562 ], [ -75.161387, 39.915602 ], [ -75.161648, 39.915639 ], [ -75.161927, 39.915681 ], [ -75.162154, 39.915711 ], [ -75.162376, 39.91574 ], [ -75.162787, 39.915796 ], [ -75.16291, 39.915814 ], [ -75.163507, 39.915887 ], [ -75.163798, 39.915925 ], [ -75.163986, 39.915952 ], [ -75.164515, 39.916019 ], [ -75.165044, 39.916084 ], [ -75.165204, 39.916104 ], [ -75.165555, 39.916148 ], [ -75.16612, 39.916224 ], [ -75.166255, 39.916236 ], [ -75.166606, 39.916281 ], [ -75.166876, 39.916315 ], [ -75.167115, 39.916345 ], [ -75.167513, 39.916398 ], [ -75.167639, 39.916416 ], [ -75.168177, 39.91648 ], [ -75.168602, 39.91654 ], [ -75.168692, 39.916551 ], [ -75.169227, 39.916616 ], [ -75.169626, 39.916668 ], [ -75.170194, 39.91674 ], [ -75.170625, 39.916792 ], [ -75.170793, 39.916814 ], [ -75.171274, 39.916879 ], [ -75.171409, 39.916894 ], [ -75.172139, 39.916993 ], [ -75.172215, 39.917004 ], [ -75.172486, 39.917035 ], [ -75.173007, 39.917085 ], [ -75.173552, 39.917159 ], [ -75.174044, 39.917227 ], [ -75.174584, 39.917293 ], [ -75.17511, 39.917355 ], [ -75.175371, 39.917392 ], [ -75.175455, 39.917401 ], [ -75.175592, 39.917418 ], [ -75.17615, 39.917497 ], [ -75.176684, 39.917564 ], [ -75.176926, 39.917589 ], [ -75.17705, 39.917604 ], [ -75.177156, 39.917618 ], [ -75.177717, 39.917694 ], [ -75.178316, 39.917773 ], [ -75.178682, 39.917821 ], [ -75.179294, 39.917902 ], [ -75.179793, 39.917961 ], [ -75.180106, 39.917998 ], [ -75.180453, 39.918043 ], [ -75.180885, 39.918098 ], [ -75.181397, 39.918163 ], [ -75.182257, 39.918272 ], [ -75.182792, 39.918341 ], [ -75.184372, 39.918547 ], [ -75.185197, 39.91865 ], [ -75.186049, 39.918758 ], [ -75.186231, 39.918775 ], [ -75.186399, 39.918797 ], [ -75.186551, 39.918819 ], [ -75.186709, 39.918848 ], [ -75.186884, 39.918889 ], [ -75.187083, 39.918948 ], [ -75.187272, 39.919011 ], [ -75.18742, 39.919077 ], [ -75.187546, 39.919143 ], [ -75.187702, 39.919238 ], [ -75.18781, 39.919318 ], [ -75.187884, 39.919382 ], [ -75.187946, 39.91944 ], [ -75.188014, 39.919503 ], [ -75.188115, 39.91961 ], [ -75.18826, 39.919768 ], [ -75.18916, 39.920711 ], [ -75.189309, 39.92088 ], [ -75.1894, 39.920966 ], [ -75.189658, 39.921233 ], [ -75.18975, 39.921327 ], [ -75.190018, 39.921609 ], [ -75.1901, 39.921706 ], [ -75.190168, 39.921786 ], [ -75.190197, 39.921822 ], [ -75.190394, 39.921779 ], [ -75.190444, 39.921772 ], [ -75.190486, 39.921767 ], [ -75.190609, 39.921748 ], [ -75.190795, 39.921716 ], [ -75.190913, 39.921698 ], [ -75.191046, 39.921662 ], [ -75.191114, 39.921639 ], [ -75.191169, 39.921627 ], [ -75.191761, 39.921504 ], [ -75.19192, 39.921475 ], [ -75.192297, 39.921406 ], [ -75.192531, 39.921378 ], [ -75.19281, 39.921346 ], [ -75.192987, 39.92133 ], [ -75.193854, 39.921254 ], [ -75.194442, 39.921214 ], [ -75.19474, 39.921178 ], [ -75.194865, 39.921163 ], [ -75.194997, 39.921143 ], [ -75.195145, 39.921116 ], [ -75.195551, 39.921042 ], [ -75.196927, 39.920789 ], [ -75.197672, 39.920652 ], [ -75.199246, 39.920383 ], [ -75.20087, 39.920089 ], [ -75.201111, 39.920047 ], [ -75.202176, 39.919841 ], [ -75.202865, 39.919723 ], [ -75.204202, 39.919467 ], [ -75.205642, 39.919198 ], [ -75.206718, 39.918993 ], [ -75.206978, 39.918935 ], [ -75.207196, 39.918873 ], [ -75.207433, 39.918799 ], [ -75.207718, 39.918704 ], [ -75.208338, 39.918481 ], [ -75.208562, 39.91841 ], [ -75.208772, 39.918352 ], [ -75.20889, 39.918323 ], [ -75.208998, 39.918296 ], [ -75.209158, 39.918262 ], [ -75.209349, 39.91822 ], [ -75.209822, 39.918122 ], [ -75.209941, 39.918054 ], [ -75.215162, 39.917086 ], [ -75.215271, 39.91711 ], [ -75.215308, 39.917119 ], [ -75.215375, 39.917127 ], [ -75.21546, 39.917119 ], [ -75.215593, 39.917099 ], [ -75.215681, 39.917105 ], [ -75.215769, 39.917122 ], [ -75.215865, 39.917154 ], [ -75.215977, 39.917197 ], [ -75.216093, 39.917235 ], [ -75.216175, 39.917276 ], [ -75.216252, 39.917305 ], [ -75.216335, 39.917322 ], [ -75.216377, 39.917323 ], [ -75.21655, 39.917392 ], [ -75.21664, 39.917429 ], [ -75.21676, 39.917478 ], [ -75.219209, 39.918471 ], [ -75.221858, 39.91957 ], [ -75.222103, 39.91967 ], [ -75.222272, 39.919739 ], [ -75.222762, 39.919939 ], [ -75.222883, 39.920021 ], [ -75.222989, 39.920099 ], [ -75.223123, 39.920207 ], [ -75.223512, 39.920519 ], [ -75.223796, 39.920762 ], [ -75.223998, 39.920933 ], [ -75.224111, 39.92102 ], [ -75.224048, 39.921115 ], [ -75.223378, 39.922075 ], [ -75.223153, 39.922399 ], [ -75.22321, 39.922425 ], [ -75.223263, 39.92245 ], [ -75.223295, 39.922467 ], [ -75.223342, 39.922497 ], [ -75.223402, 39.922543 ], [ -75.22361, 39.922717 ], [ -75.223872, 39.922954 ], [ -75.224286, 39.923291 ], [ -75.224936, 39.923832 ], [ -75.225631, 39.924422 ], [ -75.226216, 39.924974 ], [ -75.22634, 39.925075 ], [ -75.226471, 39.924982 ], [ -75.226745, 39.925151 ], [ -75.226984, 39.925326 ], [ -75.227468, 39.925701 ], [ -75.227741, 39.925908 ], [ -75.227937, 39.926048 ], [ -75.228483, 39.92649 ], [ -75.228554, 39.926549 ], [ -75.228624, 39.926604 ], [ -75.228665, 39.926629 ], [ -75.228735, 39.926691 ], [ -75.228841, 39.926773 ], [ -75.229395, 39.927198 ], [ -75.230024, 39.927667 ], [ -75.230464, 39.928007 ], [ -75.230656, 39.928163 ], [ -75.230232, 39.928463 ], [ -75.229412, 39.929038 ], [ -75.229232, 39.929157 ], [ -75.228717, 39.929522 ], [ -75.22818, 39.929908 ], [ -75.227758, 39.930203 ], [ -75.227638, 39.930288 ], [ -75.227573, 39.930332 ], [ -75.227156, 39.930622 ], [ -75.225833, 39.931553 ], [ -75.2253, 39.931929 ], [ -75.224573, 39.93244 ], [ -75.22585, 39.933498 ], [ -75.226884, 39.934368 ], [ -75.227267, 39.934689 ], [ -75.227284, 39.934704 ], [ -75.227398, 39.9348 ], [ -75.228394, 39.935633 ], [ -75.228522, 39.935739 ], [ -75.228714, 39.935903 ], [ -75.229126, 39.936254 ], [ -75.229712, 39.936764 ], [ -75.230218, 39.937186 ], [ -75.230541, 39.937457 ], [ -75.230622, 39.937525 ], [ -75.23111, 39.93794 ], [ -75.231757, 39.938469 ], [ -75.232391, 39.939018 ], [ -75.232562, 39.939176 ], [ -75.232609, 39.93922 ], [ -75.232629, 39.939242 ], [ -75.232799, 39.939432 ], [ -75.233009, 39.939668 ], [ -75.233135, 39.939812 ], [ -75.233217, 39.939904 ], [ -75.233358, 39.940059 ], [ -75.233469, 39.940176 ], [ -75.233618, 39.940325 ], [ -75.233802, 39.940479 ], [ -75.234132, 39.940756 ], [ -75.234327, 39.940897 ], [ -75.234569, 39.941084 ], [ -75.235051, 39.941469 ], [ -75.235731, 39.942043 ], [ -75.236421, 39.942651 ], [ -75.236436, 39.942664 ], [ -75.237115, 39.943225 ], [ -75.237832, 39.943836 ], [ -75.238214, 39.94414 ], [ -75.238457, 39.944342 ], [ -75.238616, 39.944466 ], [ -75.238895, 39.944683 ], [ -75.239197, 39.944935 ], [ -75.239699, 39.94536 ], [ -75.239738, 39.945397 ], [ -75.240043, 39.945681 ], [ -75.240145, 39.945777 ], [ -75.240195, 39.945816 ], [ -75.240265, 39.945857 ], [ -75.240157, 39.945882 ], [ -75.240106, 39.945894 ], [ -75.240034, 39.94591 ], [ -75.239322, 39.946042 ], [ -75.238689, 39.946171 ], [ -75.237926, 39.946324 ], [ -75.237939, 39.946359 ], [ -75.237945, 39.94638 ], [ -75.237948, 39.946446 ], [ -75.237934, 39.946531 ], [ -75.237809, 39.94716 ], [ -75.237693, 39.947697 ], [ -75.237599, 39.948139 ], [ -75.237495, 39.948689 ], [ -75.237332, 39.949438 ], [ -75.237177, 39.950209 ], [ -75.237072, 39.950696 ], [ -75.236978, 39.951144 ], [ -75.236857, 39.951701 ], [ -75.23674, 39.952245 ], [ -75.23664, 39.952714 ], [ -75.23653, 39.953243 ], [ -75.236423, 39.953762 ], [ -75.236336, 39.954223 ], [ -75.236265, 39.954552 ], [ -75.236221, 39.954758 ], [ -75.236117, 39.955276 ], [ -75.236026, 39.955697 ], [ -75.235997, 39.955832 ], [ -75.235974, 39.955941 ], [ -75.235742, 39.957054 ], [ -75.235506, 39.958186 ], [ -75.235343, 39.958953 ], [ -75.235187, 39.95972 ], [ -75.233837, 39.95955 ], [ -75.233176, 39.959468 ], [ -75.23302, 39.960217 ], [ -75.23286, 39.960915 ], [ -75.232844, 39.961005 ], [ -75.232835, 39.961062 ], [ -75.232525, 39.962531 ], [ -75.232456, 39.962942 ], [ -75.2324, 39.963243 ], [ -75.232384, 39.96333 ], [ -75.232323, 39.963665 ], [ -75.232242, 39.964076 ], [ -75.232076, 39.964839 ], [ -75.231923, 39.965489 ], [ -75.231912, 39.965591 ], [ -75.232531, 39.96566 ], [ -75.23324, 39.965744 ], [ -75.233904, 39.965831 ], [ -75.233852, 39.966104 ], [ -75.233635, 39.967075 ], [ -75.233625, 39.967143 ], [ -75.233615, 39.967208 ], [ -75.233617, 39.967327 ], [ -75.233639, 39.967486 ], [ -75.233678, 39.96769 ], [ -75.233725, 39.967983 ], [ -75.233854, 39.968637 ], [ -75.233944, 39.969121 ], [ -75.234017, 39.969535 ], [ -75.234101, 39.96993 ], [ -75.234205, 39.970507 ], [ -75.234475, 39.972028 ], [ -75.234718, 39.973295 ], [ -75.235034, 39.974902 ], [ -75.235322, 39.976455 ], [ -75.235436, 39.977073 ], [ -75.235543, 39.977605 ], [ -75.235649, 39.978166 ], [ -75.235767, 39.978788 ], [ -75.23588, 39.979425 ], [ -75.236003, 39.980129 ], [ -75.236108, 39.98076 ], [ -75.236111, 39.980799 ], [ -75.236155, 39.98079 ], [ -75.236449, 39.980748 ], [ -75.238604, 39.980502 ], [ -75.239378, 39.980408 ], [ -75.23946, 39.980886 ], [ -75.239472, 39.980979 ], [ -75.239466, 39.981093 ], [ -75.239447, 39.981204 ], [ -75.23941, 39.981314 ], [ -75.239398, 39.981345 ], [ -75.239355, 39.981437 ], [ -75.239036, 39.981956 ], [ -75.238845, 39.982219 ], [ -75.238686, 39.982461 ], [ -75.238519, 39.982738 ], [ -75.238391, 39.982937 ], [ -75.238295, 39.983087 ], [ -75.237687, 39.984075 ], [ -75.23753, 39.984313 ], [ -75.23745, 39.984448 ], [ -75.23736, 39.984595 ], [ -75.237205, 39.984796 ], [ -75.237185, 39.98483 ], [ -75.237163, 39.984869 ], [ -75.23712, 39.98495 ], [ -75.237108, 39.984997 ], [ -75.237085, 39.985077 ], [ -75.237046, 39.98523 ], [ -75.237031, 39.985344 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985535 ], [ -75.237039, 39.985622 ], [ -75.237107, 39.98599 ], [ -75.237119, 39.986041 ], [ -75.237175, 39.98605 ], [ -75.237246, 39.986069 ], [ -75.237271, 39.986078 ], [ -75.237296, 39.986092 ], [ -75.237332, 39.986131 ], [ -75.237522, 39.98636 ], [ -75.237944, 39.986885 ], [ -75.238509, 39.987597 ], [ -75.23895, 39.988141 ], [ -75.239128, 39.988358 ], [ -75.239258, 39.988516 ], [ -75.23988, 39.988208 ], [ -75.240523, 39.987916 ], [ -75.241137, 39.987638 ], [ -75.241635, 39.987389 ], [ -75.241719, 39.987342 ], [ -75.24177, 39.987254 ], [ -75.242415, 39.98807 ], [ -75.243236, 39.989114 ], [ -75.243917, 39.988793 ], [ -75.244456, 39.988546 ], [ -75.244625, 39.988478 ], [ -75.244821, 39.988409 ], [ -75.245012, 39.988358 ], [ -75.245222, 39.988316 ], [ -75.245378, 39.988293 ], [ -75.245542, 39.988276 ], [ -75.245718, 39.988264 ], [ -75.246015, 39.988257 ], [ -75.246098, 39.988263 ], [ -75.246195, 39.988254 ], [ -75.246288, 39.988236 ], [ -75.246319, 39.988226 ], [ -75.246383, 39.988206 ], [ -75.246408, 39.988231 ], [ -75.24644, 39.988256 ], [ -75.24647, 39.988271 ], [ -75.246526, 39.988292 ], [ -75.246589, 39.98831 ], [ -75.246659, 39.988329 ], [ -75.24689, 39.988386 ], [ -75.246974, 39.988409 ], [ -75.247081, 39.988439 ], [ -75.247237, 39.98849 ], [ -75.247384, 39.98855 ], [ -75.247537, 39.988617 ], [ -75.247661, 39.988681 ], [ -75.247835, 39.988778 ], [ -75.247973, 39.988864 ], [ -75.2481, 39.988957 ], [ -75.248209, 39.989041 ], [ -75.248317, 39.989139 ], [ -75.24844, 39.989266 ], [ -75.248555, 39.989391 ], [ -75.24865, 39.989502 ], [ -75.248978, 39.9899 ], [ -75.249057, 39.990007 ], [ -75.249545, 39.98969 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307876", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.239439, 39.9812 ], [ -75.239449, 39.981069 ], [ -75.23946, 39.980999 ], [ -75.239449, 39.980899 ], [ -75.23942, 39.980719 ], [ -75.23937, 39.98042 ], [ -75.236109, 39.98078 ], [ -75.236109, 39.98085 ], [ -75.23605, 39.98095 ], [ -75.2357, 39.980829 ], [ -75.2356, 39.98079 ], [ -75.235439, 39.98075 ], [ -75.235259, 39.9807 ], [ -75.23514, 39.98068 ], [ -75.235029, 39.98066 ], [ -75.23478, 39.9806 ], [ -75.23424, 39.98048 ], [ -75.234039, 39.98042 ], [ -75.23412, 39.979659 ], [ -75.23415, 39.979359 ], [ -75.23415, 39.979179 ], [ -75.23407, 39.978719 ], [ -75.233999, 39.97833 ], [ -75.2339, 39.9778 ], [ -75.233819, 39.97742 ], [ -75.23379, 39.97727 ], [ -75.23367, 39.97665 ], [ -75.233379, 39.97508 ], [ -75.23308, 39.97348 ], [ -75.232839, 39.97222 ], [ -75.232569, 39.97068 ], [ -75.23249, 39.970289 ], [ -75.232379, 39.969729 ], [ -75.232299, 39.969279 ], [ -75.23222, 39.968829 ], [ -75.23199, 39.967679 ], [ -75.23195, 39.967489 ], [ -75.231929, 39.96734 ], [ -75.231879, 39.967029 ], [ -75.23186, 39.96689 ], [ -75.23183, 39.966669 ], [ -75.23177, 39.96637 ], [ -75.231749, 39.96612 ], [ -75.231889, 39.965599 ], [ -75.231969, 39.965169 ], [ -75.23204, 39.96482 ], [ -75.232209, 39.964059 ], [ -75.23235, 39.9633 ], [ -75.232429, 39.96294 ], [ -75.232519, 39.962559 ], [ -75.232839, 39.96104 ], [ -75.232869, 39.96095 ], [ -75.233009, 39.96023 ], [ -75.23316, 39.959489 ], [ -75.23321, 39.95927 ], [ -75.23327, 39.95899 ], [ -75.233329, 39.9587 ], [ -75.23349, 39.95793 ], [ -75.23361, 39.957339 ], [ -75.23371, 39.95681 ], [ -75.23385, 39.9562 ], [ -75.23399, 39.95558 ], [ -75.234039, 39.955359 ], [ -75.234099, 39.95503 ], [ -75.23421, 39.95451 ], [ -75.234229, 39.95442 ], [ -75.234309, 39.953989 ], [ -75.234413, 39.953534 ], [ -75.23452, 39.952999 ], [ -75.23456, 39.952829 ], [ -75.234639, 39.952479 ], [ -75.234679, 39.95224 ], [ -75.234729, 39.952019 ], [ -75.234844, 39.951446 ], [ -75.234949, 39.95091 ], [ -75.23505, 39.95045 ], [ -75.23516, 39.949949 ], [ -75.235179, 39.949849 ], [ -75.235259, 39.949409 ], [ -75.235299, 39.94918 ], [ -75.23547, 39.948429 ], [ -75.235529, 39.9482 ], [ -75.2356, 39.947879 ], [ -75.23569, 39.947439 ], [ -75.23573, 39.94683 ], [ -75.236209, 39.946719 ], [ -75.237279, 39.94649 ], [ -75.23785, 39.946349 ], [ -75.237909, 39.946339 ], [ -75.238719, 39.94619 ], [ -75.23929, 39.946069 ], [ -75.23947, 39.94603 ], [ -75.239809, 39.945969 ], [ -75.24001, 39.94593 ], [ -75.240219, 39.945889 ], [ -75.240339, 39.94586 ], [ -75.240249, 39.945819 ], [ -75.24019, 39.94578 ], [ -75.24009, 39.945709 ], [ -75.23988, 39.945539 ], [ -75.23978, 39.945449 ], [ -75.23975, 39.945429 ], [ -75.239669, 39.945359 ], [ -75.239499, 39.94521 ], [ -75.2392, 39.94495 ], [ -75.238989, 39.94476 ], [ -75.23892, 39.9447 ], [ -75.238769, 39.94458 ], [ -75.238469, 39.944349 ], [ -75.23822, 39.94415 ], [ -75.238139, 39.944079 ], [ -75.23786, 39.94386 ], [ -75.23708, 39.94322 ], [ -75.236429, 39.942649 ], [ -75.235719, 39.94206 ], [ -75.23501, 39.941489 ], [ -75.23452, 39.941049 ], [ -75.23429, 39.940869 ], [ -75.234129, 39.94072 ], [ -75.233639, 39.940319 ], [ -75.23349, 39.940129 ], [ -75.233019, 39.93965 ], [ -75.232559, 39.939139 ], [ -75.2324, 39.939 ], [ -75.231759, 39.938439 ], [ -75.23136, 39.93812 ], [ -75.231119, 39.93792 ], [ -75.230939, 39.937779 ], [ -75.230809, 39.93767 ], [ -75.2306, 39.9375 ], [ -75.23024, 39.937169 ], [ -75.22975, 39.93675 ], [ -75.229139, 39.93624 ], [ -75.228839, 39.935989 ], [ -75.22853, 39.935729 ], [ -75.228149, 39.93542 ], [ -75.228, 39.935289 ], [ -75.22746, 39.934839 ], [ -75.22724, 39.934659 ], [ -75.226399, 39.933929 ], [ -75.22607, 39.933639 ], [ -75.225859, 39.933469 ], [ -75.22561, 39.93326 ], [ -75.224589, 39.932409 ], [ -75.224819, 39.93226 ], [ -75.22498, 39.93215 ], [ -75.225189, 39.93201 ], [ -75.225399, 39.931869 ], [ -75.225909, 39.931499 ], [ -75.22605, 39.931409 ], [ -75.226119, 39.93136 ], [ -75.22625, 39.93127 ], [ -75.226439, 39.931139 ], [ -75.226619, 39.93101 ], [ -75.226799, 39.93089 ], [ -75.22687, 39.93084 ], [ -75.227289, 39.93054 ], [ -75.227519, 39.93037 ], [ -75.227609, 39.930309 ], [ -75.22769, 39.930249 ], [ -75.228099, 39.929969 ], [ -75.2288, 39.92948 ], [ -75.229269, 39.929149 ], [ -75.229649, 39.928869 ], [ -75.23012, 39.928539 ], [ -75.23066, 39.928149 ], [ -75.23016, 39.92774 ], [ -75.23003, 39.927619 ], [ -75.229869, 39.9275 ], [ -75.229719, 39.92739 ], [ -75.229409, 39.927179 ], [ -75.228729, 39.92666 ], [ -75.228639, 39.92659 ], [ -75.228509, 39.92648 ], [ -75.22832, 39.926339 ], [ -75.228059, 39.92614 ], [ -75.227939, 39.92605 ], [ -75.22745, 39.92568 ], [ -75.227039, 39.92533 ], [ -75.226809, 39.92516 ], [ -75.22651, 39.924919 ], [ -75.226359, 39.925019 ], [ -75.225579, 39.924369 ], [ -75.224949, 39.923839 ], [ -75.224279, 39.92325 ], [ -75.22355, 39.92265 ], [ -75.224099, 39.92225 ], [ -75.22493, 39.921689 ], [ -75.224239, 39.92111 ], [ -75.224139, 39.921039 ], [ -75.22385, 39.920789 ], [ -75.223469, 39.92047 ], [ -75.22323, 39.920259 ], [ -75.223149, 39.9202 ], [ -75.22296, 39.92004 ], [ -75.22278, 39.91992 ], [ -75.22254, 39.919809 ], [ -75.222389, 39.91975 ], [ -75.22205, 39.919609 ], [ -75.221849, 39.919529 ], [ -75.21976, 39.91869 ], [ -75.219149, 39.918429 ], [ -75.218939, 39.918339 ], [ -75.218069, 39.917989 ], [ -75.217659, 39.917819 ], [ -75.216629, 39.9174 ], [ -75.21653, 39.917359 ], [ -75.216279, 39.917259 ], [ -75.216179, 39.917189 ], [ -75.216089, 39.917109 ], [ -75.21593, 39.91696 ], [ -75.215229, 39.917089 ], [ -75.214869, 39.91715 ], [ -75.21418, 39.917269 ], [ -75.213979, 39.91731 ], [ -75.213219, 39.917439 ], [ -75.21224, 39.917619 ], [ -75.211999, 39.91766 ], [ -75.2118, 39.91769 ], [ -75.211739, 39.9177 ], [ -75.21162, 39.917719 ], [ -75.211269, 39.91778 ], [ -75.21099, 39.917829 ], [ -75.21, 39.91804 ], [ -75.20963, 39.91812 ], [ -75.20946, 39.91815 ], [ -75.20909, 39.91822 ], [ -75.208899, 39.918249 ], [ -75.208259, 39.918439 ], [ -75.208029, 39.91851 ], [ -75.20765, 39.918639 ], [ -75.207009, 39.91884 ], [ -75.206329, 39.918999 ], [ -75.206, 39.919059 ], [ -75.205699, 39.91911 ], [ -75.204619, 39.91931 ], [ -75.20288, 39.919629 ], [ -75.202539, 39.919689 ], [ -75.20114, 39.919959 ], [ -75.20082, 39.92002 ], [ -75.19959, 39.920239 ], [ -75.19925, 39.9203 ], [ -75.19803, 39.920519 ], [ -75.1977, 39.920589 ], [ -75.196869, 39.92075 ], [ -75.19677, 39.920769 ], [ -75.196479, 39.92082 ], [ -75.19532, 39.921029 ], [ -75.19501, 39.92108 ], [ -75.194459, 39.921159 ], [ -75.193859, 39.9212 ], [ -75.19304, 39.92127 ], [ -75.192919, 39.92128 ], [ -75.19231, 39.92135 ], [ -75.19209, 39.92138 ], [ -75.191489, 39.921489 ], [ -75.19106, 39.921569 ], [ -75.190839, 39.921609 ], [ -75.190619, 39.92165 ], [ -75.190489, 39.921689 ], [ -75.190209, 39.921509 ], [ -75.18998, 39.921339 ], [ -75.18969, 39.921069 ], [ -75.18943, 39.920799 ], [ -75.189219, 39.92057 ], [ -75.18902, 39.92037 ], [ -75.188779, 39.92012 ], [ -75.18836, 39.919699 ], [ -75.18808, 39.9194 ], [ -75.187919, 39.919259 ], [ -75.18772, 39.91913 ], [ -75.187509, 39.91902 ], [ -75.187199, 39.91887 ], [ -75.18701, 39.918819 ], [ -75.18691, 39.918799 ], [ -75.18669, 39.91876 ], [ -75.18645, 39.918719 ], [ -75.186129, 39.91868 ], [ -75.18601, 39.91866 ], [ -75.18467, 39.91849 ], [ -75.18439, 39.918449 ], [ -75.183379, 39.91832 ], [ -75.18286, 39.918259 ], [ -75.1821, 39.918159 ], [ -75.18146, 39.918079 ], [ -75.18087, 39.917999 ], [ -75.18012, 39.917899 ], [ -75.179909, 39.91787 ], [ -75.179319, 39.91779 ], [ -75.178779, 39.917719 ], [ -75.178339, 39.91767 ], [ -75.177742, 39.917598 ], [ -75.177169, 39.917519 ], [ -75.17696, 39.9175 ], [ -75.1767, 39.917469 ], [ -75.176179, 39.91741 ], [ -75.175599, 39.91733 ], [ -75.17535, 39.9173 ], [ -75.175149, 39.917269 ], [ -75.175019, 39.917249 ], [ -75.17463, 39.917199 ], [ -75.174059, 39.91713 ], [ -75.17359, 39.917069 ], [ -75.173019, 39.916979 ], [ -75.17268, 39.91694 ], [ -75.17229, 39.91694 ], [ -75.17133, 39.916829 ], [ -75.17097, 39.91679 ], [ -75.170599, 39.916749 ], [ -75.170329, 39.916709 ], [ -75.170199, 39.91669 ], [ -75.169749, 39.916629 ], [ -75.169239, 39.916559 ], [ -75.168709, 39.916479 ], [ -75.168569, 39.916459 ], [ -75.1682, 39.91641 ], [ -75.167679, 39.916349 ], [ -75.167549, 39.91633 ], [ -75.167139, 39.916279 ], [ -75.166899, 39.91625 ], [ -75.166629, 39.91622 ], [ -75.166239, 39.91616 ], [ -75.166089, 39.91614 ], [ -75.165559, 39.916079 ], [ -75.165209, 39.91604 ], [ -75.16505, 39.916019 ], [ -75.164519, 39.91596 ], [ -75.164199, 39.915909 ], [ -75.164, 39.91589 ], [ -75.16382, 39.91587 ], [ -75.16352, 39.915829 ], [ -75.162949, 39.915749 ], [ -75.16279, 39.915729 ], [ -75.16239, 39.91568 ], [ -75.16215, 39.915649 ], [ -75.16193, 39.91562 ], [ -75.16143, 39.915559 ], [ -75.161049, 39.91551 ], [ -75.16085, 39.915489 ], [ -75.160469, 39.91543 ], [ -75.16037, 39.91542 ], [ -75.15983, 39.91535 ], [ -75.15929, 39.91527 ], [ -75.1592, 39.91526 ], [ -75.15879, 39.915209 ], [ -75.158629, 39.915189 ], [ -75.15825, 39.91514 ], [ -75.158079, 39.915119 ], [ -75.15775, 39.91508 ], [ -75.157459, 39.915039 ], [ -75.15722, 39.915009 ], [ -75.156919, 39.91497 ], [ -75.156699, 39.914939 ], [ -75.156069, 39.914859 ], [ -75.15595, 39.914839 ], [ -75.15585, 39.914829 ], [ -75.155749, 39.91482 ], [ -75.155019, 39.91472 ], [ -75.154399, 39.91464 ], [ -75.153809, 39.914569 ], [ -75.15342, 39.91452 ], [ -75.153139, 39.914479 ], [ -75.152599, 39.914399 ], [ -75.152369, 39.91437 ], [ -75.15207, 39.91433 ], [ -75.151559, 39.91427 ], [ -75.151429, 39.91425 ], [ -75.151199, 39.914219 ], [ -75.151019, 39.914199 ], [ -75.15087, 39.91418 ], [ -75.150529, 39.914139 ], [ -75.150079, 39.91407 ], [ -75.149769, 39.914029 ], [ -75.149309, 39.91397 ], [ -75.149189, 39.913949 ], [ -75.14916, 39.913949 ], [ -75.148989, 39.913929 ], [ -75.14867, 39.91388 ], [ -75.148329, 39.913839 ], [ -75.14813, 39.91381 ], [ -75.148009, 39.9138 ], [ -75.147639, 39.913749 ], [ -75.147509, 39.91374 ], [ -75.147109, 39.9137 ], [ -75.146659, 39.913659 ], [ -75.14641, 39.91363 ], [ -75.14622, 39.913599 ], [ -75.14588, 39.91356 ], [ -75.145299, 39.913479 ], [ -75.1451, 39.91345 ], [ -75.143819, 39.91329 ], [ -75.14209, 39.913059 ], [ -75.141439, 39.91298 ], [ -75.14079, 39.91289 ], [ -75.14088, 39.91316 ], [ -75.141159, 39.913679 ], [ -75.141439, 39.91418 ], [ -75.142019, 39.91524 ], [ -75.142239, 39.91563 ], [ -75.14241, 39.915939 ], [ -75.14334, 39.917609 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307877", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.242004, 39.945225 ], [ -75.241768, 39.945311 ], [ -75.240869, 39.945637 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307879", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.249545, 39.98969 ], [ -75.249057, 39.990007 ], [ -75.249123, 39.990103 ], [ -75.249141, 39.990141 ], [ -75.249156, 39.990185 ], [ -75.249164, 39.99022 ], [ -75.249174, 39.990268 ], [ -75.24918, 39.990324 ], [ -75.249184, 39.990364 ], [ -75.249189, 39.990411 ], [ -75.249205, 39.990527 ], [ -75.248691, 39.990775 ], [ -75.248503, 39.990865 ], [ -75.247988, 39.991113 ], [ -75.246614, 39.991775 ], [ -75.245708, 39.992207 ], [ -75.245225, 39.992433 ], [ -75.243802, 39.993099 ], [ -75.243656, 39.993167 ], [ -75.242365, 39.993767 ], [ -75.241896, 39.993986 ], [ -75.241622, 39.994113 ], [ -75.241241, 39.993589 ], [ -75.241059, 39.993364 ], [ -75.240928, 39.993198 ], [ -75.240338, 39.992439 ], [ -75.240164, 39.992219 ], [ -75.24009, 39.992139 ], [ -75.240045, 39.992092 ], [ -75.240006, 39.992066 ], [ -75.241469, 39.991355 ], [ -75.242863, 39.990728 ], [ -75.243068, 39.990635 ], [ -75.244059, 39.990173 ], [ -75.243236, 39.989114 ], [ -75.242415, 39.98807 ], [ -75.24177, 39.987254 ], [ -75.241075, 39.986407 ], [ -75.240432, 39.986709 ], [ -75.239803, 39.987006 ], [ -75.239162, 39.987302 ], [ -75.238509, 39.987597 ], [ -75.237558, 39.987969 ], [ -75.237485, 39.987992 ], [ -75.237405, 39.987559 ], [ -75.237333, 39.987182 ], [ -75.23726, 39.986796 ], [ -75.237192, 39.986433 ], [ -75.237119, 39.986041 ], [ -75.237107, 39.98599 ], [ -75.237039, 39.985622 ], [ -75.237031, 39.985535 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985344 ], [ -75.237046, 39.98523 ], [ -75.237085, 39.985077 ], [ -75.237108, 39.984997 ], [ -75.23712, 39.98495 ], [ -75.237163, 39.984869 ], [ -75.237185, 39.98483 ], [ -75.237205, 39.984796 ], [ -75.23736, 39.984595 ], [ -75.23745, 39.984448 ], [ -75.23753, 39.984313 ], [ -75.237687, 39.984075 ], [ -75.238295, 39.983087 ], [ -75.238391, 39.982937 ], [ -75.238519, 39.982738 ], [ -75.238686, 39.982461 ], [ -75.238845, 39.982219 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ], [ -75.170642, 39.916694 ], [ -75.170211, 39.91664 ], [ -75.169764, 39.916575 ], [ -75.169557, 39.916545 ], [ -75.169263, 39.916503 ], [ -75.168725, 39.91643 ], [ -75.168629, 39.916421 ], [ -75.168206, 39.916367 ], [ -75.167586, 39.916287 ], [ -75.167541, 39.916281 ], [ -75.167126, 39.916233 ], [ -75.1669, 39.916207 ], [ -75.166626, 39.916173 ], [ -75.166259, 39.916125 ], [ -75.166103, 39.916106 ], [ -75.165578, 39.916045 ], [ -75.165225, 39.916 ], [ -75.165066, 39.91598 ], [ -75.16454, 39.915909 ], [ -75.164014, 39.915845 ], [ -75.163834, 39.915817 ], [ -75.163708, 39.9158 ], [ -75.163541, 39.915777 ], [ -75.163285, 39.915744 ], [ -75.162925, 39.915697 ], [ -75.162847, 39.915683 ], [ -75.162612, 39.915652 ], [ -75.162403, 39.915625 ], [ -75.162179, 39.915594 ], [ -75.161953, 39.915563 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.149892, 39.914 ], [ -75.148866, 39.913864 ], [ -75.148341, 39.913795 ], [ -75.148116, 39.913762 ], [ -75.148007, 39.913748 ], [ -75.147757, 39.913713 ], [ -75.147669, 39.9137 ], [ -75.146626, 39.913584 ], [ -75.146503, 39.913615 ], [ -75.146402, 39.913602 ], [ -75.146151, 39.913571 ], [ -75.142276, 39.913081 ], [ -75.14081, 39.912897 ], [ -75.140812, 39.912938 ], [ -75.140818, 39.912968 ], [ -75.140824, 39.912993 ], [ -75.140836, 39.913025 ], [ -75.140853, 39.913062 ], [ -75.141103, 39.913548 ], [ -75.141395, 39.914078 ], [ -75.14146, 39.914198 ], [ -75.142114, 39.915391 ], [ -75.142408, 39.915914 ], [ -75.14252, 39.916114 ], [ -75.143157, 39.917277 ], [ -75.143213, 39.917379 ], [ -75.143308, 39.917558 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307882", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.262153, 39.989404 ], [ -75.262094, 39.989305 ], [ -75.261929, 39.989287 ], [ -75.261728, 39.989305 ], [ -75.261626, 39.989275 ], [ -75.261384, 39.989593 ], [ -75.259901, 39.989172 ], [ -75.259712, 39.989118 ], [ -75.259528, 39.989094 ], [ -75.259369, 39.989108 ], [ -75.259041, 39.989197 ], [ -75.258895, 39.989258 ], [ -75.258715, 39.989397 ], [ -75.258518, 39.989657 ], [ -75.258429, 39.989785 ], [ -75.258369, 39.989878 ], [ -75.258095, 39.990338 ], [ -75.257931, 39.990294 ], [ -75.257676, 39.990224 ], [ -75.257397, 39.990137 ], [ -75.25733, 39.990113 ], [ -75.257122, 39.990037 ], [ -75.256936, 39.989961 ], [ -75.256855, 39.989927 ], [ -75.256593, 39.989807 ], [ -75.256343, 39.989675 ], [ -75.2561, 39.989534 ], [ -75.255291, 39.989057 ], [ -75.255254, 39.988996 ], [ -75.255183, 39.988953 ], [ -75.255067, 39.988881 ], [ -75.254893, 39.988774 ], [ -75.254758, 39.988694 ], [ -75.254519, 39.988553 ], [ -75.254448, 39.988545 ], [ -75.254322, 39.988477 ], [ -75.253975, 39.988305 ], [ -75.253357, 39.988597 ], [ -75.253036, 39.988747 ], [ -75.252117, 39.98918 ], [ -75.251913, 39.989276 ], [ -75.251437, 39.9895 ], [ -75.251217, 39.989599 ], [ -75.250779, 39.989796 ], [ -75.250318, 39.990007 ], [ -75.250204, 39.990064 ], [ -75.249969, 39.990167 ], [ -75.249794, 39.990249 ], [ -75.249515, 39.990379 ], [ -75.249205, 39.990527 ], [ -75.248691, 39.990775 ], [ -75.248503, 39.990865 ], [ -75.247988, 39.991113 ], [ -75.246614, 39.991775 ], [ -75.245708, 39.992207 ], [ -75.245225, 39.992433 ], [ -75.243802, 39.993099 ], [ -75.243656, 39.993167 ], [ -75.242365, 39.993767 ], [ -75.241896, 39.993986 ], [ -75.241622, 39.994113 ], [ -75.241241, 39.993589 ], [ -75.241059, 39.993364 ], [ -75.240928, 39.993198 ], [ -75.240338, 39.992439 ], [ -75.240164, 39.992219 ], [ -75.24009, 39.992139 ], [ -75.240045, 39.992092 ], [ -75.240006, 39.992066 ], [ -75.241469, 39.991355 ], [ -75.242863, 39.990728 ], [ -75.243068, 39.990635 ], [ -75.244059, 39.990173 ], [ -75.243236, 39.989114 ], [ -75.242415, 39.98807 ], [ -75.24177, 39.987254 ], [ -75.241075, 39.986407 ], [ -75.240432, 39.986709 ], [ -75.239803, 39.987006 ], [ -75.239162, 39.987302 ], [ -75.238509, 39.987597 ], [ -75.237558, 39.987969 ], [ -75.237485, 39.987992 ], [ -75.237405, 39.987559 ], [ -75.237333, 39.987182 ], [ -75.23726, 39.986796 ], [ -75.237192, 39.986433 ], [ -75.237119, 39.986041 ], [ -75.237107, 39.98599 ], [ -75.237039, 39.985622 ], [ -75.237031, 39.985535 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985344 ], [ -75.237046, 39.98523 ], [ -75.237085, 39.985077 ], [ -75.237108, 39.984997 ], [ -75.23712, 39.98495 ], [ -75.237163, 39.984869 ], [ -75.237185, 39.98483 ], [ -75.237205, 39.984796 ], [ -75.23736, 39.984595 ], [ -75.23745, 39.984448 ], [ -75.23753, 39.984313 ], [ -75.237687, 39.984075 ], [ -75.238295, 39.983087 ], [ -75.238391, 39.982937 ], [ -75.238519, 39.982738 ], [ -75.238686, 39.982461 ], [ -75.238845, 39.982219 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ], [ -75.170642, 39.916694 ], [ -75.170211, 39.91664 ], [ -75.169764, 39.916575 ], [ -75.169557, 39.916545 ], [ -75.169263, 39.916503 ], [ -75.168725, 39.91643 ], [ -75.168629, 39.916421 ], [ -75.168206, 39.916367 ], [ -75.167586, 39.916287 ], [ -75.167541, 39.916281 ], [ -75.167126, 39.916233 ], [ -75.1669, 39.916207 ], [ -75.166626, 39.916173 ], [ -75.166259, 39.916125 ], [ -75.166103, 39.916106 ], [ -75.165578, 39.916045 ], [ -75.165225, 39.916 ], [ -75.165066, 39.91598 ], [ -75.16454, 39.915909 ], [ -75.164014, 39.915845 ], [ -75.163834, 39.915817 ], [ -75.163708, 39.9158 ], [ -75.163541, 39.915777 ], [ -75.163285, 39.915744 ], [ -75.162925, 39.915697 ], [ -75.162847, 39.915683 ], [ -75.162612, 39.915652 ], [ -75.162403, 39.915625 ], [ -75.162179, 39.915594 ], [ -75.161953, 39.915563 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.150058, 39.913804 ], [ -75.150097, 39.913656 ], [ -75.150168, 39.913376 ], [ -75.150384, 39.912534 ], [ -75.150441, 39.9123 ], [ -75.150466, 39.912196 ], [ -75.150499, 39.912054 ], [ -75.150514, 39.911989 ], [ -75.150556, 39.911773 ], [ -75.150606, 39.911522 ], [ -75.15066, 39.911269 ], [ -75.150693, 39.911114 ], [ -75.150713, 39.911021 ], [ -75.150786, 39.910647 ], [ -75.150839, 39.910391 ], [ -75.150849, 39.910346 ], [ -75.150939, 39.909963 ], [ -75.150973, 39.909822 ], [ -75.15099, 39.909754 ], [ -75.151001, 39.909709 ], [ -75.15109, 39.90934 ], [ -75.1511, 39.909296 ], [ -75.151174, 39.908977 ], [ -75.151195, 39.90888 ], [ -75.15122, 39.908763 ], [ -75.15123, 39.908685 ], [ -75.151234, 39.908631 ], [ -75.151237, 39.908491 ], [ -75.151238, 39.908314 ], [ -75.151234, 39.908158 ], [ -75.15123, 39.908026 ], [ -75.151226, 39.907959 ], [ -75.151226, 39.907795 ], [ -75.151229, 39.907683 ], [ -75.151237, 39.907492 ], [ -75.151238, 39.907402 ], [ -75.151243, 39.907264 ], [ -75.151253, 39.907119 ], [ -75.151269, 39.907038 ], [ -75.151349, 39.906657 ], [ -75.151401, 39.906407 ], [ -75.151566, 39.905628 ], [ -75.151693, 39.905055 ], [ -75.151827, 39.904449 ], [ -75.151967, 39.903737 ], [ -75.15203, 39.903495 ], [ -75.152068, 39.903351 ], [ -75.15224, 39.902701 ], [ -75.152428, 39.902727 ], [ -75.152634, 39.902755 ], [ -75.152721, 39.90273 ], [ -75.152924, 39.902756 ], [ -75.153154, 39.902784 ], [ -75.153959, 39.902883 ], [ -75.154195, 39.902912 ], [ -75.154727, 39.902978 ], [ -75.155266, 39.903044 ], [ -75.155732, 39.903102 ], [ -75.156277, 39.903169 ], [ -75.156761, 39.903232 ], [ -75.157719, 39.903356 ], [ -75.157891, 39.903378 ], [ -75.15844, 39.903448 ], [ -75.158935, 39.903513 ], [ -75.159103, 39.903535 ], [ -75.161531, 39.903851 ], [ -75.16177, 39.903882 ], [ -75.162296, 39.903951 ], [ -75.161998, 39.905283 ], [ -75.161778, 39.906261 ], [ -75.161388, 39.908173 ], [ -75.161155, 39.909354 ], [ -75.160323, 39.909096 ], [ -75.160034, 39.909006 ], [ -75.158301, 39.908469 ], [ -75.15811, 39.908412 ], [ -75.157884, 39.908356 ], [ -75.157653, 39.908311 ], [ -75.157388, 39.908272 ], [ -75.155538, 39.908038 ], [ -75.1552, 39.907995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307886", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.262153, 39.989404 ], [ -75.262094, 39.989305 ], [ -75.261929, 39.989287 ], [ -75.261728, 39.989305 ], [ -75.261626, 39.989275 ], [ -75.261384, 39.989593 ], [ -75.259901, 39.989172 ], [ -75.259712, 39.989118 ], [ -75.259528, 39.989094 ], [ -75.259369, 39.989108 ], [ -75.259041, 39.989197 ], [ -75.258895, 39.989258 ], [ -75.258715, 39.989397 ], [ -75.258518, 39.989657 ], [ -75.258429, 39.989785 ], [ -75.258369, 39.989878 ], [ -75.258095, 39.990338 ], [ -75.257931, 39.990294 ], [ -75.257676, 39.990224 ], [ -75.257397, 39.990137 ], [ -75.25733, 39.990113 ], [ -75.257122, 39.990037 ], [ -75.256936, 39.989961 ], [ -75.256855, 39.989927 ], [ -75.256593, 39.989807 ], [ -75.256343, 39.989675 ], [ -75.2561, 39.989534 ], [ -75.255291, 39.989057 ], [ -75.255254, 39.988996 ], [ -75.255183, 39.988953 ], [ -75.255067, 39.988881 ], [ -75.254893, 39.988774 ], [ -75.254758, 39.988694 ], [ -75.254519, 39.988553 ], [ -75.254448, 39.988545 ], [ -75.254322, 39.988477 ], [ -75.253975, 39.988305 ], [ -75.253357, 39.988597 ], [ -75.253036, 39.988747 ], [ -75.252117, 39.98918 ], [ -75.251913, 39.989276 ], [ -75.251437, 39.9895 ], [ -75.251217, 39.989599 ], [ -75.250779, 39.989796 ], [ -75.250318, 39.990007 ], [ -75.250204, 39.990064 ], [ -75.249969, 39.990167 ], [ -75.249794, 39.990249 ], [ -75.249515, 39.990379 ], [ -75.249205, 39.990527 ], [ -75.248691, 39.990775 ], [ -75.248503, 39.990865 ], [ -75.247988, 39.991113 ], [ -75.246614, 39.991775 ], [ -75.245708, 39.992207 ], [ -75.245225, 39.992433 ], [ -75.243802, 39.993099 ], [ -75.243656, 39.993167 ], [ -75.242365, 39.993767 ], [ -75.241896, 39.993986 ], [ -75.241622, 39.994113 ], [ -75.241241, 39.993589 ], [ -75.241059, 39.993364 ], [ -75.240928, 39.993198 ], [ -75.240338, 39.992439 ], [ -75.240164, 39.992219 ], [ -75.24009, 39.992139 ], [ -75.240045, 39.992092 ], [ -75.240006, 39.992066 ], [ -75.241469, 39.991355 ], [ -75.242863, 39.990728 ], [ -75.243068, 39.990635 ], [ -75.244059, 39.990173 ], [ -75.243236, 39.989114 ], [ -75.242415, 39.98807 ], [ -75.24177, 39.987254 ], [ -75.241075, 39.986407 ], [ -75.240432, 39.986709 ], [ -75.239803, 39.987006 ], [ -75.239162, 39.987302 ], [ -75.238509, 39.987597 ], [ -75.237558, 39.987969 ], [ -75.237485, 39.987992 ], [ -75.237405, 39.987559 ], [ -75.237333, 39.987182 ], [ -75.23726, 39.986796 ], [ -75.237192, 39.986433 ], [ -75.237119, 39.986041 ], [ -75.237107, 39.98599 ], [ -75.237039, 39.985622 ], [ -75.237031, 39.985535 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985344 ], [ -75.237046, 39.98523 ], [ -75.237085, 39.985077 ], [ -75.237108, 39.984997 ], [ -75.23712, 39.98495 ], [ -75.237163, 39.984869 ], [ -75.237185, 39.98483 ], [ -75.237205, 39.984796 ], [ -75.23736, 39.984595 ], [ -75.23745, 39.984448 ], [ -75.23753, 39.984313 ], [ -75.237687, 39.984075 ], [ -75.238295, 39.983087 ], [ -75.238391, 39.982937 ], [ -75.238519, 39.982738 ], [ -75.238686, 39.982461 ], [ -75.238845, 39.982219 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ], [ -75.170642, 39.916694 ], [ -75.170211, 39.91664 ], [ -75.169764, 39.916575 ], [ -75.169557, 39.916545 ], [ -75.169263, 39.916503 ], [ -75.168725, 39.91643 ], [ -75.168629, 39.916421 ], [ -75.168206, 39.916367 ], [ -75.167586, 39.916287 ], [ -75.167541, 39.916281 ], [ -75.167126, 39.916233 ], [ -75.1669, 39.916207 ], [ -75.166626, 39.916173 ], [ -75.166259, 39.916125 ], [ -75.166103, 39.916106 ], [ -75.165578, 39.916045 ], [ -75.165225, 39.916 ], [ -75.165066, 39.91598 ], [ -75.16454, 39.915909 ], [ -75.164014, 39.915845 ], [ -75.163834, 39.915817 ], [ -75.163708, 39.9158 ], [ -75.163541, 39.915777 ], [ -75.163285, 39.915744 ], [ -75.162925, 39.915697 ], [ -75.162847, 39.915683 ], [ -75.162612, 39.915652 ], [ -75.162403, 39.915625 ], [ -75.162179, 39.915594 ], [ -75.161953, 39.915563 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.149892, 39.914 ], [ -75.148866, 39.913864 ], [ -75.148341, 39.913795 ], [ -75.148116, 39.913762 ], [ -75.148007, 39.913748 ], [ -75.147757, 39.913713 ], [ -75.147669, 39.9137 ], [ -75.146626, 39.913584 ], [ -75.146503, 39.913615 ], [ -75.146402, 39.913602 ], [ -75.146151, 39.913571 ], [ -75.142276, 39.913081 ], [ -75.14081, 39.912897 ], [ -75.140812, 39.912938 ], [ -75.140818, 39.912968 ], [ -75.140824, 39.912993 ], [ -75.140836, 39.913025 ], [ -75.140853, 39.913062 ], [ -75.141103, 39.913548 ], [ -75.141395, 39.914078 ], [ -75.14146, 39.914198 ], [ -75.142114, 39.915391 ], [ -75.142408, 39.915914 ], [ -75.14252, 39.916114 ], [ -75.143157, 39.917277 ], [ -75.143213, 39.917379 ], [ -75.143308, 39.917558 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307887", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307890", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307892", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ], [ -75.170642, 39.916694 ], [ -75.170211, 39.91664 ], [ -75.169764, 39.916575 ], [ -75.169557, 39.916545 ], [ -75.169263, 39.916503 ], [ -75.168725, 39.91643 ], [ -75.168629, 39.916421 ], [ -75.168206, 39.916367 ], [ -75.167586, 39.916287 ], [ -75.167541, 39.916281 ], [ -75.167126, 39.916233 ], [ -75.1669, 39.916207 ], [ -75.166626, 39.916173 ], [ -75.166259, 39.916125 ], [ -75.166103, 39.916106 ], [ -75.165578, 39.916045 ], [ -75.165225, 39.916 ], [ -75.165066, 39.91598 ], [ -75.16454, 39.915909 ], [ -75.164014, 39.915845 ], [ -75.163834, 39.915817 ], [ -75.163708, 39.9158 ], [ -75.163541, 39.915777 ], [ -75.163285, 39.915744 ], [ -75.162925, 39.915697 ], [ -75.162847, 39.915683 ], [ -75.162612, 39.915652 ], [ -75.162403, 39.915625 ], [ -75.162179, 39.915594 ], [ -75.161953, 39.915563 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.150058, 39.913804 ], [ -75.150097, 39.913656 ], [ -75.150168, 39.913376 ], [ -75.150384, 39.912534 ], [ -75.150441, 39.9123 ], [ -75.150466, 39.912196 ], [ -75.150499, 39.912054 ], [ -75.150514, 39.911989 ], [ -75.150556, 39.911773 ], [ -75.150606, 39.911522 ], [ -75.15066, 39.911269 ], [ -75.150693, 39.911114 ], [ -75.150713, 39.911021 ], [ -75.150786, 39.910647 ], [ -75.150839, 39.910391 ], [ -75.150849, 39.910346 ], [ -75.150939, 39.909963 ], [ -75.150973, 39.909822 ], [ -75.15099, 39.909754 ], [ -75.151001, 39.909709 ], [ -75.15109, 39.90934 ], [ -75.1511, 39.909296 ], [ -75.151174, 39.908977 ], [ -75.151195, 39.90888 ], [ -75.15122, 39.908763 ], [ -75.15123, 39.908685 ], [ -75.151234, 39.908631 ], [ -75.151237, 39.908491 ], [ -75.151238, 39.908314 ], [ -75.151234, 39.908158 ], [ -75.15123, 39.908026 ], [ -75.151226, 39.907959 ], [ -75.151226, 39.907795 ], [ -75.151229, 39.907683 ], [ -75.151237, 39.907492 ], [ -75.151238, 39.907402 ], [ -75.151243, 39.907264 ], [ -75.151253, 39.907119 ], [ -75.151269, 39.907038 ], [ -75.151349, 39.906657 ], [ -75.151401, 39.906407 ], [ -75.151566, 39.905628 ], [ -75.151693, 39.905055 ], [ -75.151827, 39.904449 ], [ -75.151967, 39.903737 ], [ -75.15203, 39.903495 ], [ -75.152068, 39.903351 ], [ -75.15224, 39.902701 ], [ -75.152428, 39.902727 ], [ -75.152634, 39.902755 ], [ -75.152721, 39.90273 ], [ -75.152924, 39.902756 ], [ -75.153154, 39.902784 ], [ -75.153959, 39.902883 ], [ -75.154195, 39.902912 ], [ -75.154727, 39.902978 ], [ -75.155266, 39.903044 ], [ -75.155732, 39.903102 ], [ -75.156277, 39.903169 ], [ -75.156761, 39.903232 ], [ -75.157719, 39.903356 ], [ -75.157891, 39.903378 ], [ -75.15844, 39.903448 ], [ -75.158935, 39.903513 ], [ -75.159103, 39.903535 ], [ -75.161531, 39.903851 ], [ -75.16177, 39.903882 ], [ -75.162296, 39.903951 ], [ -75.161998, 39.905283 ], [ -75.161778, 39.906261 ], [ -75.161388, 39.908173 ], [ -75.161155, 39.909354 ], [ -75.160323, 39.909096 ], [ -75.160034, 39.909006 ], [ -75.158301, 39.908469 ], [ -75.15811, 39.908412 ], [ -75.157884, 39.908356 ], [ -75.157653, 39.908311 ], [ -75.157388, 39.908272 ], [ -75.155538, 39.908038 ], [ -75.1552, 39.907995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307893", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.245979, 39.984374 ], [ -75.24579, 39.984284 ], [ -75.245694, 39.984237 ], [ -75.245547, 39.984175 ], [ -75.245443, 39.984131 ], [ -75.245097, 39.98401 ], [ -75.243681, 39.983529 ], [ -75.243132, 39.98334 ], [ -75.242823, 39.983238 ], [ -75.241423, 39.982755 ], [ -75.240989, 39.982609 ], [ -75.239961, 39.982259 ], [ -75.239634, 39.98215 ], [ -75.239503, 39.982108 ], [ -75.239274, 39.982033 ], [ -75.23907, 39.981967 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ], [ -75.170642, 39.916694 ], [ -75.170211, 39.91664 ], [ -75.169764, 39.916575 ], [ -75.169557, 39.916545 ], [ -75.169263, 39.916503 ], [ -75.168725, 39.91643 ], [ -75.168629, 39.916421 ], [ -75.168206, 39.916367 ], [ -75.167586, 39.916287 ], [ -75.167541, 39.916281 ], [ -75.167126, 39.916233 ], [ -75.1669, 39.916207 ], [ -75.166626, 39.916173 ], [ -75.166259, 39.916125 ], [ -75.166103, 39.916106 ], [ -75.165578, 39.916045 ], [ -75.165225, 39.916 ], [ -75.165066, 39.91598 ], [ -75.16454, 39.915909 ], [ -75.164014, 39.915845 ], [ -75.163834, 39.915817 ], [ -75.163708, 39.9158 ], [ -75.163541, 39.915777 ], [ -75.163285, 39.915744 ], [ -75.162925, 39.915697 ], [ -75.162847, 39.915683 ], [ -75.162612, 39.915652 ], [ -75.162403, 39.915625 ], [ -75.162179, 39.915594 ], [ -75.161953, 39.915563 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.150058, 39.913804 ], [ -75.150097, 39.913656 ], [ -75.150168, 39.913376 ], [ -75.150384, 39.912534 ], [ -75.150441, 39.9123 ], [ -75.150466, 39.912196 ], [ -75.150499, 39.912054 ], [ -75.150514, 39.911989 ], [ -75.150556, 39.911773 ], [ -75.150606, 39.911522 ], [ -75.15066, 39.911269 ], [ -75.150693, 39.911114 ], [ -75.150713, 39.911021 ], [ -75.150786, 39.910647 ], [ -75.150839, 39.910391 ], [ -75.150849, 39.910346 ], [ -75.150939, 39.909963 ], [ -75.150973, 39.909822 ], [ -75.15099, 39.909754 ], [ -75.151001, 39.909709 ], [ -75.15109, 39.90934 ], [ -75.1511, 39.909296 ], [ -75.151174, 39.908977 ], [ -75.151195, 39.90888 ], [ -75.15122, 39.908763 ], [ -75.15123, 39.908685 ], [ -75.151234, 39.908631 ], [ -75.151237, 39.908491 ], [ -75.151238, 39.908314 ], [ -75.151234, 39.908158 ], [ -75.15123, 39.908026 ], [ -75.151226, 39.907959 ], [ -75.151226, 39.907795 ], [ -75.151229, 39.907683 ], [ -75.151237, 39.907492 ], [ -75.151238, 39.907402 ], [ -75.151243, 39.907264 ], [ -75.151253, 39.907119 ], [ -75.151269, 39.907038 ], [ -75.151349, 39.906657 ], [ -75.151401, 39.906407 ], [ -75.151566, 39.905628 ], [ -75.151693, 39.905055 ], [ -75.151827, 39.904449 ], [ -75.151967, 39.903737 ], [ -75.15203, 39.903495 ], [ -75.152068, 39.903351 ], [ -75.15224, 39.902701 ], [ -75.152428, 39.902727 ], [ -75.152634, 39.902755 ], [ -75.152721, 39.90273 ], [ -75.152924, 39.902756 ], [ -75.153154, 39.902784 ], [ -75.153959, 39.902883 ], [ -75.154195, 39.902912 ], [ -75.154727, 39.902978 ], [ -75.155266, 39.903044 ], [ -75.155732, 39.903102 ], [ -75.156277, 39.903169 ], [ -75.156761, 39.903232 ], [ -75.157719, 39.903356 ], [ -75.157891, 39.903378 ], [ -75.15844, 39.903448 ], [ -75.158935, 39.903513 ], [ -75.159103, 39.903535 ], [ -75.161531, 39.903851 ], [ -75.16177, 39.903882 ], [ -75.162296, 39.903951 ], [ -75.161998, 39.905283 ], [ -75.161778, 39.906261 ], [ -75.161388, 39.908173 ], [ -75.161155, 39.909354 ], [ -75.160323, 39.909096 ], [ -75.160034, 39.909006 ], [ -75.158301, 39.908469 ], [ -75.15811, 39.908412 ], [ -75.157884, 39.908356 ], [ -75.157653, 39.908311 ], [ -75.157388, 39.908272 ], [ -75.155538, 39.908038 ], [ -75.1552, 39.907995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307894", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.249545, 39.98969 ], [ -75.249057, 39.990007 ], [ -75.249123, 39.990103 ], [ -75.249141, 39.990141 ], [ -75.249156, 39.990185 ], [ -75.249164, 39.99022 ], [ -75.249174, 39.990268 ], [ -75.24918, 39.990324 ], [ -75.249184, 39.990364 ], [ -75.249189, 39.990411 ], [ -75.249205, 39.990527 ], [ -75.248691, 39.990775 ], [ -75.248503, 39.990865 ], [ -75.247988, 39.991113 ], [ -75.246614, 39.991775 ], [ -75.245708, 39.992207 ], [ -75.245225, 39.992433 ], [ -75.243802, 39.993099 ], [ -75.243656, 39.993167 ], [ -75.242365, 39.993767 ], [ -75.241896, 39.993986 ], [ -75.241622, 39.994113 ], [ -75.241241, 39.993589 ], [ -75.241059, 39.993364 ], [ -75.240928, 39.993198 ], [ -75.240338, 39.992439 ], [ -75.240164, 39.992219 ], [ -75.24009, 39.992139 ], [ -75.240045, 39.992092 ], [ -75.240006, 39.992066 ], [ -75.241469, 39.991355 ], [ -75.242863, 39.990728 ], [ -75.243068, 39.990635 ], [ -75.244059, 39.990173 ], [ -75.243236, 39.989114 ], [ -75.242415, 39.98807 ], [ -75.24177, 39.987254 ], [ -75.241075, 39.986407 ], [ -75.240432, 39.986709 ], [ -75.239803, 39.987006 ], [ -75.239162, 39.987302 ], [ -75.238509, 39.987597 ], [ -75.237558, 39.987969 ], [ -75.237485, 39.987992 ], [ -75.237405, 39.987559 ], [ -75.237333, 39.987182 ], [ -75.23726, 39.986796 ], [ -75.237192, 39.986433 ], [ -75.237119, 39.986041 ], [ -75.237107, 39.98599 ], [ -75.237039, 39.985622 ], [ -75.237031, 39.985535 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985344 ], [ -75.237046, 39.98523 ], [ -75.237085, 39.985077 ], [ -75.237108, 39.984997 ], [ -75.23712, 39.98495 ], [ -75.237163, 39.984869 ], [ -75.237185, 39.98483 ], [ -75.237205, 39.984796 ], [ -75.23736, 39.984595 ], [ -75.23745, 39.984448 ], [ -75.23753, 39.984313 ], [ -75.237687, 39.984075 ], [ -75.238295, 39.983087 ], [ -75.238391, 39.982937 ], [ -75.238519, 39.982738 ], [ -75.238686, 39.982461 ], [ -75.238845, 39.982219 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307897", "route_id": "63" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.249545, 39.98969 ], [ -75.249057, 39.990007 ], [ -75.249123, 39.990103 ], [ -75.249141, 39.990141 ], [ -75.249156, 39.990185 ], [ -75.249164, 39.99022 ], [ -75.249174, 39.990268 ], [ -75.24918, 39.990324 ], [ -75.249184, 39.990364 ], [ -75.249189, 39.990411 ], [ -75.249205, 39.990527 ], [ -75.248691, 39.990775 ], [ -75.248503, 39.990865 ], [ -75.247988, 39.991113 ], [ -75.246614, 39.991775 ], [ -75.245708, 39.992207 ], [ -75.245225, 39.992433 ], [ -75.243802, 39.993099 ], [ -75.243656, 39.993167 ], [ -75.242365, 39.993767 ], [ -75.241896, 39.993986 ], [ -75.241622, 39.994113 ], [ -75.241241, 39.993589 ], [ -75.241059, 39.993364 ], [ -75.240928, 39.993198 ], [ -75.240338, 39.992439 ], [ -75.240164, 39.992219 ], [ -75.24009, 39.992139 ], [ -75.240045, 39.992092 ], [ -75.240006, 39.992066 ], [ -75.241469, 39.991355 ], [ -75.242863, 39.990728 ], [ -75.243068, 39.990635 ], [ -75.244059, 39.990173 ], [ -75.243236, 39.989114 ], [ -75.242415, 39.98807 ], [ -75.24177, 39.987254 ], [ -75.241075, 39.986407 ], [ -75.240432, 39.986709 ], [ -75.239803, 39.987006 ], [ -75.239162, 39.987302 ], [ -75.238509, 39.987597 ], [ -75.237558, 39.987969 ], [ -75.237485, 39.987992 ], [ -75.237405, 39.987559 ], [ -75.237333, 39.987182 ], [ -75.23726, 39.986796 ], [ -75.237192, 39.986433 ], [ -75.237119, 39.986041 ], [ -75.237107, 39.98599 ], [ -75.237039, 39.985622 ], [ -75.237031, 39.985535 ], [ -75.237026, 39.985431 ], [ -75.237031, 39.985344 ], [ -75.237046, 39.98523 ], [ -75.237085, 39.985077 ], [ -75.237108, 39.984997 ], [ -75.23712, 39.98495 ], [ -75.237163, 39.984869 ], [ -75.237185, 39.98483 ], [ -75.237205, 39.984796 ], [ -75.23736, 39.984595 ], [ -75.23745, 39.984448 ], [ -75.23753, 39.984313 ], [ -75.237687, 39.984075 ], [ -75.238295, 39.983087 ], [ -75.238391, 39.982937 ], [ -75.238519, 39.982738 ], [ -75.238686, 39.982461 ], [ -75.238845, 39.982219 ], [ -75.239036, 39.981956 ], [ -75.239355, 39.981437 ], [ -75.239398, 39.981345 ], [ -75.23941, 39.981314 ], [ -75.239447, 39.981204 ], [ -75.239466, 39.981093 ], [ -75.239472, 39.980979 ], [ -75.23946, 39.980886 ], [ -75.239378, 39.980408 ], [ -75.238604, 39.980502 ], [ -75.236449, 39.980748 ], [ -75.236155, 39.98079 ], [ -75.236111, 39.980799 ], [ -75.236089, 39.980838 ], [ -75.236032, 39.98092 ], [ -75.235734, 39.980816 ], [ -75.235466, 39.980734 ], [ -75.235353, 39.980703 ], [ -75.235182, 39.980668 ], [ -75.234573, 39.980539 ], [ -75.234205, 39.980461 ], [ -75.234074, 39.980422 ], [ -75.234078, 39.980222 ], [ -75.234102, 39.979593 ], [ -75.234096, 39.9793 ], [ -75.234029, 39.978741 ], [ -75.234023, 39.978359 ], [ -75.233909, 39.977806 ], [ -75.233849, 39.977429 ], [ -75.23382, 39.977263 ], [ -75.23368, 39.976644 ], [ -75.23338, 39.975069 ], [ -75.233126, 39.973524 ], [ -75.232884, 39.972232 ], [ -75.232585, 39.970683 ], [ -75.232512, 39.970303 ], [ -75.232407, 39.969743 ], [ -75.2323, 39.969229 ], [ -75.232213, 39.968799 ], [ -75.231966, 39.967476 ], [ -75.231956, 39.967383 ], [ -75.231813, 39.966383 ], [ -75.231793, 39.96627 ], [ -75.231912, 39.965591 ], [ -75.231923, 39.965489 ], [ -75.232076, 39.964839 ], [ -75.232242, 39.964076 ], [ -75.232323, 39.963665 ], [ -75.232384, 39.96333 ], [ -75.2324, 39.963243 ], [ -75.232456, 39.962942 ], [ -75.232525, 39.962531 ], [ -75.232835, 39.961062 ], [ -75.232844, 39.961005 ], [ -75.23286, 39.960915 ], [ -75.23302, 39.960217 ], [ -75.233176, 39.959468 ], [ -75.233331, 39.958704 ], [ -75.233505, 39.957938 ], [ -75.233626, 39.957322 ], [ -75.233732, 39.956807 ], [ -75.233849, 39.956208 ], [ -75.233983, 39.955577 ], [ -75.234101, 39.955037 ], [ -75.23423, 39.954533 ], [ -75.234313, 39.953994 ], [ -75.234413, 39.953534 ], [ -75.234524, 39.952988 ], [ -75.234629, 39.95247 ], [ -75.23471, 39.952248 ], [ -75.234732, 39.952016 ], [ -75.234844, 39.951446 ], [ -75.234955, 39.950897 ], [ -75.235053, 39.950462 ], [ -75.23516, 39.949966 ], [ -75.235343, 39.949194 ], [ -75.235495, 39.948436 ], [ -75.235586, 39.947891 ], [ -75.235683, 39.947448 ], [ -75.235787, 39.946917 ], [ -75.235704, 39.946906 ], [ -75.235595, 39.946881 ], [ -75.235537, 39.946859 ], [ -75.236184, 39.946698 ], [ -75.236508, 39.946619 ], [ -75.236671, 39.946577 ], [ -75.236871, 39.946532 ], [ -75.2371, 39.946483 ], [ -75.237254, 39.946453 ], [ -75.237768, 39.946355 ], [ -75.237926, 39.946324 ], [ -75.238689, 39.946171 ], [ -75.239322, 39.946042 ], [ -75.240034, 39.94591 ], [ -75.240106, 39.945894 ], [ -75.240157, 39.945882 ], [ -75.240265, 39.945857 ], [ -75.240195, 39.945816 ], [ -75.240145, 39.945777 ], [ -75.240043, 39.945681 ], [ -75.239738, 39.945397 ], [ -75.2397, 39.945361 ], [ -75.239197, 39.944935 ], [ -75.238894, 39.944684 ], [ -75.238616, 39.944466 ], [ -75.238457, 39.944342 ], [ -75.238214, 39.94414 ], [ -75.237832, 39.943836 ], [ -75.237115, 39.943225 ], [ -75.236436, 39.942664 ], [ -75.236421, 39.942651 ], [ -75.235731, 39.942043 ], [ -75.235051, 39.941469 ], [ -75.234569, 39.941084 ], [ -75.234327, 39.940897 ], [ -75.234132, 39.940756 ], [ -75.233802, 39.940479 ], [ -75.233618, 39.940325 ], [ -75.233469, 39.940176 ], [ -75.233358, 39.940059 ], [ -75.233217, 39.939904 ], [ -75.233135, 39.939812 ], [ -75.233009, 39.939668 ], [ -75.232799, 39.939432 ], [ -75.232629, 39.939242 ], [ -75.232609, 39.93922 ], [ -75.232562, 39.939176 ], [ -75.232391, 39.939018 ], [ -75.231757, 39.938469 ], [ -75.23111, 39.93794 ], [ -75.230622, 39.937525 ], [ -75.230541, 39.937457 ], [ -75.230218, 39.937186 ], [ -75.229712, 39.936764 ], [ -75.229126, 39.936254 ], [ -75.228714, 39.935903 ], [ -75.228522, 39.935739 ], [ -75.228394, 39.935633 ], [ -75.227398, 39.9348 ], [ -75.227284, 39.934704 ], [ -75.227267, 39.934689 ], [ -75.226884, 39.934368 ], [ -75.22585, 39.933498 ], [ -75.224573, 39.93244 ], [ -75.2253, 39.931929 ], [ -75.225833, 39.931553 ], [ -75.227156, 39.930622 ], [ -75.227573, 39.930332 ], [ -75.227638, 39.930288 ], [ -75.227758, 39.930203 ], [ -75.22818, 39.929908 ], [ -75.228717, 39.929522 ], [ -75.229232, 39.929157 ], [ -75.229412, 39.929038 ], [ -75.230232, 39.928463 ], [ -75.230656, 39.928163 ], [ -75.230464, 39.928007 ], [ -75.230024, 39.927667 ], [ -75.229395, 39.927198 ], [ -75.228841, 39.926773 ], [ -75.228735, 39.926691 ], [ -75.228665, 39.926629 ], [ -75.228624, 39.926604 ], [ -75.228554, 39.926549 ], [ -75.228483, 39.92649 ], [ -75.227937, 39.926048 ], [ -75.227741, 39.925908 ], [ -75.227468, 39.925701 ], [ -75.226984, 39.925326 ], [ -75.226745, 39.925151 ], [ -75.226471, 39.924982 ], [ -75.22634, 39.925075 ], [ -75.226216, 39.924974 ], [ -75.225631, 39.924422 ], [ -75.224936, 39.923832 ], [ -75.224286, 39.923291 ], [ -75.223872, 39.922954 ], [ -75.22361, 39.922717 ], [ -75.223828, 39.922484 ], [ -75.224064, 39.922284 ], [ -75.224933, 39.921693 ], [ -75.224739, 39.921529 ], [ -75.224217, 39.921096 ], [ -75.224167, 39.921063 ], [ -75.224111, 39.92102 ], [ -75.223998, 39.920933 ], [ -75.223796, 39.920762 ], [ -75.223512, 39.920519 ], [ -75.223123, 39.920207 ], [ -75.222989, 39.920099 ], [ -75.222883, 39.920021 ], [ -75.222762, 39.919939 ], [ -75.222272, 39.919739 ], [ -75.222103, 39.91967 ], [ -75.221858, 39.91957 ], [ -75.219209, 39.918471 ], [ -75.21676, 39.917478 ], [ -75.21664, 39.917429 ], [ -75.21655, 39.917392 ], [ -75.216377, 39.917323 ], [ -75.216348, 39.917293 ], [ -75.216284, 39.917237 ], [ -75.216211, 39.917187 ], [ -75.216084, 39.9171 ], [ -75.21603, 39.917055 ], [ -75.215989, 39.917016 ], [ -75.215978, 39.917003 ], [ -75.215951, 39.916973 ], [ -75.215932, 39.916945 ], [ -75.215847, 39.916962 ], [ -75.215692, 39.91699 ], [ -75.215457, 39.917033 ], [ -75.215162, 39.917086 ], [ -75.209941, 39.918054 ], [ -75.209807, 39.918023 ], [ -75.209315, 39.9181 ], [ -75.20918, 39.918122 ], [ -75.208975, 39.918154 ], [ -75.208749, 39.918192 ], [ -75.208409, 39.918306 ], [ -75.208224, 39.918371 ], [ -75.207751, 39.918548 ], [ -75.207642, 39.918586 ], [ -75.207163, 39.91874 ], [ -75.206859, 39.918821 ], [ -75.206527, 39.918894 ], [ -75.205931, 39.919005 ], [ -75.205581, 39.919069 ], [ -75.204163, 39.919333 ], [ -75.202649, 39.919621 ], [ -75.20216, 39.919725 ], [ -75.201056, 39.919941 ], [ -75.200825, 39.919981 ], [ -75.19921, 39.920277 ], [ -75.197574, 39.920566 ], [ -75.196445, 39.920773 ], [ -75.195448, 39.920957 ], [ -75.195143, 39.921006 ], [ -75.195017, 39.921026 ], [ -75.1949, 39.92104 ], [ -75.194482, 39.921081 ], [ -75.194184, 39.921105 ], [ -75.193868, 39.921138 ], [ -75.192561, 39.921271 ], [ -75.192258, 39.921309 ], [ -75.191761, 39.921397 ], [ -75.191212, 39.921495 ], [ -75.191071, 39.921521 ], [ -75.191014, 39.921531 ], [ -75.190928, 39.92155 ], [ -75.190797, 39.921578 ], [ -75.190699, 39.921597 ], [ -75.190613, 39.92161 ], [ -75.190546, 39.921624 ], [ -75.190473, 39.921637 ], [ -75.190396, 39.921651 ], [ -75.190296, 39.921671 ], [ -75.189416, 39.920798 ], [ -75.189346, 39.920721 ], [ -75.189197, 39.920567 ], [ -75.188771, 39.920114 ], [ -75.188379, 39.919698 ], [ -75.188189, 39.919498 ], [ -75.188046, 39.919359 ], [ -75.187877, 39.919221 ], [ -75.187731, 39.919121 ], [ -75.187603, 39.919045 ], [ -75.187489, 39.918983 ], [ -75.187411, 39.918951 ], [ -75.187321, 39.918912 ], [ -75.187099, 39.918837 ], [ -75.186962, 39.918799 ], [ -75.186786, 39.918762 ], [ -75.186735, 39.918754 ], [ -75.186557, 39.918727 ], [ -75.186281, 39.918686 ], [ -75.186184, 39.918676 ], [ -75.186069, 39.918664 ], [ -75.1844, 39.918431 ], [ -75.182823, 39.918248 ], [ -75.181433, 39.918053 ], [ -75.180915, 39.917981 ], [ -75.180465, 39.91792 ], [ -75.180137, 39.917876 ], [ -75.179322, 39.917778 ], [ -75.178339, 39.917667 ], [ -75.177742, 39.917598 ], [ -75.17718, 39.917522 ], [ -75.176942, 39.917488 ], [ -75.176705, 39.91746 ], [ -75.176172, 39.917386 ], [ -75.175613, 39.917318 ], [ -75.175396, 39.917288 ], [ -75.175125, 39.917252 ], [ -75.17461, 39.917186 ], [ -75.174452, 39.917166 ], [ -75.174084, 39.917119 ], [ -75.17357, 39.91706 ], [ -75.173025, 39.916992 ], [ -75.172519, 39.916928 ], [ -75.172338, 39.916909 ], [ -75.17201, 39.916866 ], [ -75.17143, 39.916791 ], [ -75.171294, 39.916776 ], [ -75.17099, 39.916743 ], [ -75.170642, 39.916694 ], [ -75.170211, 39.91664 ], [ -75.169764, 39.916575 ], [ -75.169557, 39.916545 ], [ -75.169263, 39.916503 ], [ -75.168725, 39.91643 ], [ -75.168629, 39.916421 ], [ -75.168206, 39.916367 ], [ -75.167586, 39.916287 ], [ -75.167541, 39.916281 ], [ -75.167126, 39.916233 ], [ -75.1669, 39.916207 ], [ -75.166626, 39.916173 ], [ -75.166259, 39.916125 ], [ -75.166103, 39.916106 ], [ -75.165578, 39.916045 ], [ -75.165225, 39.916 ], [ -75.165066, 39.91598 ], [ -75.16454, 39.915909 ], [ -75.164014, 39.915845 ], [ -75.163834, 39.915817 ], [ -75.163708, 39.9158 ], [ -75.163541, 39.915777 ], [ -75.163285, 39.915744 ], [ -75.162925, 39.915697 ], [ -75.162847, 39.915683 ], [ -75.162612, 39.915652 ], [ -75.162403, 39.915625 ], [ -75.162179, 39.915594 ], [ -75.161953, 39.915563 ], [ -75.161493, 39.915495 ], [ -75.161387, 39.915486 ], [ -75.160839, 39.915416 ], [ -75.160503, 39.915373 ], [ -75.160385, 39.915362 ], [ -75.159859, 39.915297 ], [ -75.159298, 39.915231 ], [ -75.159223, 39.915223 ], [ -75.158814, 39.915169 ], [ -75.158671, 39.915154 ], [ -75.158276, 39.915103 ], [ -75.158105, 39.915078 ], [ -75.157749, 39.915034 ], [ -75.157474, 39.914992 ], [ -75.157125, 39.914941 ], [ -75.156709, 39.914886 ], [ -75.155986, 39.914793 ], [ -75.155054, 39.914669 ], [ -75.154187, 39.91456 ], [ -75.153617, 39.914482 ], [ -75.153178, 39.914422 ], [ -75.152759, 39.914369 ], [ -75.152641, 39.914355 ], [ -75.152378, 39.914318 ], [ -75.152059, 39.914275 ], [ -75.151969, 39.914263 ], [ -75.151551, 39.914215 ], [ -75.151034, 39.914154 ], [ -75.150648, 39.9141 ], [ -75.150538, 39.914085 ], [ -75.150005, 39.914015 ], [ -75.150058, 39.913804 ], [ -75.150097, 39.913656 ], [ -75.150168, 39.913376 ], [ -75.150384, 39.912534 ], [ -75.150441, 39.9123 ], [ -75.150466, 39.912196 ], [ -75.150499, 39.912054 ], [ -75.150514, 39.911989 ], [ -75.150556, 39.911773 ], [ -75.150606, 39.911522 ], [ -75.15066, 39.911269 ], [ -75.150693, 39.911114 ], [ -75.150713, 39.911021 ], [ -75.150786, 39.910647 ], [ -75.150839, 39.910391 ], [ -75.150849, 39.910346 ], [ -75.150939, 39.909963 ], [ -75.150973, 39.909822 ], [ -75.15099, 39.909754 ], [ -75.151001, 39.909709 ], [ -75.15109, 39.90934 ], [ -75.1511, 39.909296 ], [ -75.151174, 39.908977 ], [ -75.151195, 39.90888 ], [ -75.15122, 39.908763 ], [ -75.15123, 39.908685 ], [ -75.151234, 39.908631 ], [ -75.151237, 39.908491 ], [ -75.151238, 39.908314 ], [ -75.151234, 39.908158 ], [ -75.15123, 39.908026 ], [ -75.151226, 39.907959 ], [ -75.151226, 39.907795 ], [ -75.151229, 39.907683 ], [ -75.151237, 39.907492 ], [ -75.151238, 39.907402 ], [ -75.151243, 39.907264 ], [ -75.151253, 39.907119 ], [ -75.151269, 39.907038 ], [ -75.151349, 39.906657 ], [ -75.151401, 39.906407 ], [ -75.151566, 39.905628 ], [ -75.151693, 39.905055 ], [ -75.151827, 39.904449 ], [ -75.151967, 39.903737 ], [ -75.15203, 39.903495 ], [ -75.152068, 39.903351 ], [ -75.15224, 39.902701 ], [ -75.152428, 39.902727 ], [ -75.152634, 39.902755 ], [ -75.152721, 39.90273 ], [ -75.152924, 39.902756 ], [ -75.153154, 39.902784 ], [ -75.153959, 39.902883 ], [ -75.154195, 39.902912 ], [ -75.154727, 39.902978 ], [ -75.155266, 39.903044 ], [ -75.155732, 39.903102 ], [ -75.156277, 39.903169 ], [ -75.156761, 39.903232 ], [ -75.157719, 39.903356 ], [ -75.157891, 39.903378 ], [ -75.15844, 39.903448 ], [ -75.158935, 39.903513 ], [ -75.159103, 39.903535 ], [ -75.161531, 39.903851 ], [ -75.16177, 39.903882 ], [ -75.162296, 39.903951 ], [ -75.161998, 39.905283 ], [ -75.161778, 39.906261 ], [ -75.161388, 39.908173 ], [ -75.161155, 39.909354 ], [ -75.160323, 39.909096 ], [ -75.160034, 39.909006 ], [ -75.158301, 39.908469 ], [ -75.15811, 39.908412 ], [ -75.157884, 39.908356 ], [ -75.157653, 39.908311 ], [ -75.157388, 39.908272 ], [ -75.155538, 39.908038 ], [ -75.1552, 39.907995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307910", "route_id": "66" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.981433, 40.064395 ], [ -74.981533, 40.064504 ], [ -74.981675, 40.064824 ], [ -74.982092, 40.064743 ], [ -74.982294, 40.064704 ], [ -74.98252, 40.06466 ], [ -74.982661, 40.064625 ], [ -74.982697, 40.064615 ], [ -74.982998, 40.06453 ], [ -74.983265, 40.064451 ], [ -74.983465, 40.064389 ], [ -74.983575, 40.064355 ], [ -74.983772, 40.064285 ], [ -74.98395, 40.064212 ], [ -74.984211, 40.064091 ], [ -74.984434, 40.063978 ], [ -74.984753, 40.063815 ], [ -74.985, 40.063673 ], [ -74.985166, 40.063579 ], [ -74.985247, 40.063533 ], [ -74.98552, 40.063379 ], [ -74.985736, 40.063249 ], [ -74.985985, 40.063098 ], [ -74.986312, 40.062903 ], [ -74.986639, 40.062706 ], [ -74.986927, 40.062534 ], [ -74.987027, 40.062474 ], [ -74.987116, 40.062418 ], [ -74.987248, 40.062335 ], [ -74.987478, 40.062194 ], [ -74.987791, 40.062003 ], [ -74.987972, 40.061893 ], [ -74.98837, 40.061651 ], [ -74.988552, 40.061538 ], [ -74.988922, 40.061318 ], [ -74.989078, 40.061222 ], [ -74.989623, 40.060894 ], [ -74.989961, 40.060689 ], [ -74.990427, 40.060396 ], [ -74.990575, 40.060303 ], [ -74.990715, 40.060216 ], [ -74.990811, 40.060161 ], [ -74.990916, 40.060151 ], [ -74.991008, 40.060107 ], [ -74.991171, 40.060024 ], [ -74.991301, 40.059961 ], [ -74.991385, 40.059926 ], [ -74.99143, 40.059878 ], [ -74.991519, 40.059849 ], [ -74.991635, 40.059811 ], [ -74.991995, 40.059715 ], [ -74.992931, 40.059456 ], [ -74.99304, 40.059429 ], [ -74.993151, 40.059401 ], [ -74.993263, 40.05937 ], [ -74.993386, 40.059337 ], [ -74.994046, 40.059162 ], [ -74.994601, 40.059021 ], [ -74.994689, 40.058997 ], [ -74.994785, 40.058974 ], [ -74.995148, 40.058883 ], [ -74.995633, 40.05876 ], [ -74.996926, 40.058433 ], [ -74.997044, 40.058402 ], [ -74.997164, 40.058371 ], [ -74.997588, 40.058262 ], [ -74.997689, 40.058236 ], [ -74.99779, 40.058209 ], [ -74.998256, 40.058088 ], [ -74.998573, 40.058001 ], [ -74.999232, 40.057818 ], [ -74.999338, 40.05779 ], [ -74.99944, 40.057761 ], [ -74.999833, 40.057646 ], [ -74.999946, 40.057614 ], [ -75.000057, 40.057582 ], [ -75.000261, 40.057521 ], [ -75.00035, 40.057494 ], [ -75.000469, 40.057461 ], [ -75.000558, 40.057435 ], [ -75.000644, 40.05741 ], [ -75.000798, 40.057365 ], [ -75.000945, 40.057322 ], [ -75.00104, 40.057291 ], [ -75.001111, 40.057263 ], [ -75.001173, 40.057229 ], [ -75.001341, 40.057125 ], [ -75.001614, 40.056942 ], [ -75.001697, 40.056885 ], [ -75.001784, 40.056826 ], [ -75.002079, 40.056622 ], [ -75.002468, 40.056353 ], [ -75.002985, 40.055996 ], [ -75.003069, 40.055938 ], [ -75.00316, 40.055875 ], [ -75.003368, 40.055734 ], [ -75.003584, 40.055586 ], [ -75.004153, 40.055194 ], [ -75.004241, 40.055133 ], [ -75.004325, 40.055074 ], [ -75.004804, 40.054744 ], [ -75.005546, 40.054194 ], [ -75.005684, 40.054082 ], [ -75.005848, 40.053958 ], [ -75.005903, 40.053913 ], [ -75.005995, 40.053837 ], [ -75.006075, 40.053775 ], [ -75.006154, 40.053712 ], [ -75.006463, 40.053478 ], [ -75.007215, 40.052904 ], [ -75.007404, 40.052761 ], [ -75.007488, 40.052696 ], [ -75.007567, 40.052637 ], [ -75.007707, 40.05253 ], [ -75.007897, 40.052385 ], [ -75.007978, 40.052324 ], [ -75.008129, 40.052202 ], [ -75.008313, 40.052053 ], [ -75.00842, 40.051969 ], [ -75.008527, 40.051884 ], [ -75.008613, 40.051817 ], [ -75.008695, 40.051753 ], [ -75.009048, 40.051477 ], [ -75.009191, 40.051365 ], [ -75.009655, 40.051 ], [ -75.00971, 40.050956 ], [ -75.009796, 40.050888 ], [ -75.009977, 40.050746 ], [ -75.010157, 40.050604 ], [ -75.010319, 40.050474 ], [ -75.01048, 40.050343 ], [ -75.010554, 40.050283 ], [ -75.010628, 40.050222 ], [ -75.01108, 40.049856 ], [ -75.011532, 40.04949 ], [ -75.011969, 40.049132 ], [ -75.012266, 40.048887 ], [ -75.012338, 40.048829 ], [ -75.012404, 40.048778 ], [ -75.013055, 40.048261 ], [ -75.013143, 40.04819 ], [ -75.013229, 40.048123 ], [ -75.013246, 40.048108 ], [ -75.01344, 40.04795 ], [ -75.013567, 40.047844 ], [ -75.013621, 40.047802 ], [ -75.013682, 40.047751 ], [ -75.013883, 40.047587 ], [ -75.014018, 40.047475 ], [ -75.014218, 40.047321 ], [ -75.014381, 40.047194 ], [ -75.014481, 40.047117 ], [ -75.014668, 40.046972 ], [ -75.014839, 40.046837 ], [ -75.014904, 40.046789 ], [ -75.014997, 40.046721 ], [ -75.015391, 40.046427 ], [ -75.015694, 40.046191 ], [ -75.015845, 40.046078 ], [ -75.015999, 40.045961 ], [ -75.016218, 40.045797 ], [ -75.016392, 40.045666 ], [ -75.016506, 40.045579 ], [ -75.016646, 40.045471 ], [ -75.017074, 40.045147 ], [ -75.017309, 40.044968 ], [ -75.017377, 40.044917 ], [ -75.01747, 40.044846 ], [ -75.018535, 40.044057 ], [ -75.018701, 40.043955 ], [ -75.01886, 40.043866 ], [ -75.019025, 40.043788 ], [ -75.019134, 40.043742 ], [ -75.019257, 40.0437 ], [ -75.01938, 40.043658 ], [ -75.019526, 40.043619 ], [ -75.019631, 40.043599 ], [ -75.01975, 40.043579 ], [ -75.019885, 40.043557 ], [ -75.019992, 40.04354 ], [ -75.020116, 40.043524 ], [ -75.020223, 40.043513 ], [ -75.020327, 40.04351 ], [ -75.020412, 40.043513 ], [ -75.020515, 40.043521 ], [ -75.020594, 40.043529 ], [ -75.020697, 40.04354 ], [ -75.020747, 40.043548 ], [ -75.021425, 40.04364 ], [ -75.021509, 40.043649 ], [ -75.021538, 40.043653 ], [ -75.021633, 40.043659 ], [ -75.021702, 40.043663 ], [ -75.021731, 40.043662 ], [ -75.021779, 40.043662 ], [ -75.021859, 40.043655 ], [ -75.021962, 40.043635 ], [ -75.022077, 40.043597 ], [ -75.022438, 40.043467 ], [ -75.023212, 40.043188 ], [ -75.023493, 40.043087 ], [ -75.023893, 40.042943 ], [ -75.024751, 40.042632 ], [ -75.025599, 40.042323 ], [ -75.026195, 40.042105 ], [ -75.028278, 40.04135 ], [ -75.028598, 40.041233 ], [ -75.028812, 40.041155 ], [ -75.028992, 40.041089 ], [ -75.029973, 40.040731 ], [ -75.030057, 40.0407 ], [ -75.030137, 40.04067 ], [ -75.030835, 40.040414 ], [ -75.031347, 40.040236 ], [ -75.031523, 40.040169 ], [ -75.031703, 40.040102 ], [ -75.031789, 40.040071 ], [ -75.031877, 40.040037 ], [ -75.032134, 40.039942 ], [ -75.032437, 40.039828 ], [ -75.032557, 40.039783 ], [ -75.032671, 40.039744 ], [ -75.032972, 40.039639 ], [ -75.033428, 40.039477 ], [ -75.033622, 40.039409 ], [ -75.033866, 40.039322 ], [ -75.033926, 40.0393 ], [ -75.034, 40.039274 ], [ -75.034356, 40.039148 ], [ -75.034463, 40.039108 ], [ -75.034573, 40.039068 ], [ -75.034668, 40.039033 ], [ -75.034802, 40.038982 ], [ -75.034879, 40.038955 ], [ -75.034979, 40.038919 ], [ -75.035313, 40.038796 ], [ -75.035585, 40.038696 ], [ -75.035786, 40.038624 ], [ -75.03584, 40.038605 ], [ -75.035904, 40.038581 ], [ -75.036079, 40.038518 ], [ -75.036259, 40.038454 ], [ -75.036439, 40.038388 ], [ -75.036745, 40.038275 ], [ -75.036853, 40.038235 ], [ -75.036985, 40.038187 ], [ -75.037125, 40.038136 ], [ -75.037251, 40.038089 ], [ -75.037379, 40.038041 ], [ -75.03744, 40.038018 ], [ -75.037506, 40.037994 ], [ -75.037742, 40.037906 ], [ -75.037976, 40.037819 ], [ -75.038157, 40.037752 ], [ -75.038406, 40.037662 ], [ -75.038681, 40.037562 ], [ -75.038845, 40.037504 ], [ -75.039058, 40.037428 ], [ -75.039279, 40.037351 ], [ -75.039716, 40.037191 ], [ -75.039876, 40.03713 ], [ -75.04011, 40.037043 ], [ -75.040502, 40.036894 ], [ -75.040584, 40.03686 ], [ -75.040706, 40.036806 ], [ -75.040798, 40.036764 ], [ -75.040827, 40.036752 ], [ -75.041309, 40.036536 ], [ -75.041473, 40.036463 ], [ -75.041691, 40.036359 ], [ -75.04208, 40.036155 ], [ -75.042221, 40.03608 ], [ -75.042439, 40.035965 ], [ -75.04262, 40.035872 ], [ -75.042836, 40.035759 ], [ -75.042926, 40.035712 ], [ -75.043041, 40.035653 ], [ -75.043199, 40.03557 ], [ -75.043939, 40.035167 ], [ -75.044045, 40.035109 ], [ -75.044319, 40.034963 ], [ -75.0445, 40.034869 ], [ -75.044738, 40.034741 ], [ -75.044795, 40.034714 ], [ -75.044848, 40.034684 ], [ -75.045293, 40.034447 ], [ -75.045385, 40.034397 ], [ -75.045473, 40.034351 ], [ -75.045785, 40.034183 ], [ -75.045915, 40.03411 ], [ -75.046067, 40.034023 ], [ -75.046172, 40.03397 ], [ -75.04627, 40.033918 ], [ -75.046326, 40.033888 ], [ -75.046533, 40.033791 ], [ -75.046579, 40.033771 ], [ -75.046712, 40.033719 ], [ -75.046788, 40.033688 ], [ -75.046975, 40.033609 ], [ -75.04705, 40.033577 ], [ -75.047153, 40.033533 ], [ -75.047255, 40.03349 ], [ -75.047334, 40.033459 ], [ -75.047345, 40.033455 ], [ -75.047427, 40.033422 ], [ -75.047513, 40.033391 ], [ -75.047615, 40.03335 ], [ -75.047748, 40.033297 ], [ -75.048227, 40.033127 ], [ -75.048574, 40.033003 ], [ -75.048712, 40.032958 ], [ -75.04915, 40.032833 ], [ -75.049233, 40.032809 ], [ -75.049315, 40.032785 ], [ -75.049735, 40.032665 ], [ -75.049908, 40.032619 ], [ -75.050423, 40.032475 ], [ -75.050485, 40.032458 ], [ -75.050546, 40.032441 ], [ -75.050781, 40.032374 ], [ -75.050983, 40.032318 ], [ -75.051247, 40.032247 ], [ -75.05151, 40.032177 ], [ -75.051594, 40.032154 ], [ -75.051686, 40.032129 ], [ -75.052613, 40.031878 ], [ -75.053033, 40.031769 ], [ -75.05312, 40.031743 ], [ -75.053167, 40.031728 ], [ -75.053209, 40.031707 ], [ -75.053283, 40.031673 ], [ -75.053301, 40.031663 ], [ -75.053323, 40.031653 ], [ -75.053458, 40.031582 ], [ -75.053473, 40.031574 ], [ -75.053811, 40.031358 ], [ -75.053827, 40.031347 ], [ -75.053981, 40.031245 ], [ -75.054084, 40.031175 ], [ -75.054459, 40.030909 ], [ -75.05467, 40.030756 ], [ -75.054835, 40.030619 ], [ -75.054954, 40.030515 ], [ -75.055144, 40.030349 ], [ -75.055208, 40.030291 ], [ -75.055286, 40.03022 ], [ -75.055357, 40.030152 ], [ -75.055428, 40.030083 ], [ -75.055556, 40.029962 ], [ -75.055692, 40.029833 ], [ -75.055827, 40.029706 ], [ -75.055894, 40.029643 ], [ -75.055959, 40.029589 ], [ -75.056024, 40.029534 ], [ -75.056129, 40.029447 ], [ -75.056266, 40.029349 ], [ -75.056342, 40.029294 ], [ -75.056479, 40.029197 ], [ -75.056503, 40.02918 ], [ -75.056682, 40.029061 ], [ -75.056833, 40.02898 ], [ -75.056885, 40.028954 ], [ -75.056936, 40.028929 ], [ -75.057043, 40.028879 ], [ -75.057135, 40.028839 ], [ -75.057244, 40.028791 ], [ -75.057464, 40.028704 ], [ -75.057907, 40.028529 ], [ -75.0581, 40.028444 ], [ -75.058302, 40.028354 ], [ -75.058376, 40.028324 ], [ -75.058472, 40.028326 ], [ -75.058559, 40.028293 ], [ -75.058626, 40.028263 ], [ -75.058994, 40.028116 ], [ -75.05922, 40.028038 ], [ -75.059303, 40.028016 ], [ -75.059372, 40.027998 ], [ -75.059476, 40.027965 ], [ -75.059566, 40.027904 ], [ -75.059636, 40.027892 ], [ -75.059712, 40.02788 ], [ -75.059797, 40.027867 ], [ -75.059857, 40.02786 ], [ -75.06011, 40.02783 ], [ -75.060254, 40.027809 ], [ -75.060397, 40.027788 ], [ -75.060909, 40.027713 ], [ -75.061303, 40.027656 ], [ -75.061407, 40.027639 ], [ -75.061512, 40.027622 ], [ -75.061729, 40.027588 ], [ -75.061865, 40.027567 ], [ -75.062062, 40.027536 ], [ -75.062214, 40.027516 ], [ -75.062384, 40.027493 ], [ -75.062424, 40.027488 ], [ -75.062505, 40.02748 ], [ -75.062672, 40.02746 ], [ -75.062959, 40.027421 ], [ -75.06313, 40.027393 ], [ -75.064111, 40.027238 ], [ -75.064344, 40.027201 ], [ -75.065022, 40.027094 ], [ -75.065076, 40.027085 ], [ -75.065246, 40.027061 ], [ -75.065424, 40.027035 ], [ -75.065521, 40.027019 ], [ -75.066046, 40.026939 ], [ -75.066276, 40.026904 ], [ -75.066679, 40.026843 ], [ -75.067127, 40.02677 ], [ -75.067181, 40.026756 ], [ -75.06721, 40.026748 ], [ -75.067303, 40.02673 ], [ -75.067331, 40.026723 ], [ -75.067979, 40.026581 ], [ -75.068378, 40.026495 ], [ -75.068803, 40.0264 ], [ -75.069441, 40.02626 ], [ -75.06987, 40.026165 ], [ -75.072045, 40.025672 ], [ -75.072507, 40.025567 ], [ -75.07325, 40.025398 ], [ -75.073379, 40.025371 ], [ -75.073482, 40.02533 ], [ -75.073563, 40.025293 ], [ -75.07367, 40.025241 ], [ -75.0739, 40.025112 ], [ -75.07421, 40.024927 ], [ -75.075189, 40.024339 ], [ -75.075527, 40.024135 ], [ -75.075644, 40.024066 ], [ -75.075682, 40.024044 ], [ -75.075729, 40.024015 ], [ -75.075993, 40.023835 ], [ -75.076522, 40.023478 ], [ -75.07685, 40.023261 ], [ -75.077042, 40.023131 ], [ -75.07716, 40.023137 ], [ -75.077251, 40.023152 ], [ -75.077289, 40.023172 ], [ -75.077304, 40.0232 ], [ -75.077304, 40.02325 ], [ -75.077289, 40.02335 ], [ -75.077255, 40.023554 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307912", "route_id": "66" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.005433, 40.053883 ], [ -75.005684, 40.054082 ], [ -75.005848, 40.053958 ], [ -75.005903, 40.053913 ], [ -75.005995, 40.053837 ], [ -75.006075, 40.053775 ], [ -75.006154, 40.053712 ], [ -75.006463, 40.053478 ], [ -75.007215, 40.052904 ], [ -75.007404, 40.052761 ], [ -75.007488, 40.052696 ], [ -75.007567, 40.052637 ], [ -75.007707, 40.05253 ], [ -75.007897, 40.052385 ], [ -75.007978, 40.052324 ], [ -75.008129, 40.052202 ], [ -75.008313, 40.052053 ], [ -75.00842, 40.051969 ], [ -75.008527, 40.051884 ], [ -75.008613, 40.051817 ], [ -75.008695, 40.051753 ], [ -75.009048, 40.051477 ], [ -75.009191, 40.051365 ], [ -75.009655, 40.051 ], [ -75.00971, 40.050956 ], [ -75.009796, 40.050888 ], [ -75.009977, 40.050746 ], [ -75.010157, 40.050604 ], [ -75.010319, 40.050474 ], [ -75.01048, 40.050343 ], [ -75.010554, 40.050283 ], [ -75.010628, 40.050222 ], [ -75.01108, 40.049856 ], [ -75.011532, 40.04949 ], [ -75.011969, 40.049132 ], [ -75.012266, 40.048887 ], [ -75.012338, 40.048829 ], [ -75.012404, 40.048778 ], [ -75.013055, 40.048261 ], [ -75.013143, 40.04819 ], [ -75.013229, 40.048123 ], [ -75.013246, 40.048108 ], [ -75.01344, 40.04795 ], [ -75.013567, 40.047844 ], [ -75.013621, 40.047802 ], [ -75.013682, 40.047751 ], [ -75.013883, 40.047587 ], [ -75.014018, 40.047475 ], [ -75.014218, 40.047321 ], [ -75.014381, 40.047194 ], [ -75.014481, 40.047117 ], [ -75.014668, 40.046972 ], [ -75.014839, 40.046837 ], [ -75.014904, 40.046789 ], [ -75.014997, 40.046721 ], [ -75.015391, 40.046427 ], [ -75.015694, 40.046191 ], [ -75.015845, 40.046078 ], [ -75.015999, 40.045961 ], [ -75.016218, 40.045797 ], [ -75.016392, 40.045666 ], [ -75.016506, 40.045579 ], [ -75.016646, 40.045471 ], [ -75.017074, 40.045147 ], [ -75.017309, 40.044968 ], [ -75.017377, 40.044917 ], [ -75.01747, 40.044846 ], [ -75.018535, 40.044057 ], [ -75.018701, 40.043955 ], [ -75.01886, 40.043866 ], [ -75.019025, 40.043788 ], [ -75.019134, 40.043742 ], [ -75.019257, 40.0437 ], [ -75.01938, 40.043658 ], [ -75.019526, 40.043619 ], [ -75.019631, 40.043599 ], [ -75.01975, 40.043579 ], [ -75.019885, 40.043557 ], [ -75.019992, 40.04354 ], [ -75.020116, 40.043524 ], [ -75.020223, 40.043513 ], [ -75.020327, 40.04351 ], [ -75.020412, 40.043513 ], [ -75.020515, 40.043521 ], [ -75.020594, 40.043529 ], [ -75.020697, 40.04354 ], [ -75.020747, 40.043548 ], [ -75.021425, 40.04364 ], [ -75.021509, 40.043649 ], [ -75.021538, 40.043653 ], [ -75.021633, 40.043659 ], [ -75.021702, 40.043663 ], [ -75.021731, 40.043662 ], [ -75.021779, 40.043662 ], [ -75.021859, 40.043655 ], [ -75.021962, 40.043635 ], [ -75.022077, 40.043597 ], [ -75.022438, 40.043467 ], [ -75.023212, 40.043188 ], [ -75.023493, 40.043087 ], [ -75.023893, 40.042943 ], [ -75.024751, 40.042632 ], [ -75.025599, 40.042323 ], [ -75.026195, 40.042105 ], [ -75.028278, 40.04135 ], [ -75.028598, 40.041233 ], [ -75.028812, 40.041155 ], [ -75.028992, 40.041089 ], [ -75.029973, 40.040731 ], [ -75.030057, 40.0407 ], [ -75.030137, 40.04067 ], [ -75.030835, 40.040414 ], [ -75.031347, 40.040236 ], [ -75.031523, 40.040169 ], [ -75.031703, 40.040102 ], [ -75.031789, 40.040071 ], [ -75.031877, 40.040037 ], [ -75.032134, 40.039942 ], [ -75.032437, 40.039828 ], [ -75.032557, 40.039783 ], [ -75.032671, 40.039744 ], [ -75.032972, 40.039639 ], [ -75.033428, 40.039477 ], [ -75.033622, 40.039409 ], [ -75.033866, 40.039322 ], [ -75.033926, 40.0393 ], [ -75.034, 40.039274 ], [ -75.034356, 40.039148 ], [ -75.034463, 40.039108 ], [ -75.034573, 40.039068 ], [ -75.034668, 40.039033 ], [ -75.034802, 40.038982 ], [ -75.034879, 40.038955 ], [ -75.034979, 40.038919 ], [ -75.035313, 40.038796 ], [ -75.035585, 40.038696 ], [ -75.035786, 40.038624 ], [ -75.03584, 40.038605 ], [ -75.035904, 40.038581 ], [ -75.036079, 40.038518 ], [ -75.036259, 40.038454 ], [ -75.036439, 40.038388 ], [ -75.036745, 40.038275 ], [ -75.036853, 40.038235 ], [ -75.036985, 40.038187 ], [ -75.037125, 40.038136 ], [ -75.037251, 40.038089 ], [ -75.037379, 40.038041 ], [ -75.03744, 40.038018 ], [ -75.037506, 40.037994 ], [ -75.037742, 40.037906 ], [ -75.037976, 40.037819 ], [ -75.038157, 40.037752 ], [ -75.038406, 40.037662 ], [ -75.038681, 40.037562 ], [ -75.038845, 40.037504 ], [ -75.039058, 40.037428 ], [ -75.039279, 40.037351 ], [ -75.039716, 40.037191 ], [ -75.039876, 40.03713 ], [ -75.04011, 40.037043 ], [ -75.040502, 40.036894 ], [ -75.040584, 40.03686 ], [ -75.040706, 40.036806 ], [ -75.040798, 40.036764 ], [ -75.040827, 40.036752 ], [ -75.041309, 40.036536 ], [ -75.041473, 40.036463 ], [ -75.041691, 40.036359 ], [ -75.04208, 40.036155 ], [ -75.042221, 40.03608 ], [ -75.042439, 40.035965 ], [ -75.04262, 40.035872 ], [ -75.042836, 40.035759 ], [ -75.042926, 40.035712 ], [ -75.043041, 40.035653 ], [ -75.043199, 40.03557 ], [ -75.043939, 40.035167 ], [ -75.044045, 40.035109 ], [ -75.044319, 40.034963 ], [ -75.0445, 40.034869 ], [ -75.044738, 40.034741 ], [ -75.044795, 40.034714 ], [ -75.044848, 40.034684 ], [ -75.045293, 40.034447 ], [ -75.045385, 40.034397 ], [ -75.045473, 40.034351 ], [ -75.045785, 40.034183 ], [ -75.045915, 40.03411 ], [ -75.046067, 40.034023 ], [ -75.046172, 40.03397 ], [ -75.04627, 40.033918 ], [ -75.046326, 40.033888 ], [ -75.046533, 40.033791 ], [ -75.046579, 40.033771 ], [ -75.046712, 40.033719 ], [ -75.046788, 40.033688 ], [ -75.046975, 40.033609 ], [ -75.04705, 40.033577 ], [ -75.047153, 40.033533 ], [ -75.047255, 40.03349 ], [ -75.047334, 40.033459 ], [ -75.047345, 40.033455 ], [ -75.047427, 40.033422 ], [ -75.047513, 40.033391 ], [ -75.047615, 40.03335 ], [ -75.047748, 40.033297 ], [ -75.048227, 40.033127 ], [ -75.048574, 40.033003 ], [ -75.048712, 40.032958 ], [ -75.04915, 40.032833 ], [ -75.049233, 40.032809 ], [ -75.049315, 40.032785 ], [ -75.049735, 40.032665 ], [ -75.049908, 40.032619 ], [ -75.050423, 40.032475 ], [ -75.050485, 40.032458 ], [ -75.050546, 40.032441 ], [ -75.050781, 40.032374 ], [ -75.050983, 40.032318 ], [ -75.051247, 40.032247 ], [ -75.05151, 40.032177 ], [ -75.051594, 40.032154 ], [ -75.051686, 40.032129 ], [ -75.052613, 40.031878 ], [ -75.053033, 40.031769 ], [ -75.05312, 40.031743 ], [ -75.053167, 40.031728 ], [ -75.053209, 40.031707 ], [ -75.053283, 40.031673 ], [ -75.053301, 40.031663 ], [ -75.053323, 40.031653 ], [ -75.053458, 40.031582 ], [ -75.053473, 40.031574 ], [ -75.053811, 40.031358 ], [ -75.053827, 40.031347 ], [ -75.053981, 40.031245 ], [ -75.054084, 40.031175 ], [ -75.054459, 40.030909 ], [ -75.05467, 40.030756 ], [ -75.054835, 40.030619 ], [ -75.054954, 40.030515 ], [ -75.055144, 40.030349 ], [ -75.055208, 40.030291 ], [ -75.055286, 40.03022 ], [ -75.055357, 40.030152 ], [ -75.055428, 40.030083 ], [ -75.055556, 40.029962 ], [ -75.055692, 40.029833 ], [ -75.055827, 40.029706 ], [ -75.055894, 40.029643 ], [ -75.055959, 40.029589 ], [ -75.056024, 40.029534 ], [ -75.056129, 40.029447 ], [ -75.056266, 40.029349 ], [ -75.056342, 40.029294 ], [ -75.056479, 40.029197 ], [ -75.056503, 40.02918 ], [ -75.056682, 40.029061 ], [ -75.056833, 40.02898 ], [ -75.056885, 40.028954 ], [ -75.056936, 40.028929 ], [ -75.057043, 40.028879 ], [ -75.057135, 40.028839 ], [ -75.057244, 40.028791 ], [ -75.057464, 40.028704 ], [ -75.057907, 40.028529 ], [ -75.0581, 40.028444 ], [ -75.058302, 40.028354 ], [ -75.058376, 40.028324 ], [ -75.058472, 40.028326 ], [ -75.058559, 40.028293 ], [ -75.058626, 40.028263 ], [ -75.058994, 40.028116 ], [ -75.05922, 40.028038 ], [ -75.059303, 40.028016 ], [ -75.059372, 40.027998 ], [ -75.059476, 40.027965 ], [ -75.059566, 40.027904 ], [ -75.059636, 40.027892 ], [ -75.059712, 40.02788 ], [ -75.059797, 40.027867 ], [ -75.059857, 40.02786 ], [ -75.06011, 40.02783 ], [ -75.060254, 40.027809 ], [ -75.060397, 40.027788 ], [ -75.060909, 40.027713 ], [ -75.061303, 40.027656 ], [ -75.061407, 40.027639 ], [ -75.061512, 40.027622 ], [ -75.061729, 40.027588 ], [ -75.061865, 40.027567 ], [ -75.062062, 40.027536 ], [ -75.062214, 40.027516 ], [ -75.062384, 40.027493 ], [ -75.062424, 40.027488 ], [ -75.062505, 40.02748 ], [ -75.062672, 40.02746 ], [ -75.062959, 40.027421 ], [ -75.06313, 40.027393 ], [ -75.064111, 40.027238 ], [ -75.064344, 40.027201 ], [ -75.065022, 40.027094 ], [ -75.065076, 40.027085 ], [ -75.065246, 40.027061 ], [ -75.065424, 40.027035 ], [ -75.065521, 40.027019 ], [ -75.066046, 40.026939 ], [ -75.066276, 40.026904 ], [ -75.066679, 40.026843 ], [ -75.067127, 40.02677 ], [ -75.067181, 40.026756 ], [ -75.06721, 40.026748 ], [ -75.067303, 40.02673 ], [ -75.067331, 40.026723 ], [ -75.067979, 40.026581 ], [ -75.068378, 40.026495 ], [ -75.068803, 40.0264 ], [ -75.069441, 40.02626 ], [ -75.06987, 40.026165 ], [ -75.072045, 40.025672 ], [ -75.072507, 40.025567 ], [ -75.07325, 40.025398 ], [ -75.073379, 40.025371 ], [ -75.073482, 40.02533 ], [ -75.073563, 40.025293 ], [ -75.07367, 40.025241 ], [ -75.0739, 40.025112 ], [ -75.07421, 40.024927 ], [ -75.075189, 40.024339 ], [ -75.075527, 40.024135 ], [ -75.075644, 40.024066 ], [ -75.075682, 40.024044 ], [ -75.075729, 40.024015 ], [ -75.075993, 40.023835 ], [ -75.076522, 40.023478 ], [ -75.07685, 40.023261 ], [ -75.077042, 40.023131 ], [ -75.07716, 40.023137 ], [ -75.077251, 40.023152 ], [ -75.077289, 40.023172 ], [ -75.077304, 40.0232 ], [ -75.077304, 40.02325 ], [ -75.077289, 40.02335 ], [ -75.077255, 40.023554 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307914", "route_id": "66" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077255, 40.023554 ], [ -75.077196, 40.023851 ], [ -75.077171, 40.024009 ], [ -75.077143, 40.02407 ], [ -75.077114, 40.024115 ], [ -75.077018, 40.024113 ], [ -75.076795, 40.024107 ], [ -75.076776, 40.024262 ], [ -75.076736, 40.024539 ], [ -75.076657, 40.024997 ], [ -75.076623, 40.025151 ], [ -75.076566, 40.025439 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.07651, 40.025667 ], [ -75.076405, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075454, 40.027038 ], [ -75.075401, 40.027017 ], [ -75.075324, 40.026975 ], [ -75.075205, 40.026877 ], [ -75.074983, 40.026686 ], [ -75.074165, 40.026052 ], [ -75.073849, 40.025788 ], [ -75.073379, 40.025371 ], [ -75.07325, 40.025398 ], [ -75.072507, 40.025567 ], [ -75.072045, 40.025672 ], [ -75.06987, 40.026165 ], [ -75.069441, 40.02626 ], [ -75.068803, 40.0264 ], [ -75.068378, 40.026495 ], [ -75.067979, 40.026581 ], [ -75.067331, 40.026723 ], [ -75.067303, 40.02673 ], [ -75.06721, 40.026748 ], [ -75.067181, 40.026756 ], [ -75.067127, 40.02677 ], [ -75.066679, 40.026843 ], [ -75.066276, 40.026904 ], [ -75.066046, 40.026939 ], [ -75.065521, 40.027019 ], [ -75.065424, 40.027035 ], [ -75.065246, 40.027061 ], [ -75.065076, 40.027085 ], [ -75.065022, 40.027094 ], [ -75.064344, 40.027201 ], [ -75.064111, 40.027238 ], [ -75.06313, 40.027393 ], [ -75.062959, 40.027421 ], [ -75.062672, 40.02746 ], [ -75.062505, 40.02748 ], [ -75.062424, 40.027488 ], [ -75.062384, 40.027493 ], [ -75.062214, 40.027516 ], [ -75.062062, 40.027536 ], [ -75.061865, 40.027567 ], [ -75.061729, 40.027588 ], [ -75.061512, 40.027622 ], [ -75.061407, 40.027639 ], [ -75.061303, 40.027656 ], [ -75.060909, 40.027713 ], [ -75.060397, 40.027788 ], [ -75.060254, 40.027809 ], [ -75.06011, 40.02783 ], [ -75.059857, 40.02786 ], [ -75.059797, 40.027867 ], [ -75.059712, 40.02788 ], [ -75.059636, 40.027892 ], [ -75.059566, 40.027904 ], [ -75.059462, 40.027882 ], [ -75.059395, 40.02789 ], [ -75.059326, 40.027904 ], [ -75.059247, 40.027926 ], [ -75.059152, 40.027954 ], [ -75.058953, 40.028034 ], [ -75.05857, 40.028191 ], [ -75.058425, 40.028264 ], [ -75.058376, 40.028324 ], [ -75.058302, 40.028354 ], [ -75.0581, 40.028444 ], [ -75.057907, 40.028529 ], [ -75.057464, 40.028704 ], [ -75.057244, 40.028791 ], [ -75.057135, 40.028839 ], [ -75.057043, 40.028879 ], [ -75.056936, 40.028929 ], [ -75.056885, 40.028954 ], [ -75.056833, 40.02898 ], [ -75.056682, 40.029061 ], [ -75.056503, 40.02918 ], [ -75.056479, 40.029197 ], [ -75.056342, 40.029294 ], [ -75.056266, 40.029349 ], [ -75.056129, 40.029447 ], [ -75.056024, 40.029534 ], [ -75.055959, 40.029589 ], [ -75.055894, 40.029643 ], [ -75.055827, 40.029706 ], [ -75.055692, 40.029833 ], [ -75.055556, 40.029962 ], [ -75.055428, 40.030083 ], [ -75.055357, 40.030152 ], [ -75.055286, 40.03022 ], [ -75.055208, 40.030291 ], [ -75.055144, 40.030349 ], [ -75.054954, 40.030515 ], [ -75.054835, 40.030619 ], [ -75.05467, 40.030756 ], [ -75.054459, 40.030909 ], [ -75.054084, 40.031175 ], [ -75.053981, 40.031245 ], [ -75.053827, 40.031347 ], [ -75.053811, 40.031358 ], [ -75.053473, 40.031574 ], [ -75.053458, 40.031582 ], [ -75.053323, 40.031653 ], [ -75.053301, 40.031663 ], [ -75.053283, 40.031673 ], [ -75.053209, 40.031707 ], [ -75.053167, 40.031728 ], [ -75.05312, 40.031743 ], [ -75.053033, 40.031769 ], [ -75.052613, 40.031878 ], [ -75.051686, 40.032129 ], [ -75.051594, 40.032154 ], [ -75.05151, 40.032177 ], [ -75.051247, 40.032247 ], [ -75.050983, 40.032318 ], [ -75.050781, 40.032374 ], [ -75.050546, 40.032441 ], [ -75.050485, 40.032458 ], [ -75.050423, 40.032475 ], [ -75.049908, 40.032619 ], [ -75.049735, 40.032665 ], [ -75.049315, 40.032785 ], [ -75.049233, 40.032809 ], [ -75.04915, 40.032833 ], [ -75.048712, 40.032958 ], [ -75.048574, 40.033003 ], [ -75.048227, 40.033127 ], [ -75.047748, 40.033297 ], [ -75.047615, 40.03335 ], [ -75.047513, 40.033391 ], [ -75.047427, 40.033422 ], [ -75.047345, 40.033455 ], [ -75.047334, 40.033459 ], [ -75.047255, 40.03349 ], [ -75.047153, 40.033533 ], [ -75.04705, 40.033577 ], [ -75.046975, 40.033609 ], [ -75.046788, 40.033688 ], [ -75.046712, 40.033719 ], [ -75.046579, 40.033771 ], [ -75.046533, 40.033791 ], [ -75.046326, 40.033888 ], [ -75.04627, 40.033918 ], [ -75.046172, 40.03397 ], [ -75.046067, 40.034023 ], [ -75.045915, 40.03411 ], [ -75.045785, 40.034183 ], [ -75.045473, 40.034351 ], [ -75.045385, 40.034397 ], [ -75.045293, 40.034447 ], [ -75.044848, 40.034684 ], [ -75.044795, 40.034714 ], [ -75.044738, 40.034741 ], [ -75.0445, 40.034869 ], [ -75.044319, 40.034963 ], [ -75.044045, 40.035109 ], [ -75.043939, 40.035167 ], [ -75.043199, 40.03557 ], [ -75.043041, 40.035653 ], [ -75.042926, 40.035712 ], [ -75.042836, 40.035759 ], [ -75.04262, 40.035872 ], [ -75.042439, 40.035965 ], [ -75.042221, 40.03608 ], [ -75.04208, 40.036155 ], [ -75.041691, 40.036359 ], [ -75.041473, 40.036463 ], [ -75.041309, 40.036536 ], [ -75.040827, 40.036752 ], [ -75.040798, 40.036764 ], [ -75.040706, 40.036806 ], [ -75.040584, 40.03686 ], [ -75.040502, 40.036894 ], [ -75.04011, 40.037043 ], [ -75.039876, 40.03713 ], [ -75.039716, 40.037191 ], [ -75.039279, 40.037351 ], [ -75.039058, 40.037428 ], [ -75.038845, 40.037504 ], [ -75.038681, 40.037562 ], [ -75.038406, 40.037662 ], [ -75.038157, 40.037752 ], [ -75.037976, 40.037819 ], [ -75.037742, 40.037906 ], [ -75.037506, 40.037994 ], [ -75.03744, 40.038018 ], [ -75.037379, 40.038041 ], [ -75.037251, 40.038089 ], [ -75.037125, 40.038136 ], [ -75.036985, 40.038187 ], [ -75.036853, 40.038235 ], [ -75.036745, 40.038275 ], [ -75.036439, 40.038388 ], [ -75.036259, 40.038454 ], [ -75.036079, 40.038518 ], [ -75.035904, 40.038581 ], [ -75.03584, 40.038605 ], [ -75.035786, 40.038624 ], [ -75.035585, 40.038696 ], [ -75.035313, 40.038796 ], [ -75.034979, 40.038919 ], [ -75.034879, 40.038955 ], [ -75.034802, 40.038982 ], [ -75.034668, 40.039033 ], [ -75.034573, 40.039068 ], [ -75.034463, 40.039108 ], [ -75.034356, 40.039148 ], [ -75.034, 40.039274 ], [ -75.033926, 40.0393 ], [ -75.033866, 40.039322 ], [ -75.033622, 40.039409 ], [ -75.033428, 40.039477 ], [ -75.032972, 40.039639 ], [ -75.032671, 40.039744 ], [ -75.032557, 40.039783 ], [ -75.032437, 40.039828 ], [ -75.032134, 40.039942 ], [ -75.031877, 40.040037 ], [ -75.031789, 40.040071 ], [ -75.031703, 40.040102 ], [ -75.031523, 40.040169 ], [ -75.031347, 40.040236 ], [ -75.030835, 40.040414 ], [ -75.030137, 40.04067 ], [ -75.030057, 40.0407 ], [ -75.029973, 40.040731 ], [ -75.028992, 40.041089 ], [ -75.028812, 40.041155 ], [ -75.028598, 40.041233 ], [ -75.028278, 40.04135 ], [ -75.026196, 40.042106 ], [ -75.025599, 40.042323 ], [ -75.02475, 40.042633 ], [ -75.023893, 40.042943 ], [ -75.023493, 40.043087 ], [ -75.023212, 40.043188 ], [ -75.022438, 40.043467 ], [ -75.022077, 40.043597 ], [ -75.021962, 40.043634 ], [ -75.021859, 40.043655 ], [ -75.021778, 40.043661 ], [ -75.021731, 40.043662 ], [ -75.021702, 40.043663 ], [ -75.021634, 40.04366 ], [ -75.021538, 40.043653 ], [ -75.021509, 40.043649 ], [ -75.021425, 40.04364 ], [ -75.020748, 40.043548 ], [ -75.020697, 40.04354 ], [ -75.020594, 40.043528 ], [ -75.020515, 40.043521 ], [ -75.020412, 40.043513 ], [ -75.020327, 40.04351 ], [ -75.020223, 40.043513 ], [ -75.020116, 40.043524 ], [ -75.019992, 40.04354 ], [ -75.019885, 40.043558 ], [ -75.01975, 40.043579 ], [ -75.019631, 40.043599 ], [ -75.019526, 40.043619 ], [ -75.019379, 40.043658 ], [ -75.019257, 40.0437 ], [ -75.019134, 40.043742 ], [ -75.019025, 40.043788 ], [ -75.01886, 40.043866 ], [ -75.018701, 40.043955 ], [ -75.018536, 40.044056 ], [ -75.01747, 40.044846 ], [ -75.017376, 40.044916 ], [ -75.017309, 40.044968 ], [ -75.017074, 40.045147 ], [ -75.016646, 40.045471 ], [ -75.016506, 40.045579 ], [ -75.016392, 40.045666 ], [ -75.016218, 40.045797 ], [ -75.015999, 40.045961 ], [ -75.015845, 40.046078 ], [ -75.015694, 40.046191 ], [ -75.015391, 40.046427 ], [ -75.014997, 40.046721 ], [ -75.014904, 40.046789 ], [ -75.014839, 40.046837 ], [ -75.014668, 40.046972 ], [ -75.014481, 40.047117 ], [ -75.014381, 40.047194 ], [ -75.014218, 40.047321 ], [ -75.014018, 40.047475 ], [ -75.013883, 40.047587 ], [ -75.013682, 40.047751 ], [ -75.013621, 40.047802 ], [ -75.013567, 40.047844 ], [ -75.01344, 40.04795 ], [ -75.013246, 40.048108 ], [ -75.013229, 40.048123 ], [ -75.013143, 40.04819 ], [ -75.013055, 40.048261 ], [ -75.012404, 40.048778 ], [ -75.012338, 40.048829 ], [ -75.012266, 40.048887 ], [ -75.011969, 40.049132 ], [ -75.011532, 40.04949 ], [ -75.01108, 40.049856 ], [ -75.010628, 40.050222 ], [ -75.010554, 40.050283 ], [ -75.01048, 40.050343 ], [ -75.010319, 40.050474 ], [ -75.010157, 40.050604 ], [ -75.009977, 40.050746 ], [ -75.009796, 40.050888 ], [ -75.00971, 40.050956 ], [ -75.009655, 40.051 ], [ -75.009191, 40.051365 ], [ -75.009048, 40.051477 ], [ -75.008695, 40.051753 ], [ -75.008613, 40.051817 ], [ -75.008527, 40.051884 ], [ -75.00842, 40.051969 ], [ -75.008313, 40.052053 ], [ -75.008129, 40.052202 ], [ -75.007978, 40.052324 ], [ -75.007897, 40.052385 ], [ -75.007707, 40.05253 ], [ -75.007567, 40.052637 ], [ -75.007488, 40.052696 ], [ -75.007404, 40.052761 ], [ -75.007215, 40.052904 ], [ -75.006463, 40.053478 ], [ -75.006154, 40.053712 ], [ -75.006075, 40.053775 ], [ -75.005996, 40.053838 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307916", "route_id": "66" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077255, 40.023554 ], [ -75.077196, 40.023851 ], [ -75.077171, 40.024009 ], [ -75.077143, 40.02407 ], [ -75.077114, 40.024115 ], [ -75.077018, 40.024113 ], [ -75.076795, 40.024107 ], [ -75.076776, 40.024262 ], [ -75.076736, 40.024539 ], [ -75.076657, 40.024997 ], [ -75.076623, 40.025151 ], [ -75.076566, 40.025439 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.07651, 40.025667 ], [ -75.076405, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075454, 40.027038 ], [ -75.075401, 40.027017 ], [ -75.075324, 40.026975 ], [ -75.075205, 40.026877 ], [ -75.074983, 40.026686 ], [ -75.074165, 40.026052 ], [ -75.073849, 40.025788 ], [ -75.073379, 40.025371 ], [ -75.07325, 40.025398 ], [ -75.072507, 40.025567 ], [ -75.072045, 40.025672 ], [ -75.06987, 40.026165 ], [ -75.069441, 40.02626 ], [ -75.068803, 40.0264 ], [ -75.068378, 40.026495 ], [ -75.067979, 40.026581 ], [ -75.067331, 40.026723 ], [ -75.067303, 40.02673 ], [ -75.06721, 40.026748 ], [ -75.067181, 40.026756 ], [ -75.067127, 40.02677 ], [ -75.066679, 40.026843 ], [ -75.066276, 40.026904 ], [ -75.066046, 40.026939 ], [ -75.065521, 40.027019 ], [ -75.065424, 40.027035 ], [ -75.065246, 40.027061 ], [ -75.065076, 40.027085 ], [ -75.065022, 40.027094 ], [ -75.064344, 40.027201 ], [ -75.064111, 40.027238 ], [ -75.06313, 40.027393 ], [ -75.062959, 40.027421 ], [ -75.062672, 40.02746 ], [ -75.062505, 40.02748 ], [ -75.062424, 40.027488 ], [ -75.062384, 40.027493 ], [ -75.062214, 40.027516 ], [ -75.062062, 40.027536 ], [ -75.061865, 40.027567 ], [ -75.061729, 40.027588 ], [ -75.061512, 40.027622 ], [ -75.061407, 40.027639 ], [ -75.061303, 40.027656 ], [ -75.060909, 40.027713 ], [ -75.060397, 40.027788 ], [ -75.060254, 40.027809 ], [ -75.06011, 40.02783 ], [ -75.059857, 40.02786 ], [ -75.059797, 40.027867 ], [ -75.059712, 40.02788 ], [ -75.059636, 40.027892 ], [ -75.059566, 40.027904 ], [ -75.059462, 40.027882 ], [ -75.059395, 40.02789 ], [ -75.059326, 40.027904 ], [ -75.059247, 40.027926 ], [ -75.059152, 40.027954 ], [ -75.058953, 40.028034 ], [ -75.05857, 40.028191 ], [ -75.058425, 40.028264 ], [ -75.058376, 40.028324 ], [ -75.058302, 40.028354 ], [ -75.0581, 40.028444 ], [ -75.057907, 40.028529 ], [ -75.057464, 40.028704 ], [ -75.057244, 40.028791 ], [ -75.057135, 40.028839 ], [ -75.057043, 40.028879 ], [ -75.056936, 40.028929 ], [ -75.056885, 40.028954 ], [ -75.056833, 40.02898 ], [ -75.056682, 40.029061 ], [ -75.056503, 40.02918 ], [ -75.056479, 40.029197 ], [ -75.056342, 40.029294 ], [ -75.056266, 40.029349 ], [ -75.056129, 40.029447 ], [ -75.056024, 40.029534 ], [ -75.055959, 40.029589 ], [ -75.055894, 40.029643 ], [ -75.055827, 40.029706 ], [ -75.055692, 40.029833 ], [ -75.055556, 40.029962 ], [ -75.055428, 40.030083 ], [ -75.055357, 40.030152 ], [ -75.055286, 40.03022 ], [ -75.055208, 40.030291 ], [ -75.055144, 40.030349 ], [ -75.054954, 40.030515 ], [ -75.054835, 40.030619 ], [ -75.05467, 40.030756 ], [ -75.054459, 40.030909 ], [ -75.054084, 40.031175 ], [ -75.053981, 40.031245 ], [ -75.053827, 40.031347 ], [ -75.053811, 40.031358 ], [ -75.053473, 40.031574 ], [ -75.053458, 40.031582 ], [ -75.053323, 40.031653 ], [ -75.053301, 40.031663 ], [ -75.053283, 40.031673 ], [ -75.053209, 40.031707 ], [ -75.053167, 40.031728 ], [ -75.05312, 40.031743 ], [ -75.053033, 40.031769 ], [ -75.052613, 40.031878 ], [ -75.051686, 40.032129 ], [ -75.051594, 40.032154 ], [ -75.05151, 40.032177 ], [ -75.051247, 40.032247 ], [ -75.050983, 40.032318 ], [ -75.050781, 40.032374 ], [ -75.050546, 40.032441 ], [ -75.050485, 40.032458 ], [ -75.050423, 40.032475 ], [ -75.049908, 40.032619 ], [ -75.049735, 40.032665 ], [ -75.049315, 40.032785 ], [ -75.049233, 40.032809 ], [ -75.04915, 40.032833 ], [ -75.048712, 40.032958 ], [ -75.048574, 40.033003 ], [ -75.048227, 40.033127 ], [ -75.047748, 40.033297 ], [ -75.047615, 40.03335 ], [ -75.047513, 40.033391 ], [ -75.047427, 40.033422 ], [ -75.047345, 40.033455 ], [ -75.047334, 40.033459 ], [ -75.047255, 40.03349 ], [ -75.047153, 40.033533 ], [ -75.04705, 40.033577 ], [ -75.046975, 40.033609 ], [ -75.046788, 40.033688 ], [ -75.046712, 40.033719 ], [ -75.046579, 40.033771 ], [ -75.046533, 40.033791 ], [ -75.046326, 40.033888 ], [ -75.04627, 40.033918 ], [ -75.046172, 40.03397 ], [ -75.046067, 40.034023 ], [ -75.045915, 40.03411 ], [ -75.045785, 40.034183 ], [ -75.045473, 40.034351 ], [ -75.045385, 40.034397 ], [ -75.045293, 40.034447 ], [ -75.044848, 40.034684 ], [ -75.044795, 40.034714 ], [ -75.044738, 40.034741 ], [ -75.0445, 40.034869 ], [ -75.044319, 40.034963 ], [ -75.044045, 40.035109 ], [ -75.043939, 40.035167 ], [ -75.043199, 40.03557 ], [ -75.043041, 40.035653 ], [ -75.042926, 40.035712 ], [ -75.042836, 40.035759 ], [ -75.04262, 40.035872 ], [ -75.042439, 40.035965 ], [ -75.042221, 40.03608 ], [ -75.04208, 40.036155 ], [ -75.041691, 40.036359 ], [ -75.041473, 40.036463 ], [ -75.041309, 40.036536 ], [ -75.040827, 40.036752 ], [ -75.040798, 40.036764 ], [ -75.040706, 40.036806 ], [ -75.040584, 40.03686 ], [ -75.040502, 40.036894 ], [ -75.04011, 40.037043 ], [ -75.039876, 40.03713 ], [ -75.039716, 40.037191 ], [ -75.039279, 40.037351 ], [ -75.039058, 40.037428 ], [ -75.038845, 40.037504 ], [ -75.038681, 40.037562 ], [ -75.038406, 40.037662 ], [ -75.038157, 40.037752 ], [ -75.037976, 40.037819 ], [ -75.037742, 40.037906 ], [ -75.037506, 40.037994 ], [ -75.03744, 40.038018 ], [ -75.037379, 40.038041 ], [ -75.037251, 40.038089 ], [ -75.037125, 40.038136 ], [ -75.036985, 40.038187 ], [ -75.036853, 40.038235 ], [ -75.036745, 40.038275 ], [ -75.036439, 40.038388 ], [ -75.036259, 40.038454 ], [ -75.036079, 40.038518 ], [ -75.035904, 40.038581 ], [ -75.03584, 40.038605 ], [ -75.035786, 40.038624 ], [ -75.035585, 40.038696 ], [ -75.035313, 40.038796 ], [ -75.034979, 40.038919 ], [ -75.034879, 40.038955 ], [ -75.034802, 40.038982 ], [ -75.034668, 40.039033 ], [ -75.034573, 40.039068 ], [ -75.034463, 40.039108 ], [ -75.034356, 40.039148 ], [ -75.034, 40.039274 ], [ -75.033926, 40.0393 ], [ -75.033866, 40.039322 ], [ -75.033622, 40.039409 ], [ -75.033428, 40.039477 ], [ -75.032972, 40.039639 ], [ -75.032671, 40.039744 ], [ -75.032557, 40.039783 ], [ -75.032437, 40.039828 ], [ -75.032134, 40.039942 ], [ -75.031877, 40.040037 ], [ -75.031789, 40.040071 ], [ -75.031703, 40.040102 ], [ -75.031523, 40.040169 ], [ -75.031347, 40.040236 ], [ -75.030835, 40.040414 ], [ -75.030137, 40.04067 ], [ -75.030057, 40.0407 ], [ -75.029973, 40.040731 ], [ -75.028992, 40.041089 ], [ -75.028812, 40.041155 ], [ -75.028598, 40.041233 ], [ -75.028278, 40.04135 ], [ -75.026196, 40.042106 ], [ -75.025599, 40.042323 ], [ -75.02475, 40.042633 ], [ -75.023893, 40.042943 ], [ -75.023493, 40.043087 ], [ -75.023212, 40.043188 ], [ -75.022438, 40.043467 ], [ -75.022077, 40.043597 ], [ -75.021962, 40.043634 ], [ -75.021859, 40.043655 ], [ -75.021778, 40.043661 ], [ -75.021731, 40.043662 ], [ -75.021702, 40.043663 ], [ -75.021634, 40.04366 ], [ -75.021538, 40.043653 ], [ -75.021509, 40.043649 ], [ -75.021425, 40.04364 ], [ -75.020748, 40.043548 ], [ -75.020697, 40.04354 ], [ -75.020594, 40.043528 ], [ -75.020515, 40.043521 ], [ -75.020412, 40.043513 ], [ -75.020327, 40.04351 ], [ -75.020223, 40.043513 ], [ -75.020116, 40.043524 ], [ -75.019992, 40.04354 ], [ -75.019885, 40.043558 ], [ -75.01975, 40.043579 ], [ -75.019631, 40.043599 ], [ -75.019526, 40.043619 ], [ -75.019379, 40.043658 ], [ -75.019257, 40.0437 ], [ -75.019134, 40.043742 ], [ -75.019025, 40.043788 ], [ -75.01886, 40.043866 ], [ -75.018701, 40.043955 ], [ -75.018536, 40.044056 ], [ -75.01747, 40.044846 ], [ -75.017376, 40.044916 ], [ -75.017309, 40.044968 ], [ -75.017074, 40.045147 ], [ -75.016646, 40.045471 ], [ -75.016506, 40.045579 ], [ -75.016392, 40.045666 ], [ -75.016218, 40.045797 ], [ -75.015999, 40.045961 ], [ -75.015845, 40.046078 ], [ -75.015694, 40.046191 ], [ -75.015391, 40.046427 ], [ -75.014997, 40.046721 ], [ -75.014904, 40.046789 ], [ -75.014839, 40.046837 ], [ -75.014668, 40.046972 ], [ -75.014481, 40.047117 ], [ -75.014381, 40.047194 ], [ -75.014218, 40.047321 ], [ -75.014018, 40.047475 ], [ -75.013883, 40.047587 ], [ -75.013682, 40.047751 ], [ -75.013621, 40.047802 ], [ -75.013567, 40.047844 ], [ -75.01344, 40.04795 ], [ -75.013246, 40.048108 ], [ -75.013229, 40.048123 ], [ -75.013143, 40.04819 ], [ -75.013055, 40.048261 ], [ -75.012404, 40.048778 ], [ -75.012338, 40.048829 ], [ -75.012266, 40.048887 ], [ -75.011969, 40.049132 ], [ -75.011532, 40.04949 ], [ -75.01108, 40.049856 ], [ -75.010628, 40.050222 ], [ -75.010554, 40.050283 ], [ -75.01048, 40.050343 ], [ -75.010319, 40.050474 ], [ -75.010157, 40.050604 ], [ -75.009977, 40.050746 ], [ -75.009796, 40.050888 ], [ -75.00971, 40.050956 ], [ -75.009655, 40.051 ], [ -75.009191, 40.051365 ], [ -75.009048, 40.051477 ], [ -75.008695, 40.051753 ], [ -75.008613, 40.051817 ], [ -75.008527, 40.051884 ], [ -75.00842, 40.051969 ], [ -75.008313, 40.052053 ], [ -75.008129, 40.052202 ], [ -75.007978, 40.052324 ], [ -75.007897, 40.052385 ], [ -75.007707, 40.05253 ], [ -75.007567, 40.052637 ], [ -75.007488, 40.052696 ], [ -75.007404, 40.052761 ], [ -75.007215, 40.052904 ], [ -75.006463, 40.053478 ], [ -75.006154, 40.053712 ], [ -75.006075, 40.053775 ], [ -75.005996, 40.053838 ], [ -75.005903, 40.053913 ], [ -75.005848, 40.053958 ], [ -75.005684, 40.054082 ], [ -75.005535, 40.054194 ], [ -75.004804, 40.054744 ], [ -75.004325, 40.055074 ], [ -75.004241, 40.055133 ], [ -75.004153, 40.055194 ], [ -75.003584, 40.055586 ], [ -75.003368, 40.055734 ], [ -75.00316, 40.055875 ], [ -75.003069, 40.055938 ], [ -75.002985, 40.055996 ], [ -75.002468, 40.056353 ], [ -75.002079, 40.056622 ], [ -75.001784, 40.056826 ], [ -75.001697, 40.056885 ], [ -75.001614, 40.056942 ], [ -75.001341, 40.057125 ], [ -75.001173, 40.057229 ], [ -75.001111, 40.057263 ], [ -75.00104, 40.057291 ], [ -75.000945, 40.057322 ], [ -75.000798, 40.057365 ], [ -75.000644, 40.05741 ], [ -75.000558, 40.057435 ], [ -75.000469, 40.057461 ], [ -75.00035, 40.057494 ], [ -75.000261, 40.057521 ], [ -75.000057, 40.057582 ], [ -74.999946, 40.057614 ], [ -74.999833, 40.057646 ], [ -74.99944, 40.057761 ], [ -74.999338, 40.05779 ], [ -74.999232, 40.057818 ], [ -74.998573, 40.058001 ], [ -74.998256, 40.058088 ], [ -74.99779, 40.058209 ], [ -74.997689, 40.058236 ], [ -74.997588, 40.058262 ], [ -74.997164, 40.058371 ], [ -74.997044, 40.058402 ], [ -74.996926, 40.058433 ], [ -74.995633, 40.05876 ], [ -74.995148, 40.058883 ], [ -74.994785, 40.058974 ], [ -74.994689, 40.058997 ], [ -74.994601, 40.059021 ], [ -74.994046, 40.059162 ], [ -74.993386, 40.059337 ], [ -74.993263, 40.05937 ], [ -74.993151, 40.059401 ], [ -74.99304, 40.059429 ], [ -74.992931, 40.059456 ], [ -74.991995, 40.059715 ], [ -74.991635, 40.059811 ], [ -74.991519, 40.059849 ], [ -74.99143, 40.059878 ], [ -74.991346, 40.059872 ], [ -74.99129, 40.059885 ], [ -74.991231, 40.059909 ], [ -74.991163, 40.059939 ], [ -74.991111, 40.059964 ], [ -74.991018, 40.060004 ], [ -74.990924, 40.060045 ], [ -74.99085, 40.060091 ], [ -74.990811, 40.060161 ], [ -74.990715, 40.060216 ], [ -74.990575, 40.060303 ], [ -74.990427, 40.060396 ], [ -74.989961, 40.060689 ], [ -74.989623, 40.060894 ], [ -74.989078, 40.061222 ], [ -74.988922, 40.061318 ], [ -74.988552, 40.061538 ], [ -74.98837, 40.061651 ], [ -74.987972, 40.061893 ], [ -74.987791, 40.062003 ], [ -74.987478, 40.062194 ], [ -74.987248, 40.062335 ], [ -74.987116, 40.062418 ], [ -74.987027, 40.062474 ], [ -74.986927, 40.062534 ], [ -74.986639, 40.062706 ], [ -74.986312, 40.062903 ], [ -74.985985, 40.063098 ], [ -74.985736, 40.063249 ], [ -74.98552, 40.063379 ], [ -74.985247, 40.063533 ], [ -74.985166, 40.063579 ], [ -74.985, 40.063673 ], [ -74.984753, 40.063815 ], [ -74.984434, 40.063978 ], [ -74.984211, 40.064091 ], [ -74.98395, 40.064212 ], [ -74.983772, 40.064285 ], [ -74.983575, 40.064355 ], [ -74.983465, 40.064389 ], [ -74.983265, 40.064451 ], [ -74.982998, 40.06453 ], [ -74.982697, 40.064615 ], [ -74.982661, 40.064625 ], [ -74.98252, 40.06466 ], [ -74.982294, 40.064704 ], [ -74.982092, 40.064743 ], [ -74.981676, 40.064825 ], [ -74.981533, 40.064504 ], [ -74.981576, 40.064328 ], [ -74.981714, 40.064233 ], [ -74.981747, 40.064138 ], [ -74.98168, 40.064052 ], [ -74.98159, 40.064062 ], [ -74.981504, 40.064112 ], [ -74.981471, 40.064185 ], [ -74.981428, 40.064283 ], [ -74.981433, 40.064395 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307918", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075602, 40.027077 ], [ -75.076121, 40.027215 ], [ -75.076701, 40.027358 ], [ -75.076803, 40.027383 ], [ -75.077114, 40.027485 ], [ -75.077293, 40.027561 ], [ -75.077863, 40.027887 ], [ -75.078482, 40.028241 ], [ -75.079065, 40.028574 ], [ -75.079664, 40.028915 ], [ -75.07995, 40.029078 ], [ -75.08026, 40.029255 ], [ -75.080837, 40.029581 ], [ -75.08263, 40.030594 ], [ -75.08334, 40.030989 ], [ -75.083676, 40.031151 ], [ -75.084156, 40.031469 ], [ -75.084109, 40.031513 ], [ -75.084074, 40.031568 ], [ -75.084046, 40.031642 ], [ -75.084037, 40.03167 ], [ -75.084037, 40.031737 ], [ -75.084049, 40.031817 ], [ -75.084066, 40.031869 ], [ -75.084079, 40.03191 ], [ -75.084094, 40.031956 ], [ -75.084105, 40.031991 ], [ -75.084164, 40.032069 ], [ -75.084232, 40.032143 ], [ -75.084311, 40.032185 ], [ -75.084355, 40.032213 ], [ -75.084475, 40.032256 ], [ -75.084577, 40.032277 ], [ -75.084629, 40.032281 ], [ -75.084797, 40.032289 ], [ -75.084861, 40.032716 ], [ -75.084879, 40.032813 ], [ -75.084915, 40.032919 ], [ -75.084971, 40.033037 ], [ -75.085048, 40.033165 ], [ -75.085064, 40.033192 ], [ -75.085169, 40.033365 ], [ -75.085233, 40.033446 ], [ -75.08528, 40.033493 ], [ -75.085319, 40.033522 ], [ -75.085805, 40.033862 ], [ -75.08679, 40.034541 ], [ -75.087024, 40.034711 ], [ -75.087075, 40.034751 ], [ -75.087116, 40.034785 ], [ -75.087144, 40.034811 ], [ -75.087171, 40.034853 ], [ -75.087319, 40.035115 ], [ -75.0876, 40.03561 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085749, 40.043141 ], [ -75.085095, 40.043669 ], [ -75.08506, 40.043697 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.082995, 40.046372 ], [ -75.084049, 40.046954 ], [ -75.085622, 40.047806 ], [ -75.085696, 40.047853 ], [ -75.08538, 40.048184 ], [ -75.085095, 40.048487 ], [ -75.084809, 40.048798 ], [ -75.084505, 40.049111 ], [ -75.08391, 40.049744 ], [ -75.08362, 40.05005 ], [ -75.083334, 40.050351 ], [ -75.083047, 40.050652 ], [ -75.082793, 40.050917 ], [ -75.082456, 40.051249 ], [ -75.082141, 40.0516 ], [ -75.08187, 40.051902 ], [ -75.081605, 40.052184 ], [ -75.081344, 40.052467 ], [ -75.081023, 40.05281 ], [ -75.080683, 40.053173 ], [ -75.080412, 40.053455 ], [ -75.08012, 40.053757 ], [ -75.079788, 40.054117 ], [ -75.079559, 40.054355 ], [ -75.079501, 40.054415 ], [ -75.079201, 40.054719 ], [ -75.078915, 40.055031 ], [ -75.078616, 40.055349 ], [ -75.078398, 40.055586 ], [ -75.07753, 40.056517 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083472, 40.06145 ], [ -75.083465, 40.061586 ], [ -75.083466, 40.061665 ], [ -75.083469, 40.061758 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083482, 40.065501 ], [ -75.083428, 40.065526 ], [ -75.083383, 40.065559 ], [ -75.08334, 40.065601 ], [ -75.083259, 40.065647 ], [ -75.082638, 40.066243 ], [ -75.082269, 40.066606 ], [ -75.082151, 40.066715 ], [ -75.082097, 40.066768 ], [ -75.081523, 40.067299 ], [ -75.081268, 40.067581 ], [ -75.081164, 40.067695 ], [ -75.080912, 40.067972 ], [ -75.080871, 40.068014 ], [ -75.080572, 40.068291 ], [ -75.080272, 40.068571 ], [ -75.079647, 40.069189 ], [ -75.079029, 40.069792 ], [ -75.078396, 40.07039 ], [ -75.077845, 40.070956 ], [ -75.077813, 40.07098 ], [ -75.077776, 40.071017 ], [ -75.077177, 40.071612 ], [ -75.076616, 40.072154 ], [ -75.076499, 40.072262 ], [ -75.076236, 40.072529 ], [ -75.076102, 40.072666 ], [ -75.07588, 40.072892 ], [ -75.075273, 40.07346 ], [ -75.074725, 40.074007 ], [ -75.073823, 40.074892 ], [ -75.073726, 40.074988 ], [ -75.073481, 40.075228 ], [ -75.072847, 40.075852 ], [ -75.072208, 40.076447 ], [ -75.071607, 40.077053 ], [ -75.071338, 40.077306 ], [ -75.071216, 40.07742 ], [ -75.070977, 40.077645 ], [ -75.070652, 40.077979 ], [ -75.070548, 40.078087 ], [ -75.070355, 40.078275 ], [ -75.069871, 40.078753 ], [ -75.069756, 40.078866 ], [ -75.069273, 40.079325 ], [ -75.069254, 40.07939 ], [ -75.06921, 40.079432 ], [ -75.068749, 40.079887 ], [ -75.068485, 40.080149 ], [ -75.068417, 40.080228 ], [ -75.068367, 40.080281 ], [ -75.068317, 40.080326 ], [ -75.06824, 40.080391 ], [ -75.068134, 40.08047 ], [ -75.068044, 40.080538 ], [ -75.06789, 40.080638 ], [ -75.067095, 40.081157 ], [ -75.065949, 40.081945 ], [ -75.06519, 40.08246 ], [ -75.064326, 40.08305 ], [ -75.064211, 40.08313 ], [ -75.063954, 40.08331 ], [ -75.063613, 40.083544 ], [ -75.062424, 40.084385 ], [ -75.061684, 40.084892 ], [ -75.060277, 40.085861 ], [ -75.060067, 40.086006 ], [ -75.059701, 40.086248 ], [ -75.059454, 40.086411 ], [ -75.059229, 40.086571 ], [ -75.05909, 40.086681 ], [ -75.058938, 40.086814 ], [ -75.058804, 40.086956 ], [ -75.058706, 40.087083 ], [ -75.058573, 40.087275 ], [ -75.057586, 40.088854 ], [ -75.057461, 40.089056 ], [ -75.05741, 40.089136 ], [ -75.057317, 40.089284 ], [ -75.057244, 40.0894 ], [ -75.057174, 40.089495 ], [ -75.057057, 40.089665 ], [ -75.056908, 40.089844 ], [ -75.056833, 40.089866 ], [ -75.05669, 40.089991 ], [ -75.056555, 40.090106 ], [ -75.056456, 40.090185 ], [ -75.05637, 40.090252 ], [ -75.056283, 40.090311 ], [ -75.056176, 40.090384 ], [ -75.055957, 40.090523 ], [ -75.055651, 40.090714 ], [ -75.054802, 40.091252 ], [ -75.054617, 40.091369 ], [ -75.054332, 40.09155 ], [ -75.054067, 40.091711 ], [ -75.053945, 40.091798 ], [ -75.053792, 40.091921 ], [ -75.053486, 40.092189 ], [ -75.053084, 40.092539 ], [ -75.052783, 40.0928 ], [ -75.052557, 40.092996 ], [ -75.051938, 40.093562 ], [ -75.05176, 40.093739 ], [ -75.051434, 40.094062 ], [ -75.051205, 40.094275 ], [ -75.05106, 40.09441 ], [ -75.050837, 40.094619 ], [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032873, 40.105109 ], [ -75.032816, 40.105138 ], [ -75.032902, 40.1052 ], [ -75.033285, 40.105435 ], [ -75.0338, 40.105753 ], [ -75.034666, 40.106302 ], [ -75.034876, 40.106428 ], [ -75.034987, 40.106491 ], [ -75.035083, 40.106546 ], [ -75.035185, 40.106598 ], [ -75.035253, 40.106629 ], [ -75.035314, 40.106657 ], [ -75.035343, 40.10667 ], [ -75.035439, 40.106711 ], [ -75.035545, 40.106746 ], [ -75.035667, 40.106786 ], [ -75.035761, 40.106812 ], [ -75.035946, 40.106854 ], [ -75.03611, 40.106885 ], [ -75.036281, 40.106907 ], [ -75.036453, 40.106916 ], [ -75.037174, 40.106933 ], [ -75.037283, 40.106936 ], [ -75.037472, 40.10695 ], [ -75.037622, 40.106966 ], [ -75.037733, 40.106981 ], [ -75.037855, 40.106997 ], [ -75.037973, 40.107018 ], [ -75.03811, 40.107043 ], [ -75.038264, 40.107077 ], [ -75.03848, 40.107129 ], [ -75.038708, 40.107198 ], [ -75.038814, 40.107232 ], [ -75.038862, 40.107248 ], [ -75.038995, 40.107296 ], [ -75.0391, 40.107338 ], [ -75.039214, 40.107386 ], [ -75.039321, 40.107431 ], [ -75.039454, 40.107493 ], [ -75.039759, 40.107656 ], [ -75.040711, 40.108212 ], [ -75.041162, 40.108475 ], [ -75.041195, 40.108444 ], [ -75.04124, 40.108393 ], [ -75.041916, 40.107679 ], [ -75.042721, 40.106856 ], [ -75.043008, 40.106534 ], [ -75.043382, 40.106176 ], [ -75.043476, 40.106114 ], [ -75.043596, 40.106083 ], [ -75.043703, 40.106076 ], [ -75.043803, 40.106068 ], [ -75.043942, 40.106075 ], [ -75.044133, 40.10613 ], [ -75.047173, 40.107915 ], [ -75.048998, 40.109004 ], [ -75.049315, 40.109251 ], [ -75.049678, 40.109517 ], [ -75.049966, 40.109769 ], [ -75.050277, 40.11008 ], [ -75.04889, 40.111305 ], [ -75.048343, 40.111777 ], [ -75.048183, 40.111919 ], [ -75.04784, 40.11223 ], [ -75.047642, 40.112113 ], [ -75.046905, 40.111666 ], [ -75.046809, 40.111611 ], [ -75.046679, 40.111536 ], [ -75.046248, 40.111285 ], [ -75.046109, 40.111205 ], [ -75.045647, 40.110927 ], [ -75.045406, 40.110786 ], [ -75.045003, 40.110552 ], [ -75.043945, 40.109947 ], [ -75.043433, 40.109659 ], [ -75.042762, 40.109279 ], [ -75.042499, 40.109131 ], [ -75.042189, 40.108956 ], [ -75.042116, 40.108913 ], [ -75.04124, 40.108393 ], [ -75.04077, 40.108122 ], [ -75.039836, 40.107579 ], [ -75.039509, 40.107413 ], [ -75.039409, 40.107358 ], [ -75.039299, 40.107307 ], [ -75.039155, 40.107251 ], [ -75.038932, 40.107164 ], [ -75.038702, 40.107088 ], [ -75.038467, 40.107022 ], [ -75.038228, 40.106966 ], [ -75.037994, 40.106918 ], [ -75.037735, 40.106879 ], [ -75.037722, 40.106877 ], [ -75.037312, 40.106839 ], [ -75.037178, 40.106833 ], [ -75.037174, 40.106887 ], [ -75.037174, 40.106933 ], [ -75.037166, 40.107095 ], [ -75.037161, 40.107172 ], [ -75.037159, 40.107219 ], [ -75.037151, 40.107273 ], [ -75.037127, 40.107333 ], [ -75.037097, 40.107383 ], [ -75.037061, 40.107431 ], [ -75.036869, 40.107624 ], [ -75.036551, 40.107926 ], [ -75.036262, 40.108219 ], [ -75.035613, 40.10888 ], [ -75.034629, 40.109881 ], [ -75.034007, 40.110513 ], [ -75.032698, 40.1119 ], [ -75.032656, 40.111996 ], [ -75.032649, 40.112065 ], [ -75.032654, 40.112215 ], [ -75.032716, 40.112335 ], [ -75.032874, 40.112468 ], [ -75.033148, 40.112612 ], [ -75.033899, 40.113025 ], [ -75.034528, 40.113392 ], [ -75.035562, 40.113994 ], [ -75.036907, 40.114802 ], [ -75.037281, 40.114975 ], [ -75.037511, 40.115015 ], [ -75.037809, 40.115024 ], [ -75.038083, 40.115005 ], [ -75.038307, 40.114945 ], [ -75.038406, 40.114867 ], [ -75.038468, 40.114798 ], [ -75.038406, 40.114867 ], [ -75.038307, 40.114945 ], [ -75.038083, 40.115005 ], [ -75.037809, 40.115024 ], [ -75.037511, 40.115015 ], [ -75.037281, 40.114975 ], [ -75.036907, 40.114802 ], [ -75.035562, 40.113994 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307919", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075602, 40.027077 ], [ -75.076121, 40.027215 ], [ -75.076701, 40.027358 ], [ -75.076803, 40.027383 ], [ -75.077114, 40.027485 ], [ -75.077293, 40.027561 ], [ -75.077863, 40.027887 ], [ -75.078482, 40.028241 ], [ -75.079065, 40.028574 ], [ -75.079664, 40.028915 ], [ -75.07995, 40.029078 ], [ -75.08026, 40.029255 ], [ -75.080837, 40.029581 ], [ -75.08263, 40.030594 ], [ -75.08334, 40.030989 ], [ -75.083676, 40.031151 ], [ -75.084156, 40.031469 ], [ -75.084109, 40.031513 ], [ -75.084074, 40.031568 ], [ -75.084046, 40.031642 ], [ -75.084037, 40.03167 ], [ -75.084037, 40.031737 ], [ -75.084049, 40.031817 ], [ -75.084066, 40.031869 ], [ -75.084079, 40.03191 ], [ -75.084094, 40.031956 ], [ -75.084105, 40.031991 ], [ -75.084164, 40.032069 ], [ -75.084232, 40.032143 ], [ -75.084311, 40.032185 ], [ -75.084355, 40.032213 ], [ -75.084475, 40.032256 ], [ -75.084577, 40.032277 ], [ -75.084629, 40.032281 ], [ -75.084797, 40.032289 ], [ -75.084861, 40.032716 ], [ -75.084879, 40.032813 ], [ -75.084915, 40.032919 ], [ -75.084971, 40.033037 ], [ -75.085048, 40.033165 ], [ -75.085064, 40.033192 ], [ -75.085169, 40.033365 ], [ -75.085233, 40.033446 ], [ -75.08528, 40.033493 ], [ -75.085319, 40.033522 ], [ -75.085805, 40.033862 ], [ -75.08679, 40.034541 ], [ -75.087024, 40.034711 ], [ -75.087075, 40.034751 ], [ -75.087116, 40.034785 ], [ -75.087144, 40.034811 ], [ -75.087171, 40.034853 ], [ -75.087319, 40.035115 ], [ -75.0876, 40.03561 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085749, 40.043141 ], [ -75.085095, 40.043669 ], [ -75.08506, 40.043697 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.082995, 40.046372 ], [ -75.084049, 40.046954 ], [ -75.085622, 40.047806 ], [ -75.085696, 40.047853 ], [ -75.08538, 40.048184 ], [ -75.085095, 40.048487 ], [ -75.084809, 40.048798 ], [ -75.084505, 40.049111 ], [ -75.08391, 40.049744 ], [ -75.08362, 40.05005 ], [ -75.083334, 40.050351 ], [ -75.083047, 40.050652 ], [ -75.082793, 40.050917 ], [ -75.082456, 40.051249 ], [ -75.082141, 40.0516 ], [ -75.08187, 40.051902 ], [ -75.081605, 40.052184 ], [ -75.081344, 40.052467 ], [ -75.081023, 40.05281 ], [ -75.080683, 40.053173 ], [ -75.080412, 40.053455 ], [ -75.08012, 40.053757 ], [ -75.079788, 40.054117 ], [ -75.079559, 40.054355 ], [ -75.079501, 40.054415 ], [ -75.079201, 40.054719 ], [ -75.078915, 40.055031 ], [ -75.078616, 40.055349 ], [ -75.078398, 40.055586 ], [ -75.07753, 40.056517 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083472, 40.06145 ], [ -75.083465, 40.061586 ], [ -75.083466, 40.061665 ], [ -75.083469, 40.061758 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083482, 40.065501 ], [ -75.083428, 40.065526 ], [ -75.083383, 40.065559 ], [ -75.08334, 40.065601 ], [ -75.083259, 40.065647 ], [ -75.082638, 40.066243 ], [ -75.082269, 40.066606 ], [ -75.082151, 40.066715 ], [ -75.082097, 40.066768 ], [ -75.081523, 40.067299 ], [ -75.081268, 40.067581 ], [ -75.081164, 40.067695 ], [ -75.080912, 40.067972 ], [ -75.080871, 40.068014 ], [ -75.080572, 40.068291 ], [ -75.080272, 40.068571 ], [ -75.079647, 40.069189 ], [ -75.079029, 40.069792 ], [ -75.078396, 40.07039 ], [ -75.077845, 40.070956 ], [ -75.077813, 40.07098 ], [ -75.077776, 40.071017 ], [ -75.077177, 40.071612 ], [ -75.076616, 40.072154 ], [ -75.076499, 40.072262 ], [ -75.076236, 40.072529 ], [ -75.076102, 40.072666 ], [ -75.07588, 40.072892 ], [ -75.075273, 40.07346 ], [ -75.074725, 40.074007 ], [ -75.073823, 40.074892 ], [ -75.073726, 40.074988 ], [ -75.073481, 40.075228 ], [ -75.072847, 40.075852 ], [ -75.072208, 40.076447 ], [ -75.071607, 40.077053 ], [ -75.071338, 40.077306 ], [ -75.071216, 40.07742 ], [ -75.070977, 40.077645 ], [ -75.070652, 40.077979 ], [ -75.070548, 40.078087 ], [ -75.070355, 40.078275 ], [ -75.069871, 40.078753 ], [ -75.069756, 40.078866 ], [ -75.069273, 40.079325 ], [ -75.069254, 40.07939 ], [ -75.06921, 40.079432 ], [ -75.068749, 40.079887 ], [ -75.068485, 40.080149 ], [ -75.068417, 40.080228 ], [ -75.068367, 40.080281 ], [ -75.068317, 40.080326 ], [ -75.06824, 40.080391 ], [ -75.068134, 40.08047 ], [ -75.068044, 40.080538 ], [ -75.06789, 40.080638 ], [ -75.067095, 40.081157 ], [ -75.065949, 40.081945 ], [ -75.06519, 40.08246 ], [ -75.064326, 40.08305 ], [ -75.064211, 40.08313 ], [ -75.063954, 40.08331 ], [ -75.063613, 40.083544 ], [ -75.062424, 40.084385 ], [ -75.061684, 40.084892 ], [ -75.060277, 40.085861 ], [ -75.060067, 40.086006 ], [ -75.059701, 40.086248 ], [ -75.059454, 40.086411 ], [ -75.059229, 40.086571 ], [ -75.05909, 40.086681 ], [ -75.058938, 40.086814 ], [ -75.058804, 40.086956 ], [ -75.058706, 40.087083 ], [ -75.058573, 40.087275 ], [ -75.057586, 40.088854 ], [ -75.057461, 40.089056 ], [ -75.05741, 40.089136 ], [ -75.057317, 40.089284 ], [ -75.057244, 40.0894 ], [ -75.057174, 40.089495 ], [ -75.057057, 40.089665 ], [ -75.056908, 40.089844 ], [ -75.056833, 40.089866 ], [ -75.05669, 40.089991 ], [ -75.056555, 40.090106 ], [ -75.056456, 40.090185 ], [ -75.05637, 40.090252 ], [ -75.056283, 40.090311 ], [ -75.056176, 40.090384 ], [ -75.055957, 40.090523 ], [ -75.055651, 40.090714 ], [ -75.054802, 40.091252 ], [ -75.054617, 40.091369 ], [ -75.054332, 40.09155 ], [ -75.054067, 40.091711 ], [ -75.053945, 40.091798 ], [ -75.053792, 40.091921 ], [ -75.053486, 40.092189 ], [ -75.053084, 40.092539 ], [ -75.052783, 40.0928 ], [ -75.052557, 40.092996 ], [ -75.051938, 40.093562 ], [ -75.05176, 40.093739 ], [ -75.051434, 40.094062 ], [ -75.051205, 40.094275 ], [ -75.05106, 40.09441 ], [ -75.050837, 40.094619 ], [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032873, 40.105109 ], [ -75.032816, 40.105138 ], [ -75.032902, 40.1052 ], [ -75.033285, 40.105435 ], [ -75.0338, 40.105753 ], [ -75.034666, 40.106302 ], [ -75.034876, 40.106428 ], [ -75.034987, 40.106491 ], [ -75.035083, 40.106546 ], [ -75.035185, 40.106598 ], [ -75.035253, 40.106629 ], [ -75.035314, 40.106657 ], [ -75.035343, 40.10667 ], [ -75.035439, 40.106711 ], [ -75.035545, 40.106746 ], [ -75.035667, 40.106786 ], [ -75.035761, 40.106812 ], [ -75.035946, 40.106854 ], [ -75.03611, 40.106885 ], [ -75.036281, 40.106907 ], [ -75.036453, 40.106916 ], [ -75.037174, 40.106933 ], [ -75.037166, 40.107095 ], [ -75.037161, 40.107172 ], [ -75.037159, 40.107219 ], [ -75.037151, 40.107273 ], [ -75.037127, 40.107333 ], [ -75.037097, 40.107383 ], [ -75.037061, 40.107431 ], [ -75.036869, 40.107624 ], [ -75.036551, 40.107926 ], [ -75.036262, 40.108219 ], [ -75.035613, 40.10888 ], [ -75.034629, 40.109881 ], [ -75.034007, 40.110513 ], [ -75.032698, 40.1119 ], [ -75.032656, 40.111996 ], [ -75.032649, 40.112065 ], [ -75.032654, 40.112215 ], [ -75.032716, 40.112335 ], [ -75.032874, 40.112468 ], [ -75.033148, 40.112612 ], [ -75.033899, 40.113025 ], [ -75.034528, 40.113392 ], [ -75.035562, 40.113994 ], [ -75.036907, 40.114802 ], [ -75.037281, 40.114975 ], [ -75.037511, 40.115015 ], [ -75.037809, 40.115024 ], [ -75.038083, 40.115005 ], [ -75.038307, 40.114945 ], [ -75.038406, 40.114867 ], [ -75.038468, 40.114798 ], [ -75.038406, 40.114867 ], [ -75.038307, 40.114945 ], [ -75.038083, 40.115005 ], [ -75.037809, 40.115024 ], [ -75.037511, 40.115015 ], [ -75.037281, 40.114975 ], [ -75.036907, 40.114802 ], [ -75.035562, 40.113994 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307920", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075602, 40.027077 ], [ -75.076121, 40.027215 ], [ -75.076701, 40.027358 ], [ -75.076803, 40.027383 ], [ -75.077114, 40.027485 ], [ -75.077293, 40.027561 ], [ -75.077863, 40.027887 ], [ -75.078482, 40.028241 ], [ -75.079065, 40.028574 ], [ -75.079664, 40.028915 ], [ -75.07995, 40.029078 ], [ -75.08026, 40.029255 ], [ -75.080837, 40.029581 ], [ -75.08263, 40.030594 ], [ -75.08334, 40.030989 ], [ -75.083676, 40.031151 ], [ -75.084156, 40.031469 ], [ -75.084109, 40.031513 ], [ -75.084074, 40.031568 ], [ -75.084046, 40.031642 ], [ -75.084037, 40.03167 ], [ -75.084037, 40.031737 ], [ -75.084049, 40.031817 ], [ -75.084066, 40.031869 ], [ -75.084079, 40.03191 ], [ -75.084094, 40.031956 ], [ -75.084105, 40.031991 ], [ -75.084164, 40.032069 ], [ -75.084232, 40.032143 ], [ -75.084311, 40.032185 ], [ -75.084355, 40.032213 ], [ -75.084475, 40.032256 ], [ -75.084577, 40.032277 ], [ -75.084629, 40.032281 ], [ -75.084797, 40.032289 ], [ -75.084861, 40.032716 ], [ -75.084879, 40.032813 ], [ -75.084915, 40.032919 ], [ -75.084971, 40.033037 ], [ -75.085048, 40.033165 ], [ -75.085064, 40.033192 ], [ -75.085169, 40.033365 ], [ -75.085233, 40.033446 ], [ -75.08528, 40.033493 ], [ -75.085319, 40.033522 ], [ -75.085805, 40.033862 ], [ -75.08679, 40.034541 ], [ -75.087024, 40.034711 ], [ -75.087075, 40.034751 ], [ -75.087116, 40.034785 ], [ -75.087144, 40.034811 ], [ -75.087171, 40.034853 ], [ -75.087319, 40.035115 ], [ -75.0876, 40.03561 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085749, 40.043141 ], [ -75.085095, 40.043669 ], [ -75.08506, 40.043697 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.082995, 40.046372 ], [ -75.084049, 40.046954 ], [ -75.085622, 40.047806 ], [ -75.085696, 40.047853 ], [ -75.08538, 40.048184 ], [ -75.085095, 40.048487 ], [ -75.084809, 40.048798 ], [ -75.084505, 40.049111 ], [ -75.08391, 40.049744 ], [ -75.08362, 40.05005 ], [ -75.083334, 40.050351 ], [ -75.083047, 40.050652 ], [ -75.082793, 40.050917 ], [ -75.082456, 40.051249 ], [ -75.082141, 40.0516 ], [ -75.08187, 40.051902 ], [ -75.081605, 40.052184 ], [ -75.081344, 40.052467 ], [ -75.081023, 40.05281 ], [ -75.080683, 40.053173 ], [ -75.080412, 40.053455 ], [ -75.08012, 40.053757 ], [ -75.079788, 40.054117 ], [ -75.079559, 40.054355 ], [ -75.079501, 40.054415 ], [ -75.079201, 40.054719 ], [ -75.078915, 40.055031 ], [ -75.078616, 40.055349 ], [ -75.078398, 40.055586 ], [ -75.07753, 40.056517 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083472, 40.06145 ], [ -75.083465, 40.061586 ], [ -75.083466, 40.061665 ], [ -75.083469, 40.061758 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083482, 40.065501 ], [ -75.083428, 40.065526 ], [ -75.083383, 40.065559 ], [ -75.08334, 40.065601 ], [ -75.083259, 40.065647 ], [ -75.082638, 40.066243 ], [ -75.082269, 40.066606 ], [ -75.082151, 40.066715 ], [ -75.082097, 40.066768 ], [ -75.081523, 40.067299 ], [ -75.081268, 40.067581 ], [ -75.081164, 40.067695 ], [ -75.080912, 40.067972 ], [ -75.080871, 40.068014 ], [ -75.080572, 40.068291 ], [ -75.080272, 40.068571 ], [ -75.079647, 40.069189 ], [ -75.079029, 40.069792 ], [ -75.078396, 40.07039 ], [ -75.077845, 40.070956 ], [ -75.077813, 40.07098 ], [ -75.077776, 40.071017 ], [ -75.077177, 40.071612 ], [ -75.076616, 40.072154 ], [ -75.076499, 40.072262 ], [ -75.076236, 40.072529 ], [ -75.076102, 40.072666 ], [ -75.07588, 40.072892 ], [ -75.075273, 40.07346 ], [ -75.074725, 40.074007 ], [ -75.073823, 40.074892 ], [ -75.073726, 40.074988 ], [ -75.073481, 40.075228 ], [ -75.072847, 40.075852 ], [ -75.072208, 40.076447 ], [ -75.071607, 40.077053 ], [ -75.071338, 40.077306 ], [ -75.071216, 40.07742 ], [ -75.070977, 40.077645 ], [ -75.070652, 40.077979 ], [ -75.070548, 40.078087 ], [ -75.070355, 40.078275 ], [ -75.069871, 40.078753 ], [ -75.069756, 40.078866 ], [ -75.069273, 40.079325 ], [ -75.069254, 40.07939 ], [ -75.06921, 40.079432 ], [ -75.068749, 40.079887 ], [ -75.068485, 40.080149 ], [ -75.068417, 40.080228 ], [ -75.068367, 40.080281 ], [ -75.068317, 40.080326 ], [ -75.06824, 40.080391 ], [ -75.068134, 40.08047 ], [ -75.068044, 40.080538 ], [ -75.06789, 40.080638 ], [ -75.067095, 40.081157 ], [ -75.065949, 40.081945 ], [ -75.06519, 40.08246 ], [ -75.064326, 40.08305 ], [ -75.064211, 40.08313 ], [ -75.063954, 40.08331 ], [ -75.063613, 40.083544 ], [ -75.062424, 40.084385 ], [ -75.061684, 40.084892 ], [ -75.060277, 40.085861 ], [ -75.060067, 40.086006 ], [ -75.059701, 40.086248 ], [ -75.059454, 40.086411 ], [ -75.059229, 40.086571 ], [ -75.05909, 40.086681 ], [ -75.058938, 40.086814 ], [ -75.058804, 40.086956 ], [ -75.058706, 40.087083 ], [ -75.058573, 40.087275 ], [ -75.057586, 40.088854 ], [ -75.057461, 40.089056 ], [ -75.05741, 40.089136 ], [ -75.057317, 40.089284 ], [ -75.057244, 40.0894 ], [ -75.057174, 40.089495 ], [ -75.057057, 40.089665 ], [ -75.056908, 40.089844 ], [ -75.056833, 40.089866 ], [ -75.05669, 40.089991 ], [ -75.056555, 40.090106 ], [ -75.056456, 40.090185 ], [ -75.05637, 40.090252 ], [ -75.056283, 40.090311 ], [ -75.056176, 40.090384 ], [ -75.055957, 40.090523 ], [ -75.055651, 40.090714 ], [ -75.054802, 40.091252 ], [ -75.054617, 40.091369 ], [ -75.054332, 40.09155 ], [ -75.054067, 40.091711 ], [ -75.053945, 40.091798 ], [ -75.053792, 40.091921 ], [ -75.053486, 40.092189 ], [ -75.053084, 40.092539 ], [ -75.052783, 40.0928 ], [ -75.052557, 40.092996 ], [ -75.051938, 40.093562 ], [ -75.05176, 40.093739 ], [ -75.051434, 40.094062 ], [ -75.051205, 40.094275 ], [ -75.05106, 40.09441 ], [ -75.050837, 40.094619 ], [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032873, 40.105109 ], [ -75.032816, 40.105138 ], [ -75.030795, 40.106106 ], [ -75.030093, 40.106438 ], [ -75.029412, 40.106763 ], [ -75.028195, 40.107349 ], [ -75.027617, 40.107618 ], [ -75.027325, 40.107756 ], [ -75.027203, 40.107824 ], [ -75.027158, 40.107898 ], [ -75.027033, 40.107973 ], [ -75.026894, 40.108005 ], [ -75.026834, 40.108011 ], [ -75.026781, 40.108004 ], [ -75.026682, 40.10798 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028761, 40.102458 ], [ -75.028717, 40.102429 ], [ -75.028382, 40.102211 ], [ -75.028283, 40.102153 ], [ -75.02814, 40.10207 ], [ -75.027616, 40.101752 ], [ -75.027385, 40.101645 ], [ -75.027261, 40.101596 ], [ -75.027061, 40.101524 ], [ -75.026861, 40.101465 ], [ -75.026802, 40.101448 ], [ -75.02662, 40.101398 ], [ -75.026609, 40.101395 ], [ -75.026349, 40.101333 ], [ -75.02559, 40.101155 ], [ -75.025495, 40.101133 ], [ -75.025274, 40.101081 ], [ -75.024847, 40.100974 ], [ -75.024543, 40.100896 ], [ -75.024417, 40.100864 ], [ -75.024115, 40.100787 ], [ -75.023949, 40.100743 ], [ -75.023647, 40.100668 ], [ -75.023234, 40.100564 ], [ -75.022913, 40.10048 ], [ -75.022483, 40.100355 ], [ -75.022393, 40.100328 ], [ -75.022331, 40.100311 ], [ -75.022213, 40.100274 ], [ -75.022072, 40.100213 ], [ -75.021934, 40.100142 ], [ -75.021847, 40.100097 ], [ -75.021777, 40.100054 ], [ -75.021678, 40.099979 ], [ -75.0215, 40.099844 ], [ -75.020422, 40.098949 ], [ -75.019701, 40.098352 ], [ -75.018903, 40.097656 ], [ -75.018835, 40.097599 ], [ -75.018723, 40.097508 ], [ -75.0187, 40.097492 ], [ -75.018251, 40.097132 ], [ -75.017919, 40.096847 ], [ -75.017585, 40.096556 ], [ -75.017569, 40.096549 ], [ -75.017481, 40.09653 ], [ -75.016841, 40.096019 ], [ -75.016444, 40.095694 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307921", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075602, 40.027077 ], [ -75.076121, 40.027215 ], [ -75.076701, 40.027358 ], [ -75.076803, 40.027383 ], [ -75.077114, 40.027485 ], [ -75.077293, 40.027561 ], [ -75.077863, 40.027887 ], [ -75.078482, 40.028241 ], [ -75.079065, 40.028574 ], [ -75.079664, 40.028915 ], [ -75.07995, 40.029078 ], [ -75.08026, 40.029255 ], [ -75.080837, 40.029581 ], [ -75.08263, 40.030594 ], [ -75.08334, 40.030989 ], [ -75.083676, 40.031151 ], [ -75.084156, 40.031469 ], [ -75.084109, 40.031513 ], [ -75.084074, 40.031568 ], [ -75.084046, 40.031642 ], [ -75.084037, 40.03167 ], [ -75.084037, 40.031737 ], [ -75.084049, 40.031817 ], [ -75.084066, 40.031869 ], [ -75.084079, 40.03191 ], [ -75.084094, 40.031956 ], [ -75.084105, 40.031991 ], [ -75.084164, 40.032069 ], [ -75.084232, 40.032143 ], [ -75.084311, 40.032185 ], [ -75.084355, 40.032213 ], [ -75.084475, 40.032256 ], [ -75.084577, 40.032277 ], [ -75.084629, 40.032281 ], [ -75.084797, 40.032289 ], [ -75.084861, 40.032716 ], [ -75.084879, 40.032813 ], [ -75.084915, 40.032919 ], [ -75.084971, 40.033037 ], [ -75.085048, 40.033165 ], [ -75.085064, 40.033192 ], [ -75.085169, 40.033365 ], [ -75.085233, 40.033446 ], [ -75.08528, 40.033493 ], [ -75.085319, 40.033522 ], [ -75.085805, 40.033862 ], [ -75.08679, 40.034541 ], [ -75.087024, 40.034711 ], [ -75.087075, 40.034751 ], [ -75.087116, 40.034785 ], [ -75.087144, 40.034811 ], [ -75.087171, 40.034853 ], [ -75.087319, 40.035115 ], [ -75.0876, 40.03561 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085749, 40.043141 ], [ -75.085095, 40.043669 ], [ -75.08506, 40.043697 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.082995, 40.046372 ], [ -75.084049, 40.046954 ], [ -75.085622, 40.047806 ], [ -75.085696, 40.047853 ], [ -75.08538, 40.048184 ], [ -75.085095, 40.048487 ], [ -75.084809, 40.048798 ], [ -75.084505, 40.049111 ], [ -75.08391, 40.049744 ], [ -75.08362, 40.05005 ], [ -75.083334, 40.050351 ], [ -75.083047, 40.050652 ], [ -75.082793, 40.050917 ], [ -75.082456, 40.051249 ], [ -75.082141, 40.0516 ], [ -75.08187, 40.051902 ], [ -75.081605, 40.052184 ], [ -75.081344, 40.052467 ], [ -75.081023, 40.05281 ], [ -75.080683, 40.053173 ], [ -75.080412, 40.053455 ], [ -75.08012, 40.053757 ], [ -75.079788, 40.054117 ], [ -75.079559, 40.054355 ], [ -75.079501, 40.054415 ], [ -75.079201, 40.054719 ], [ -75.078915, 40.055031 ], [ -75.078616, 40.055349 ], [ -75.078398, 40.055586 ], [ -75.07753, 40.056517 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083472, 40.06145 ], [ -75.083465, 40.061586 ], [ -75.083466, 40.061665 ], [ -75.083469, 40.061758 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083482, 40.065501 ], [ -75.083428, 40.065526 ], [ -75.083383, 40.065559 ], [ -75.08334, 40.065601 ], [ -75.083259, 40.065647 ], [ -75.082638, 40.066243 ], [ -75.082269, 40.066606 ], [ -75.082151, 40.066715 ], [ -75.082097, 40.066768 ], [ -75.081523, 40.067299 ], [ -75.081268, 40.067581 ], [ -75.081164, 40.067695 ], [ -75.080912, 40.067972 ], [ -75.080871, 40.068014 ], [ -75.080572, 40.068291 ], [ -75.080272, 40.068571 ], [ -75.079647, 40.069189 ], [ -75.079029, 40.069792 ], [ -75.078396, 40.07039 ], [ -75.077845, 40.070956 ], [ -75.077813, 40.07098 ], [ -75.077776, 40.071017 ], [ -75.077177, 40.071612 ], [ -75.076616, 40.072154 ], [ -75.076499, 40.072262 ], [ -75.076236, 40.072529 ], [ -75.076102, 40.072666 ], [ -75.07588, 40.072892 ], [ -75.075273, 40.07346 ], [ -75.074725, 40.074007 ], [ -75.073823, 40.074892 ], [ -75.073726, 40.074988 ], [ -75.073481, 40.075228 ], [ -75.072847, 40.075852 ], [ -75.072208, 40.076447 ], [ -75.071607, 40.077053 ], [ -75.071338, 40.077306 ], [ -75.071216, 40.07742 ], [ -75.070977, 40.077645 ], [ -75.070652, 40.077979 ], [ -75.070548, 40.078087 ], [ -75.070355, 40.078275 ], [ -75.069871, 40.078753 ], [ -75.069756, 40.078866 ], [ -75.069273, 40.079325 ], [ -75.069254, 40.07939 ], [ -75.06921, 40.079432 ], [ -75.068749, 40.079887 ], [ -75.068485, 40.080149 ], [ -75.068417, 40.080228 ], [ -75.068367, 40.080281 ], [ -75.068317, 40.080326 ], [ -75.06824, 40.080391 ], [ -75.068134, 40.08047 ], [ -75.068044, 40.080538 ], [ -75.06789, 40.080638 ], [ -75.067095, 40.081157 ], [ -75.065949, 40.081945 ], [ -75.06519, 40.08246 ], [ -75.064326, 40.08305 ], [ -75.064211, 40.08313 ], [ -75.063954, 40.08331 ], [ -75.063613, 40.083544 ], [ -75.062424, 40.084385 ], [ -75.061684, 40.084892 ], [ -75.060277, 40.085861 ], [ -75.060067, 40.086006 ], [ -75.059701, 40.086248 ], [ -75.059454, 40.086411 ], [ -75.059229, 40.086571 ], [ -75.05909, 40.086681 ], [ -75.058938, 40.086814 ], [ -75.058804, 40.086956 ], [ -75.058706, 40.087083 ], [ -75.058573, 40.087275 ], [ -75.057586, 40.088854 ], [ -75.057461, 40.089056 ], [ -75.05741, 40.089136 ], [ -75.057317, 40.089284 ], [ -75.057244, 40.0894 ], [ -75.057174, 40.089495 ], [ -75.057057, 40.089665 ], [ -75.056908, 40.089844 ], [ -75.056833, 40.089866 ], [ -75.05669, 40.089991 ], [ -75.056555, 40.090106 ], [ -75.056456, 40.090185 ], [ -75.05637, 40.090252 ], [ -75.056283, 40.090311 ], [ -75.056176, 40.090384 ], [ -75.055957, 40.090523 ], [ -75.055651, 40.090714 ], [ -75.054802, 40.091252 ], [ -75.054617, 40.091369 ], [ -75.054332, 40.09155 ], [ -75.054067, 40.091711 ], [ -75.053945, 40.091798 ], [ -75.053792, 40.091921 ], [ -75.053486, 40.092189 ], [ -75.053084, 40.092539 ], [ -75.052783, 40.0928 ], [ -75.052557, 40.092996 ], [ -75.051938, 40.093562 ], [ -75.05176, 40.093739 ], [ -75.051434, 40.094062 ], [ -75.051205, 40.094275 ], [ -75.05106, 40.09441 ], [ -75.050837, 40.094619 ], [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032873, 40.105109 ], [ -75.032816, 40.105138 ], [ -75.030795, 40.106106 ], [ -75.030093, 40.106438 ], [ -75.029412, 40.106763 ], [ -75.028195, 40.107349 ], [ -75.027617, 40.107618 ], [ -75.027325, 40.107756 ], [ -75.027203, 40.107824 ], [ -75.027158, 40.107898 ], [ -75.027033, 40.107973 ], [ -75.026894, 40.108005 ], [ -75.026834, 40.108011 ], [ -75.026781, 40.108004 ], [ -75.026682, 40.10798 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028956, 40.10235 ], [ -75.029184, 40.10187 ], [ -75.029383, 40.10147 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307922", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075602, 40.027077 ], [ -75.076121, 40.027215 ], [ -75.076701, 40.027358 ], [ -75.076803, 40.027383 ], [ -75.077114, 40.027485 ], [ -75.077293, 40.027561 ], [ -75.077863, 40.027887 ], [ -75.078482, 40.028241 ], [ -75.079065, 40.028574 ], [ -75.079664, 40.028915 ], [ -75.07995, 40.029078 ], [ -75.08026, 40.029255 ], [ -75.080837, 40.029581 ], [ -75.08263, 40.030594 ], [ -75.08334, 40.030989 ], [ -75.083676, 40.031151 ], [ -75.084156, 40.031469 ], [ -75.084109, 40.031513 ], [ -75.084074, 40.031568 ], [ -75.084046, 40.031642 ], [ -75.084037, 40.03167 ], [ -75.084037, 40.031737 ], [ -75.084049, 40.031817 ], [ -75.084066, 40.031869 ], [ -75.084079, 40.03191 ], [ -75.084094, 40.031956 ], [ -75.084105, 40.031991 ], [ -75.084164, 40.032069 ], [ -75.084232, 40.032143 ], [ -75.084311, 40.032185 ], [ -75.084355, 40.032213 ], [ -75.084475, 40.032256 ], [ -75.084577, 40.032277 ], [ -75.084629, 40.032281 ], [ -75.084797, 40.032289 ], [ -75.084861, 40.032716 ], [ -75.084879, 40.032813 ], [ -75.084915, 40.032919 ], [ -75.084971, 40.033037 ], [ -75.085048, 40.033165 ], [ -75.085064, 40.033192 ], [ -75.085169, 40.033365 ], [ -75.085233, 40.033446 ], [ -75.08528, 40.033493 ], [ -75.085319, 40.033522 ], [ -75.085805, 40.033862 ], [ -75.08679, 40.034541 ], [ -75.087024, 40.034711 ], [ -75.087075, 40.034751 ], [ -75.087116, 40.034785 ], [ -75.087144, 40.034811 ], [ -75.087171, 40.034853 ], [ -75.087319, 40.035115 ], [ -75.0876, 40.03561 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085749, 40.043141 ], [ -75.085095, 40.043669 ], [ -75.08506, 40.043697 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.082995, 40.046372 ], [ -75.084049, 40.046954 ], [ -75.085622, 40.047806 ], [ -75.085696, 40.047853 ], [ -75.08538, 40.048184 ], [ -75.085095, 40.048487 ], [ -75.084809, 40.048798 ], [ -75.084505, 40.049111 ], [ -75.08391, 40.049744 ], [ -75.08362, 40.05005 ], [ -75.083334, 40.050351 ], [ -75.083047, 40.050652 ], [ -75.082793, 40.050917 ], [ -75.082456, 40.051249 ], [ -75.082141, 40.0516 ], [ -75.08187, 40.051902 ], [ -75.081605, 40.052184 ], [ -75.081344, 40.052467 ], [ -75.081023, 40.05281 ], [ -75.080683, 40.053173 ], [ -75.080412, 40.053455 ], [ -75.08012, 40.053757 ], [ -75.079788, 40.054117 ], [ -75.079559, 40.054355 ], [ -75.079501, 40.054415 ], [ -75.079201, 40.054719 ], [ -75.078915, 40.055031 ], [ -75.078616, 40.055349 ], [ -75.078398, 40.055586 ], [ -75.07753, 40.056517 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083472, 40.06145 ], [ -75.083465, 40.061586 ], [ -75.083466, 40.061665 ], [ -75.083469, 40.061758 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083482, 40.065501 ], [ -75.083428, 40.065526 ], [ -75.083383, 40.065559 ], [ -75.08334, 40.065601 ], [ -75.083259, 40.065647 ], [ -75.082638, 40.066243 ], [ -75.082269, 40.066606 ], [ -75.082151, 40.066715 ], [ -75.082097, 40.066768 ], [ -75.081523, 40.067299 ], [ -75.081268, 40.067581 ], [ -75.081164, 40.067695 ], [ -75.080912, 40.067972 ], [ -75.080871, 40.068014 ], [ -75.080572, 40.068291 ], [ -75.080272, 40.068571 ], [ -75.079647, 40.069189 ], [ -75.079029, 40.069792 ], [ -75.078396, 40.07039 ], [ -75.077845, 40.070956 ], [ -75.077813, 40.07098 ], [ -75.077776, 40.071017 ], [ -75.077177, 40.071612 ], [ -75.076616, 40.072154 ], [ -75.076499, 40.072262 ], [ -75.076236, 40.072529 ], [ -75.076102, 40.072666 ], [ -75.07588, 40.072892 ], [ -75.075273, 40.07346 ], [ -75.074725, 40.074007 ], [ -75.073823, 40.074892 ], [ -75.073726, 40.074988 ], [ -75.073481, 40.075228 ], [ -75.072847, 40.075852 ], [ -75.072208, 40.076447 ], [ -75.071607, 40.077053 ], [ -75.071338, 40.077306 ], [ -75.071216, 40.07742 ], [ -75.070977, 40.077645 ], [ -75.070652, 40.077979 ], [ -75.070548, 40.078087 ], [ -75.070355, 40.078275 ], [ -75.069871, 40.078753 ], [ -75.069756, 40.078866 ], [ -75.069273, 40.079325 ], [ -75.069254, 40.07939 ], [ -75.06921, 40.079432 ], [ -75.068749, 40.079887 ], [ -75.068485, 40.080149 ], [ -75.068417, 40.080228 ], [ -75.068367, 40.080281 ], [ -75.068317, 40.080326 ], [ -75.06824, 40.080391 ], [ -75.068134, 40.08047 ], [ -75.068044, 40.080538 ], [ -75.06789, 40.080638 ], [ -75.067095, 40.081157 ], [ -75.065949, 40.081945 ], [ -75.06519, 40.08246 ], [ -75.064326, 40.08305 ], [ -75.064211, 40.08313 ], [ -75.063954, 40.08331 ], [ -75.063613, 40.083544 ], [ -75.062424, 40.084385 ], [ -75.061684, 40.084892 ], [ -75.060277, 40.085861 ], [ -75.060067, 40.086006 ], [ -75.059701, 40.086248 ], [ -75.059454, 40.086411 ], [ -75.059229, 40.086571 ], [ -75.05909, 40.086681 ], [ -75.058938, 40.086814 ], [ -75.058804, 40.086956 ], [ -75.058706, 40.087083 ], [ -75.058573, 40.087275 ], [ -75.057586, 40.088854 ], [ -75.057461, 40.089056 ], [ -75.05741, 40.089136 ], [ -75.057317, 40.089284 ], [ -75.057244, 40.0894 ], [ -75.057174, 40.089495 ], [ -75.057057, 40.089665 ], [ -75.056908, 40.089844 ], [ -75.056833, 40.089866 ], [ -75.05669, 40.089991 ], [ -75.056555, 40.090106 ], [ -75.056456, 40.090185 ], [ -75.05637, 40.090252 ], [ -75.056283, 40.090311 ], [ -75.056176, 40.090384 ], [ -75.055957, 40.090523 ], [ -75.055651, 40.090714 ], [ -75.054802, 40.091252 ], [ -75.054617, 40.091369 ], [ -75.054332, 40.09155 ], [ -75.054067, 40.091711 ], [ -75.053945, 40.091798 ], [ -75.053792, 40.091921 ], [ -75.053486, 40.092189 ], [ -75.053084, 40.092539 ], [ -75.052783, 40.0928 ], [ -75.052557, 40.092996 ], [ -75.051938, 40.093562 ], [ -75.05176, 40.093739 ], [ -75.051434, 40.094062 ], [ -75.051205, 40.094275 ], [ -75.05106, 40.09441 ], [ -75.050837, 40.094619 ], [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032447, 40.104771 ], [ -75.03218, 40.104603 ], [ -75.03201, 40.1045 ], [ -75.031453, 40.104151 ], [ -75.03133, 40.104074 ], [ -75.031078, 40.103916 ], [ -75.030756, 40.103715 ], [ -75.030234, 40.103388 ], [ -75.029935, 40.103201 ], [ -75.029815, 40.103125 ], [ -75.029321, 40.102815 ], [ -75.028872, 40.102533 ], [ -75.028761, 40.102458 ], [ -75.028717, 40.102429 ], [ -75.028382, 40.102211 ], [ -75.028283, 40.102153 ], [ -75.02814, 40.10207 ], [ -75.027616, 40.101752 ], [ -75.027385, 40.101645 ], [ -75.027261, 40.101596 ], [ -75.027061, 40.101524 ], [ -75.026861, 40.101465 ], [ -75.026802, 40.101448 ], [ -75.02662, 40.101398 ], [ -75.026609, 40.101395 ], [ -75.026349, 40.101333 ], [ -75.02559, 40.101155 ], [ -75.025495, 40.101133 ], [ -75.025274, 40.101081 ], [ -75.024847, 40.100974 ], [ -75.024543, 40.100896 ], [ -75.024417, 40.100864 ], [ -75.024115, 40.100787 ], [ -75.023949, 40.100743 ], [ -75.023647, 40.100668 ], [ -75.023234, 40.100564 ], [ -75.022913, 40.10048 ], [ -75.022483, 40.100355 ], [ -75.022393, 40.100328 ], [ -75.022331, 40.100311 ], [ -75.022213, 40.100274 ], [ -75.022072, 40.100213 ], [ -75.021934, 40.100142 ], [ -75.021847, 40.100097 ], [ -75.021777, 40.100054 ], [ -75.021678, 40.099979 ], [ -75.0215, 40.099844 ], [ -75.020422, 40.098949 ], [ -75.019701, 40.098352 ], [ -75.018903, 40.097656 ], [ -75.018835, 40.097599 ], [ -75.018723, 40.097508 ], [ -75.0187, 40.097492 ], [ -75.018251, 40.097132 ], [ -75.017919, 40.096847 ], [ -75.017585, 40.096556 ], [ -75.017569, 40.096549 ], [ -75.017481, 40.09653 ], [ -75.016841, 40.096019 ], [ -75.016444, 40.095694 ], [ -75.016083, 40.095398 ], [ -75.015621, 40.095019 ], [ -75.015487, 40.094906 ], [ -75.015324, 40.094775 ], [ -75.015187, 40.094665 ], [ -75.015068, 40.094561 ], [ -75.014489, 40.094052 ], [ -75.014464, 40.094032 ], [ -75.014443, 40.093972 ], [ -75.014024, 40.093629 ], [ -75.013947, 40.093607 ], [ -75.013427, 40.093185 ], [ -75.013235, 40.093028 ], [ -75.013185, 40.092987 ], [ -75.01295, 40.092797 ], [ -75.0128, 40.092673 ], [ -75.012767, 40.092645 ], [ -75.01216, 40.092143 ], [ -75.01191, 40.091937 ], [ -75.011655, 40.091728 ], [ -75.011252, 40.091398 ], [ -75.011134, 40.091302 ], [ -75.010641, 40.090905 ], [ -75.01052, 40.090819 ], [ -75.010497, 40.090762 ], [ -75.010391, 40.090686 ], [ -75.010278, 40.090621 ], [ -75.010163, 40.090556 ], [ -75.010094, 40.090529 ], [ -75.009982, 40.090486 ], [ -75.009678, 40.090412 ], [ -75.009632, 40.090418 ], [ -75.009459, 40.090387 ], [ -75.009345, 40.090376 ], [ -75.009243, 40.090368 ], [ -75.009121, 40.090365 ], [ -75.009036, 40.090365 ], [ -75.008945, 40.09037 ], [ -75.00886, 40.090377 ], [ -75.008789, 40.090385 ], [ -75.008716, 40.090399 ], [ -75.008585, 40.090427 ], [ -75.008423, 40.090472 ], [ -75.00826, 40.090526 ], [ -75.008164, 40.090565 ], [ -75.008046, 40.090619 ], [ -75.007894, 40.090705 ], [ -75.007776, 40.090782 ], [ -75.007674, 40.090855 ], [ -75.007583, 40.090917 ], [ -75.007455, 40.091004 ], [ -75.007098, 40.091243 ], [ -75.006856, 40.091412 ], [ -75.006177, 40.091876 ], [ -75.005866, 40.092085 ], [ -75.005571, 40.092288 ], [ -75.005383, 40.092414 ], [ -75.004424, 40.09307 ], [ -75.003925, 40.09341 ], [ -75.003318, 40.093821 ], [ -75.002826, 40.09415 ], [ -75.002042, 40.094687 ], [ -74.99883, 40.096874 ], [ -74.998122, 40.097359 ], [ -74.998097, 40.097376 ], [ -74.996717, 40.098319 ], [ -74.996576, 40.098416 ], [ -74.996157, 40.098703 ], [ -74.996077, 40.09876 ], [ -74.995626, 40.09907 ], [ -74.995449, 40.099181 ], [ -74.994954, 40.098749 ], [ -74.994857, 40.098664 ], [ -74.994683, 40.098524 ], [ -74.993803, 40.097818 ], [ -74.993226, 40.097349 ], [ -74.992421, 40.096713 ], [ -74.99205, 40.096416 ], [ -74.991864, 40.096268 ], [ -74.991586, 40.096045 ], [ -74.991252, 40.095789 ], [ -74.990974, 40.095553 ], [ -74.990744, 40.095358 ], [ -74.990287, 40.094964 ], [ -74.989691, 40.094463 ], [ -74.989438, 40.094248 ], [ -74.98912, 40.093976 ], [ -74.988645, 40.093583 ], [ -74.988488, 40.093453 ], [ -74.987409, 40.09256 ], [ -74.986434, 40.091757 ], [ -74.985191, 40.090733 ], [ -74.98481, 40.090413 ], [ -74.984673, 40.090305 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307923", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075602, 40.027077 ], [ -75.076121, 40.027215 ], [ -75.076701, 40.027358 ], [ -75.076803, 40.027383 ], [ -75.077114, 40.027485 ], [ -75.077293, 40.027561 ], [ -75.077863, 40.027887 ], [ -75.078482, 40.028241 ], [ -75.079065, 40.028574 ], [ -75.079664, 40.028915 ], [ -75.07995, 40.029078 ], [ -75.08026, 40.029255 ], [ -75.080837, 40.029581 ], [ -75.08263, 40.030594 ], [ -75.08334, 40.030989 ], [ -75.083676, 40.031151 ], [ -75.084156, 40.031469 ], [ -75.084109, 40.031513 ], [ -75.084074, 40.031568 ], [ -75.084046, 40.031642 ], [ -75.084037, 40.03167 ], [ -75.084037, 40.031737 ], [ -75.084049, 40.031817 ], [ -75.084066, 40.031869 ], [ -75.084079, 40.03191 ], [ -75.084094, 40.031956 ], [ -75.084105, 40.031991 ], [ -75.084164, 40.032069 ], [ -75.084232, 40.032143 ], [ -75.084311, 40.032185 ], [ -75.084355, 40.032213 ], [ -75.084475, 40.032256 ], [ -75.084577, 40.032277 ], [ -75.084629, 40.032281 ], [ -75.084797, 40.032289 ], [ -75.084861, 40.032716 ], [ -75.084879, 40.032813 ], [ -75.084915, 40.032919 ], [ -75.084971, 40.033037 ], [ -75.085048, 40.033165 ], [ -75.085064, 40.033192 ], [ -75.085169, 40.033365 ], [ -75.085233, 40.033446 ], [ -75.08528, 40.033493 ], [ -75.085319, 40.033522 ], [ -75.085805, 40.033862 ], [ -75.08679, 40.034541 ], [ -75.087024, 40.034711 ], [ -75.087075, 40.034751 ], [ -75.087116, 40.034785 ], [ -75.087144, 40.034811 ], [ -75.087171, 40.034853 ], [ -75.087319, 40.035115 ], [ -75.0876, 40.03561 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085749, 40.043141 ], [ -75.085095, 40.043669 ], [ -75.08506, 40.043697 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.082995, 40.046372 ], [ -75.084049, 40.046954 ], [ -75.085622, 40.047806 ], [ -75.085696, 40.047853 ], [ -75.08538, 40.048184 ], [ -75.085095, 40.048487 ], [ -75.084809, 40.048798 ], [ -75.084505, 40.049111 ], [ -75.08391, 40.049744 ], [ -75.08362, 40.05005 ], [ -75.083334, 40.050351 ], [ -75.083047, 40.050652 ], [ -75.082793, 40.050917 ], [ -75.082456, 40.051249 ], [ -75.082141, 40.0516 ], [ -75.08187, 40.051902 ], [ -75.081605, 40.052184 ], [ -75.081344, 40.052467 ], [ -75.081023, 40.05281 ], [ -75.080683, 40.053173 ], [ -75.080412, 40.053455 ], [ -75.08012, 40.053757 ], [ -75.079788, 40.054117 ], [ -75.079559, 40.054355 ], [ -75.079501, 40.054415 ], [ -75.079201, 40.054719 ], [ -75.078915, 40.055031 ], [ -75.078616, 40.055349 ], [ -75.078398, 40.055586 ], [ -75.07753, 40.056517 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083472, 40.06145 ], [ -75.083465, 40.061586 ], [ -75.083466, 40.061665 ], [ -75.083469, 40.061758 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083482, 40.065501 ], [ -75.083428, 40.065526 ], [ -75.083383, 40.065559 ], [ -75.08334, 40.065601 ], [ -75.083259, 40.065647 ], [ -75.082638, 40.066243 ], [ -75.082269, 40.066606 ], [ -75.082151, 40.066715 ], [ -75.082097, 40.066768 ], [ -75.081523, 40.067299 ], [ -75.081268, 40.067581 ], [ -75.081164, 40.067695 ], [ -75.080912, 40.067972 ], [ -75.080871, 40.068014 ], [ -75.080572, 40.068291 ], [ -75.080272, 40.068571 ], [ -75.079647, 40.069189 ], [ -75.079029, 40.069792 ], [ -75.078396, 40.07039 ], [ -75.077845, 40.070956 ], [ -75.077813, 40.07098 ], [ -75.077776, 40.071017 ], [ -75.077177, 40.071612 ], [ -75.076616, 40.072154 ], [ -75.076499, 40.072262 ], [ -75.076236, 40.072529 ], [ -75.076102, 40.072666 ], [ -75.07588, 40.072892 ], [ -75.075273, 40.07346 ], [ -75.074725, 40.074007 ], [ -75.073823, 40.074892 ], [ -75.073726, 40.074988 ], [ -75.073481, 40.075228 ], [ -75.072847, 40.075852 ], [ -75.072208, 40.076447 ], [ -75.071607, 40.077053 ], [ -75.071338, 40.077306 ], [ -75.071216, 40.07742 ], [ -75.070977, 40.077645 ], [ -75.070652, 40.077979 ], [ -75.070548, 40.078087 ], [ -75.070355, 40.078275 ], [ -75.069871, 40.078753 ], [ -75.069756, 40.078866 ], [ -75.069273, 40.079325 ], [ -75.069254, 40.07939 ], [ -75.06921, 40.079432 ], [ -75.068749, 40.079887 ], [ -75.068485, 40.080149 ], [ -75.068417, 40.080228 ], [ -75.068367, 40.080281 ], [ -75.068317, 40.080326 ], [ -75.06824, 40.080391 ], [ -75.068134, 40.08047 ], [ -75.068044, 40.080538 ], [ -75.06789, 40.080638 ], [ -75.067095, 40.081157 ], [ -75.065949, 40.081945 ], [ -75.06519, 40.08246 ], [ -75.064326, 40.08305 ], [ -75.064211, 40.08313 ], [ -75.063954, 40.08331 ], [ -75.063613, 40.083544 ], [ -75.062424, 40.084385 ], [ -75.061684, 40.084892 ], [ -75.060277, 40.085861 ], [ -75.060067, 40.086006 ], [ -75.059701, 40.086248 ], [ -75.059454, 40.086411 ], [ -75.059229, 40.086571 ], [ -75.05909, 40.086681 ], [ -75.058938, 40.086814 ], [ -75.058804, 40.086956 ], [ -75.058706, 40.087083 ], [ -75.058573, 40.087275 ], [ -75.057586, 40.088854 ], [ -75.057461, 40.089056 ], [ -75.05741, 40.089136 ], [ -75.057317, 40.089284 ], [ -75.057244, 40.0894 ], [ -75.057174, 40.089495 ], [ -75.057057, 40.089665 ], [ -75.056908, 40.089844 ], [ -75.056833, 40.089866 ], [ -75.05669, 40.089991 ], [ -75.056555, 40.090106 ], [ -75.056456, 40.090185 ], [ -75.05637, 40.090252 ], [ -75.056283, 40.090311 ], [ -75.056176, 40.090384 ], [ -75.055957, 40.090523 ], [ -75.055651, 40.090714 ], [ -75.054802, 40.091252 ], [ -75.054617, 40.091369 ], [ -75.054332, 40.09155 ], [ -75.054067, 40.091711 ], [ -75.053945, 40.091798 ], [ -75.053792, 40.091921 ], [ -75.053486, 40.092189 ], [ -75.053084, 40.092539 ], [ -75.052783, 40.0928 ], [ -75.052557, 40.092996 ], [ -75.051938, 40.093562 ], [ -75.05176, 40.093739 ], [ -75.051434, 40.094062 ], [ -75.051205, 40.094275 ], [ -75.05106, 40.09441 ], [ -75.050837, 40.094619 ], [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032873, 40.105109 ], [ -75.032816, 40.105138 ], [ -75.030795, 40.106106 ], [ -75.030093, 40.106438 ], [ -75.029412, 40.106763 ], [ -75.028195, 40.107349 ], [ -75.027617, 40.107618 ], [ -75.027325, 40.107756 ], [ -75.027203, 40.107824 ], [ -75.027158, 40.107898 ], [ -75.027033, 40.107973 ], [ -75.026894, 40.108005 ], [ -75.026834, 40.108011 ], [ -75.026781, 40.108004 ], [ -75.026682, 40.10798 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028761, 40.102458 ], [ -75.028717, 40.102429 ], [ -75.028382, 40.102211 ], [ -75.028283, 40.102153 ], [ -75.02814, 40.10207 ], [ -75.027616, 40.101752 ], [ -75.027385, 40.101645 ], [ -75.027261, 40.101596 ], [ -75.027061, 40.101524 ], [ -75.026861, 40.101465 ], [ -75.026802, 40.101448 ], [ -75.02662, 40.101398 ], [ -75.026609, 40.101395 ], [ -75.026349, 40.101333 ], [ -75.02559, 40.101155 ], [ -75.025495, 40.101133 ], [ -75.025274, 40.101081 ], [ -75.024847, 40.100974 ], [ -75.024543, 40.100896 ], [ -75.024417, 40.100864 ], [ -75.024115, 40.100787 ], [ -75.023949, 40.100743 ], [ -75.023647, 40.100668 ], [ -75.023234, 40.100564 ], [ -75.022913, 40.10048 ], [ -75.022483, 40.100355 ], [ -75.022393, 40.100328 ], [ -75.022331, 40.100311 ], [ -75.022213, 40.100274 ], [ -75.022072, 40.100213 ], [ -75.021934, 40.100142 ], [ -75.021847, 40.100097 ], [ -75.021777, 40.100054 ], [ -75.021678, 40.099979 ], [ -75.0215, 40.099844 ], [ -75.020422, 40.098949 ], [ -75.019701, 40.098352 ], [ -75.018903, 40.097656 ], [ -75.018835, 40.097599 ], [ -75.018723, 40.097508 ], [ -75.0187, 40.097492 ], [ -75.018251, 40.097132 ], [ -75.018134, 40.097155 ], [ -75.01759, 40.097352 ], [ -75.017387, 40.097426 ], [ -75.017122, 40.097517 ], [ -75.016648, 40.097684 ], [ -75.016436, 40.09776 ], [ -75.01605, 40.097896 ], [ -75.015615, 40.098044 ], [ -75.015127, 40.098212 ], [ -75.014932, 40.098281 ], [ -75.01423, 40.098531 ], [ -75.01402, 40.098604 ], [ -75.013294, 40.098856 ], [ -75.012836, 40.099014 ], [ -75.012354, 40.099181 ], [ -75.011865, 40.099349 ], [ -75.011485, 40.099481 ], [ -75.011309, 40.099543 ], [ -75.01015, 40.099956 ], [ -75.010017, 40.100488 ], [ -75.00876, 40.100966 ], [ -75.008, 40.101383 ], [ -75.0068, 40.102217 ], [ -75.00638, 40.101768 ], [ -75.006231, 40.101645 ], [ -75.006082, 40.101516 ], [ -75.005954, 40.101409 ], [ -75.00535, 40.101824 ], [ -75.003933, 40.102805 ], [ -75.002893, 40.103521 ], [ -75.002669, 40.10368 ], [ -75.002071, 40.104088 ], [ -75.001967, 40.104158 ], [ -75.001534, 40.104461 ], [ -75.001398, 40.104552 ], [ -75.001298, 40.104473 ], [ -75.000975, 40.104189 ], [ -74.999882, 40.103285 ], [ -74.9998, 40.103218 ], [ -74.99941, 40.1029 ], [ -74.999183, 40.102716 ], [ -74.999073, 40.102627 ], [ -74.998984, 40.102557 ], [ -74.998896, 40.10248 ], [ -74.998828, 40.10241 ], [ -74.998762, 40.102342 ], [ -74.998672, 40.102242 ], [ -74.998571, 40.102112 ], [ -74.998459, 40.101963 ], [ -74.998387, 40.10187 ], [ -74.998299, 40.101771 ], [ -74.998223, 40.101689 ], [ -74.998145, 40.101614 ], [ -74.998001, 40.101485 ], [ -74.997858, 40.101351 ], [ -74.997706, 40.101217 ], [ -74.997413, 40.100953 ], [ -74.997091, 40.100643 ], [ -74.996841, 40.100398 ], [ -74.996202, 40.099835 ], [ -74.995449, 40.099181 ], [ -74.994954, 40.098749 ], [ -74.994857, 40.098664 ], [ -74.994683, 40.098524 ], [ -74.993803, 40.097818 ], [ -74.993226, 40.097349 ], [ -74.992421, 40.096713 ], [ -74.99205, 40.096416 ], [ -74.991864, 40.096268 ], [ -74.991586, 40.096045 ], [ -74.991252, 40.095789 ], [ -74.990974, 40.095553 ], [ -74.990744, 40.095358 ], [ -74.990287, 40.094964 ], [ -74.989691, 40.094463 ], [ -74.989438, 40.094248 ], [ -74.98912, 40.093976 ], [ -74.988645, 40.093583 ], [ -74.988488, 40.093453 ], [ -74.987409, 40.09256 ], [ -74.986434, 40.091757 ], [ -74.985191, 40.090733 ], [ -74.98481, 40.090413 ], [ -74.984673, 40.090305 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.994408, 40.081741 ], [ -74.994351, 40.081689 ], [ -74.9942, 40.081545 ], [ -74.993099, 40.080616 ], [ -74.991768, 40.079476 ], [ -74.991169, 40.078967 ], [ -74.990872, 40.078719 ], [ -74.989994, 40.077966 ], [ -74.989201, 40.077295 ], [ -74.988866, 40.076992 ], [ -74.98868, 40.076836 ], [ -74.988269, 40.076457 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307924", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077758, 40.023871 ], [ -75.077822, 40.023961 ], [ -75.077887, 40.024011 ], [ -75.077939, 40.024052 ], [ -75.078001, 40.024099 ], [ -75.078144, 40.024192 ], [ -75.078478, 40.024407 ], [ -75.079118, 40.024823 ], [ -75.079031, 40.024957 ], [ -75.078559, 40.024651 ], [ -75.077975, 40.024281 ], [ -75.077922, 40.024248 ], [ -75.077852, 40.024204 ], [ -75.077793, 40.024179 ], [ -75.077716, 40.024158 ], [ -75.07763, 40.024142 ], [ -75.077531, 40.024135 ], [ -75.077477, 40.024133 ], [ -75.07742, 40.024453 ], [ -75.077394, 40.024655 ], [ -75.077322, 40.024789 ], [ -75.076945, 40.025184 ], [ -75.076834, 40.025292 ], [ -75.076582, 40.025358 ], [ -75.076565, 40.02544 ], [ -75.076555, 40.025507 ], [ -75.076529, 40.025611 ], [ -75.076509, 40.025668 ], [ -75.076447, 40.025805 ], [ -75.076406, 40.025897 ], [ -75.076377, 40.025954 ], [ -75.076295, 40.026098 ], [ -75.076195, 40.02625 ], [ -75.075892, 40.026609 ], [ -75.075516, 40.027058 ], [ -75.075602, 40.027077 ], [ -75.076121, 40.027215 ], [ -75.076701, 40.027358 ], [ -75.076803, 40.027383 ], [ -75.077114, 40.027485 ], [ -75.077293, 40.027561 ], [ -75.077863, 40.027887 ], [ -75.078482, 40.028241 ], [ -75.079065, 40.028574 ], [ -75.079664, 40.028915 ], [ -75.07995, 40.029078 ], [ -75.08026, 40.029255 ], [ -75.080837, 40.029581 ], [ -75.08263, 40.030594 ], [ -75.08334, 40.030989 ], [ -75.083676, 40.031151 ], [ -75.084156, 40.031469 ], [ -75.084109, 40.031513 ], [ -75.084074, 40.031568 ], [ -75.084046, 40.031642 ], [ -75.084037, 40.03167 ], [ -75.084037, 40.031737 ], [ -75.084049, 40.031817 ], [ -75.084066, 40.031869 ], [ -75.084079, 40.03191 ], [ -75.084094, 40.031956 ], [ -75.084105, 40.031991 ], [ -75.084164, 40.032069 ], [ -75.084232, 40.032143 ], [ -75.084311, 40.032185 ], [ -75.084355, 40.032213 ], [ -75.084475, 40.032256 ], [ -75.084577, 40.032277 ], [ -75.084629, 40.032281 ], [ -75.084797, 40.032289 ], [ -75.084861, 40.032716 ], [ -75.084879, 40.032813 ], [ -75.084915, 40.032919 ], [ -75.084971, 40.033037 ], [ -75.085048, 40.033165 ], [ -75.085064, 40.033192 ], [ -75.085169, 40.033365 ], [ -75.085233, 40.033446 ], [ -75.08528, 40.033493 ], [ -75.085319, 40.033522 ], [ -75.085805, 40.033862 ], [ -75.08679, 40.034541 ], [ -75.087024, 40.034711 ], [ -75.087075, 40.034751 ], [ -75.087116, 40.034785 ], [ -75.087144, 40.034811 ], [ -75.087171, 40.034853 ], [ -75.087319, 40.035115 ], [ -75.0876, 40.03561 ], [ -75.087856, 40.036077 ], [ -75.087959, 40.036283 ], [ -75.0881, 40.036614 ], [ -75.088585, 40.037746 ], [ -75.08867, 40.037984 ], [ -75.088683, 40.038053 ], [ -75.088695, 40.03815 ], [ -75.088702, 40.038219 ], [ -75.088702, 40.038312 ], [ -75.0887, 40.038374 ], [ -75.0887, 40.038416 ], [ -75.088663, 40.038674 ], [ -75.088569, 40.039049 ], [ -75.088355, 40.039888 ], [ -75.088185, 40.040555 ], [ -75.088169, 40.040673 ], [ -75.08817, 40.04073 ], [ -75.088171, 40.040782 ], [ -75.088177, 40.040896 ], [ -75.0882, 40.041067 ], [ -75.088214, 40.041187 ], [ -75.087876, 40.041484 ], [ -75.087513, 40.041785 ], [ -75.08739, 40.041809 ], [ -75.08732, 40.041859 ], [ -75.08715, 40.042007 ], [ -75.086452, 40.042573 ], [ -75.085749, 40.043141 ], [ -75.085095, 40.043669 ], [ -75.08506, 40.043697 ], [ -75.085024, 40.043724 ], [ -75.084985, 40.043763 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.082995, 40.046372 ], [ -75.084049, 40.046954 ], [ -75.085622, 40.047806 ], [ -75.085696, 40.047853 ], [ -75.08538, 40.048184 ], [ -75.085095, 40.048487 ], [ -75.084809, 40.048798 ], [ -75.084505, 40.049111 ], [ -75.08391, 40.049744 ], [ -75.08362, 40.05005 ], [ -75.083334, 40.050351 ], [ -75.083047, 40.050652 ], [ -75.082793, 40.050917 ], [ -75.082456, 40.051249 ], [ -75.082141, 40.0516 ], [ -75.08187, 40.051902 ], [ -75.081605, 40.052184 ], [ -75.081344, 40.052467 ], [ -75.081023, 40.05281 ], [ -75.080683, 40.053173 ], [ -75.080412, 40.053455 ], [ -75.08012, 40.053757 ], [ -75.079788, 40.054117 ], [ -75.079559, 40.054355 ], [ -75.079501, 40.054415 ], [ -75.079201, 40.054719 ], [ -75.078915, 40.055031 ], [ -75.078616, 40.055349 ], [ -75.078398, 40.055586 ], [ -75.07753, 40.056517 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083472, 40.06145 ], [ -75.083465, 40.061586 ], [ -75.083466, 40.061665 ], [ -75.083469, 40.061758 ], [ -75.083486, 40.061946 ], [ -75.083486, 40.062079 ], [ -75.08348, 40.06328 ], [ -75.083482, 40.063741 ], [ -75.083499, 40.064038 ], [ -75.083523, 40.065073 ], [ -75.083528, 40.065247 ], [ -75.083529, 40.06529 ], [ -75.083534, 40.065342 ], [ -75.083542, 40.065404 ], [ -75.083557, 40.065478 ], [ -75.083482, 40.065501 ], [ -75.083428, 40.065526 ], [ -75.083383, 40.065559 ], [ -75.08334, 40.065601 ], [ -75.083259, 40.065647 ], [ -75.082638, 40.066243 ], [ -75.082269, 40.066606 ], [ -75.082151, 40.066715 ], [ -75.082097, 40.066768 ], [ -75.081523, 40.067299 ], [ -75.081268, 40.067581 ], [ -75.081164, 40.067695 ], [ -75.080912, 40.067972 ], [ -75.080871, 40.068014 ], [ -75.080572, 40.068291 ], [ -75.080272, 40.068571 ], [ -75.079647, 40.069189 ], [ -75.079029, 40.069792 ], [ -75.078396, 40.07039 ], [ -75.077845, 40.070956 ], [ -75.077813, 40.07098 ], [ -75.077776, 40.071017 ], [ -75.077177, 40.071612 ], [ -75.076616, 40.072154 ], [ -75.076499, 40.072262 ], [ -75.076236, 40.072529 ], [ -75.076102, 40.072666 ], [ -75.07588, 40.072892 ], [ -75.075273, 40.07346 ], [ -75.074725, 40.074007 ], [ -75.073823, 40.074892 ], [ -75.073726, 40.074988 ], [ -75.073481, 40.075228 ], [ -75.072847, 40.075852 ], [ -75.072208, 40.076447 ], [ -75.071607, 40.077053 ], [ -75.071338, 40.077306 ], [ -75.071216, 40.07742 ], [ -75.070977, 40.077645 ], [ -75.070652, 40.077979 ], [ -75.070548, 40.078087 ], [ -75.070355, 40.078275 ], [ -75.069871, 40.078753 ], [ -75.069756, 40.078866 ], [ -75.069273, 40.079325 ], [ -75.069254, 40.07939 ], [ -75.06921, 40.079432 ], [ -75.068749, 40.079887 ], [ -75.068485, 40.080149 ], [ -75.068417, 40.080228 ], [ -75.068367, 40.080281 ], [ -75.068317, 40.080326 ], [ -75.06824, 40.080391 ], [ -75.068134, 40.08047 ], [ -75.068044, 40.080538 ], [ -75.06789, 40.080638 ], [ -75.067095, 40.081157 ], [ -75.065949, 40.081945 ], [ -75.06519, 40.08246 ], [ -75.064326, 40.08305 ], [ -75.064211, 40.08313 ], [ -75.063954, 40.08331 ], [ -75.063613, 40.083544 ], [ -75.062424, 40.084385 ], [ -75.061684, 40.084892 ], [ -75.060277, 40.085861 ], [ -75.060067, 40.086006 ], [ -75.059701, 40.086248 ], [ -75.059454, 40.086411 ], [ -75.059229, 40.086571 ], [ -75.05909, 40.086681 ], [ -75.058938, 40.086814 ], [ -75.058804, 40.086956 ], [ -75.058706, 40.087083 ], [ -75.058573, 40.087275 ], [ -75.057586, 40.088854 ], [ -75.057461, 40.089056 ], [ -75.05741, 40.089136 ], [ -75.057317, 40.089284 ], [ -75.057244, 40.0894 ], [ -75.057174, 40.089495 ], [ -75.057057, 40.089665 ], [ -75.056908, 40.089844 ], [ -75.056833, 40.089866 ], [ -75.05669, 40.089991 ], [ -75.056555, 40.090106 ], [ -75.056456, 40.090185 ], [ -75.05637, 40.090252 ], [ -75.056283, 40.090311 ], [ -75.056176, 40.090384 ], [ -75.055957, 40.090523 ], [ -75.055651, 40.090714 ], [ -75.054802, 40.091252 ], [ -75.054617, 40.091369 ], [ -75.054332, 40.09155 ], [ -75.054067, 40.091711 ], [ -75.053945, 40.091798 ], [ -75.053792, 40.091921 ], [ -75.053486, 40.092189 ], [ -75.053084, 40.092539 ], [ -75.052783, 40.0928 ], [ -75.052557, 40.092996 ], [ -75.051938, 40.093562 ], [ -75.05176, 40.093739 ], [ -75.051434, 40.094062 ], [ -75.051205, 40.094275 ], [ -75.05106, 40.09441 ], [ -75.050837, 40.094619 ], [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032873, 40.105109 ], [ -75.032816, 40.105138 ], [ -75.030795, 40.106106 ], [ -75.030093, 40.106438 ], [ -75.029412, 40.106763 ], [ -75.028195, 40.107349 ], [ -75.027617, 40.107618 ], [ -75.027325, 40.107756 ], [ -75.027203, 40.107824 ], [ -75.027158, 40.107898 ], [ -75.027033, 40.107973 ], [ -75.026894, 40.108005 ], [ -75.026834, 40.108011 ], [ -75.026781, 40.108004 ], [ -75.026682, 40.10798 ], [ -75.026518, 40.107928 ], [ -75.026567, 40.107815 ], [ -75.0266, 40.107732 ], [ -75.026681, 40.107545 ], [ -75.027151, 40.10646 ], [ -75.027483, 40.105677 ], [ -75.027541, 40.105539 ], [ -75.027733, 40.105089 ], [ -75.028088, 40.104276 ], [ -75.028404, 40.103563 ], [ -75.028482, 40.10341 ], [ -75.028594, 40.103192 ], [ -75.028638, 40.103114 ], [ -75.028648, 40.10309 ], [ -75.028678, 40.103024 ], [ -75.02874, 40.102886 ], [ -75.028832, 40.102637 ], [ -75.028852, 40.102585 ], [ -75.028872, 40.102533 ], [ -75.028761, 40.102458 ], [ -75.028717, 40.102429 ], [ -75.028382, 40.102211 ], [ -75.028283, 40.102153 ], [ -75.02814, 40.10207 ], [ -75.027616, 40.101752 ], [ -75.027385, 40.101645 ], [ -75.027261, 40.101596 ], [ -75.027061, 40.101524 ], [ -75.026861, 40.101465 ], [ -75.026802, 40.101448 ], [ -75.02662, 40.101398 ], [ -75.026609, 40.101395 ], [ -75.026349, 40.101333 ], [ -75.02559, 40.101155 ], [ -75.025495, 40.101133 ], [ -75.025274, 40.101081 ], [ -75.024847, 40.100974 ], [ -75.024543, 40.100896 ], [ -75.024417, 40.100864 ], [ -75.024115, 40.100787 ], [ -75.023949, 40.100743 ], [ -75.023647, 40.100668 ], [ -75.023234, 40.100564 ], [ -75.022913, 40.10048 ], [ -75.022483, 40.100355 ], [ -75.022393, 40.100328 ], [ -75.022331, 40.100311 ], [ -75.022213, 40.100274 ], [ -75.022072, 40.100213 ], [ -75.021934, 40.100142 ], [ -75.021847, 40.100097 ], [ -75.021777, 40.100054 ], [ -75.021678, 40.099979 ], [ -75.0215, 40.099844 ], [ -75.020422, 40.098949 ], [ -75.019701, 40.098352 ], [ -75.018903, 40.097656 ], [ -75.018835, 40.097599 ], [ -75.018723, 40.097508 ], [ -75.0187, 40.097492 ], [ -75.018251, 40.097132 ], [ -75.017919, 40.096847 ], [ -75.017585, 40.096556 ], [ -75.017569, 40.096549 ], [ -75.017481, 40.09653 ], [ -75.016841, 40.096019 ], [ -75.016444, 40.095694 ], [ -75.016083, 40.095398 ], [ -75.015621, 40.095019 ], [ -75.015487, 40.094906 ], [ -75.015324, 40.094775 ], [ -75.015187, 40.094665 ], [ -75.015068, 40.094561 ], [ -75.014489, 40.094052 ], [ -75.014464, 40.094032 ], [ -75.014443, 40.093972 ], [ -75.014024, 40.093629 ], [ -75.013947, 40.093607 ], [ -75.013427, 40.093185 ], [ -75.013235, 40.093028 ], [ -75.013185, 40.092987 ], [ -75.01295, 40.092797 ], [ -75.0128, 40.092673 ], [ -75.012767, 40.092645 ], [ -75.01216, 40.092143 ], [ -75.01191, 40.091937 ], [ -75.011655, 40.091728 ], [ -75.011252, 40.091398 ], [ -75.011134, 40.091302 ], [ -75.010641, 40.090905 ], [ -75.01052, 40.090819 ], [ -75.010497, 40.090762 ], [ -75.010391, 40.090686 ], [ -75.010278, 40.090621 ], [ -75.010163, 40.090556 ], [ -75.010094, 40.090529 ], [ -75.009982, 40.090486 ], [ -75.009678, 40.090412 ], [ -75.009632, 40.090418 ], [ -75.009459, 40.090387 ], [ -75.009345, 40.090376 ], [ -75.009243, 40.090368 ], [ -75.009121, 40.090365 ], [ -75.009036, 40.090365 ], [ -75.008945, 40.09037 ], [ -75.00886, 40.090377 ], [ -75.008789, 40.090385 ], [ -75.008716, 40.090399 ], [ -75.008585, 40.090427 ], [ -75.008423, 40.090472 ], [ -75.00826, 40.090526 ], [ -75.008164, 40.090565 ], [ -75.008046, 40.090619 ], [ -75.007894, 40.090705 ], [ -75.007776, 40.090782 ], [ -75.007674, 40.090855 ], [ -75.007583, 40.090917 ], [ -75.007455, 40.091004 ], [ -75.007098, 40.091243 ], [ -75.006856, 40.091412 ], [ -75.006177, 40.091876 ], [ -75.005866, 40.092085 ], [ -75.005571, 40.092288 ], [ -75.005383, 40.092414 ], [ -75.004424, 40.09307 ], [ -75.003925, 40.09341 ], [ -75.003318, 40.093821 ], [ -75.002826, 40.09415 ], [ -75.003569, 40.094789 ], [ -75.00432, 40.09544 ], [ -75.004978, 40.09601 ], [ -75.005087, 40.096103 ], [ -75.005168, 40.096173 ], [ -75.005249, 40.096247 ], [ -75.005304, 40.096316 ], [ -75.005308, 40.096435 ], [ -75.005293, 40.096638 ], [ -75.005264, 40.09672 ], [ -75.005185, 40.096789 ], [ -75.003199, 40.098166 ], [ -75.002404, 40.098718 ], [ -75.001285, 40.099477 ], [ -75.000312, 40.100148 ], [ -74.999764, 40.100556 ], [ -74.999431, 40.100761 ], [ -74.998939, 40.101101 ], [ -74.998679, 40.101278 ], [ -74.99852, 40.101386 ], [ -74.998402, 40.101464 ], [ -74.998328, 40.10151 ], [ -74.998234, 40.101569 ], [ -74.998145, 40.101614 ], [ -74.998001, 40.101485 ], [ -74.997858, 40.101351 ], [ -74.997706, 40.101217 ], [ -74.997413, 40.100953 ], [ -74.997091, 40.100643 ], [ -74.996841, 40.100398 ], [ -74.996202, 40.099835 ], [ -74.995449, 40.099181 ], [ -74.994954, 40.098749 ], [ -74.994857, 40.098664 ], [ -74.994683, 40.098524 ], [ -74.993803, 40.097818 ], [ -74.993226, 40.097349 ], [ -74.992421, 40.096713 ], [ -74.99205, 40.096416 ], [ -74.991864, 40.096268 ], [ -74.991586, 40.096045 ], [ -74.991252, 40.095789 ], [ -74.990974, 40.095553 ], [ -74.990744, 40.095358 ], [ -74.990287, 40.094964 ], [ -74.989691, 40.094463 ], [ -74.989438, 40.094248 ], [ -74.98912, 40.093976 ], [ -74.988645, 40.093583 ], [ -74.988488, 40.093453 ], [ -74.987409, 40.09256 ], [ -74.986434, 40.091757 ], [ -74.985191, 40.090733 ], [ -74.98481, 40.090413 ], [ -74.984673, 40.090305 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.994408, 40.081741 ], [ -74.994351, 40.081689 ], [ -74.9942, 40.081545 ], [ -74.993099, 40.080616 ], [ -74.991768, 40.079476 ], [ -74.991169, 40.078967 ], [ -74.990872, 40.078719 ], [ -74.989994, 40.077966 ], [ -74.989201, 40.077295 ], [ -74.988866, 40.076992 ], [ -74.98868, 40.076836 ], [ -74.988269, 40.076457 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307925", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.00546, 40.11362 ], [ -75.00529, 40.113729 ], [ -75.004959, 40.11386 ], [ -75.004491, 40.112865 ], [ -75.004361, 40.112585 ], [ -75.004274, 40.112401 ], [ -75.004286, 40.11234 ], [ -75.004286, 40.112321 ], [ -75.004281, 40.112303 ], [ -75.004096, 40.111897 ], [ -75.003964, 40.111627 ], [ -75.00392, 40.111526 ], [ -75.003707, 40.111041 ], [ -75.003688, 40.111013 ], [ -75.003663, 40.110987 ], [ -75.003619, 40.110959 ], [ -75.00356, 40.110859 ], [ -75.003498, 40.110718 ], [ -75.003446, 40.110591 ], [ -75.00338, 40.110472 ], [ -75.003371, 40.110454 ], [ -75.003315, 40.110375 ], [ -75.00325, 40.1103 ], [ -75.003141, 40.1102 ], [ -75.000833, 40.108176 ], [ -75.000075, 40.107507 ], [ -74.999997, 40.107437 ], [ -74.999862, 40.107315 ], [ -74.999735, 40.107195 ], [ -74.999513, 40.106992 ], [ -74.999467, 40.10695 ], [ -74.99931, 40.106808 ], [ -74.999214, 40.106719 ], [ -74.999346, 40.106628 ], [ -75.000023, 40.106154 ], [ -75.000654, 40.105723 ], [ -75.001257, 40.105298 ], [ -75.001285, 40.105278 ], [ -75.001567, 40.105081 ], [ -75.00169, 40.105 ], [ -75.001747, 40.104963 ], [ -75.001802, 40.104926 ], [ -75.001655, 40.104791 ], [ -75.001517, 40.104664 ], [ -75.001398, 40.104552 ], [ -75.001298, 40.104473 ], [ -75.000975, 40.104189 ], [ -74.999882, 40.103285 ], [ -74.9998, 40.103218 ], [ -74.99941, 40.1029 ], [ -74.999183, 40.102716 ], [ -74.999073, 40.102627 ], [ -74.998984, 40.102557 ], [ -74.998896, 40.10248 ], [ -74.998828, 40.10241 ], [ -74.998762, 40.102342 ], [ -74.998672, 40.102242 ], [ -74.998571, 40.102112 ], [ -74.998459, 40.101963 ], [ -74.998387, 40.10187 ], [ -74.998299, 40.101771 ], [ -74.998223, 40.101689 ], [ -74.998145, 40.101614 ], [ -74.998001, 40.101485 ], [ -74.997858, 40.101351 ], [ -74.997706, 40.101217 ], [ -74.997413, 40.100953 ], [ -74.997091, 40.100643 ], [ -74.996841, 40.100398 ], [ -74.996202, 40.099835 ], [ -74.995449, 40.099181 ], [ -74.994954, 40.098749 ], [ -74.994857, 40.098664 ], [ -74.994683, 40.098524 ], [ -74.993803, 40.097818 ], [ -74.993226, 40.097349 ], [ -74.992421, 40.096713 ], [ -74.99205, 40.096416 ], [ -74.991864, 40.096268 ], [ -74.991586, 40.096045 ], [ -74.991252, 40.095789 ], [ -74.990974, 40.095553 ], [ -74.990744, 40.095358 ], [ -74.990287, 40.094964 ], [ -74.989691, 40.094463 ], [ -74.989438, 40.094248 ], [ -74.98912, 40.093976 ], [ -74.988645, 40.093583 ], [ -74.988488, 40.093453 ], [ -74.987409, 40.09256 ], [ -74.986434, 40.091757 ], [ -74.985191, 40.090733 ], [ -74.98481, 40.090413 ], [ -74.984673, 40.090305 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.994408, 40.081741 ], [ -74.994351, 40.081689 ], [ -74.9942, 40.081545 ], [ -74.993099, 40.080616 ], [ -74.991768, 40.079476 ], [ -74.991169, 40.078967 ], [ -74.990872, 40.078719 ], [ -74.989994, 40.077966 ], [ -74.989201, 40.077295 ], [ -74.988866, 40.076992 ], [ -74.98868, 40.076836 ], [ -74.988269, 40.076457 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307926", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.016542, 40.104143 ], [ -75.015903, 40.10463 ], [ -75.015778, 40.104724 ], [ -75.015509, 40.104476 ], [ -75.015352, 40.104335 ], [ -75.015217, 40.104206 ], [ -75.015084, 40.104067 ], [ -75.014969, 40.10393 ], [ -75.014871, 40.103809 ], [ -75.014797, 40.103701 ], [ -75.014733, 40.103601 ], [ -75.01465, 40.10346 ], [ -75.014606, 40.103373 ], [ -75.014516, 40.103209 ], [ -75.013862, 40.10198 ], [ -75.013781, 40.101831 ], [ -75.013677, 40.101642 ], [ -75.013522, 40.101352 ], [ -75.01342, 40.101163 ], [ -75.013328, 40.100987 ], [ -75.013127, 40.100617 ], [ -75.013041, 40.100449 ], [ -75.012987, 40.100352 ], [ -75.012688, 40.099786 ], [ -75.012394, 40.099259 ], [ -75.012354, 40.099181 ], [ -75.011865, 40.099349 ], [ -75.011485, 40.099481 ], [ -75.011309, 40.099543 ], [ -75.01015, 40.099956 ], [ -75.010017, 40.100488 ], [ -75.00876, 40.100966 ], [ -75.008, 40.101383 ], [ -75.0068, 40.102217 ], [ -75.00638, 40.101768 ], [ -75.006231, 40.101645 ], [ -75.006082, 40.101516 ], [ -75.005954, 40.101409 ], [ -75.00535, 40.101824 ], [ -75.003933, 40.102805 ], [ -75.002893, 40.103521 ], [ -75.002669, 40.10368 ], [ -75.002071, 40.104088 ], [ -75.001967, 40.104158 ], [ -75.001534, 40.104461 ], [ -75.001398, 40.104552 ], [ -75.001298, 40.104473 ], [ -75.000975, 40.104189 ], [ -74.999882, 40.103285 ], [ -74.9998, 40.103218 ], [ -74.99941, 40.1029 ], [ -74.999183, 40.102716 ], [ -74.999073, 40.102627 ], [ -74.998984, 40.102557 ], [ -74.998896, 40.10248 ], [ -74.998828, 40.10241 ], [ -74.998762, 40.102342 ], [ -74.998672, 40.102242 ], [ -74.998571, 40.102112 ], [ -74.998459, 40.101963 ], [ -74.998387, 40.10187 ], [ -74.998299, 40.101771 ], [ -74.998223, 40.101689 ], [ -74.998145, 40.101614 ], [ -74.998001, 40.101485 ], [ -74.997858, 40.101351 ], [ -74.997706, 40.101217 ], [ -74.997413, 40.100953 ], [ -74.997091, 40.100643 ], [ -74.996841, 40.100398 ], [ -74.996202, 40.099835 ], [ -74.995449, 40.099181 ], [ -74.994954, 40.098749 ], [ -74.994857, 40.098664 ], [ -74.994683, 40.098524 ], [ -74.993803, 40.097818 ], [ -74.993226, 40.097349 ], [ -74.992421, 40.096713 ], [ -74.99205, 40.096416 ], [ -74.991864, 40.096268 ], [ -74.991586, 40.096045 ], [ -74.991252, 40.095789 ], [ -74.990974, 40.095553 ], [ -74.990744, 40.095358 ], [ -74.990287, 40.094964 ], [ -74.989691, 40.094463 ], [ -74.989438, 40.094248 ], [ -74.98912, 40.093976 ], [ -74.988645, 40.093583 ], [ -74.988488, 40.093453 ], [ -74.987409, 40.09256 ], [ -74.986434, 40.091757 ], [ -74.985191, 40.090733 ], [ -74.98481, 40.090413 ], [ -74.984673, 40.090305 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.994408, 40.081741 ], [ -74.994351, 40.081689 ], [ -74.9942, 40.081545 ], [ -74.993099, 40.080616 ], [ -74.991768, 40.079476 ], [ -74.991169, 40.078967 ], [ -74.990872, 40.078719 ], [ -74.989994, 40.077966 ], [ -74.989201, 40.077295 ], [ -74.988866, 40.076992 ], [ -74.98868, 40.076836 ], [ -74.988269, 40.076457 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307927", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.050705, 40.094744 ], [ -75.050519, 40.094922 ], [ -75.050062, 40.095391 ], [ -75.048354, 40.097055 ], [ -75.047795, 40.097597 ], [ -75.047588, 40.097798 ], [ -75.047497, 40.097886 ], [ -75.047167, 40.098206 ], [ -75.047111, 40.098257 ], [ -75.047049, 40.098302 ], [ -75.046984, 40.098346 ], [ -75.046916, 40.098386 ], [ -75.046841, 40.098426 ], [ -75.046278, 40.098707 ], [ -75.045515, 40.099072 ], [ -75.043483, 40.100043 ], [ -75.043156, 40.100201 ], [ -75.042594, 40.100466 ], [ -75.039771, 40.101824 ], [ -75.038508, 40.102421 ], [ -75.036943, 40.103167 ], [ -75.034896, 40.104146 ], [ -75.034367, 40.104397 ], [ -75.033765, 40.104684 ], [ -75.033508, 40.104806 ], [ -75.032941, 40.105077 ], [ -75.032447, 40.104771 ], [ -75.03218, 40.104603 ], [ -75.03201, 40.1045 ], [ -75.031453, 40.104151 ], [ -75.03133, 40.104074 ], [ -75.031078, 40.103916 ], [ -75.030756, 40.103715 ], [ -75.030234, 40.103388 ], [ -75.029935, 40.103201 ], [ -75.029815, 40.103125 ], [ -75.029321, 40.102815 ], [ -75.028872, 40.102533 ], [ -75.028761, 40.102458 ], [ -75.028717, 40.102429 ], [ -75.028382, 40.102211 ], [ -75.028283, 40.102153 ], [ -75.02814, 40.10207 ], [ -75.027616, 40.101752 ], [ -75.027385, 40.101645 ], [ -75.027261, 40.101596 ], [ -75.027061, 40.101524 ], [ -75.026861, 40.101465 ], [ -75.026802, 40.101448 ], [ -75.02662, 40.101398 ], [ -75.026609, 40.101395 ], [ -75.026349, 40.101333 ], [ -75.02559, 40.101155 ], [ -75.025495, 40.101133 ], [ -75.025274, 40.101081 ], [ -75.024847, 40.100974 ], [ -75.024543, 40.100896 ], [ -75.024417, 40.100864 ], [ -75.024115, 40.100787 ], [ -75.023949, 40.100743 ], [ -75.023647, 40.100668 ], [ -75.023234, 40.100564 ], [ -75.022913, 40.10048 ], [ -75.022483, 40.100355 ], [ -75.022393, 40.100328 ], [ -75.022331, 40.100311 ], [ -75.022213, 40.100274 ], [ -75.022072, 40.100213 ], [ -75.021934, 40.100142 ], [ -75.021847, 40.100097 ], [ -75.021777, 40.100054 ], [ -75.021678, 40.099979 ], [ -75.0215, 40.099844 ], [ -75.020422, 40.098949 ], [ -75.019701, 40.098352 ], [ -75.018903, 40.097656 ], [ -75.018835, 40.097599 ], [ -75.018723, 40.097508 ], [ -75.0187, 40.097492 ], [ -75.018251, 40.097132 ], [ -75.018134, 40.097155 ], [ -75.01759, 40.097352 ], [ -75.017387, 40.097426 ], [ -75.017122, 40.097517 ], [ -75.016648, 40.097684 ], [ -75.016436, 40.09776 ], [ -75.01605, 40.097896 ], [ -75.015615, 40.098044 ], [ -75.015127, 40.098212 ], [ -75.014932, 40.098281 ], [ -75.01423, 40.098531 ], [ -75.01402, 40.098604 ], [ -75.013294, 40.098856 ], [ -75.012836, 40.099014 ], [ -75.012354, 40.099181 ], [ -75.011865, 40.099349 ], [ -75.011485, 40.099481 ], [ -75.011309, 40.099543 ], [ -75.01015, 40.099956 ], [ -75.010017, 40.100488 ], [ -75.00876, 40.100966 ], [ -75.008, 40.101383 ], [ -75.0068, 40.102217 ], [ -75.00638, 40.101768 ], [ -75.006231, 40.101645 ], [ -75.006082, 40.101516 ], [ -75.005954, 40.101409 ], [ -75.00535, 40.101824 ], [ -75.003933, 40.102805 ], [ -75.002893, 40.103521 ], [ -75.002669, 40.10368 ], [ -75.002071, 40.104088 ], [ -75.001967, 40.104158 ], [ -75.001534, 40.104461 ], [ -75.001398, 40.104552 ], [ -75.001298, 40.104473 ], [ -75.000975, 40.104189 ], [ -74.999882, 40.103285 ], [ -74.9998, 40.103218 ], [ -74.99941, 40.1029 ], [ -74.999183, 40.102716 ], [ -74.999073, 40.102627 ], [ -74.998984, 40.102557 ], [ -74.998896, 40.10248 ], [ -74.998828, 40.10241 ], [ -74.998762, 40.102342 ], [ -74.998672, 40.102242 ], [ -74.998571, 40.102112 ], [ -74.998459, 40.101963 ], [ -74.998387, 40.10187 ], [ -74.998299, 40.101771 ], [ -74.998223, 40.101689 ], [ -74.998145, 40.101614 ], [ -74.998001, 40.101485 ], [ -74.997858, 40.101351 ], [ -74.997706, 40.101217 ], [ -74.997413, 40.100953 ], [ -74.997091, 40.100643 ], [ -74.996841, 40.100398 ], [ -74.996202, 40.099835 ], [ -74.995449, 40.099181 ], [ -74.994954, 40.098749 ], [ -74.994857, 40.098664 ], [ -74.994683, 40.098524 ], [ -74.993803, 40.097818 ], [ -74.993226, 40.097349 ], [ -74.992421, 40.096713 ], [ -74.99205, 40.096416 ], [ -74.991864, 40.096268 ], [ -74.991586, 40.096045 ], [ -74.991252, 40.095789 ], [ -74.990974, 40.095553 ], [ -74.990744, 40.095358 ], [ -74.990287, 40.094964 ], [ -74.989691, 40.094463 ], [ -74.989438, 40.094248 ], [ -74.98912, 40.093976 ], [ -74.988645, 40.093583 ], [ -74.988488, 40.093453 ], [ -74.987409, 40.09256 ], [ -74.986434, 40.091757 ], [ -74.985191, 40.090733 ], [ -74.98481, 40.090413 ], [ -74.984673, 40.090305 ], [ -74.984292, 40.089996 ], [ -74.984567, 40.089765 ], [ -74.984648, 40.089695 ], [ -74.984735, 40.08962 ], [ -74.984805, 40.089551 ], [ -74.984867, 40.08949 ], [ -74.98494, 40.089413 ], [ -74.985007, 40.089338 ], [ -74.985063, 40.08927 ], [ -74.985115, 40.089206 ], [ -74.985154, 40.089152 ], [ -74.985188, 40.089104 ], [ -74.985218, 40.089058 ], [ -74.985252, 40.089003 ], [ -74.985299, 40.088927 ], [ -74.98534, 40.088856 ], [ -74.985372, 40.088799 ], [ -74.985424, 40.088702 ], [ -74.985477, 40.088606 ], [ -74.985573, 40.088428 ], [ -74.985595, 40.088386 ], [ -74.985863, 40.087892 ], [ -74.985933, 40.087773 ], [ -74.985993, 40.087669 ], [ -74.986115, 40.087492 ], [ -74.98637, 40.087129 ], [ -74.986456, 40.087004 ], [ -74.986687, 40.086669 ], [ -74.986756, 40.086578 ], [ -74.986817, 40.086508 ], [ -74.986877, 40.086425 ], [ -74.986989, 40.086293 ], [ -74.987072, 40.086202 ], [ -74.987224, 40.086057 ], [ -74.987375, 40.085927 ], [ -74.987826, 40.085553 ], [ -74.987885, 40.085505 ], [ -74.988303, 40.085171 ], [ -74.988309, 40.085167 ], [ -74.988497, 40.085024 ], [ -74.98865, 40.084911 ], [ -74.988776, 40.084828 ], [ -74.988905, 40.084753 ], [ -74.98907, 40.084661 ], [ -74.989246, 40.084572 ], [ -74.98948, 40.084465 ], [ -74.989595, 40.084413 ], [ -74.990133, 40.084176 ], [ -74.990355, 40.084078 ], [ -74.990504, 40.084008 ], [ -74.99069, 40.083908 ], [ -74.991579, 40.083404 ], [ -74.99175, 40.083307 ], [ -74.993986, 40.082029 ], [ -74.994441, 40.08177 ], [ -74.994408, 40.081741 ], [ -74.994351, 40.081689 ], [ -74.9942, 40.081545 ], [ -74.993099, 40.080616 ], [ -74.991768, 40.079476 ], [ -74.991169, 40.078967 ], [ -74.990872, 40.078719 ], [ -74.989994, 40.077966 ], [ -74.989201, 40.077295 ], [ -74.988866, 40.076992 ], [ -74.98868, 40.076836 ], [ -74.988269, 40.076457 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307930", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307931", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.026441, 40.107891 ], [ -75.026518, 40.107928 ], [ -75.026682, 40.10798 ], [ -75.026781, 40.108004 ], [ -75.026834, 40.108011 ], [ -75.026894, 40.108005 ], [ -75.027033, 40.107973 ], [ -75.027158, 40.107898 ], [ -75.027272, 40.10789 ], [ -75.02825, 40.10742 ], [ -75.029521, 40.106812 ], [ -75.030157, 40.106505 ], [ -75.030811, 40.106195 ], [ -75.032343, 40.105456 ], [ -75.032458, 40.105403 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084629, 40.032281 ], [ -75.084577, 40.032277 ], [ -75.084475, 40.032256 ], [ -75.084355, 40.032213 ], [ -75.084311, 40.032185 ], [ -75.084232, 40.032143 ], [ -75.084164, 40.032069 ], [ -75.084105, 40.031991 ], [ -75.084094, 40.031956 ], [ -75.084079, 40.03191 ], [ -75.084066, 40.031869 ], [ -75.084049, 40.031817 ], [ -75.084037, 40.031737 ], [ -75.084037, 40.03167 ], [ -75.084046, 40.031642 ], [ -75.084074, 40.031568 ], [ -75.084109, 40.031513 ], [ -75.084156, 40.031469 ], [ -75.084268, 40.031394 ], [ -75.084375, 40.031337 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307932", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.029383, 40.10147 ], [ -75.029624, 40.10092 ], [ -75.029727, 40.100697 ], [ -75.029721, 40.100571 ], [ -75.029758, 40.1005 ], [ -75.029787, 40.100446 ], [ -75.029654, 40.100432 ], [ -75.02944, 40.100426 ], [ -75.029356, 40.100443 ], [ -75.029208, 40.100546 ], [ -75.028543, 40.101051 ], [ -75.027616, 40.101752 ], [ -75.027553, 40.101796 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.026518, 40.107928 ], [ -75.026682, 40.10798 ], [ -75.026781, 40.108004 ], [ -75.026834, 40.108011 ], [ -75.026894, 40.108005 ], [ -75.027033, 40.107973 ], [ -75.027158, 40.107898 ], [ -75.027272, 40.10789 ], [ -75.02825, 40.10742 ], [ -75.029521, 40.106812 ], [ -75.030157, 40.106505 ], [ -75.030811, 40.106195 ], [ -75.032343, 40.105456 ], [ -75.032458, 40.105403 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307933", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.016542, 40.104143 ], [ -75.01719, 40.103656 ], [ -75.017867, 40.103142 ], [ -75.01896, 40.102317 ], [ -75.020671, 40.101012 ], [ -75.021566, 40.100328 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028832, 40.102637 ], [ -75.028877, 40.102664 ], [ -75.029364, 40.102968 ], [ -75.029483, 40.103043 ], [ -75.029763, 40.103221 ], [ -75.029907, 40.103313 ], [ -75.03038, 40.103605 ], [ -75.030701, 40.103803 ], [ -75.03101, 40.103994 ], [ -75.031024, 40.104003 ], [ -75.031264, 40.104152 ], [ -75.031728, 40.104442 ], [ -75.031852, 40.10452 ], [ -75.032106, 40.104683 ], [ -75.032273, 40.104791 ], [ -75.032483, 40.104922 ], [ -75.032726, 40.105073 ], [ -75.032816, 40.105138 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307934", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.998001, 40.101485 ], [ -74.998145, 40.101614 ], [ -74.998234, 40.101569 ], [ -74.998328, 40.10151 ], [ -74.998402, 40.101464 ], [ -74.99852, 40.101386 ], [ -74.998679, 40.101278 ], [ -74.998939, 40.101101 ], [ -74.999431, 40.100761 ], [ -74.999764, 40.100556 ], [ -75.000312, 40.100148 ], [ -75.001285, 40.099477 ], [ -75.002404, 40.098718 ], [ -75.003199, 40.098166 ], [ -75.005185, 40.096789 ], [ -75.005264, 40.09672 ], [ -75.005293, 40.096638 ], [ -75.005308, 40.096435 ], [ -75.005304, 40.096316 ], [ -75.005249, 40.096247 ], [ -75.005168, 40.096173 ], [ -75.005087, 40.096103 ], [ -75.004978, 40.09601 ], [ -75.00432, 40.09544 ], [ -75.003569, 40.094789 ], [ -75.002826, 40.09415 ], [ -75.003318, 40.093821 ], [ -75.003925, 40.09341 ], [ -75.004424, 40.09307 ], [ -75.005383, 40.092414 ], [ -75.005571, 40.092288 ], [ -75.005866, 40.092085 ], [ -75.006177, 40.091876 ], [ -75.006856, 40.091412 ], [ -75.007098, 40.091243 ], [ -75.007455, 40.091004 ], [ -75.007583, 40.090917 ], [ -75.007674, 40.090855 ], [ -75.007776, 40.090782 ], [ -75.007894, 40.090705 ], [ -75.008046, 40.090619 ], [ -75.008164, 40.090565 ], [ -75.00826, 40.090526 ], [ -75.008423, 40.090472 ], [ -75.008585, 40.090427 ], [ -75.008716, 40.090399 ], [ -75.008789, 40.090385 ], [ -75.00886, 40.090377 ], [ -75.008945, 40.09037 ], [ -75.009036, 40.090365 ], [ -75.009121, 40.090365 ], [ -75.009243, 40.090368 ], [ -75.009345, 40.090376 ], [ -75.009459, 40.090387 ], [ -75.009632, 40.090418 ], [ -75.009667, 40.090451 ], [ -75.009825, 40.090506 ], [ -75.009893, 40.090526 ], [ -75.010052, 40.090579 ], [ -75.010069, 40.090586 ], [ -75.010153, 40.090622 ], [ -75.0103, 40.090703 ], [ -75.010457, 40.090809 ], [ -75.01052, 40.090819 ], [ -75.010641, 40.090905 ], [ -75.011134, 40.091302 ], [ -75.011252, 40.091398 ], [ -75.011655, 40.091728 ], [ -75.01191, 40.091937 ], [ -75.01216, 40.092143 ], [ -75.012767, 40.092645 ], [ -75.0128, 40.092673 ], [ -75.01295, 40.092797 ], [ -75.013185, 40.092987 ], [ -75.013235, 40.093028 ], [ -75.013427, 40.093185 ], [ -75.013947, 40.093607 ], [ -75.013972, 40.093677 ], [ -75.01439, 40.094015 ], [ -75.014464, 40.094032 ], [ -75.014489, 40.094052 ], [ -75.015068, 40.094561 ], [ -75.015187, 40.094665 ], [ -75.015324, 40.094775 ], [ -75.015487, 40.094906 ], [ -75.015621, 40.095019 ], [ -75.016083, 40.095398 ], [ -75.016444, 40.095694 ], [ -75.016841, 40.096019 ], [ -75.017481, 40.09653 ], [ -75.017501, 40.096604 ], [ -75.017799, 40.096865 ], [ -75.018024, 40.097063 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.026518, 40.107928 ], [ -75.026682, 40.10798 ], [ -75.026781, 40.108004 ], [ -75.026834, 40.108011 ], [ -75.026894, 40.108005 ], [ -75.027033, 40.107973 ], [ -75.027158, 40.107898 ], [ -75.027272, 40.10789 ], [ -75.02825, 40.10742 ], [ -75.029521, 40.106812 ], [ -75.030157, 40.106505 ], [ -75.030811, 40.106195 ], [ -75.032343, 40.105456 ], [ -75.032458, 40.105403 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307935", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984252, 40.089961 ], [ -74.984275, 40.08998 ], [ -74.984292, 40.089996 ], [ -74.984673, 40.090305 ], [ -74.98481, 40.090413 ], [ -74.985191, 40.090733 ], [ -74.986434, 40.091757 ], [ -74.987409, 40.09256 ], [ -74.988488, 40.093453 ], [ -74.988645, 40.093583 ], [ -74.98912, 40.093976 ], [ -74.989438, 40.094248 ], [ -74.989691, 40.094463 ], [ -74.990287, 40.094964 ], [ -74.990744, 40.095358 ], [ -74.990974, 40.095553 ], [ -74.991252, 40.095789 ], [ -74.991586, 40.096045 ], [ -74.991864, 40.096268 ], [ -74.99205, 40.096416 ], [ -74.992421, 40.096713 ], [ -74.993226, 40.097349 ], [ -74.993803, 40.097818 ], [ -74.994683, 40.098524 ], [ -74.994857, 40.098664 ], [ -74.994954, 40.098749 ], [ -74.995449, 40.099181 ], [ -74.996202, 40.099835 ], [ -74.996841, 40.100398 ], [ -74.997091, 40.100643 ], [ -74.997413, 40.100953 ], [ -74.997706, 40.101217 ], [ -74.997858, 40.101351 ], [ -74.998001, 40.101485 ], [ -74.998145, 40.101614 ], [ -74.998223, 40.101689 ], [ -74.998299, 40.101771 ], [ -74.998387, 40.10187 ], [ -74.998459, 40.101963 ], [ -74.998571, 40.102112 ], [ -74.998672, 40.102242 ], [ -74.998762, 40.102342 ], [ -74.998828, 40.10241 ], [ -74.998896, 40.10248 ], [ -74.998984, 40.102557 ], [ -74.999073, 40.102627 ], [ -74.999183, 40.102716 ], [ -74.99941, 40.1029 ], [ -74.9998, 40.103218 ], [ -74.999882, 40.103285 ], [ -75.000975, 40.104189 ], [ -75.001298, 40.104473 ], [ -75.001398, 40.104552 ], [ -75.001517, 40.104664 ], [ -75.001655, 40.104791 ], [ -75.001802, 40.104926 ], [ -75.002387, 40.104526 ], [ -75.002451, 40.104482 ], [ -75.002505, 40.104445 ], [ -75.003076, 40.104051 ], [ -75.003389, 40.103837 ], [ -75.003676, 40.103637 ], [ -75.004536, 40.103045 ], [ -75.004788, 40.10287 ], [ -75.005121, 40.102641 ], [ -75.005888, 40.102111 ], [ -75.006108, 40.101959 ], [ -75.00638, 40.101768 ], [ -75.0068, 40.102217 ], [ -75.008, 40.101383 ], [ -75.00876, 40.100966 ], [ -75.010017, 40.100488 ], [ -75.01015, 40.099956 ], [ -75.011309, 40.099543 ], [ -75.011485, 40.099481 ], [ -75.011865, 40.099349 ], [ -75.012354, 40.099181 ], [ -75.012836, 40.099014 ], [ -75.013294, 40.098856 ], [ -75.01402, 40.098604 ], [ -75.01423, 40.098531 ], [ -75.014932, 40.098281 ], [ -75.015127, 40.098212 ], [ -75.015615, 40.098044 ], [ -75.01605, 40.097896 ], [ -75.016436, 40.09776 ], [ -75.016648, 40.097684 ], [ -75.017122, 40.097517 ], [ -75.017387, 40.097426 ], [ -75.01759, 40.097352 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028832, 40.102637 ], [ -75.028877, 40.102664 ], [ -75.029364, 40.102968 ], [ -75.029483, 40.103043 ], [ -75.029763, 40.103221 ], [ -75.029907, 40.103313 ], [ -75.03038, 40.103605 ], [ -75.030701, 40.103803 ], [ -75.03101, 40.103994 ], [ -75.031024, 40.104003 ], [ -75.031264, 40.104152 ], [ -75.031728, 40.104442 ], [ -75.031852, 40.10452 ], [ -75.032106, 40.104683 ], [ -75.032273, 40.104791 ], [ -75.032483, 40.104922 ], [ -75.032726, 40.105073 ], [ -75.032816, 40.105138 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307936", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.965633, 40.088094 ], [ -74.965598, 40.088193 ], [ -74.96557, 40.088269 ], [ -74.965547, 40.088322 ], [ -74.965515, 40.08838 ], [ -74.965476, 40.088446 ], [ -74.965419, 40.08853 ], [ -74.965352, 40.088626 ], [ -74.965294, 40.088716 ], [ -74.965218, 40.088822 ], [ -74.96491, 40.08925 ], [ -74.964828, 40.089357 ], [ -74.964734, 40.089504 ], [ -74.964663, 40.089645 ], [ -74.964615, 40.089783 ], [ -74.964589, 40.089915 ], [ -74.96458, 40.090052 ], [ -74.964587, 40.090188 ], [ -74.964606, 40.090323 ], [ -74.964635, 40.090441 ], [ -74.96467, 40.090571 ], [ -74.964696, 40.090644 ], [ -74.96472, 40.09071 ], [ -74.964775, 40.090799 ], [ -74.964817, 40.090857 ], [ -74.964901, 40.090966 ], [ -74.964995, 40.091066 ], [ -74.965359, 40.09138 ], [ -74.965493, 40.091504 ], [ -74.965583, 40.091591 ], [ -74.965612, 40.091623 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965898, 40.091518 ], [ -74.966433, 40.091142 ], [ -74.966725, 40.090938 ], [ -74.967424, 40.090444 ], [ -74.968051, 40.090001 ], [ -74.969083, 40.08927 ], [ -74.969479, 40.089 ], [ -74.969569, 40.088936 ], [ -74.970469, 40.088288 ], [ -74.970505, 40.088259 ], [ -74.970713, 40.088096 ], [ -74.970776, 40.088055 ], [ -74.971262, 40.087633 ], [ -74.971435, 40.087437 ], [ -74.971524, 40.08734 ], [ -74.9716, 40.08726 ], [ -74.971638, 40.087216 ], [ -74.971814, 40.087033 ], [ -74.971886, 40.08696 ], [ -74.971954, 40.086887 ], [ -74.971999, 40.086832 ], [ -74.972055, 40.086763 ], [ -74.972359, 40.08636 ], [ -74.972648, 40.085977 ], [ -74.972683, 40.085932 ], [ -74.973063, 40.085437 ], [ -74.973094, 40.085396 ], [ -74.973415, 40.084983 ], [ -74.97352, 40.084849 ], [ -74.973772, 40.084523 ], [ -74.974043, 40.084171 ], [ -74.974359, 40.083763 ], [ -74.974674, 40.083352 ], [ -74.974846, 40.083134 ], [ -74.975033, 40.082893 ], [ -74.975619, 40.082136 ], [ -74.975718, 40.082014 ], [ -74.975828, 40.081888 ], [ -74.975911, 40.081803 ], [ -74.975974, 40.08174 ], [ -74.976289, 40.081441 ], [ -74.97658, 40.081165 ], [ -74.976685, 40.081065 ], [ -74.977032, 40.08074 ], [ -74.977156, 40.080608 ], [ -74.977246, 40.0805 ], [ -74.97733, 40.080394 ], [ -74.977417, 40.080273 ], [ -74.977541, 40.080079 ], [ -74.977651, 40.079881 ], [ -74.977745, 40.079679 ], [ -74.977824, 40.079471 ], [ -74.977918, 40.079208 ], [ -74.978239, 40.078312 ], [ -74.978281, 40.078204 ], [ -74.978411, 40.077898 ], [ -74.978588, 40.07747 ], [ -74.97861, 40.077408 ], [ -74.978831, 40.076893 ], [ -74.978918, 40.076693 ], [ -74.979101, 40.07631 ], [ -74.979345, 40.075798 ], [ -74.979861, 40.074706 ], [ -74.980334, 40.073718 ], [ -74.98058, 40.073204 ], [ -74.980947, 40.072442 ], [ -74.981154, 40.072016 ], [ -74.981262, 40.07206 ], [ -74.981338, 40.072101 ], [ -74.981402, 40.072139 ], [ -74.981408, 40.072143 ], [ -74.981468, 40.072185 ], [ -74.981836, 40.072479 ], [ -74.981896, 40.072523 ], [ -74.982541, 40.073001 ], [ -74.982689, 40.073118 ], [ -74.982895, 40.073274 ], [ -74.983173, 40.07347 ], [ -74.983458, 40.073661 ], [ -74.983753, 40.073843 ], [ -74.984059, 40.074016 ], [ -74.984625, 40.074326 ], [ -74.984957, 40.074506 ], [ -74.985031, 40.074546 ], [ -74.985237, 40.074658 ], [ -74.985584, 40.074833 ], [ -74.985845, 40.074953 ], [ -74.985967, 40.074999 ], [ -74.986226, 40.07508 ], [ -74.986612, 40.075222 ], [ -74.986809, 40.075302 ], [ -74.986969, 40.075381 ], [ -74.98709, 40.075452 ], [ -74.987119, 40.075469 ], [ -74.987265, 40.075565 ], [ -74.9874, 40.075671 ], [ -74.987566, 40.075818 ], [ -74.988269, 40.076457 ], [ -74.98868, 40.076836 ], [ -74.988866, 40.076992 ], [ -74.989201, 40.077295 ], [ -74.989994, 40.077966 ], [ -74.990872, 40.078719 ], [ -74.991169, 40.078967 ], [ -74.991768, 40.079476 ], [ -74.993099, 40.080616 ], [ -74.9942, 40.081545 ], [ -74.994351, 40.081689 ], [ -74.993917, 40.081945 ], [ -74.993017, 40.082468 ], [ -74.992114, 40.082983 ], [ -74.991665, 40.083234 ], [ -74.991252, 40.083476 ], [ -74.990811, 40.083725 ], [ -74.990538, 40.083871 ], [ -74.99052, 40.083881 ], [ -74.990327, 40.083976 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984252, 40.089961 ], [ -74.984275, 40.08998 ], [ -74.984292, 40.089996 ], [ -74.984673, 40.090305 ], [ -74.98481, 40.090413 ], [ -74.985191, 40.090733 ], [ -74.986434, 40.091757 ], [ -74.987409, 40.09256 ], [ -74.988488, 40.093453 ], [ -74.988645, 40.093583 ], [ -74.98912, 40.093976 ], [ -74.989438, 40.094248 ], [ -74.989691, 40.094463 ], [ -74.990287, 40.094964 ], [ -74.990744, 40.095358 ], [ -74.990974, 40.095553 ], [ -74.991252, 40.095789 ], [ -74.991586, 40.096045 ], [ -74.991864, 40.096268 ], [ -74.99205, 40.096416 ], [ -74.992421, 40.096713 ], [ -74.993226, 40.097349 ], [ -74.993803, 40.097818 ], [ -74.994683, 40.098524 ], [ -74.994857, 40.098664 ], [ -74.994954, 40.098749 ], [ -74.995449, 40.099181 ], [ -74.996202, 40.099835 ], [ -74.996841, 40.100398 ], [ -74.997091, 40.100643 ], [ -74.997413, 40.100953 ], [ -74.997706, 40.101217 ], [ -74.997858, 40.101351 ], [ -74.998001, 40.101485 ], [ -74.998145, 40.101614 ], [ -74.998223, 40.101689 ], [ -74.998299, 40.101771 ], [ -74.998387, 40.10187 ], [ -74.998459, 40.101963 ], [ -74.998571, 40.102112 ], [ -74.998672, 40.102242 ], [ -74.998762, 40.102342 ], [ -74.998828, 40.10241 ], [ -74.998896, 40.10248 ], [ -74.998984, 40.102557 ], [ -74.999073, 40.102627 ], [ -74.999183, 40.102716 ], [ -74.99941, 40.1029 ], [ -74.9998, 40.103218 ], [ -74.999882, 40.103285 ], [ -75.000975, 40.104189 ], [ -75.001298, 40.104473 ], [ -75.001398, 40.104552 ], [ -75.001517, 40.104664 ], [ -75.001453, 40.104708 ], [ -75.001393, 40.104748 ], [ -75.000753, 40.105188 ], [ -75.000384, 40.105442 ], [ -74.999637, 40.105951 ], [ -74.998915, 40.106457 ], [ -74.999, 40.106525 ], [ -74.99907, 40.106586 ], [ -74.999214, 40.106719 ], [ -74.99931, 40.106808 ], [ -74.999467, 40.10695 ], [ -74.999513, 40.106992 ], [ -74.999735, 40.107195 ], [ -74.999862, 40.107315 ], [ -74.999997, 40.107437 ], [ -75.000075, 40.107507 ], [ -75.000833, 40.108176 ], [ -75.003141, 40.1102 ], [ -75.00325, 40.1103 ], [ -75.003315, 40.110375 ], [ -75.003371, 40.110454 ], [ -75.00338, 40.110472 ], [ -75.003446, 40.110591 ], [ -75.003498, 40.110718 ], [ -75.00356, 40.110859 ], [ -75.003619, 40.110959 ], [ -75.003606, 40.111024 ], [ -75.003608, 40.111047 ], [ -75.003616, 40.111075 ], [ -75.003885, 40.111658 ], [ -75.004199, 40.11234 ], [ -75.004213, 40.112362 ], [ -75.004232, 40.112376 ], [ -75.004274, 40.112401 ], [ -75.004361, 40.112585 ], [ -75.004491, 40.112865 ], [ -75.004959, 40.11386 ], [ -75.00529, 40.113729 ], [ -75.00596, 40.11422 ], [ -75.006079, 40.114109 ], [ -75.00546, 40.11362 ], [ -75.00529, 40.113729 ], [ -75.004959, 40.11386 ], [ -75.004491, 40.112865 ], [ -75.004361, 40.112585 ], [ -75.004274, 40.112401 ], [ -75.004286, 40.11234 ], [ -75.004286, 40.112321 ], [ -75.004281, 40.112303 ], [ -75.004096, 40.111897 ], [ -75.003964, 40.111627 ], [ -75.00392, 40.111526 ], [ -75.003707, 40.111041 ], [ -75.003688, 40.111013 ], [ -75.003663, 40.110987 ], [ -75.003619, 40.110959 ], [ -75.00356, 40.110859 ], [ -75.003498, 40.110718 ], [ -75.003446, 40.110591 ], [ -75.00338, 40.110472 ], [ -75.003371, 40.110454 ], [ -75.003315, 40.110375 ], [ -75.00325, 40.1103 ], [ -75.003141, 40.1102 ], [ -75.000833, 40.108176 ], [ -75.000075, 40.107507 ], [ -74.999997, 40.107437 ], [ -74.999862, 40.107315 ], [ -74.999735, 40.107195 ], [ -74.999513, 40.106992 ], [ -74.999467, 40.10695 ], [ -74.99931, 40.106808 ], [ -74.999214, 40.106719 ], [ -74.999346, 40.106628 ], [ -75.000023, 40.106154 ], [ -75.000654, 40.105723 ], [ -75.001257, 40.105298 ], [ -75.001285, 40.105278 ], [ -75.001567, 40.105081 ], [ -75.00169, 40.105 ], [ -75.001747, 40.104963 ], [ -75.001802, 40.104926 ], [ -75.002387, 40.104526 ], [ -75.002451, 40.104482 ], [ -75.002505, 40.104445 ], [ -75.003076, 40.104051 ], [ -75.003389, 40.103837 ], [ -75.003676, 40.103637 ], [ -75.004536, 40.103045 ], [ -75.004788, 40.10287 ], [ -75.005121, 40.102641 ], [ -75.005888, 40.102111 ], [ -75.006108, 40.101959 ], [ -75.00638, 40.101768 ], [ -75.0068, 40.102217 ], [ -75.008, 40.101383 ], [ -75.00876, 40.100966 ], [ -75.010017, 40.100488 ], [ -75.01015, 40.099956 ], [ -75.011309, 40.099543 ], [ -75.011485, 40.099481 ], [ -75.011865, 40.099349 ], [ -75.012354, 40.099181 ], [ -75.012394, 40.099259 ], [ -75.012688, 40.099786 ], [ -75.012987, 40.100352 ], [ -75.013041, 40.100449 ], [ -75.013127, 40.100617 ], [ -75.013328, 40.100987 ], [ -75.01342, 40.101163 ], [ -75.013522, 40.101352 ], [ -75.013677, 40.101642 ], [ -75.013781, 40.101831 ], [ -75.013862, 40.10198 ], [ -75.014516, 40.103209 ], [ -75.014606, 40.103373 ], [ -75.01465, 40.10346 ], [ -75.014733, 40.103601 ], [ -75.014797, 40.103701 ], [ -75.014871, 40.103809 ], [ -75.014969, 40.10393 ], [ -75.015084, 40.104067 ], [ -75.015217, 40.104206 ], [ -75.015352, 40.104335 ], [ -75.015509, 40.104476 ], [ -75.015778, 40.104724 ], [ -75.015903, 40.10463 ], [ -75.016542, 40.104143 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307937", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97372, 40.084499 ], [ -74.973771, 40.084522 ], [ -74.974857, 40.085034 ], [ -74.975735, 40.085422 ], [ -74.976207, 40.085641 ], [ -74.976489, 40.085782 ], [ -74.976708, 40.085923 ], [ -74.976966, 40.086118 ], [ -74.97723, 40.086336 ], [ -74.977844, 40.086832 ], [ -74.978437, 40.08731 ], [ -74.978689, 40.087494 ], [ -74.978989, 40.087663 ], [ -74.979202, 40.087749 ], [ -74.979511, 40.087811 ], [ -74.979754, 40.087842 ], [ -74.980609, 40.08791 ], [ -74.981111, 40.087958 ], [ -74.981385, 40.087991 ], [ -74.98151, 40.088011 ], [ -74.981667, 40.08804 ], [ -74.981868, 40.088109 ], [ -74.982007, 40.088172 ], [ -74.982167, 40.088275 ], [ -74.982485, 40.088512 ], [ -74.982815, 40.088788 ], [ -74.983555, 40.089412 ], [ -74.984098, 40.089849 ], [ -74.984205, 40.089929 ], [ -74.984252, 40.089961 ], [ -74.984275, 40.08998 ], [ -74.984292, 40.089996 ], [ -74.984673, 40.090305 ], [ -74.98481, 40.090413 ], [ -74.985191, 40.090733 ], [ -74.986434, 40.091757 ], [ -74.987409, 40.09256 ], [ -74.988488, 40.093453 ], [ -74.988645, 40.093583 ], [ -74.98912, 40.093976 ], [ -74.989438, 40.094248 ], [ -74.989691, 40.094463 ], [ -74.990287, 40.094964 ], [ -74.990744, 40.095358 ], [ -74.990974, 40.095553 ], [ -74.991252, 40.095789 ], [ -74.991586, 40.096045 ], [ -74.991864, 40.096268 ], [ -74.99205, 40.096416 ], [ -74.992421, 40.096713 ], [ -74.993226, 40.097349 ], [ -74.993803, 40.097818 ], [ -74.994683, 40.098524 ], [ -74.994857, 40.098664 ], [ -74.994954, 40.098749 ], [ -74.995449, 40.099181 ], [ -74.996202, 40.099835 ], [ -74.996841, 40.100398 ], [ -74.997091, 40.100643 ], [ -74.997413, 40.100953 ], [ -74.997706, 40.101217 ], [ -74.997858, 40.101351 ], [ -74.998001, 40.101485 ], [ -74.998145, 40.101614 ], [ -74.998223, 40.101689 ], [ -74.998299, 40.101771 ], [ -74.998387, 40.10187 ], [ -74.998459, 40.101963 ], [ -74.998571, 40.102112 ], [ -74.998672, 40.102242 ], [ -74.998762, 40.102342 ], [ -74.998828, 40.10241 ], [ -74.998896, 40.10248 ], [ -74.998984, 40.102557 ], [ -74.999073, 40.102627 ], [ -74.999183, 40.102716 ], [ -74.99941, 40.1029 ], [ -74.9998, 40.103218 ], [ -74.999882, 40.103285 ], [ -75.000975, 40.104189 ], [ -75.001298, 40.104473 ], [ -75.001398, 40.104552 ], [ -75.001517, 40.104664 ], [ -75.001655, 40.104791 ], [ -75.001802, 40.104926 ], [ -75.002387, 40.104526 ], [ -75.002451, 40.104482 ], [ -75.002505, 40.104445 ], [ -75.003076, 40.104051 ], [ -75.003389, 40.103837 ], [ -75.003676, 40.103637 ], [ -75.004536, 40.103045 ], [ -75.004788, 40.10287 ], [ -75.005121, 40.102641 ], [ -75.005888, 40.102111 ], [ -75.006108, 40.101959 ], [ -75.00638, 40.101768 ], [ -75.0068, 40.102217 ], [ -75.008, 40.101383 ], [ -75.00876, 40.100966 ], [ -75.010017, 40.100488 ], [ -75.01015, 40.099956 ], [ -75.011309, 40.099543 ], [ -75.011485, 40.099481 ], [ -75.011865, 40.099349 ], [ -75.012354, 40.099181 ], [ -75.012836, 40.099014 ], [ -75.013294, 40.098856 ], [ -75.01402, 40.098604 ], [ -75.01423, 40.098531 ], [ -75.014932, 40.098281 ], [ -75.015127, 40.098212 ], [ -75.015615, 40.098044 ], [ -75.01605, 40.097896 ], [ -75.016436, 40.09776 ], [ -75.016648, 40.097684 ], [ -75.017122, 40.097517 ], [ -75.017387, 40.097426 ], [ -75.01759, 40.097352 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028832, 40.102637 ], [ -75.028877, 40.102664 ], [ -75.029364, 40.102968 ], [ -75.029483, 40.103043 ], [ -75.029763, 40.103221 ], [ -75.029907, 40.103313 ], [ -75.03038, 40.103605 ], [ -75.030701, 40.103803 ], [ -75.03101, 40.103994 ], [ -75.031024, 40.104003 ], [ -75.031264, 40.104152 ], [ -75.031728, 40.104442 ], [ -75.031852, 40.10452 ], [ -75.032106, 40.104683 ], [ -75.032273, 40.104791 ], [ -75.032483, 40.104922 ], [ -75.032726, 40.105073 ], [ -75.032816, 40.105138 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307938", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.965633, 40.088094 ], [ -74.965598, 40.088193 ], [ -74.96557, 40.088269 ], [ -74.965547, 40.088322 ], [ -74.965515, 40.08838 ], [ -74.965476, 40.088446 ], [ -74.965419, 40.08853 ], [ -74.965352, 40.088626 ], [ -74.965294, 40.088716 ], [ -74.965218, 40.088822 ], [ -74.96491, 40.08925 ], [ -74.964828, 40.089357 ], [ -74.964734, 40.089504 ], [ -74.964663, 40.089645 ], [ -74.964615, 40.089783 ], [ -74.964589, 40.089915 ], [ -74.96458, 40.090052 ], [ -74.964587, 40.090188 ], [ -74.964606, 40.090323 ], [ -74.964635, 40.090441 ], [ -74.96467, 40.090571 ], [ -74.964696, 40.090644 ], [ -74.96472, 40.09071 ], [ -74.964775, 40.090799 ], [ -74.964817, 40.090857 ], [ -74.964901, 40.090966 ], [ -74.964995, 40.091066 ], [ -74.965359, 40.09138 ], [ -74.965493, 40.091504 ], [ -74.965583, 40.091591 ], [ -74.965612, 40.091623 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965898, 40.091518 ], [ -74.966433, 40.091142 ], [ -74.966725, 40.090938 ], [ -74.967424, 40.090444 ], [ -74.968051, 40.090001 ], [ -74.969083, 40.08927 ], [ -74.969479, 40.089 ], [ -74.969569, 40.088936 ], [ -74.970469, 40.088288 ], [ -74.970505, 40.088259 ], [ -74.970713, 40.088096 ], [ -74.970776, 40.088055 ], [ -74.971262, 40.087633 ], [ -74.971435, 40.087437 ], [ -74.971524, 40.08734 ], [ -74.9716, 40.08726 ], [ -74.971638, 40.087216 ], [ -74.971814, 40.087033 ], [ -74.971886, 40.08696 ], [ -74.971954, 40.086887 ], [ -74.971999, 40.086832 ], [ -74.972055, 40.086763 ], [ -74.972359, 40.08636 ], [ -74.972648, 40.085977 ], [ -74.972683, 40.085932 ], [ -74.973063, 40.085437 ], [ -74.973094, 40.085396 ], [ -74.973415, 40.084983 ], [ -74.97352, 40.084849 ], [ -74.973772, 40.084523 ], [ -74.974043, 40.084171 ], [ -74.974359, 40.083763 ], [ -74.974674, 40.083352 ], [ -74.974846, 40.083134 ], [ -74.975033, 40.082893 ], [ -74.975619, 40.082136 ], [ -74.975718, 40.082014 ], [ -74.975828, 40.081888 ], [ -74.975911, 40.081803 ], [ -74.975974, 40.08174 ], [ -74.976289, 40.081441 ], [ -74.97658, 40.081165 ], [ -74.976685, 40.081065 ], [ -74.977032, 40.08074 ], [ -74.977156, 40.080608 ], [ -74.977246, 40.0805 ], [ -74.97733, 40.080394 ], [ -74.977417, 40.080273 ], [ -74.977541, 40.080079 ], [ -74.977651, 40.079881 ], [ -74.977745, 40.079679 ], [ -74.977824, 40.079471 ], [ -74.977918, 40.079208 ], [ -74.978239, 40.078312 ], [ -74.978281, 40.078204 ], [ -74.978411, 40.077898 ], [ -74.978588, 40.07747 ], [ -74.97861, 40.077408 ], [ -74.978831, 40.076893 ], [ -74.978918, 40.076693 ], [ -74.979101, 40.07631 ], [ -74.979345, 40.075798 ], [ -74.979861, 40.074706 ], [ -74.980334, 40.073718 ], [ -74.98058, 40.073204 ], [ -74.980947, 40.072442 ], [ -74.981154, 40.072016 ], [ -74.981262, 40.07206 ], [ -74.981338, 40.072101 ], [ -74.981402, 40.072139 ], [ -74.981408, 40.072143 ], [ -74.981468, 40.072185 ], [ -74.981836, 40.072479 ], [ -74.981896, 40.072523 ], [ -74.982541, 40.073001 ], [ -74.982689, 40.073118 ], [ -74.982895, 40.073274 ], [ -74.983173, 40.07347 ], [ -74.983458, 40.073661 ], [ -74.983753, 40.073843 ], [ -74.984059, 40.074016 ], [ -74.984625, 40.074326 ], [ -74.984957, 40.074506 ], [ -74.985031, 40.074546 ], [ -74.985237, 40.074658 ], [ -74.985584, 40.074833 ], [ -74.985845, 40.074953 ], [ -74.985967, 40.074999 ], [ -74.986226, 40.07508 ], [ -74.986612, 40.075222 ], [ -74.986809, 40.075302 ], [ -74.986969, 40.075381 ], [ -74.98709, 40.075452 ], [ -74.987119, 40.075469 ], [ -74.987265, 40.075565 ], [ -74.9874, 40.075671 ], [ -74.987566, 40.075818 ], [ -74.988269, 40.076457 ], [ -74.98868, 40.076836 ], [ -74.988866, 40.076992 ], [ -74.989201, 40.077295 ], [ -74.989994, 40.077966 ], [ -74.990872, 40.078719 ], [ -74.991169, 40.078967 ], [ -74.991768, 40.079476 ], [ -74.993099, 40.080616 ], [ -74.9942, 40.081545 ], [ -74.994351, 40.081689 ], [ -74.993917, 40.081945 ], [ -74.993017, 40.082468 ], [ -74.992114, 40.082983 ], [ -74.991665, 40.083234 ], [ -74.991252, 40.083476 ], [ -74.990811, 40.083725 ], [ -74.990538, 40.083871 ], [ -74.99052, 40.083881 ], [ -74.990327, 40.083976 ], [ -74.99006, 40.084095 ], [ -74.989828, 40.084205 ], [ -74.989457, 40.084373 ], [ -74.989331, 40.08443 ], [ -74.9891, 40.084539 ], [ -74.988866, 40.084666 ], [ -74.988734, 40.084742 ], [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984252, 40.089961 ], [ -74.984275, 40.08998 ], [ -74.984292, 40.089996 ], [ -74.984673, 40.090305 ], [ -74.98481, 40.090413 ], [ -74.985191, 40.090733 ], [ -74.986434, 40.091757 ], [ -74.987409, 40.09256 ], [ -74.988488, 40.093453 ], [ -74.988645, 40.093583 ], [ -74.98912, 40.093976 ], [ -74.989438, 40.094248 ], [ -74.989691, 40.094463 ], [ -74.990287, 40.094964 ], [ -74.990744, 40.095358 ], [ -74.990974, 40.095553 ], [ -74.991252, 40.095789 ], [ -74.991586, 40.096045 ], [ -74.991864, 40.096268 ], [ -74.99205, 40.096416 ], [ -74.992421, 40.096713 ], [ -74.993226, 40.097349 ], [ -74.993803, 40.097818 ], [ -74.994683, 40.098524 ], [ -74.994857, 40.098664 ], [ -74.994954, 40.098749 ], [ -74.995449, 40.099181 ], [ -74.996202, 40.099835 ], [ -74.996841, 40.100398 ], [ -74.997091, 40.100643 ], [ -74.997413, 40.100953 ], [ -74.997706, 40.101217 ], [ -74.997858, 40.101351 ], [ -74.998001, 40.101485 ], [ -74.998145, 40.101614 ], [ -74.998223, 40.101689 ], [ -74.998299, 40.101771 ], [ -74.998387, 40.10187 ], [ -74.998459, 40.101963 ], [ -74.998571, 40.102112 ], [ -74.998672, 40.102242 ], [ -74.998762, 40.102342 ], [ -74.998828, 40.10241 ], [ -74.998896, 40.10248 ], [ -74.998984, 40.102557 ], [ -74.999073, 40.102627 ], [ -74.999183, 40.102716 ], [ -74.99941, 40.1029 ], [ -74.9998, 40.103218 ], [ -74.999882, 40.103285 ], [ -75.000975, 40.104189 ], [ -75.001298, 40.104473 ], [ -75.001398, 40.104552 ], [ -75.001517, 40.104664 ], [ -75.001655, 40.104791 ], [ -75.001802, 40.104926 ], [ -75.002387, 40.104526 ], [ -75.002451, 40.104482 ], [ -75.002505, 40.104445 ], [ -75.003076, 40.104051 ], [ -75.003389, 40.103837 ], [ -75.003676, 40.103637 ], [ -75.004536, 40.103045 ], [ -75.004788, 40.10287 ], [ -75.005121, 40.102641 ], [ -75.005888, 40.102111 ], [ -75.006108, 40.101959 ], [ -75.00638, 40.101768 ], [ -75.0068, 40.102217 ], [ -75.008, 40.101383 ], [ -75.00876, 40.100966 ], [ -75.010017, 40.100488 ], [ -75.01015, 40.099956 ], [ -75.011309, 40.099543 ], [ -75.011485, 40.099481 ], [ -75.011865, 40.099349 ], [ -75.012354, 40.099181 ], [ -75.012836, 40.099014 ], [ -75.013294, 40.098856 ], [ -75.01402, 40.098604 ], [ -75.01423, 40.098531 ], [ -75.014932, 40.098281 ], [ -75.015127, 40.098212 ], [ -75.015615, 40.098044 ], [ -75.01605, 40.097896 ], [ -75.016436, 40.09776 ], [ -75.016648, 40.097684 ], [ -75.017122, 40.097517 ], [ -75.017387, 40.097426 ], [ -75.01759, 40.097352 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028503, 40.103047 ], [ -75.028308, 40.103545 ], [ -75.028255, 40.10368 ], [ -75.027653, 40.105066 ], [ -75.027465, 40.105503 ], [ -75.027402, 40.105649 ], [ -75.027025, 40.106542 ], [ -75.026667, 40.107367 ], [ -75.026587, 40.107548 ], [ -75.02656, 40.107608 ], [ -75.026522, 40.107714 ], [ -75.026441, 40.107891 ], [ -75.026518, 40.107928 ], [ -75.026682, 40.10798 ], [ -75.026781, 40.108004 ], [ -75.026834, 40.108011 ], [ -75.026894, 40.108005 ], [ -75.027033, 40.107973 ], [ -75.027158, 40.107898 ], [ -75.027272, 40.10789 ], [ -75.02825, 40.10742 ], [ -75.029521, 40.106812 ], [ -75.030157, 40.106505 ], [ -75.030811, 40.106195 ], [ -75.032343, 40.105456 ], [ -75.032458, 40.105403 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307939", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.035562, 40.113994 ], [ -75.034528, 40.113392 ], [ -75.033899, 40.113025 ], [ -75.033148, 40.112612 ], [ -75.032874, 40.112468 ], [ -75.032716, 40.112335 ], [ -75.032654, 40.112215 ], [ -75.032649, 40.112065 ], [ -75.032656, 40.111996 ], [ -75.032698, 40.1119 ], [ -75.034007, 40.110513 ], [ -75.034629, 40.109881 ], [ -75.035613, 40.10888 ], [ -75.036262, 40.108219 ], [ -75.036551, 40.107926 ], [ -75.036869, 40.107624 ], [ -75.037061, 40.107431 ], [ -75.037097, 40.107383 ], [ -75.037127, 40.107333 ], [ -75.037151, 40.107273 ], [ -75.037159, 40.107219 ], [ -75.037161, 40.107172 ], [ -75.037166, 40.107095 ], [ -75.037174, 40.106933 ], [ -75.037283, 40.106936 ], [ -75.037472, 40.10695 ], [ -75.037622, 40.106966 ], [ -75.037733, 40.106981 ], [ -75.037855, 40.106997 ], [ -75.037973, 40.107018 ], [ -75.03811, 40.107043 ], [ -75.038264, 40.107077 ], [ -75.03848, 40.107129 ], [ -75.038708, 40.107198 ], [ -75.038814, 40.107232 ], [ -75.038862, 40.107248 ], [ -75.038995, 40.107296 ], [ -75.0391, 40.107338 ], [ -75.039214, 40.107386 ], [ -75.039321, 40.107431 ], [ -75.039454, 40.107493 ], [ -75.039759, 40.107656 ], [ -75.040711, 40.108212 ], [ -75.041162, 40.108475 ], [ -75.041195, 40.108444 ], [ -75.04124, 40.108393 ], [ -75.041916, 40.107679 ], [ -75.042721, 40.106856 ], [ -75.043008, 40.106534 ], [ -75.043382, 40.106176 ], [ -75.043476, 40.106114 ], [ -75.043596, 40.106083 ], [ -75.043703, 40.106076 ], [ -75.043803, 40.106068 ], [ -75.043942, 40.106075 ], [ -75.044133, 40.10613 ], [ -75.047173, 40.107915 ], [ -75.048998, 40.109004 ], [ -75.049315, 40.109251 ], [ -75.049678, 40.109517 ], [ -75.049966, 40.109769 ], [ -75.050277, 40.11008 ], [ -75.04889, 40.111305 ], [ -75.048343, 40.111777 ], [ -75.048183, 40.111919 ], [ -75.04784, 40.11223 ], [ -75.047642, 40.112113 ], [ -75.046905, 40.111666 ], [ -75.046809, 40.111611 ], [ -75.046679, 40.111536 ], [ -75.046248, 40.111285 ], [ -75.046109, 40.111205 ], [ -75.045647, 40.110927 ], [ -75.045406, 40.110786 ], [ -75.045003, 40.110552 ], [ -75.043945, 40.109947 ], [ -75.043433, 40.109659 ], [ -75.042762, 40.109279 ], [ -75.042499, 40.109131 ], [ -75.042189, 40.108956 ], [ -75.042116, 40.108913 ], [ -75.04124, 40.108393 ], [ -75.04077, 40.108122 ], [ -75.039836, 40.107579 ], [ -75.039509, 40.107413 ], [ -75.039409, 40.107358 ], [ -75.039299, 40.107307 ], [ -75.039155, 40.107251 ], [ -75.038932, 40.107164 ], [ -75.038702, 40.107088 ], [ -75.038467, 40.107022 ], [ -75.038228, 40.106966 ], [ -75.037994, 40.106918 ], [ -75.037735, 40.106879 ], [ -75.037722, 40.106877 ], [ -75.037312, 40.106839 ], [ -75.037178, 40.106833 ], [ -75.03647, 40.10682 ], [ -75.036272, 40.106807 ], [ -75.036206, 40.106798 ], [ -75.036086, 40.106783 ], [ -75.035951, 40.106756 ], [ -75.035898, 40.106743 ], [ -75.0358, 40.106719 ], [ -75.035625, 40.106669 ], [ -75.035439, 40.106595 ], [ -75.03526, 40.106511 ], [ -75.035091, 40.106418 ], [ -75.035031, 40.106381 ], [ -75.034751, 40.106221 ], [ -75.034319, 40.105948 ], [ -75.033876, 40.105668 ], [ -75.033408, 40.105371 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307940", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307941", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.035562, 40.113994 ], [ -75.034528, 40.113392 ], [ -75.033899, 40.113025 ], [ -75.033148, 40.112612 ], [ -75.032874, 40.112468 ], [ -75.032716, 40.112335 ], [ -75.032654, 40.112215 ], [ -75.032649, 40.112065 ], [ -75.032656, 40.111996 ], [ -75.032698, 40.1119 ], [ -75.034007, 40.110513 ], [ -75.034629, 40.109881 ], [ -75.035613, 40.10888 ], [ -75.036262, 40.108219 ], [ -75.036551, 40.107926 ], [ -75.036869, 40.107624 ], [ -75.037061, 40.107431 ], [ -75.037097, 40.107383 ], [ -75.037127, 40.107333 ], [ -75.037151, 40.107273 ], [ -75.037159, 40.107219 ], [ -75.037161, 40.107172 ], [ -75.037166, 40.107095 ], [ -75.037174, 40.106933 ], [ -75.037174, 40.106887 ], [ -75.037178, 40.106833 ], [ -75.03647, 40.10682 ], [ -75.036272, 40.106807 ], [ -75.036206, 40.106798 ], [ -75.036086, 40.106783 ], [ -75.035951, 40.106756 ], [ -75.035898, 40.106743 ], [ -75.0358, 40.106719 ], [ -75.035625, 40.106669 ], [ -75.035439, 40.106595 ], [ -75.03526, 40.106511 ], [ -75.035091, 40.106418 ], [ -75.035031, 40.106381 ], [ -75.034751, 40.106221 ], [ -75.034319, 40.105948 ], [ -75.033876, 40.105668 ], [ -75.033408, 40.105371 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307969", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.071086, 40.054544 ], [ -75.071366, 40.054418 ], [ -75.071407, 40.05439 ], [ -75.071443, 40.054355 ], [ -75.071488, 40.0543 ], [ -75.071227, 40.054154 ], [ -75.071197, 40.0541 ], [ -75.070971, 40.053957 ], [ -75.070619, 40.053749 ], [ -75.070444, 40.053649 ], [ -75.070335, 40.053639 ], [ -75.070182, 40.053549 ], [ -75.06973, 40.053284 ], [ -75.069358, 40.053075 ], [ -75.069141, 40.052952 ], [ -75.068517, 40.052596 ], [ -75.068191, 40.052409 ], [ -75.067732, 40.052146 ], [ -75.067283, 40.051896 ], [ -75.066878, 40.051671 ], [ -75.066763, 40.051607 ], [ -75.066392, 40.05139 ], [ -75.066133, 40.051241 ], [ -75.066082, 40.051213 ], [ -75.066027, 40.051177 ], [ -75.065622, 40.05095 ], [ -75.065409, 40.050824 ], [ -75.065272, 40.050745 ], [ -75.065017, 40.050597 ], [ -75.064843, 40.050495 ], [ -75.064557, 40.050334 ], [ -75.064186, 40.050125 ], [ -75.063714, 40.049858 ], [ -75.063476, 40.049724 ], [ -75.063319, 40.049634 ], [ -75.062958, 40.049429 ], [ -75.06241, 40.049118 ], [ -75.061911, 40.048829 ], [ -75.061742, 40.048731 ], [ -75.061568, 40.04863 ], [ -75.061418, 40.048542 ], [ -75.061201, 40.04842 ], [ -75.060999, 40.048307 ], [ -75.060542, 40.048044 ], [ -75.060179, 40.047842 ], [ -75.059894, 40.047675 ], [ -75.059394, 40.047382 ], [ -75.059208, 40.047272 ], [ -75.058711, 40.04698 ], [ -75.058574, 40.046899 ], [ -75.058405, 40.0468 ], [ -75.058268, 40.04672 ], [ -75.058064, 40.046603 ], [ -75.057906, 40.046512 ], [ -75.057735, 40.046413 ], [ -75.057609, 40.046341 ], [ -75.057391, 40.046217 ], [ -75.057266, 40.046146 ], [ -75.057059, 40.046026 ], [ -75.05684, 40.045899 ], [ -75.056716, 40.045828 ], [ -75.056378, 40.045631 ], [ -75.056272, 40.04557 ], [ -75.056034, 40.045434 ], [ -75.055715, 40.045252 ], [ -75.055211, 40.044981 ], [ -75.054642, 40.044663 ], [ -75.054547, 40.044602 ], [ -75.054441, 40.044534 ], [ -75.054293, 40.044446 ], [ -75.054065, 40.044315 ], [ -75.053662, 40.04407 ], [ -75.053624, 40.044014 ], [ -75.053447, 40.04391 ], [ -75.05338, 40.04387 ], [ -75.0533, 40.043823 ], [ -75.053257, 40.0438 ], [ -75.053168, 40.043794 ], [ -75.053108, 40.043758 ], [ -75.052722, 40.043539 ], [ -75.052242, 40.043268 ], [ -75.05179, 40.043011 ], [ -75.05142, 40.042801 ], [ -75.051088, 40.042611 ], [ -75.051012, 40.042567 ], [ -75.050629, 40.04235 ], [ -75.050193, 40.0421 ], [ -75.049479, 40.041689 ], [ -75.049022, 40.041427 ], [ -75.048591, 40.041177 ], [ -75.047869, 40.040768 ], [ -75.047418, 40.04051 ], [ -75.046983, 40.040261 ], [ -75.046254, 40.039843 ], [ -75.046042, 40.039722 ], [ -75.045944, 40.039667 ], [ -75.04581, 40.039592 ], [ -75.045285, 40.03929 ], [ -75.044209, 40.038685 ], [ -75.04397, 40.038548 ], [ -75.043072, 40.038039 ], [ -75.042966, 40.03798 ], [ -75.04251, 40.037721 ], [ -75.042077, 40.037472 ], [ -75.041316, 40.037033 ], [ -75.040827, 40.036752 ], [ -75.040628, 40.036646 ], [ -75.040523, 40.036588 ], [ -75.040466, 40.036556 ], [ -75.040437, 40.036539 ], [ -75.040364, 40.036482 ], [ -75.040286, 40.036406 ], [ -75.040084, 40.036168 ], [ -75.040014, 40.036085 ], [ -75.039741, 40.035752 ], [ -75.039462, 40.035411 ], [ -75.039177, 40.035064 ], [ -75.039036, 40.034892 ], [ -75.038898, 40.034719 ], [ -75.038622, 40.034374 ], [ -75.038288, 40.033959 ], [ -75.038186, 40.033832 ], [ -75.03806, 40.03368 ], [ -75.037759, 40.033314 ], [ -75.037439, 40.03292 ], [ -75.037324, 40.032776 ], [ -75.037161, 40.032578 ], [ -75.036901, 40.032261 ], [ -75.036617, 40.031912 ], [ -75.036474, 40.031735 ], [ -75.036047, 40.031209 ], [ -75.035829, 40.030941 ], [ -75.035742, 40.030832 ], [ -75.035617, 40.030684 ], [ -75.035272, 40.030263 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.03584, 40.029894 ], [ -75.035863, 40.029928 ], [ -75.0359, 40.02998 ], [ -75.036036, 40.030016 ], [ -75.036155, 40.029992 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307970", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.136952, 40.041995 ], [ -75.136653, 40.04353 ], [ -75.136588, 40.043862 ], [ -75.136485, 40.044292 ], [ -75.136279, 40.045032 ], [ -75.136063, 40.046068 ], [ -75.136043, 40.046157 ], [ -75.136023, 40.04622 ], [ -75.135982, 40.0463 ], [ -75.135908, 40.046264 ], [ -75.135823, 40.046234 ], [ -75.135741, 40.046214 ], [ -75.135649, 40.046198 ], [ -75.135626, 40.046197 ], [ -75.135528, 40.046192 ], [ -75.134756, 40.046158 ], [ -75.134733, 40.046158 ], [ -75.133755, 40.046115 ], [ -75.133293, 40.046088 ], [ -75.132933, 40.04607 ], [ -75.132564, 40.046039 ], [ -75.132133, 40.046018 ], [ -75.131297, 40.045985 ], [ -75.131019, 40.045961 ], [ -75.130761, 40.045936 ], [ -75.130472, 40.045895 ], [ -75.129648, 40.045786 ], [ -75.129491, 40.045766 ], [ -75.129036, 40.045711 ], [ -75.128486, 40.045646 ], [ -75.128331, 40.046392 ], [ -75.128149, 40.047188 ], [ -75.127754, 40.048932 ], [ -75.127471, 40.050217 ], [ -75.127343, 40.050844 ], [ -75.127241, 40.051272 ], [ -75.127136, 40.051736 ], [ -75.127061, 40.052074 ], [ -75.126789, 40.053311 ], [ -75.126645, 40.053979 ], [ -75.12557, 40.05441 ], [ -75.125, 40.054649 ], [ -75.124865, 40.054707 ], [ -75.12463, 40.05482 ], [ -75.122981, 40.05562 ], [ -75.12254, 40.055828 ], [ -75.121453, 40.056328 ], [ -75.120875, 40.056619 ], [ -75.11962, 40.057248 ], [ -75.119249, 40.057424 ], [ -75.117783, 40.058121 ], [ -75.117328, 40.058347 ], [ -75.116232, 40.058892 ], [ -75.115459, 40.059259 ], [ -75.114982, 40.059487 ], [ -75.11437, 40.059779 ], [ -75.114038, 40.059946 ], [ -75.113165, 40.060435 ], [ -75.112268, 40.060961 ], [ -75.111871, 40.061192 ], [ -75.110877, 40.061802 ], [ -75.11075, 40.061887 ], [ -75.109988, 40.061499 ], [ -75.108398, 40.060679 ], [ -75.108124, 40.060541 ], [ -75.107024, 40.059982 ], [ -75.106912, 40.05992 ], [ -75.106888, 40.059908 ], [ -75.10683, 40.059858 ], [ -75.106786, 40.059804 ], [ -75.106754, 40.059759 ], [ -75.106555, 40.059928 ], [ -75.105719, 40.060769 ], [ -75.105415, 40.061094 ], [ -75.105103, 40.061409 ], [ -75.104823, 40.061682 ], [ -75.104688, 40.061823 ], [ -75.104554, 40.061924 ], [ -75.104497, 40.061962 ], [ -75.104407, 40.062008 ], [ -75.104267, 40.062066 ], [ -75.10418, 40.062097 ], [ -75.10408, 40.062127 ], [ -75.104019, 40.062141 ], [ -75.103934, 40.062159 ], [ -75.103843, 40.062169 ], [ -75.103774, 40.062175 ], [ -75.10363, 40.06218 ], [ -75.102944, 40.062138 ], [ -75.101061, 40.062014 ], [ -75.100029, 40.061952 ], [ -75.099899, 40.061935 ], [ -75.099828, 40.061918 ], [ -75.099711, 40.061886 ], [ -75.09962, 40.061851 ], [ -75.099507, 40.061797 ], [ -75.099386, 40.061726 ], [ -75.099274, 40.061645 ], [ -75.098571, 40.061122 ], [ -75.0976, 40.060379 ], [ -75.09736, 40.060213 ], [ -75.097225, 40.060128 ], [ -75.097158, 40.060095 ], [ -75.097092, 40.060064 ], [ -75.096915, 40.059985 ], [ -75.096173, 40.059708 ], [ -75.096025, 40.05967 ], [ -75.095796, 40.05988 ], [ -75.095664, 40.060012 ], [ -75.095567, 40.060106 ], [ -75.094405, 40.061265 ], [ -75.093434, 40.062208 ], [ -75.093053, 40.062587 ], [ -75.092666, 40.062982 ], [ -75.091909, 40.063731 ], [ -75.091451, 40.064184 ], [ -75.091135, 40.064492 ], [ -75.090752, 40.064875 ], [ -75.090355, 40.065301 ], [ -75.089494, 40.064789 ], [ -75.089366, 40.064706 ], [ -75.088746, 40.064355 ], [ -75.087885, 40.06384 ], [ -75.087471, 40.063593 ], [ -75.087277, 40.06349 ], [ -75.087024, 40.063345 ], [ -75.086884, 40.063267 ], [ -75.086557, 40.063085 ], [ -75.086292, 40.062933 ], [ -75.085738, 40.062616 ], [ -75.085124, 40.062256 ], [ -75.08478, 40.062054 ], [ -75.084433, 40.061846 ], [ -75.084205, 40.061709 ], [ -75.084092, 40.061642 ], [ -75.083822, 40.061477 ], [ -75.083722, 40.061412 ], [ -75.083619, 40.061343 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.076356, 40.057127 ], [ -75.07542, 40.056596 ], [ -75.075026, 40.056373 ], [ -75.074657, 40.056147 ], [ -75.074336, 40.055951 ], [ -75.074293, 40.055881 ], [ -75.074155, 40.055786 ], [ -75.073709, 40.055517 ], [ -75.073682, 40.055503 ], [ -75.073613, 40.055465 ], [ -75.073493, 40.055456 ], [ -75.073252, 40.055318 ], [ -75.07285, 40.055085 ], [ -75.072647, 40.054968 ], [ -75.072085, 40.054643 ], [ -75.071943, 40.05456 ], [ -75.071488, 40.0543 ], [ -75.071227, 40.054154 ], [ -75.071197, 40.0541 ], [ -75.070971, 40.053957 ], [ -75.070619, 40.053749 ], [ -75.070444, 40.053649 ], [ -75.070335, 40.053639 ], [ -75.070182, 40.053549 ], [ -75.06973, 40.053284 ], [ -75.069358, 40.053075 ], [ -75.069141, 40.052952 ], [ -75.068517, 40.052596 ], [ -75.068191, 40.052409 ], [ -75.067732, 40.052146 ], [ -75.067283, 40.051896 ], [ -75.066878, 40.051671 ], [ -75.066763, 40.051607 ], [ -75.066392, 40.05139 ], [ -75.066133, 40.051241 ], [ -75.066082, 40.051213 ], [ -75.066027, 40.051177 ], [ -75.065622, 40.05095 ], [ -75.065409, 40.050824 ], [ -75.065272, 40.050745 ], [ -75.065017, 40.050597 ], [ -75.064843, 40.050495 ], [ -75.064557, 40.050334 ], [ -75.064186, 40.050125 ], [ -75.063714, 40.049858 ], [ -75.063476, 40.049724 ], [ -75.063319, 40.049634 ], [ -75.062958, 40.049429 ], [ -75.06241, 40.049118 ], [ -75.061911, 40.048829 ], [ -75.061742, 40.048731 ], [ -75.061568, 40.04863 ], [ -75.061418, 40.048542 ], [ -75.061201, 40.04842 ], [ -75.060999, 40.048307 ], [ -75.060542, 40.048044 ], [ -75.060179, 40.047842 ], [ -75.059894, 40.047675 ], [ -75.059394, 40.047382 ], [ -75.059208, 40.047272 ], [ -75.058711, 40.04698 ], [ -75.058574, 40.046899 ], [ -75.058405, 40.0468 ], [ -75.058268, 40.04672 ], [ -75.058064, 40.046603 ], [ -75.057906, 40.046512 ], [ -75.057735, 40.046413 ], [ -75.057609, 40.046341 ], [ -75.057391, 40.046217 ], [ -75.057266, 40.046146 ], [ -75.057059, 40.046026 ], [ -75.05684, 40.045899 ], [ -75.056716, 40.045828 ], [ -75.056378, 40.045631 ], [ -75.056272, 40.04557 ], [ -75.056034, 40.045434 ], [ -75.055715, 40.045252 ], [ -75.055211, 40.044981 ], [ -75.054642, 40.044663 ], [ -75.054547, 40.044602 ], [ -75.054441, 40.044534 ], [ -75.054293, 40.044446 ], [ -75.054065, 40.044315 ], [ -75.053662, 40.04407 ], [ -75.053624, 40.044014 ], [ -75.053447, 40.04391 ], [ -75.05338, 40.04387 ], [ -75.0533, 40.043823 ], [ -75.053257, 40.0438 ], [ -75.053168, 40.043794 ], [ -75.053108, 40.043758 ], [ -75.052722, 40.043539 ], [ -75.052242, 40.043268 ], [ -75.05179, 40.043011 ], [ -75.05142, 40.042801 ], [ -75.051088, 40.042611 ], [ -75.051012, 40.042567 ], [ -75.050629, 40.04235 ], [ -75.050193, 40.0421 ], [ -75.049479, 40.041689 ], [ -75.049022, 40.041427 ], [ -75.048591, 40.041177 ], [ -75.047869, 40.040768 ], [ -75.047418, 40.04051 ], [ -75.046983, 40.040261 ], [ -75.046254, 40.039843 ], [ -75.046042, 40.039722 ], [ -75.045944, 40.039667 ], [ -75.04581, 40.039592 ], [ -75.045285, 40.03929 ], [ -75.044209, 40.038685 ], [ -75.04397, 40.038548 ], [ -75.043072, 40.038039 ], [ -75.042966, 40.03798 ], [ -75.04251, 40.037721 ], [ -75.042077, 40.037472 ], [ -75.041316, 40.037033 ], [ -75.040827, 40.036752 ], [ -75.040628, 40.036646 ], [ -75.040523, 40.036588 ], [ -75.040466, 40.036556 ], [ -75.040437, 40.036539 ], [ -75.040364, 40.036482 ], [ -75.040286, 40.036406 ], [ -75.040084, 40.036168 ], [ -75.040014, 40.036085 ], [ -75.039741, 40.035752 ], [ -75.039462, 40.035411 ], [ -75.039177, 40.035064 ], [ -75.039036, 40.034892 ], [ -75.038898, 40.034719 ], [ -75.038622, 40.034374 ], [ -75.038288, 40.033959 ], [ -75.038186, 40.033832 ], [ -75.03806, 40.03368 ], [ -75.037759, 40.033314 ], [ -75.037439, 40.03292 ], [ -75.037324, 40.032776 ], [ -75.037161, 40.032578 ], [ -75.036901, 40.032261 ], [ -75.036617, 40.031912 ], [ -75.036474, 40.031735 ], [ -75.036047, 40.031209 ], [ -75.035829, 40.030941 ], [ -75.035742, 40.030832 ], [ -75.035617, 40.030684 ], [ -75.035272, 40.030263 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.03584, 40.029894 ], [ -75.035863, 40.029928 ], [ -75.0359, 40.02998 ], [ -75.036036, 40.030016 ], [ -75.036155, 40.029992 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307971", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.136952, 40.041995 ], [ -75.136653, 40.04353 ], [ -75.136588, 40.043862 ], [ -75.136485, 40.044292 ], [ -75.136279, 40.045032 ], [ -75.136063, 40.046068 ], [ -75.136043, 40.046157 ], [ -75.136023, 40.04622 ], [ -75.135982, 40.0463 ], [ -75.135908, 40.046264 ], [ -75.135823, 40.046234 ], [ -75.135741, 40.046214 ], [ -75.135649, 40.046198 ], [ -75.135626, 40.046197 ], [ -75.135528, 40.046192 ], [ -75.134756, 40.046158 ], [ -75.134733, 40.046158 ], [ -75.133755, 40.046115 ], [ -75.133293, 40.046088 ], [ -75.132933, 40.04607 ], [ -75.132564, 40.046039 ], [ -75.132133, 40.046018 ], [ -75.131297, 40.045985 ], [ -75.131019, 40.045961 ], [ -75.130761, 40.045936 ], [ -75.130472, 40.045895 ], [ -75.129648, 40.045786 ], [ -75.129491, 40.045766 ], [ -75.129036, 40.045711 ], [ -75.128486, 40.045646 ], [ -75.128331, 40.046392 ], [ -75.128149, 40.047188 ], [ -75.127754, 40.048932 ], [ -75.127471, 40.050217 ], [ -75.127343, 40.050844 ], [ -75.127241, 40.051272 ], [ -75.127136, 40.051736 ], [ -75.127061, 40.052074 ], [ -75.126789, 40.053311 ], [ -75.126645, 40.053979 ], [ -75.12557, 40.05441 ], [ -75.125, 40.054649 ], [ -75.124865, 40.054707 ], [ -75.12463, 40.05482 ], [ -75.122981, 40.05562 ], [ -75.12254, 40.055828 ], [ -75.121453, 40.056328 ], [ -75.120875, 40.056619 ], [ -75.11962, 40.057248 ], [ -75.119249, 40.057424 ], [ -75.117783, 40.058121 ], [ -75.117328, 40.058347 ], [ -75.116232, 40.058892 ], [ -75.115459, 40.059259 ], [ -75.114982, 40.059487 ], [ -75.11437, 40.059779 ], [ -75.114038, 40.059946 ], [ -75.113165, 40.060435 ], [ -75.112268, 40.060961 ], [ -75.111871, 40.061192 ], [ -75.110877, 40.061802 ], [ -75.11075, 40.061887 ], [ -75.109988, 40.061499 ], [ -75.108398, 40.060679 ], [ -75.108124, 40.060541 ], [ -75.107024, 40.059982 ], [ -75.106912, 40.05992 ], [ -75.106888, 40.059908 ], [ -75.10683, 40.059858 ], [ -75.106786, 40.059804 ], [ -75.106754, 40.059759 ], [ -75.106555, 40.059928 ], [ -75.105719, 40.060769 ], [ -75.105415, 40.061094 ], [ -75.105103, 40.061409 ], [ -75.104823, 40.061682 ], [ -75.104688, 40.061823 ], [ -75.104554, 40.061924 ], [ -75.104497, 40.061962 ], [ -75.104407, 40.062008 ], [ -75.104267, 40.062066 ], [ -75.10418, 40.062097 ], [ -75.10408, 40.062127 ], [ -75.104019, 40.062141 ], [ -75.103934, 40.062159 ], [ -75.103843, 40.062169 ], [ -75.103774, 40.062175 ], [ -75.10363, 40.06218 ], [ -75.102944, 40.062138 ], [ -75.101061, 40.062014 ], [ -75.100029, 40.061952 ], [ -75.099899, 40.061935 ], [ -75.099828, 40.061918 ], [ -75.099711, 40.061886 ], [ -75.09962, 40.061851 ], [ -75.099507, 40.061797 ], [ -75.099386, 40.061726 ], [ -75.099274, 40.061645 ], [ -75.098571, 40.061122 ], [ -75.0976, 40.060379 ], [ -75.09736, 40.060213 ], [ -75.097225, 40.060128 ], [ -75.097158, 40.060095 ], [ -75.097092, 40.060064 ], [ -75.096915, 40.059985 ], [ -75.096173, 40.059708 ], [ -75.096025, 40.05967 ], [ -75.095796, 40.05988 ], [ -75.095664, 40.060012 ], [ -75.095567, 40.060106 ], [ -75.094405, 40.061265 ], [ -75.093434, 40.062208 ], [ -75.093053, 40.062587 ], [ -75.092666, 40.062982 ], [ -75.091909, 40.063731 ], [ -75.091451, 40.064184 ], [ -75.091135, 40.064492 ], [ -75.090752, 40.064875 ], [ -75.090355, 40.065301 ], [ -75.089494, 40.064789 ], [ -75.089366, 40.064706 ], [ -75.088746, 40.064355 ], [ -75.087885, 40.06384 ], [ -75.087471, 40.063593 ], [ -75.087277, 40.06349 ], [ -75.087024, 40.063345 ], [ -75.086884, 40.063267 ], [ -75.086557, 40.063085 ], [ -75.086292, 40.062933 ], [ -75.085738, 40.062616 ], [ -75.085124, 40.062256 ], [ -75.08478, 40.062054 ], [ -75.084433, 40.061846 ], [ -75.084205, 40.061709 ], [ -75.084092, 40.061642 ], [ -75.083822, 40.061477 ], [ -75.083722, 40.061412 ], [ -75.083619, 40.061343 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.076356, 40.057127 ], [ -75.07542, 40.056596 ], [ -75.075026, 40.056373 ], [ -75.074657, 40.056147 ], [ -75.074336, 40.055951 ], [ -75.074293, 40.055881 ], [ -75.074155, 40.055786 ], [ -75.073709, 40.055517 ], [ -75.073682, 40.055503 ], [ -75.073613, 40.055465 ], [ -75.073493, 40.055456 ], [ -75.073252, 40.055318 ], [ -75.07285, 40.055085 ], [ -75.072647, 40.054968 ], [ -75.072085, 40.054643 ], [ -75.071943, 40.05456 ], [ -75.071488, 40.0543 ], [ -75.071227, 40.054154 ], [ -75.071197, 40.0541 ], [ -75.070971, 40.053957 ], [ -75.070619, 40.053749 ], [ -75.070444, 40.053649 ], [ -75.070335, 40.053639 ], [ -75.070182, 40.053549 ], [ -75.06973, 40.053284 ], [ -75.069358, 40.053075 ], [ -75.069141, 40.052952 ], [ -75.068517, 40.052596 ], [ -75.068191, 40.052409 ], [ -75.067732, 40.052146 ], [ -75.067283, 40.051896 ], [ -75.066878, 40.051671 ], [ -75.066763, 40.051607 ], [ -75.066392, 40.05139 ], [ -75.066133, 40.051241 ], [ -75.066082, 40.051213 ], [ -75.066027, 40.051177 ], [ -75.065622, 40.05095 ], [ -75.065409, 40.050824 ], [ -75.065272, 40.050745 ], [ -75.065017, 40.050597 ], [ -75.064843, 40.050495 ], [ -75.064557, 40.050334 ], [ -75.064186, 40.050125 ], [ -75.063714, 40.049858 ], [ -75.063476, 40.049724 ], [ -75.063319, 40.049634 ], [ -75.062958, 40.049429 ], [ -75.06241, 40.049118 ], [ -75.061911, 40.048829 ], [ -75.061742, 40.048731 ], [ -75.061568, 40.04863 ], [ -75.061418, 40.048542 ], [ -75.061201, 40.04842 ], [ -75.060999, 40.048307 ], [ -75.060542, 40.048044 ], [ -75.060179, 40.047842 ], [ -75.059894, 40.047675 ], [ -75.059394, 40.047382 ], [ -75.059208, 40.047272 ], [ -75.058711, 40.04698 ], [ -75.058574, 40.046899 ], [ -75.058405, 40.0468 ], [ -75.058268, 40.04672 ], [ -75.058064, 40.046603 ], [ -75.057906, 40.046512 ], [ -75.057735, 40.046413 ], [ -75.057609, 40.046341 ], [ -75.057391, 40.046217 ], [ -75.057266, 40.046146 ], [ -75.057059, 40.046026 ], [ -75.05684, 40.045899 ], [ -75.056716, 40.045828 ], [ -75.056378, 40.045631 ], [ -75.056272, 40.04557 ], [ -75.056034, 40.045434 ], [ -75.055715, 40.045252 ], [ -75.055211, 40.044981 ], [ -75.054642, 40.044663 ], [ -75.054547, 40.044602 ], [ -75.054441, 40.044534 ], [ -75.054293, 40.044446 ], [ -75.054065, 40.044315 ], [ -75.053662, 40.04407 ], [ -75.053624, 40.044014 ], [ -75.053447, 40.04391 ], [ -75.05338, 40.04387 ], [ -75.0533, 40.043823 ], [ -75.053257, 40.0438 ], [ -75.053168, 40.043794 ], [ -75.053108, 40.043758 ], [ -75.052722, 40.043539 ], [ -75.052242, 40.043268 ], [ -75.05179, 40.043011 ], [ -75.05142, 40.042801 ], [ -75.051088, 40.042611 ], [ -75.051012, 40.042567 ], [ -75.050629, 40.04235 ], [ -75.050193, 40.0421 ], [ -75.049479, 40.041689 ], [ -75.049022, 40.041427 ], [ -75.048591, 40.041177 ], [ -75.047869, 40.040768 ], [ -75.047418, 40.04051 ], [ -75.046983, 40.040261 ], [ -75.046254, 40.039843 ], [ -75.046042, 40.039722 ], [ -75.045944, 40.039667 ], [ -75.04581, 40.039592 ], [ -75.045285, 40.03929 ], [ -75.044209, 40.038685 ], [ -75.04397, 40.038548 ], [ -75.043072, 40.038039 ], [ -75.042966, 40.03798 ], [ -75.04251, 40.037721 ], [ -75.042077, 40.037472 ], [ -75.041316, 40.037033 ], [ -75.040827, 40.036752 ], [ -75.040628, 40.036646 ], [ -75.040523, 40.036588 ], [ -75.040466, 40.036556 ], [ -75.040437, 40.036539 ], [ -75.040364, 40.036482 ], [ -75.040286, 40.036406 ], [ -75.040084, 40.036168 ], [ -75.040014, 40.036085 ], [ -75.039741, 40.035752 ], [ -75.039462, 40.035411 ], [ -75.039177, 40.035064 ], [ -75.039036, 40.034892 ], [ -75.038898, 40.034719 ], [ -75.038622, 40.034374 ], [ -75.038288, 40.033959 ], [ -75.038186, 40.033832 ], [ -75.03806, 40.03368 ], [ -75.037759, 40.033314 ], [ -75.037439, 40.03292 ], [ -75.037324, 40.032776 ], [ -75.037161, 40.032578 ], [ -75.036901, 40.032261 ], [ -75.036617, 40.031912 ], [ -75.036474, 40.031735 ], [ -75.036047, 40.031209 ], [ -75.035829, 40.030941 ], [ -75.035742, 40.030832 ], [ -75.035617, 40.030684 ], [ -75.035272, 40.030263 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.035811, 40.029792 ], [ -75.036172, 40.029605 ], [ -75.03667, 40.029347 ], [ -75.037756, 40.02878 ], [ -75.037893, 40.028711 ], [ -75.03791, 40.0287 ], [ -75.038134, 40.028573 ], [ -75.03816, 40.028558 ], [ -75.038328, 40.028469 ], [ -75.038907, 40.028177 ], [ -75.038649, 40.027888 ], [ -75.03845, 40.027667 ], [ -75.038029, 40.027187 ], [ -75.037585, 40.026683 ], [ -75.037371, 40.02644 ], [ -75.037134, 40.026174 ], [ -75.036693, 40.025653 ], [ -75.036457, 40.025363 ], [ -75.036391, 40.025287 ], [ -75.036302, 40.025172 ], [ -75.036202, 40.02505 ], [ -75.036155, 40.024992 ], [ -75.036073, 40.024881 ], [ -75.035825, 40.024564 ], [ -75.035604, 40.024273 ], [ -75.035378, 40.023964 ], [ -75.034746, 40.024237 ], [ -75.034483, 40.024352 ], [ -75.033924, 40.024614 ], [ -75.033025, 40.025034 ], [ -75.032461, 40.025298 ], [ -75.031641, 40.025681 ], [ -75.031589, 40.025711 ], [ -75.03132, 40.02586 ], [ -75.031255, 40.025898 ], [ -75.030951, 40.026078 ], [ -75.02939, 40.026998 ], [ -75.029114, 40.027161 ], [ -75.028796, 40.027336 ], [ -75.028393, 40.027566 ], [ -75.028315, 40.027611 ], [ -75.027093, 40.028302 ], [ -75.02707, 40.028314 ], [ -75.025815, 40.029007 ], [ -75.02451, 40.02973 ], [ -75.024019, 40.030002 ], [ -75.02331, 40.030395 ], [ -75.022494, 40.030865 ], [ -75.022369, 40.030931 ], [ -75.0222, 40.031021 ], [ -75.021767, 40.031251 ], [ -75.021596, 40.031352 ], [ -75.021316, 40.031483 ], [ -75.021263, 40.031513 ], [ -75.021181, 40.031562 ], [ -75.020562, 40.031904 ], [ -75.020138, 40.032147 ], [ -75.019947, 40.032256 ], [ -75.019775, 40.032354 ], [ -75.019318, 40.032612 ], [ -75.019133, 40.032717 ], [ -75.018037, 40.033335 ], [ -75.017165, 40.033821 ], [ -75.016778, 40.034036 ], [ -75.016325, 40.034289 ], [ -75.015093, 40.034977 ], [ -75.014624, 40.035232 ], [ -75.012332, 40.036517 ], [ -75.01215, 40.036614 ], [ -75.011869, 40.03677 ], [ -75.011332, 40.037054 ], [ -75.011715, 40.037368 ], [ -75.011941, 40.037569 ], [ -75.012129, 40.037713 ], [ -75.012574, 40.038078 ], [ -75.012715, 40.038185 ], [ -75.012802, 40.038257 ], [ -75.013288, 40.038639 ], [ -75.014322, 40.039453 ], [ -75.015411, 40.040335 ], [ -75.014428, 40.040852 ], [ -75.014062, 40.041031 ], [ -75.013627, 40.041258 ], [ -75.013544, 40.041306 ], [ -75.013455, 40.04136 ], [ -75.013258, 40.041494 ], [ -75.012701, 40.041868 ], [ -75.012042, 40.042294 ], [ -75.011743, 40.042505 ], [ -75.011403, 40.04273 ], [ -75.01105, 40.042963 ], [ -75.01086, 40.043088 ], [ -75.010506, 40.043322 ], [ -75.010151, 40.04356 ], [ -75.009959, 40.043682 ], [ -75.009599, 40.043924 ], [ -75.009236, 40.044165 ], [ -75.008828, 40.044436 ], [ -75.00792, 40.045037 ], [ -75.0062, 40.046191 ], [ -75.004764, 40.047148 ], [ -75.004644, 40.047235 ], [ -75.004588, 40.047242 ], [ -75.004579, 40.047243 ], [ -75.004563, 40.047246 ], [ -75.004547, 40.047255 ], [ -75.003363, 40.048043 ], [ -75.003154, 40.048183 ], [ -75.002916, 40.04833 ], [ -75.002706, 40.048471 ], [ -75.002649, 40.048506 ], [ -75.002342, 40.048718 ], [ -75.00202, 40.048944 ], [ -75.00192, 40.049006 ], [ -75.00151, 40.049281 ], [ -75.001498, 40.049289 ], [ -75.001133, 40.049532 ], [ -75.001125, 40.049537 ], [ -75.000887, 40.049693 ], [ -75.000541, 40.049932 ], [ -75.000523, 40.049944 ], [ -75.000502, 40.04996 ], [ -75.000475, 40.049977 ], [ -75.000413, 40.050021 ], [ -75.000274, 40.050107 ], [ -75.000241, 40.050165 ], [ -75.000206, 40.050187 ], [ -74.999889, 40.050408 ], [ -75.000513, 40.050965 ], [ -75.001123, 40.051507 ], [ -75.001739, 40.052057 ], [ -75.002338, 40.052589 ], [ -75.002954, 40.053138 ], [ -75.00356, 40.053669 ], [ -75.004173, 40.054213 ], [ -75.004337, 40.054352 ], [ -75.004464, 40.054458 ], [ -75.004804, 40.054744 ], [ -75.005209, 40.054438 ], [ -75.005291, 40.054379 ], [ -75.00537, 40.054319 ], [ -75.005546, 40.054194 ], [ -75.005684, 40.054082 ], [ -75.005848, 40.053958 ], [ -75.005903, 40.053913 ], [ -75.005656, 40.053714 ], [ -75.005564, 40.053678 ], [ -75.005474, 40.053708 ], [ -75.005403, 40.053779 ], [ -75.005433, 40.053883 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307972", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.060179, 40.047842 ], [ -75.059894, 40.047675 ], [ -75.059394, 40.047382 ], [ -75.059208, 40.047272 ], [ -75.058711, 40.04698 ], [ -75.058574, 40.046899 ], [ -75.058405, 40.0468 ], [ -75.058268, 40.04672 ], [ -75.058064, 40.046603 ], [ -75.057906, 40.046512 ], [ -75.057735, 40.046413 ], [ -75.057609, 40.046341 ], [ -75.057391, 40.046217 ], [ -75.057266, 40.046146 ], [ -75.057059, 40.046026 ], [ -75.05684, 40.045899 ], [ -75.056716, 40.045828 ], [ -75.056378, 40.045631 ], [ -75.056272, 40.04557 ], [ -75.056034, 40.045434 ], [ -75.055715, 40.045252 ], [ -75.055211, 40.044981 ], [ -75.054642, 40.044663 ], [ -75.054547, 40.044602 ], [ -75.054441, 40.044534 ], [ -75.054293, 40.044446 ], [ -75.054065, 40.044315 ], [ -75.053662, 40.04407 ], [ -75.05358, 40.044067 ], [ -75.053555, 40.044056 ], [ -75.053524, 40.044042 ], [ -75.053365, 40.043957 ], [ -75.053206, 40.043856 ], [ -75.053168, 40.043794 ], [ -75.053108, 40.043758 ], [ -75.052722, 40.043539 ], [ -75.052242, 40.043268 ], [ -75.05179, 40.043011 ], [ -75.05142, 40.042801 ], [ -75.051088, 40.042611 ], [ -75.051012, 40.042567 ], [ -75.050629, 40.04235 ], [ -75.050193, 40.0421 ], [ -75.049479, 40.041689 ], [ -75.049022, 40.041427 ], [ -75.048591, 40.041177 ], [ -75.047869, 40.040768 ], [ -75.047418, 40.04051 ], [ -75.046983, 40.040261 ], [ -75.046254, 40.039843 ], [ -75.046042, 40.039722 ], [ -75.045944, 40.039667 ], [ -75.04581, 40.039592 ], [ -75.045285, 40.03929 ], [ -75.044209, 40.038685 ], [ -75.04397, 40.038548 ], [ -75.043072, 40.038039 ], [ -75.042966, 40.03798 ], [ -75.04251, 40.037721 ], [ -75.042077, 40.037472 ], [ -75.041316, 40.037033 ], [ -75.040827, 40.036752 ], [ -75.040628, 40.036646 ], [ -75.040523, 40.036588 ], [ -75.040466, 40.036556 ], [ -75.040437, 40.036539 ], [ -75.040364, 40.036482 ], [ -75.040286, 40.036406 ], [ -75.040084, 40.036168 ], [ -75.040014, 40.036085 ], [ -75.039741, 40.035752 ], [ -75.039462, 40.035411 ], [ -75.039177, 40.035064 ], [ -75.039036, 40.034892 ], [ -75.038898, 40.034719 ], [ -75.038622, 40.034374 ], [ -75.038288, 40.033959 ], [ -75.038186, 40.033832 ], [ -75.03806, 40.03368 ], [ -75.037759, 40.033314 ], [ -75.037439, 40.03292 ], [ -75.037324, 40.032776 ], [ -75.037161, 40.032578 ], [ -75.036901, 40.032261 ], [ -75.036617, 40.031912 ], [ -75.036474, 40.031735 ], [ -75.036047, 40.031209 ], [ -75.035829, 40.030941 ], [ -75.035742, 40.030832 ], [ -75.035617, 40.030684 ], [ -75.035272, 40.030263 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.035811, 40.029792 ], [ -75.036172, 40.029605 ], [ -75.03667, 40.029347 ], [ -75.037756, 40.02878 ], [ -75.037893, 40.028711 ], [ -75.03791, 40.0287 ], [ -75.038134, 40.028573 ], [ -75.03816, 40.028558 ], [ -75.038328, 40.028469 ], [ -75.038907, 40.028177 ], [ -75.038649, 40.027888 ], [ -75.03845, 40.027667 ], [ -75.038029, 40.027187 ], [ -75.037585, 40.026683 ], [ -75.037371, 40.02644 ], [ -75.037134, 40.026174 ], [ -75.036693, 40.025653 ], [ -75.036457, 40.025363 ], [ -75.036391, 40.025287 ], [ -75.036302, 40.025172 ], [ -75.036202, 40.02505 ], [ -75.036155, 40.024992 ], [ -75.036073, 40.024881 ], [ -75.035825, 40.024564 ], [ -75.035604, 40.024273 ], [ -75.035378, 40.023964 ], [ -75.034746, 40.024237 ], [ -75.034483, 40.024352 ], [ -75.033924, 40.024614 ], [ -75.033025, 40.025034 ], [ -75.032461, 40.025298 ], [ -75.031641, 40.025681 ], [ -75.031589, 40.025711 ], [ -75.03132, 40.02586 ], [ -75.031255, 40.025898 ], [ -75.030951, 40.026078 ], [ -75.02939, 40.026998 ], [ -75.029114, 40.027161 ], [ -75.028796, 40.027336 ], [ -75.028393, 40.027566 ], [ -75.028315, 40.027611 ], [ -75.027093, 40.028302 ], [ -75.02707, 40.028314 ], [ -75.025815, 40.029007 ], [ -75.02451, 40.02973 ], [ -75.024019, 40.030002 ], [ -75.02331, 40.030395 ], [ -75.022494, 40.030865 ], [ -75.022369, 40.030931 ], [ -75.0222, 40.031021 ], [ -75.021767, 40.031251 ], [ -75.021596, 40.031352 ], [ -75.021316, 40.031483 ], [ -75.021263, 40.031513 ], [ -75.021181, 40.031562 ], [ -75.020562, 40.031904 ], [ -75.020138, 40.032147 ], [ -75.019947, 40.032256 ], [ -75.019775, 40.032354 ], [ -75.019318, 40.032612 ], [ -75.019133, 40.032717 ], [ -75.018037, 40.033335 ], [ -75.017165, 40.033821 ], [ -75.016778, 40.034036 ], [ -75.016325, 40.034289 ], [ -75.015093, 40.034977 ], [ -75.014624, 40.035232 ], [ -75.012332, 40.036517 ], [ -75.01215, 40.036614 ], [ -75.011869, 40.03677 ], [ -75.011332, 40.037054 ], [ -75.011715, 40.037368 ], [ -75.011941, 40.037569 ], [ -75.012129, 40.037713 ], [ -75.012574, 40.038078 ], [ -75.012715, 40.038185 ], [ -75.012802, 40.038257 ], [ -75.013288, 40.038639 ], [ -75.014322, 40.039453 ], [ -75.015411, 40.040335 ], [ -75.014428, 40.040852 ], [ -75.014062, 40.041031 ], [ -75.013627, 40.041258 ], [ -75.013544, 40.041306 ], [ -75.013455, 40.04136 ], [ -75.013258, 40.041494 ], [ -75.012701, 40.041868 ], [ -75.012042, 40.042294 ], [ -75.011743, 40.042505 ], [ -75.011403, 40.04273 ], [ -75.01105, 40.042963 ], [ -75.01086, 40.043088 ], [ -75.010506, 40.043322 ], [ -75.010151, 40.04356 ], [ -75.009959, 40.043682 ], [ -75.009599, 40.043924 ], [ -75.009236, 40.044165 ], [ -75.008828, 40.044436 ], [ -75.00792, 40.045037 ], [ -75.0062, 40.046191 ], [ -75.004764, 40.047148 ], [ -75.004644, 40.047235 ], [ -75.004588, 40.047242 ], [ -75.004579, 40.047243 ], [ -75.004563, 40.047246 ], [ -75.004547, 40.047255 ], [ -75.003363, 40.048043 ], [ -75.003154, 40.048183 ], [ -75.002916, 40.04833 ], [ -75.002706, 40.048471 ], [ -75.002649, 40.048506 ], [ -75.002342, 40.048718 ], [ -75.00202, 40.048944 ], [ -75.00192, 40.049006 ], [ -75.00151, 40.049281 ], [ -75.001498, 40.049289 ], [ -75.001133, 40.049532 ], [ -75.001125, 40.049537 ], [ -75.000887, 40.049693 ], [ -75.000541, 40.049932 ], [ -75.000523, 40.049944 ], [ -75.000502, 40.04996 ], [ -75.000475, 40.049977 ], [ -75.000413, 40.050021 ], [ -75.000274, 40.050107 ], [ -75.000241, 40.050165 ], [ -75.000206, 40.050187 ], [ -74.999889, 40.050408 ], [ -75.000513, 40.050965 ], [ -75.001123, 40.051507 ], [ -75.001739, 40.052057 ], [ -75.002338, 40.052589 ], [ -75.002954, 40.053138 ], [ -75.00356, 40.053669 ], [ -75.004173, 40.054213 ], [ -75.004337, 40.054352 ], [ -75.004464, 40.054458 ], [ -75.004804, 40.054744 ], [ -75.005209, 40.054438 ], [ -75.005291, 40.054379 ], [ -75.00537, 40.054319 ], [ -75.005546, 40.054194 ], [ -75.005684, 40.054082 ], [ -75.005848, 40.053958 ], [ -75.005903, 40.053913 ], [ -75.005656, 40.053714 ], [ -75.005564, 40.053678 ], [ -75.005474, 40.053708 ], [ -75.005403, 40.053779 ], [ -75.005433, 40.053883 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307973", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.060179, 40.047842 ], [ -75.059894, 40.047675 ], [ -75.059394, 40.047382 ], [ -75.059208, 40.047272 ], [ -75.058711, 40.04698 ], [ -75.058574, 40.046899 ], [ -75.058405, 40.0468 ], [ -75.058268, 40.04672 ], [ -75.058064, 40.046603 ], [ -75.057906, 40.046512 ], [ -75.057735, 40.046413 ], [ -75.057609, 40.046341 ], [ -75.057391, 40.046217 ], [ -75.057266, 40.046146 ], [ -75.057059, 40.046026 ], [ -75.05684, 40.045899 ], [ -75.056716, 40.045828 ], [ -75.056378, 40.045631 ], [ -75.056272, 40.04557 ], [ -75.056034, 40.045434 ], [ -75.055715, 40.045252 ], [ -75.055211, 40.044981 ], [ -75.054642, 40.044663 ], [ -75.054547, 40.044602 ], [ -75.054441, 40.044534 ], [ -75.054293, 40.044446 ], [ -75.054065, 40.044315 ], [ -75.053662, 40.04407 ], [ -75.05358, 40.044067 ], [ -75.053555, 40.044056 ], [ -75.053524, 40.044042 ], [ -75.053365, 40.043957 ], [ -75.053206, 40.043856 ], [ -75.053168, 40.043794 ], [ -75.053108, 40.043758 ], [ -75.052722, 40.043539 ], [ -75.052242, 40.043268 ], [ -75.05179, 40.043011 ], [ -75.05142, 40.042801 ], [ -75.051088, 40.042611 ], [ -75.051012, 40.042567 ], [ -75.050629, 40.04235 ], [ -75.050193, 40.0421 ], [ -75.049479, 40.041689 ], [ -75.049022, 40.041427 ], [ -75.048591, 40.041177 ], [ -75.047869, 40.040768 ], [ -75.047418, 40.04051 ], [ -75.046983, 40.040261 ], [ -75.046254, 40.039843 ], [ -75.046042, 40.039722 ], [ -75.045944, 40.039667 ], [ -75.04581, 40.039592 ], [ -75.045285, 40.03929 ], [ -75.044209, 40.038685 ], [ -75.04397, 40.038548 ], [ -75.043072, 40.038039 ], [ -75.042966, 40.03798 ], [ -75.04251, 40.037721 ], [ -75.042077, 40.037472 ], [ -75.041316, 40.037033 ], [ -75.040827, 40.036752 ], [ -75.040628, 40.036646 ], [ -75.040523, 40.036588 ], [ -75.040466, 40.036556 ], [ -75.040437, 40.036539 ], [ -75.040364, 40.036482 ], [ -75.040286, 40.036406 ], [ -75.040084, 40.036168 ], [ -75.040014, 40.036085 ], [ -75.039741, 40.035752 ], [ -75.039462, 40.035411 ], [ -75.039177, 40.035064 ], [ -75.039036, 40.034892 ], [ -75.038898, 40.034719 ], [ -75.038622, 40.034374 ], [ -75.038288, 40.033959 ], [ -75.038186, 40.033832 ], [ -75.03806, 40.03368 ], [ -75.037759, 40.033314 ], [ -75.037439, 40.03292 ], [ -75.037324, 40.032776 ], [ -75.037161, 40.032578 ], [ -75.036901, 40.032261 ], [ -75.036617, 40.031912 ], [ -75.036474, 40.031735 ], [ -75.036047, 40.031209 ], [ -75.035829, 40.030941 ], [ -75.035742, 40.030832 ], [ -75.035617, 40.030684 ], [ -75.035272, 40.030263 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.03584, 40.029894 ], [ -75.035863, 40.029928 ], [ -75.0359, 40.02998 ], [ -75.036036, 40.030016 ], [ -75.036155, 40.029992 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307974", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.06973, 40.053284 ], [ -75.069358, 40.053075 ], [ -75.069141, 40.052952 ], [ -75.068517, 40.052596 ], [ -75.068191, 40.052409 ], [ -75.067732, 40.052146 ], [ -75.067283, 40.051896 ], [ -75.066878, 40.051671 ], [ -75.066763, 40.051607 ], [ -75.066392, 40.05139 ], [ -75.066133, 40.051241 ], [ -75.066082, 40.051213 ], [ -75.066027, 40.051177 ], [ -75.065622, 40.05095 ], [ -75.065409, 40.050824 ], [ -75.065272, 40.050745 ], [ -75.065017, 40.050597 ], [ -75.064843, 40.050495 ], [ -75.064557, 40.050334 ], [ -75.064186, 40.050125 ], [ -75.063714, 40.049858 ], [ -75.063476, 40.049724 ], [ -75.063319, 40.049634 ], [ -75.062958, 40.049429 ], [ -75.06241, 40.049118 ], [ -75.061911, 40.048829 ], [ -75.061742, 40.048731 ], [ -75.061568, 40.04863 ], [ -75.061418, 40.048542 ], [ -75.061201, 40.04842 ], [ -75.060999, 40.048307 ], [ -75.060542, 40.048044 ], [ -75.060179, 40.047842 ], [ -75.059894, 40.047675 ], [ -75.059394, 40.047382 ], [ -75.059208, 40.047272 ], [ -75.058711, 40.04698 ], [ -75.058574, 40.046899 ], [ -75.058405, 40.0468 ], [ -75.058268, 40.04672 ], [ -75.058064, 40.046603 ], [ -75.057906, 40.046512 ], [ -75.057735, 40.046413 ], [ -75.057609, 40.046341 ], [ -75.057391, 40.046217 ], [ -75.057266, 40.046146 ], [ -75.057059, 40.046026 ], [ -75.05684, 40.045899 ], [ -75.056716, 40.045828 ], [ -75.056378, 40.045631 ], [ -75.056272, 40.04557 ], [ -75.056034, 40.045434 ], [ -75.055715, 40.045252 ], [ -75.055211, 40.044981 ], [ -75.054642, 40.044663 ], [ -75.054547, 40.044602 ], [ -75.054441, 40.044534 ], [ -75.054293, 40.044446 ], [ -75.054065, 40.044315 ], [ -75.053662, 40.04407 ], [ -75.053624, 40.044014 ], [ -75.053447, 40.04391 ], [ -75.05338, 40.04387 ], [ -75.0533, 40.043823 ], [ -75.053257, 40.0438 ], [ -75.053168, 40.043794 ], [ -75.053108, 40.043758 ], [ -75.052722, 40.043539 ], [ -75.052242, 40.043268 ], [ -75.05179, 40.043011 ], [ -75.05142, 40.042801 ], [ -75.051088, 40.042611 ], [ -75.051012, 40.042567 ], [ -75.050629, 40.04235 ], [ -75.050193, 40.0421 ], [ -75.049479, 40.041689 ], [ -75.049022, 40.041427 ], [ -75.048591, 40.041177 ], [ -75.047869, 40.040768 ], [ -75.047418, 40.04051 ], [ -75.046983, 40.040261 ], [ -75.046254, 40.039843 ], [ -75.046042, 40.039722 ], [ -75.045944, 40.039667 ], [ -75.04581, 40.039592 ], [ -75.045285, 40.03929 ], [ -75.044209, 40.038685 ], [ -75.04397, 40.038548 ], [ -75.043072, 40.038039 ], [ -75.042966, 40.03798 ], [ -75.04251, 40.037721 ], [ -75.042077, 40.037472 ], [ -75.041316, 40.037033 ], [ -75.040827, 40.036752 ], [ -75.040628, 40.036646 ], [ -75.040523, 40.036588 ], [ -75.040466, 40.036556 ], [ -75.040437, 40.036539 ], [ -75.040364, 40.036482 ], [ -75.040286, 40.036406 ], [ -75.040084, 40.036168 ], [ -75.040014, 40.036085 ], [ -75.039741, 40.035752 ], [ -75.039462, 40.035411 ], [ -75.039177, 40.035064 ], [ -75.039036, 40.034892 ], [ -75.038898, 40.034719 ], [ -75.038622, 40.034374 ], [ -75.038288, 40.033959 ], [ -75.038186, 40.033832 ], [ -75.03806, 40.03368 ], [ -75.037759, 40.033314 ], [ -75.037439, 40.03292 ], [ -75.037324, 40.032776 ], [ -75.037161, 40.032578 ], [ -75.036901, 40.032261 ], [ -75.036617, 40.031912 ], [ -75.036474, 40.031735 ], [ -75.036047, 40.031209 ], [ -75.035829, 40.030941 ], [ -75.035742, 40.030832 ], [ -75.035617, 40.030684 ], [ -75.035272, 40.030263 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.03584, 40.029894 ], [ -75.035863, 40.029928 ], [ -75.0359, 40.02998 ], [ -75.036036, 40.030016 ], [ -75.036155, 40.029992 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307976", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.036155, 40.029992 ], [ -75.036304, 40.029909 ], [ -75.036331, 40.029835 ], [ -75.036289, 40.02976 ], [ -75.036245, 40.029701 ], [ -75.036172, 40.029605 ], [ -75.035811, 40.029792 ], [ -75.03578, 40.029809 ], [ -75.035578, 40.029915 ], [ -75.035165, 40.030134 ], [ -75.035272, 40.030263 ], [ -75.035617, 40.030684 ], [ -75.035742, 40.030832 ], [ -75.035829, 40.030941 ], [ -75.036047, 40.031209 ], [ -75.036474, 40.031735 ], [ -75.036617, 40.031912 ], [ -75.036901, 40.032261 ], [ -75.037161, 40.032578 ], [ -75.037324, 40.032776 ], [ -75.037439, 40.03292 ], [ -75.037759, 40.033314 ], [ -75.03806, 40.03368 ], [ -75.038186, 40.033832 ], [ -75.038288, 40.033959 ], [ -75.038622, 40.034374 ], [ -75.038898, 40.034719 ], [ -75.039036, 40.034892 ], [ -75.039177, 40.035064 ], [ -75.039462, 40.035411 ], [ -75.039741, 40.035752 ], [ -75.040014, 40.036085 ], [ -75.040084, 40.036168 ], [ -75.040286, 40.036406 ], [ -75.040364, 40.036482 ], [ -75.040437, 40.036539 ], [ -75.040466, 40.036556 ], [ -75.040523, 40.036588 ], [ -75.040628, 40.036646 ], [ -75.040827, 40.036752 ], [ -75.041316, 40.037033 ], [ -75.042077, 40.037472 ], [ -75.04251, 40.037721 ], [ -75.042966, 40.03798 ], [ -75.043072, 40.038039 ], [ -75.04397, 40.038548 ], [ -75.044209, 40.038685 ], [ -75.045285, 40.03929 ], [ -75.04581, 40.039592 ], [ -75.045944, 40.039667 ], [ -75.046042, 40.039722 ], [ -75.046254, 40.039843 ], [ -75.046983, 40.040261 ], [ -75.047418, 40.04051 ], [ -75.047869, 40.040768 ], [ -75.048591, 40.041177 ], [ -75.049022, 40.041427 ], [ -75.049479, 40.041689 ], [ -75.050193, 40.0421 ], [ -75.050629, 40.04235 ], [ -75.051012, 40.042567 ], [ -75.051088, 40.042611 ], [ -75.05142, 40.042801 ], [ -75.05179, 40.043011 ], [ -75.052242, 40.043268 ], [ -75.052722, 40.043539 ], [ -75.053108, 40.043758 ], [ -75.053168, 40.043794 ], [ -75.053206, 40.043856 ], [ -75.053365, 40.043957 ], [ -75.053524, 40.044042 ], [ -75.053555, 40.044056 ], [ -75.05358, 40.044067 ], [ -75.053662, 40.04407 ], [ -75.054065, 40.044315 ], [ -75.054293, 40.044446 ], [ -75.054441, 40.044534 ], [ -75.054547, 40.044602 ], [ -75.054642, 40.044663 ], [ -75.055211, 40.044981 ], [ -75.055715, 40.045252 ], [ -75.056034, 40.045434 ], [ -75.056272, 40.04557 ], [ -75.056378, 40.045631 ], [ -75.056716, 40.045828 ], [ -75.05684, 40.045899 ], [ -75.057059, 40.046026 ], [ -75.057266, 40.046146 ], [ -75.057391, 40.046217 ], [ -75.057609, 40.046341 ], [ -75.057735, 40.046413 ], [ -75.057906, 40.046512 ], [ -75.058064, 40.046603 ], [ -75.058268, 40.04672 ], [ -75.058405, 40.0468 ], [ -75.058574, 40.046899 ], [ -75.058711, 40.04698 ], [ -75.059208, 40.047272 ], [ -75.059394, 40.047382 ], [ -75.059894, 40.047675 ], [ -75.060179, 40.047842 ], [ -75.060542, 40.048044 ], [ -75.060999, 40.048307 ], [ -75.061201, 40.04842 ], [ -75.061418, 40.048542 ], [ -75.061568, 40.04863 ], [ -75.061742, 40.048731 ], [ -75.061911, 40.048829 ], [ -75.06241, 40.049118 ], [ -75.062958, 40.049429 ], [ -75.063319, 40.049634 ], [ -75.063476, 40.049724 ], [ -75.063714, 40.049858 ], [ -75.064186, 40.050125 ], [ -75.064557, 40.050334 ], [ -75.064843, 40.050495 ], [ -75.065017, 40.050597 ], [ -75.065272, 40.050745 ], [ -75.065409, 40.050824 ], [ -75.065622, 40.05095 ], [ -75.066027, 40.051177 ], [ -75.066082, 40.051213 ], [ -75.066133, 40.051241 ], [ -75.066392, 40.05139 ], [ -75.066763, 40.051607 ], [ -75.066878, 40.051671 ], [ -75.067283, 40.051896 ], [ -75.067732, 40.052146 ], [ -75.068191, 40.052409 ], [ -75.068517, 40.052596 ], [ -75.069141, 40.052952 ], [ -75.069358, 40.053075 ], [ -75.06973, 40.053284 ], [ -75.070182, 40.053549 ], [ -75.070335, 40.053639 ], [ -75.07038, 40.053722 ], [ -75.070434, 40.053759 ], [ -75.070651, 40.053876 ], [ -75.071049, 40.054081 ], [ -75.071168, 40.054147 ], [ -75.071227, 40.054154 ], [ -75.071488, 40.0543 ], [ -75.071943, 40.05456 ], [ -75.072085, 40.054643 ], [ -75.072647, 40.054968 ], [ -75.07285, 40.055085 ], [ -75.073252, 40.055318 ], [ -75.073493, 40.055456 ], [ -75.07354, 40.05554 ], [ -75.074077, 40.055859 ], [ -75.074146, 40.055902 ], [ -75.074226, 40.055944 ], [ -75.074336, 40.055951 ], [ -75.074657, 40.056147 ], [ -75.075026, 40.056373 ], [ -75.07542, 40.056596 ], [ -75.076356, 40.057127 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083619, 40.061343 ], [ -75.083722, 40.061412 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090752, 40.064875 ], [ -75.091135, 40.064492 ], [ -75.091451, 40.064184 ], [ -75.091909, 40.063731 ], [ -75.092666, 40.062982 ], [ -75.093053, 40.062587 ], [ -75.093434, 40.062208 ], [ -75.094405, 40.061265 ], [ -75.095567, 40.060106 ], [ -75.095664, 40.060012 ], [ -75.095796, 40.05988 ], [ -75.096025, 40.05967 ], [ -75.096173, 40.059708 ], [ -75.096915, 40.059985 ], [ -75.097092, 40.060064 ], [ -75.097158, 40.060095 ], [ -75.097225, 40.060128 ], [ -75.09736, 40.060213 ], [ -75.0976, 40.060379 ], [ -75.098571, 40.061122 ], [ -75.099274, 40.061645 ], [ -75.099386, 40.061726 ], [ -75.099507, 40.061797 ], [ -75.09962, 40.061851 ], [ -75.099711, 40.061886 ], [ -75.099828, 40.061918 ], [ -75.099899, 40.061935 ], [ -75.100029, 40.061952 ], [ -75.101061, 40.062014 ], [ -75.102944, 40.062138 ], [ -75.10363, 40.06218 ], [ -75.103774, 40.062175 ], [ -75.103843, 40.062169 ], [ -75.103934, 40.062159 ], [ -75.104019, 40.062141 ], [ -75.10408, 40.062127 ], [ -75.10418, 40.062097 ], [ -75.104267, 40.062066 ], [ -75.104407, 40.062008 ], [ -75.104497, 40.061962 ], [ -75.104554, 40.061924 ], [ -75.104688, 40.061823 ], [ -75.104823, 40.061682 ], [ -75.105103, 40.061409 ], [ -75.105415, 40.061094 ], [ -75.105719, 40.060769 ], [ -75.106555, 40.059928 ], [ -75.106754, 40.059759 ], [ -75.106786, 40.059804 ], [ -75.10683, 40.059858 ], [ -75.106888, 40.059908 ], [ -75.106912, 40.05992 ], [ -75.107024, 40.059982 ], [ -75.108124, 40.060541 ], [ -75.108398, 40.060679 ], [ -75.109988, 40.061499 ], [ -75.11075, 40.061887 ], [ -75.110877, 40.061802 ], [ -75.111871, 40.061192 ], [ -75.112268, 40.060961 ], [ -75.113165, 40.060435 ], [ -75.114038, 40.059946 ], [ -75.11437, 40.059779 ], [ -75.114982, 40.059487 ], [ -75.115459, 40.059259 ], [ -75.116232, 40.058892 ], [ -75.117328, 40.058347 ], [ -75.117783, 40.058121 ], [ -75.119249, 40.057424 ], [ -75.11962, 40.057248 ], [ -75.120875, 40.056619 ], [ -75.121453, 40.056328 ], [ -75.12254, 40.055828 ], [ -75.122981, 40.05562 ], [ -75.12463, 40.05482 ], [ -75.124865, 40.054707 ], [ -75.125, 40.054649 ], [ -75.12557, 40.05441 ], [ -75.126645, 40.053979 ], [ -75.126789, 40.053311 ], [ -75.127061, 40.052074 ], [ -75.127136, 40.051736 ], [ -75.127241, 40.051272 ], [ -75.127343, 40.050844 ], [ -75.127471, 40.050217 ], [ -75.127754, 40.048932 ], [ -75.128149, 40.047188 ], [ -75.128331, 40.046392 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307978", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.005433, 40.053883 ], [ -75.005684, 40.054082 ], [ -75.005535, 40.054194 ], [ -75.00538, 40.054319 ], [ -75.005291, 40.054379 ], [ -75.005209, 40.054438 ], [ -75.004804, 40.054744 ], [ -75.004464, 40.054458 ], [ -75.004337, 40.054352 ], [ -75.004173, 40.054213 ], [ -75.00356, 40.053669 ], [ -75.002954, 40.053138 ], [ -75.002338, 40.052589 ], [ -75.001739, 40.052057 ], [ -75.001123, 40.051507 ], [ -75.000513, 40.050965 ], [ -74.999889, 40.050408 ], [ -75.000206, 40.050187 ], [ -75.000241, 40.050165 ], [ -75.000287, 40.05016 ], [ -75.000305, 40.050155 ], [ -75.000321, 40.050147 ], [ -75.000576, 40.049975 ], [ -75.001162, 40.049572 ], [ -75.001541, 40.049325 ], [ -75.001795, 40.049168 ], [ -75.001996, 40.049029 ], [ -75.002089, 40.048965 ], [ -75.00211, 40.048947 ], [ -75.002379, 40.048772 ], [ -75.002631, 40.048591 ], [ -75.002708, 40.048545 ], [ -75.003273, 40.048172 ], [ -75.004239, 40.047539 ], [ -75.004414, 40.047424 ], [ -75.004591, 40.047324 ], [ -75.004604, 40.047315 ], [ -75.004617, 40.047297 ], [ -75.004644, 40.047235 ], [ -75.004764, 40.047148 ], [ -75.0062, 40.046191 ], [ -75.00792, 40.045037 ], [ -75.008828, 40.044436 ], [ -75.009236, 40.044165 ], [ -75.009599, 40.043924 ], [ -75.009959, 40.043682 ], [ -75.010151, 40.04356 ], [ -75.010506, 40.043322 ], [ -75.01086, 40.043088 ], [ -75.01105, 40.042963 ], [ -75.011403, 40.04273 ], [ -75.011743, 40.042505 ], [ -75.012042, 40.042294 ], [ -75.012701, 40.041868 ], [ -75.013258, 40.041494 ], [ -75.013455, 40.04136 ], [ -75.013544, 40.041306 ], [ -75.013627, 40.041258 ], [ -75.014062, 40.041031 ], [ -75.014428, 40.040852 ], [ -75.015411, 40.040335 ], [ -75.014322, 40.039453 ], [ -75.013288, 40.038639 ], [ -75.012802, 40.038257 ], [ -75.012715, 40.038185 ], [ -75.012574, 40.038078 ], [ -75.012129, 40.037713 ], [ -75.011941, 40.037569 ], [ -75.011715, 40.037368 ], [ -75.011332, 40.037054 ], [ -75.011869, 40.03677 ], [ -75.01215, 40.036614 ], [ -75.012332, 40.036517 ], [ -75.014624, 40.035232 ], [ -75.015093, 40.034977 ], [ -75.016325, 40.034289 ], [ -75.016778, 40.034036 ], [ -75.017165, 40.033821 ], [ -75.018037, 40.033335 ], [ -75.019133, 40.032717 ], [ -75.019318, 40.032612 ], [ -75.019775, 40.032354 ], [ -75.019947, 40.032256 ], [ -75.020138, 40.032147 ], [ -75.020562, 40.031904 ], [ -75.021181, 40.031562 ], [ -75.021263, 40.031513 ], [ -75.021316, 40.031483 ], [ -75.021596, 40.031352 ], [ -75.021767, 40.031251 ], [ -75.0222, 40.031021 ], [ -75.022369, 40.030931 ], [ -75.022494, 40.030865 ], [ -75.02331, 40.030395 ], [ -75.024019, 40.030002 ], [ -75.02451, 40.02973 ], [ -75.025815, 40.029007 ], [ -75.02707, 40.028314 ], [ -75.027093, 40.028302 ], [ -75.028315, 40.027611 ], [ -75.028393, 40.027566 ], [ -75.028796, 40.027336 ], [ -75.029114, 40.027161 ], [ -75.02939, 40.026998 ], [ -75.030951, 40.026078 ], [ -75.031255, 40.025898 ], [ -75.03132, 40.02586 ], [ -75.031589, 40.025711 ], [ -75.031688, 40.025808 ], [ -75.032056, 40.026215 ], [ -75.032288, 40.026489 ], [ -75.032466, 40.026702 ], [ -75.032667, 40.026948 ], [ -75.032755, 40.027057 ], [ -75.032795, 40.027108 ], [ -75.032825, 40.027145 ], [ -75.0329, 40.027241 ], [ -75.033087, 40.027487 ], [ -75.033287, 40.027741 ], [ -75.033519, 40.028037 ], [ -75.033647, 40.028202 ], [ -75.03394, 40.028577 ], [ -75.034348, 40.029098 ], [ -75.034683, 40.029541 ], [ -75.03473, 40.029602 ], [ -75.035015, 40.029949 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.03584, 40.029894 ], [ -75.035863, 40.029928 ], [ -75.0359, 40.02998 ], [ -75.036036, 40.030016 ], [ -75.036155, 40.029992 ], [ -75.036304, 40.029909 ], [ -75.036331, 40.029835 ], [ -75.036289, 40.02976 ], [ -75.036245, 40.029701 ], [ -75.036172, 40.029605 ], [ -75.035811, 40.029792 ], [ -75.03578, 40.029809 ], [ -75.035578, 40.029915 ], [ -75.035165, 40.030134 ], [ -75.035272, 40.030263 ], [ -75.035617, 40.030684 ], [ -75.035742, 40.030832 ], [ -75.035829, 40.030941 ], [ -75.036047, 40.031209 ], [ -75.036474, 40.031735 ], [ -75.036617, 40.031912 ], [ -75.036901, 40.032261 ], [ -75.037161, 40.032578 ], [ -75.037324, 40.032776 ], [ -75.037439, 40.03292 ], [ -75.037759, 40.033314 ], [ -75.03806, 40.03368 ], [ -75.038186, 40.033832 ], [ -75.038288, 40.033959 ], [ -75.038622, 40.034374 ], [ -75.038898, 40.034719 ], [ -75.039036, 40.034892 ], [ -75.039177, 40.035064 ], [ -75.039462, 40.035411 ], [ -75.039741, 40.035752 ], [ -75.040014, 40.036085 ], [ -75.040084, 40.036168 ], [ -75.040286, 40.036406 ], [ -75.040364, 40.036482 ], [ -75.040437, 40.036539 ], [ -75.040466, 40.036556 ], [ -75.040523, 40.036588 ], [ -75.040628, 40.036646 ], [ -75.040827, 40.036752 ], [ -75.041316, 40.037033 ], [ -75.042077, 40.037472 ], [ -75.04251, 40.037721 ], [ -75.042966, 40.03798 ], [ -75.043072, 40.038039 ], [ -75.04397, 40.038548 ], [ -75.044209, 40.038685 ], [ -75.045285, 40.03929 ], [ -75.04581, 40.039592 ], [ -75.045944, 40.039667 ], [ -75.046042, 40.039722 ], [ -75.046254, 40.039843 ], [ -75.046983, 40.040261 ], [ -75.047418, 40.04051 ], [ -75.047869, 40.040768 ], [ -75.048591, 40.041177 ], [ -75.049022, 40.041427 ], [ -75.049479, 40.041689 ], [ -75.050193, 40.0421 ], [ -75.050629, 40.04235 ], [ -75.051012, 40.042567 ], [ -75.051088, 40.042611 ], [ -75.05142, 40.042801 ], [ -75.05179, 40.043011 ], [ -75.052242, 40.043268 ], [ -75.052722, 40.043539 ], [ -75.053108, 40.043758 ], [ -75.053168, 40.043794 ], [ -75.053206, 40.043856 ], [ -75.053365, 40.043957 ], [ -75.053524, 40.044042 ], [ -75.053555, 40.044056 ], [ -75.05358, 40.044067 ], [ -75.053662, 40.04407 ], [ -75.054065, 40.044315 ], [ -75.054293, 40.044446 ], [ -75.054441, 40.044534 ], [ -75.054547, 40.044602 ], [ -75.054642, 40.044663 ], [ -75.055211, 40.044981 ], [ -75.055715, 40.045252 ], [ -75.056034, 40.045434 ], [ -75.056272, 40.04557 ], [ -75.056378, 40.045631 ], [ -75.056716, 40.045828 ], [ -75.05684, 40.045899 ], [ -75.057059, 40.046026 ], [ -75.057266, 40.046146 ], [ -75.057391, 40.046217 ], [ -75.057609, 40.046341 ], [ -75.057735, 40.046413 ], [ -75.057906, 40.046512 ], [ -75.058064, 40.046603 ], [ -75.058268, 40.04672 ], [ -75.058405, 40.0468 ], [ -75.058574, 40.046899 ], [ -75.058711, 40.04698 ], [ -75.059208, 40.047272 ], [ -75.059394, 40.047382 ], [ -75.059894, 40.047675 ], [ -75.060179, 40.047842 ], [ -75.060542, 40.048044 ], [ -75.060999, 40.048307 ], [ -75.061201, 40.04842 ], [ -75.061418, 40.048542 ], [ -75.061568, 40.04863 ], [ -75.061742, 40.048731 ], [ -75.061911, 40.048829 ], [ -75.06241, 40.049118 ], [ -75.062958, 40.049429 ], [ -75.063319, 40.049634 ], [ -75.063476, 40.049724 ], [ -75.063714, 40.049858 ], [ -75.064186, 40.050125 ], [ -75.064557, 40.050334 ], [ -75.064843, 40.050495 ], [ -75.065017, 40.050597 ], [ -75.065272, 40.050745 ], [ -75.065409, 40.050824 ], [ -75.065622, 40.05095 ], [ -75.066027, 40.051177 ], [ -75.066082, 40.051213 ], [ -75.066133, 40.051241 ], [ -75.066392, 40.05139 ], [ -75.066763, 40.051607 ], [ -75.066878, 40.051671 ], [ -75.067283, 40.051896 ], [ -75.067732, 40.052146 ], [ -75.068191, 40.052409 ], [ -75.068517, 40.052596 ], [ -75.069141, 40.052952 ], [ -75.069358, 40.053075 ], [ -75.06973, 40.053284 ], [ -75.070182, 40.053549 ], [ -75.070335, 40.053639 ], [ -75.07038, 40.053722 ], [ -75.070434, 40.053759 ], [ -75.070651, 40.053876 ], [ -75.071049, 40.054081 ], [ -75.071168, 40.054147 ], [ -75.071227, 40.054154 ], [ -75.071488, 40.0543 ], [ -75.071943, 40.05456 ], [ -75.072085, 40.054643 ], [ -75.072647, 40.054968 ], [ -75.07285, 40.055085 ], [ -75.073252, 40.055318 ], [ -75.073493, 40.055456 ], [ -75.07354, 40.05554 ], [ -75.074077, 40.055859 ], [ -75.074146, 40.055902 ], [ -75.074226, 40.055944 ], [ -75.074336, 40.055951 ], [ -75.074657, 40.056147 ], [ -75.075026, 40.056373 ], [ -75.07542, 40.056596 ], [ -75.076356, 40.057127 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083619, 40.061343 ], [ -75.083722, 40.061412 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090752, 40.064875 ], [ -75.091135, 40.064492 ], [ -75.091451, 40.064184 ], [ -75.091909, 40.063731 ], [ -75.092666, 40.062982 ], [ -75.093053, 40.062587 ], [ -75.093434, 40.062208 ], [ -75.094405, 40.061265 ], [ -75.095567, 40.060106 ], [ -75.095664, 40.060012 ], [ -75.095796, 40.05988 ], [ -75.096025, 40.05967 ], [ -75.096173, 40.059708 ], [ -75.096915, 40.059985 ], [ -75.097092, 40.060064 ], [ -75.097158, 40.060095 ], [ -75.097225, 40.060128 ], [ -75.09736, 40.060213 ], [ -75.0976, 40.060379 ], [ -75.098571, 40.061122 ], [ -75.099274, 40.061645 ], [ -75.099386, 40.061726 ], [ -75.099507, 40.061797 ], [ -75.09962, 40.061851 ], [ -75.099711, 40.061886 ], [ -75.099828, 40.061918 ], [ -75.099899, 40.061935 ], [ -75.100029, 40.061952 ], [ -75.101061, 40.062014 ], [ -75.102944, 40.062138 ], [ -75.10363, 40.06218 ], [ -75.103774, 40.062175 ], [ -75.103843, 40.062169 ], [ -75.103934, 40.062159 ], [ -75.104019, 40.062141 ], [ -75.10408, 40.062127 ], [ -75.10418, 40.062097 ], [ -75.104267, 40.062066 ], [ -75.104407, 40.062008 ], [ -75.104497, 40.061962 ], [ -75.104554, 40.061924 ], [ -75.104688, 40.061823 ], [ -75.104823, 40.061682 ], [ -75.105103, 40.061409 ], [ -75.105415, 40.061094 ], [ -75.105719, 40.060769 ], [ -75.106555, 40.059928 ], [ -75.106754, 40.059759 ], [ -75.106786, 40.059804 ], [ -75.10683, 40.059858 ], [ -75.106888, 40.059908 ], [ -75.106912, 40.05992 ], [ -75.107024, 40.059982 ], [ -75.108124, 40.060541 ], [ -75.108398, 40.060679 ], [ -75.109988, 40.061499 ], [ -75.11075, 40.061887 ], [ -75.110877, 40.061802 ], [ -75.111871, 40.061192 ], [ -75.112268, 40.060961 ], [ -75.113165, 40.060435 ], [ -75.114038, 40.059946 ], [ -75.11437, 40.059779 ], [ -75.114982, 40.059487 ], [ -75.115459, 40.059259 ], [ -75.116232, 40.058892 ], [ -75.117328, 40.058347 ], [ -75.117783, 40.058121 ], [ -75.119249, 40.057424 ], [ -75.11962, 40.057248 ], [ -75.120875, 40.056619 ], [ -75.121453, 40.056328 ], [ -75.12254, 40.055828 ], [ -75.122981, 40.05562 ], [ -75.12463, 40.05482 ], [ -75.124865, 40.054707 ], [ -75.125, 40.054649 ], [ -75.12557, 40.05441 ], [ -75.126645, 40.053979 ], [ -75.126789, 40.053311 ], [ -75.127061, 40.052074 ], [ -75.127136, 40.051736 ], [ -75.127241, 40.051272 ], [ -75.127343, 40.050844 ], [ -75.127471, 40.050217 ], [ -75.127754, 40.048932 ], [ -75.128149, 40.047188 ], [ -75.128331, 40.046392 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307979", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.005433, 40.053883 ], [ -75.005684, 40.054082 ], [ -75.005535, 40.054194 ], [ -75.00538, 40.054319 ], [ -75.005291, 40.054379 ], [ -75.005209, 40.054438 ], [ -75.004804, 40.054744 ], [ -75.004464, 40.054458 ], [ -75.004337, 40.054352 ], [ -75.004173, 40.054213 ], [ -75.00356, 40.053669 ], [ -75.002954, 40.053138 ], [ -75.002338, 40.052589 ], [ -75.001739, 40.052057 ], [ -75.001123, 40.051507 ], [ -75.000513, 40.050965 ], [ -74.999889, 40.050408 ], [ -75.000206, 40.050187 ], [ -75.000241, 40.050165 ], [ -75.000287, 40.05016 ], [ -75.000305, 40.050155 ], [ -75.000321, 40.050147 ], [ -75.000576, 40.049975 ], [ -75.001162, 40.049572 ], [ -75.001541, 40.049325 ], [ -75.001795, 40.049168 ], [ -75.001996, 40.049029 ], [ -75.002089, 40.048965 ], [ -75.00211, 40.048947 ], [ -75.002379, 40.048772 ], [ -75.002631, 40.048591 ], [ -75.002708, 40.048545 ], [ -75.003273, 40.048172 ], [ -75.004239, 40.047539 ], [ -75.004414, 40.047424 ], [ -75.004591, 40.047324 ], [ -75.004604, 40.047315 ], [ -75.004617, 40.047297 ], [ -75.004644, 40.047235 ], [ -75.004764, 40.047148 ], [ -75.0062, 40.046191 ], [ -75.00792, 40.045037 ], [ -75.008828, 40.044436 ], [ -75.009236, 40.044165 ], [ -75.009599, 40.043924 ], [ -75.009959, 40.043682 ], [ -75.010151, 40.04356 ], [ -75.010506, 40.043322 ], [ -75.01086, 40.043088 ], [ -75.01105, 40.042963 ], [ -75.011403, 40.04273 ], [ -75.011743, 40.042505 ], [ -75.012042, 40.042294 ], [ -75.012701, 40.041868 ], [ -75.013258, 40.041494 ], [ -75.013455, 40.04136 ], [ -75.013544, 40.041306 ], [ -75.013627, 40.041258 ], [ -75.014062, 40.041031 ], [ -75.014428, 40.040852 ], [ -75.015411, 40.040335 ], [ -75.014322, 40.039453 ], [ -75.013288, 40.038639 ], [ -75.012802, 40.038257 ], [ -75.012715, 40.038185 ], [ -75.012574, 40.038078 ], [ -75.012129, 40.037713 ], [ -75.011941, 40.037569 ], [ -75.011715, 40.037368 ], [ -75.011332, 40.037054 ], [ -75.011869, 40.03677 ], [ -75.01215, 40.036614 ], [ -75.012332, 40.036517 ], [ -75.014624, 40.035232 ], [ -75.015093, 40.034977 ], [ -75.016325, 40.034289 ], [ -75.016778, 40.034036 ], [ -75.017165, 40.033821 ], [ -75.018037, 40.033335 ], [ -75.019133, 40.032717 ], [ -75.019318, 40.032612 ], [ -75.019775, 40.032354 ], [ -75.019947, 40.032256 ], [ -75.020138, 40.032147 ], [ -75.020562, 40.031904 ], [ -75.021181, 40.031562 ], [ -75.021263, 40.031513 ], [ -75.021316, 40.031483 ], [ -75.021596, 40.031352 ], [ -75.021767, 40.031251 ], [ -75.0222, 40.031021 ], [ -75.022369, 40.030931 ], [ -75.022494, 40.030865 ], [ -75.02331, 40.030395 ], [ -75.024019, 40.030002 ], [ -75.02451, 40.02973 ], [ -75.025815, 40.029007 ], [ -75.02707, 40.028314 ], [ -75.027093, 40.028302 ], [ -75.028315, 40.027611 ], [ -75.028393, 40.027566 ], [ -75.028796, 40.027336 ], [ -75.029114, 40.027161 ], [ -75.02939, 40.026998 ], [ -75.030951, 40.026078 ], [ -75.031255, 40.025898 ], [ -75.03132, 40.02586 ], [ -75.031589, 40.025711 ], [ -75.031688, 40.025808 ], [ -75.032056, 40.026215 ], [ -75.032288, 40.026489 ], [ -75.032466, 40.026702 ], [ -75.032667, 40.026948 ], [ -75.032755, 40.027057 ], [ -75.032795, 40.027108 ], [ -75.032825, 40.027145 ], [ -75.0329, 40.027241 ], [ -75.033087, 40.027487 ], [ -75.033287, 40.027741 ], [ -75.033519, 40.028037 ], [ -75.033647, 40.028202 ], [ -75.03394, 40.028577 ], [ -75.034348, 40.029098 ], [ -75.034683, 40.029541 ], [ -75.03473, 40.029602 ], [ -75.035015, 40.029949 ], [ -75.035165, 40.030134 ], [ -75.035272, 40.030263 ], [ -75.035617, 40.030684 ], [ -75.035742, 40.030832 ], [ -75.035829, 40.030941 ], [ -75.036047, 40.031209 ], [ -75.036474, 40.031735 ], [ -75.036617, 40.031912 ], [ -75.036901, 40.032261 ], [ -75.037161, 40.032578 ], [ -75.037324, 40.032776 ], [ -75.037439, 40.03292 ], [ -75.037759, 40.033314 ], [ -75.03806, 40.03368 ], [ -75.038186, 40.033832 ], [ -75.038288, 40.033959 ], [ -75.038622, 40.034374 ], [ -75.038898, 40.034719 ], [ -75.039036, 40.034892 ], [ -75.039177, 40.035064 ], [ -75.039462, 40.035411 ], [ -75.039741, 40.035752 ], [ -75.040014, 40.036085 ], [ -75.040084, 40.036168 ], [ -75.040286, 40.036406 ], [ -75.040364, 40.036482 ], [ -75.040437, 40.036539 ], [ -75.040466, 40.036556 ], [ -75.040523, 40.036588 ], [ -75.040628, 40.036646 ], [ -75.040827, 40.036752 ], [ -75.041316, 40.037033 ], [ -75.042077, 40.037472 ], [ -75.04251, 40.037721 ], [ -75.042966, 40.03798 ], [ -75.043072, 40.038039 ], [ -75.04397, 40.038548 ], [ -75.044209, 40.038685 ], [ -75.045285, 40.03929 ], [ -75.04581, 40.039592 ], [ -75.045944, 40.039667 ], [ -75.046042, 40.039722 ], [ -75.046254, 40.039843 ], [ -75.046983, 40.040261 ], [ -75.047418, 40.04051 ], [ -75.047869, 40.040768 ], [ -75.048591, 40.041177 ], [ -75.049022, 40.041427 ], [ -75.049479, 40.041689 ], [ -75.050193, 40.0421 ], [ -75.050629, 40.04235 ], [ -75.051012, 40.042567 ], [ -75.051088, 40.042611 ], [ -75.05142, 40.042801 ], [ -75.05179, 40.043011 ], [ -75.052242, 40.043268 ], [ -75.052722, 40.043539 ], [ -75.053108, 40.043758 ], [ -75.053168, 40.043794 ], [ -75.053206, 40.043856 ], [ -75.053365, 40.043957 ], [ -75.053524, 40.044042 ], [ -75.053555, 40.044056 ], [ -75.05358, 40.044067 ], [ -75.053662, 40.04407 ], [ -75.054065, 40.044315 ], [ -75.054293, 40.044446 ], [ -75.054441, 40.044534 ], [ -75.054547, 40.044602 ], [ -75.054642, 40.044663 ], [ -75.055211, 40.044981 ], [ -75.055715, 40.045252 ], [ -75.056034, 40.045434 ], [ -75.056272, 40.04557 ], [ -75.056378, 40.045631 ], [ -75.056716, 40.045828 ], [ -75.05684, 40.045899 ], [ -75.057059, 40.046026 ], [ -75.057266, 40.046146 ], [ -75.057391, 40.046217 ], [ -75.057609, 40.046341 ], [ -75.057735, 40.046413 ], [ -75.057906, 40.046512 ], [ -75.058064, 40.046603 ], [ -75.058268, 40.04672 ], [ -75.058405, 40.0468 ], [ -75.058574, 40.046899 ], [ -75.058711, 40.04698 ], [ -75.059208, 40.047272 ], [ -75.059394, 40.047382 ], [ -75.059894, 40.047675 ], [ -75.060179, 40.047842 ], [ -75.060542, 40.048044 ], [ -75.060999, 40.048307 ], [ -75.061201, 40.04842 ], [ -75.061418, 40.048542 ], [ -75.061568, 40.04863 ], [ -75.061742, 40.048731 ], [ -75.061911, 40.048829 ], [ -75.06241, 40.049118 ], [ -75.062958, 40.049429 ], [ -75.063319, 40.049634 ], [ -75.063476, 40.049724 ], [ -75.063714, 40.049858 ], [ -75.064186, 40.050125 ], [ -75.064557, 40.050334 ], [ -75.064843, 40.050495 ], [ -75.065017, 40.050597 ], [ -75.065272, 40.050745 ], [ -75.065409, 40.050824 ], [ -75.065622, 40.05095 ], [ -75.066027, 40.051177 ], [ -75.066082, 40.051213 ], [ -75.066133, 40.051241 ], [ -75.066392, 40.05139 ], [ -75.066763, 40.051607 ], [ -75.066878, 40.051671 ], [ -75.067283, 40.051896 ], [ -75.067732, 40.052146 ], [ -75.068191, 40.052409 ], [ -75.068517, 40.052596 ], [ -75.069141, 40.052952 ], [ -75.069358, 40.053075 ], [ -75.06973, 40.053284 ], [ -75.070182, 40.053549 ], [ -75.070335, 40.053639 ], [ -75.07038, 40.053722 ], [ -75.070434, 40.053759 ], [ -75.070651, 40.053876 ], [ -75.071049, 40.054081 ], [ -75.071168, 40.054147 ], [ -75.071227, 40.054154 ], [ -75.071488, 40.0543 ], [ -75.071943, 40.05456 ], [ -75.072085, 40.054643 ], [ -75.072647, 40.054968 ], [ -75.07285, 40.055085 ], [ -75.073252, 40.055318 ], [ -75.073493, 40.055456 ], [ -75.07354, 40.05554 ], [ -75.074077, 40.055859 ], [ -75.074146, 40.055902 ], [ -75.074226, 40.055944 ], [ -75.074336, 40.055951 ], [ -75.074657, 40.056147 ], [ -75.075026, 40.056373 ], [ -75.07542, 40.056596 ], [ -75.076356, 40.057127 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083619, 40.061343 ], [ -75.083722, 40.061412 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090752, 40.064875 ], [ -75.091135, 40.064492 ], [ -75.091451, 40.064184 ], [ -75.091909, 40.063731 ], [ -75.092666, 40.062982 ], [ -75.093053, 40.062587 ], [ -75.093434, 40.062208 ], [ -75.094405, 40.061265 ], [ -75.095567, 40.060106 ], [ -75.095664, 40.060012 ], [ -75.095796, 40.05988 ], [ -75.096025, 40.05967 ], [ -75.096173, 40.059708 ], [ -75.096915, 40.059985 ], [ -75.097092, 40.060064 ], [ -75.097158, 40.060095 ], [ -75.097225, 40.060128 ], [ -75.09736, 40.060213 ], [ -75.0976, 40.060379 ], [ -75.098571, 40.061122 ], [ -75.099274, 40.061645 ], [ -75.099386, 40.061726 ], [ -75.099507, 40.061797 ], [ -75.09962, 40.061851 ], [ -75.099711, 40.061886 ], [ -75.099828, 40.061918 ], [ -75.099899, 40.061935 ], [ -75.100029, 40.061952 ], [ -75.101061, 40.062014 ], [ -75.102944, 40.062138 ], [ -75.10363, 40.06218 ], [ -75.103774, 40.062175 ], [ -75.103843, 40.062169 ], [ -75.103934, 40.062159 ], [ -75.104019, 40.062141 ], [ -75.10408, 40.062127 ], [ -75.10418, 40.062097 ], [ -75.104267, 40.062066 ], [ -75.104407, 40.062008 ], [ -75.104497, 40.061962 ], [ -75.104554, 40.061924 ], [ -75.104688, 40.061823 ], [ -75.104823, 40.061682 ], [ -75.105103, 40.061409 ], [ -75.105415, 40.061094 ], [ -75.105719, 40.060769 ], [ -75.106555, 40.059928 ], [ -75.106754, 40.059759 ], [ -75.106786, 40.059804 ], [ -75.10683, 40.059858 ], [ -75.106888, 40.059908 ], [ -75.106912, 40.05992 ], [ -75.107024, 40.059982 ], [ -75.108124, 40.060541 ], [ -75.108398, 40.060679 ], [ -75.109988, 40.061499 ], [ -75.11075, 40.061887 ], [ -75.110877, 40.061802 ], [ -75.111871, 40.061192 ], [ -75.112268, 40.060961 ], [ -75.113165, 40.060435 ], [ -75.114038, 40.059946 ], [ -75.11437, 40.059779 ], [ -75.114982, 40.059487 ], [ -75.115459, 40.059259 ], [ -75.116232, 40.058892 ], [ -75.117328, 40.058347 ], [ -75.117783, 40.058121 ], [ -75.119249, 40.057424 ], [ -75.11962, 40.057248 ], [ -75.120875, 40.056619 ], [ -75.121453, 40.056328 ], [ -75.12254, 40.055828 ], [ -75.122981, 40.05562 ], [ -75.12463, 40.05482 ], [ -75.124865, 40.054707 ], [ -75.125, 40.054649 ], [ -75.12557, 40.05441 ], [ -75.126645, 40.053979 ], [ -75.126789, 40.053311 ], [ -75.127061, 40.052074 ], [ -75.127136, 40.051736 ], [ -75.127241, 40.051272 ], [ -75.127343, 40.050844 ], [ -75.127471, 40.050217 ], [ -75.127754, 40.048932 ], [ -75.128149, 40.047188 ], [ -75.128331, 40.046392 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307980", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.044046, 40.041382 ], [ -75.044181, 40.041616 ], [ -75.044406, 40.04202 ], [ -75.044529, 40.042284 ], [ -75.044661, 40.042591 ], [ -75.044783, 40.042904 ], [ -75.044855, 40.043093 ], [ -75.044917, 40.043081 ], [ -75.044991, 40.043059 ], [ -75.045023, 40.043045 ], [ -75.045056, 40.04302 ], [ -75.045643, 40.042401 ], [ -75.045864, 40.042165 ], [ -75.046211, 40.041798 ], [ -75.046641, 40.041344 ], [ -75.046754, 40.041217 ], [ -75.047419, 40.040511 ], [ -75.047869, 40.040768 ], [ -75.048591, 40.041177 ], [ -75.049022, 40.041427 ], [ -75.049479, 40.041689 ], [ -75.050193, 40.0421 ], [ -75.050629, 40.04235 ], [ -75.051012, 40.042567 ], [ -75.051088, 40.042611 ], [ -75.05142, 40.042801 ], [ -75.05179, 40.043011 ], [ -75.052242, 40.043268 ], [ -75.052722, 40.043539 ], [ -75.053108, 40.043758 ], [ -75.053168, 40.043794 ], [ -75.053206, 40.043856 ], [ -75.053365, 40.043957 ], [ -75.053524, 40.044042 ], [ -75.053555, 40.044056 ], [ -75.05358, 40.044067 ], [ -75.053662, 40.04407 ], [ -75.054065, 40.044315 ], [ -75.054293, 40.044446 ], [ -75.054441, 40.044534 ], [ -75.054547, 40.044602 ], [ -75.054642, 40.044663 ], [ -75.055211, 40.044981 ], [ -75.055715, 40.045252 ], [ -75.056034, 40.045434 ], [ -75.056272, 40.04557 ], [ -75.056378, 40.045631 ], [ -75.056716, 40.045828 ], [ -75.05684, 40.045899 ], [ -75.057059, 40.046026 ], [ -75.057266, 40.046146 ], [ -75.057391, 40.046217 ], [ -75.057609, 40.046341 ], [ -75.057735, 40.046413 ], [ -75.057906, 40.046512 ], [ -75.058064, 40.046603 ], [ -75.058268, 40.04672 ], [ -75.058405, 40.0468 ], [ -75.058574, 40.046899 ], [ -75.058711, 40.04698 ], [ -75.059208, 40.047272 ], [ -75.059394, 40.047382 ], [ -75.059894, 40.047675 ], [ -75.060179, 40.047842 ], [ -75.060542, 40.048044 ], [ -75.060999, 40.048307 ], [ -75.061201, 40.04842 ], [ -75.061418, 40.048542 ], [ -75.061568, 40.04863 ], [ -75.061742, 40.048731 ], [ -75.061911, 40.048829 ], [ -75.06241, 40.049118 ], [ -75.062958, 40.049429 ], [ -75.063319, 40.049634 ], [ -75.063476, 40.049724 ], [ -75.063714, 40.049858 ], [ -75.064186, 40.050125 ], [ -75.064557, 40.050334 ], [ -75.064843, 40.050495 ], [ -75.065017, 40.050597 ], [ -75.065272, 40.050745 ], [ -75.065409, 40.050824 ], [ -75.065622, 40.05095 ], [ -75.066027, 40.051177 ], [ -75.066082, 40.051213 ], [ -75.066133, 40.051241 ], [ -75.066392, 40.05139 ], [ -75.066763, 40.051607 ], [ -75.066878, 40.051671 ], [ -75.067283, 40.051896 ], [ -75.067732, 40.052146 ], [ -75.068191, 40.052409 ], [ -75.068517, 40.052596 ], [ -75.069141, 40.052952 ], [ -75.069358, 40.053075 ], [ -75.06973, 40.053284 ], [ -75.070182, 40.053549 ], [ -75.070335, 40.053639 ], [ -75.07038, 40.053722 ], [ -75.070434, 40.053759 ], [ -75.070651, 40.053876 ], [ -75.071049, 40.054081 ], [ -75.071168, 40.054147 ], [ -75.071227, 40.054154 ], [ -75.071488, 40.0543 ], [ -75.071943, 40.05456 ], [ -75.072085, 40.054643 ], [ -75.072647, 40.054968 ], [ -75.07285, 40.055085 ], [ -75.073252, 40.055318 ], [ -75.073493, 40.055456 ], [ -75.07354, 40.05554 ], [ -75.074077, 40.055859 ], [ -75.074146, 40.055902 ], [ -75.074226, 40.055944 ], [ -75.074336, 40.055951 ], [ -75.074657, 40.056147 ], [ -75.075026, 40.056373 ], [ -75.07542, 40.056596 ], [ -75.076356, 40.057127 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083619, 40.061343 ], [ -75.083722, 40.061412 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090752, 40.064875 ], [ -75.091135, 40.064492 ], [ -75.091451, 40.064184 ], [ -75.091909, 40.063731 ], [ -75.092666, 40.062982 ], [ -75.093053, 40.062587 ], [ -75.093434, 40.062208 ], [ -75.094405, 40.061265 ], [ -75.095567, 40.060106 ], [ -75.095664, 40.060012 ], [ -75.095796, 40.05988 ], [ -75.096025, 40.05967 ], [ -75.096173, 40.059708 ], [ -75.096915, 40.059985 ], [ -75.097092, 40.060064 ], [ -75.097158, 40.060095 ], [ -75.097225, 40.060128 ], [ -75.09736, 40.060213 ], [ -75.0976, 40.060379 ], [ -75.098571, 40.061122 ], [ -75.099274, 40.061645 ], [ -75.099386, 40.061726 ], [ -75.099507, 40.061797 ], [ -75.09962, 40.061851 ], [ -75.099711, 40.061886 ], [ -75.099828, 40.061918 ], [ -75.099899, 40.061935 ], [ -75.100029, 40.061952 ], [ -75.101061, 40.062014 ], [ -75.102944, 40.062138 ], [ -75.10363, 40.06218 ], [ -75.103774, 40.062175 ], [ -75.103843, 40.062169 ], [ -75.103934, 40.062159 ], [ -75.104019, 40.062141 ], [ -75.10408, 40.062127 ], [ -75.10418, 40.062097 ], [ -75.104267, 40.062066 ], [ -75.104407, 40.062008 ], [ -75.104497, 40.061962 ], [ -75.104554, 40.061924 ], [ -75.104688, 40.061823 ], [ -75.104823, 40.061682 ], [ -75.105103, 40.061409 ], [ -75.105415, 40.061094 ], [ -75.105719, 40.060769 ], [ -75.106555, 40.059928 ], [ -75.106754, 40.059759 ], [ -75.106786, 40.059804 ], [ -75.10683, 40.059858 ], [ -75.106888, 40.059908 ], [ -75.106912, 40.05992 ], [ -75.107024, 40.059982 ], [ -75.108124, 40.060541 ], [ -75.108398, 40.060679 ], [ -75.109988, 40.061499 ], [ -75.11075, 40.061887 ], [ -75.110877, 40.061802 ], [ -75.111871, 40.061192 ], [ -75.112268, 40.060961 ], [ -75.113165, 40.060435 ], [ -75.114038, 40.059946 ], [ -75.11437, 40.059779 ], [ -75.114982, 40.059487 ], [ -75.115459, 40.059259 ], [ -75.116232, 40.058892 ], [ -75.117328, 40.058347 ], [ -75.117783, 40.058121 ], [ -75.119249, 40.057424 ], [ -75.11962, 40.057248 ], [ -75.120875, 40.056619 ], [ -75.121453, 40.056328 ], [ -75.12254, 40.055828 ], [ -75.122981, 40.05562 ], [ -75.12463, 40.05482 ], [ -75.124865, 40.054707 ], [ -75.125, 40.054649 ], [ -75.12557, 40.05441 ], [ -75.126645, 40.053979 ], [ -75.126789, 40.053311 ], [ -75.127061, 40.052074 ], [ -75.127136, 40.051736 ], [ -75.127241, 40.051272 ], [ -75.127343, 40.050844 ], [ -75.127471, 40.050217 ], [ -75.127754, 40.048932 ], [ -75.128149, 40.047188 ], [ -75.128331, 40.046392 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307981", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.073252, 40.055318 ], [ -75.073493, 40.055456 ], [ -75.07354, 40.05554 ], [ -75.074077, 40.055859 ], [ -75.074146, 40.055902 ], [ -75.074226, 40.055944 ], [ -75.074336, 40.055951 ], [ -75.074657, 40.056147 ], [ -75.075026, 40.056373 ], [ -75.07542, 40.056596 ], [ -75.076356, 40.057127 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083619, 40.061343 ], [ -75.083722, 40.061412 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090752, 40.064875 ], [ -75.091135, 40.064492 ], [ -75.091451, 40.064184 ], [ -75.091909, 40.063731 ], [ -75.092666, 40.062982 ], [ -75.093053, 40.062587 ], [ -75.093434, 40.062208 ], [ -75.094405, 40.061265 ], [ -75.095567, 40.060106 ], [ -75.095664, 40.060012 ], [ -75.095796, 40.05988 ], [ -75.096025, 40.05967 ], [ -75.096173, 40.059708 ], [ -75.096915, 40.059985 ], [ -75.097092, 40.060064 ], [ -75.097158, 40.060095 ], [ -75.097225, 40.060128 ], [ -75.09736, 40.060213 ], [ -75.0976, 40.060379 ], [ -75.098571, 40.061122 ], [ -75.099274, 40.061645 ], [ -75.099386, 40.061726 ], [ -75.099507, 40.061797 ], [ -75.09962, 40.061851 ], [ -75.099711, 40.061886 ], [ -75.099828, 40.061918 ], [ -75.099899, 40.061935 ], [ -75.100029, 40.061952 ], [ -75.101061, 40.062014 ], [ -75.102944, 40.062138 ], [ -75.10363, 40.06218 ], [ -75.103774, 40.062175 ], [ -75.103843, 40.062169 ], [ -75.103934, 40.062159 ], [ -75.104019, 40.062141 ], [ -75.10408, 40.062127 ], [ -75.10418, 40.062097 ], [ -75.104267, 40.062066 ], [ -75.104407, 40.062008 ], [ -75.104497, 40.061962 ], [ -75.104554, 40.061924 ], [ -75.104688, 40.061823 ], [ -75.104823, 40.061682 ], [ -75.105103, 40.061409 ], [ -75.105415, 40.061094 ], [ -75.105719, 40.060769 ], [ -75.106555, 40.059928 ], [ -75.106754, 40.059759 ], [ -75.106786, 40.059804 ], [ -75.10683, 40.059858 ], [ -75.106888, 40.059908 ], [ -75.106912, 40.05992 ], [ -75.107024, 40.059982 ], [ -75.108124, 40.060541 ], [ -75.108398, 40.060679 ], [ -75.109988, 40.061499 ], [ -75.11075, 40.061887 ], [ -75.110877, 40.061802 ], [ -75.111871, 40.061192 ], [ -75.112268, 40.060961 ], [ -75.113165, 40.060435 ], [ -75.114038, 40.059946 ], [ -75.11437, 40.059779 ], [ -75.114982, 40.059487 ], [ -75.115459, 40.059259 ], [ -75.116232, 40.058892 ], [ -75.117328, 40.058347 ], [ -75.117783, 40.058121 ], [ -75.119249, 40.057424 ], [ -75.11962, 40.057248 ], [ -75.120875, 40.056619 ], [ -75.121453, 40.056328 ], [ -75.12254, 40.055828 ], [ -75.122981, 40.05562 ], [ -75.12463, 40.05482 ], [ -75.124865, 40.054707 ], [ -75.125, 40.054649 ], [ -75.12557, 40.05441 ], [ -75.126645, 40.053979 ], [ -75.126789, 40.053311 ], [ -75.127061, 40.052074 ], [ -75.127136, 40.051736 ], [ -75.127241, 40.051272 ], [ -75.127343, 40.050844 ], [ -75.127471, 40.050217 ], [ -75.127754, 40.048932 ], [ -75.128149, 40.047188 ], [ -75.128331, 40.046392 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307982", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.035742, 40.030832 ], [ -75.035829, 40.030941 ], [ -75.036047, 40.031209 ], [ -75.036474, 40.031735 ], [ -75.036617, 40.031912 ], [ -75.036901, 40.032261 ], [ -75.037161, 40.032578 ], [ -75.037324, 40.032776 ], [ -75.037439, 40.03292 ], [ -75.037759, 40.033314 ], [ -75.03806, 40.03368 ], [ -75.038186, 40.033832 ], [ -75.038288, 40.033959 ], [ -75.038622, 40.034374 ], [ -75.038898, 40.034719 ], [ -75.039036, 40.034892 ], [ -75.039177, 40.035064 ], [ -75.039462, 40.035411 ], [ -75.039741, 40.035752 ], [ -75.040014, 40.036085 ], [ -75.040084, 40.036168 ], [ -75.040286, 40.036406 ], [ -75.040364, 40.036482 ], [ -75.040437, 40.036539 ], [ -75.040466, 40.036556 ], [ -75.040523, 40.036588 ], [ -75.040628, 40.036646 ], [ -75.040827, 40.036752 ], [ -75.041316, 40.037033 ], [ -75.042077, 40.037472 ], [ -75.04251, 40.037721 ], [ -75.042966, 40.03798 ], [ -75.043072, 40.038039 ], [ -75.04397, 40.038548 ], [ -75.044209, 40.038685 ], [ -75.045285, 40.03929 ], [ -75.04581, 40.039592 ], [ -75.045944, 40.039667 ], [ -75.046042, 40.039722 ], [ -75.046254, 40.039843 ], [ -75.046983, 40.040261 ], [ -75.047418, 40.04051 ], [ -75.047869, 40.040768 ], [ -75.048591, 40.041177 ], [ -75.049022, 40.041427 ], [ -75.049479, 40.041689 ], [ -75.050193, 40.0421 ], [ -75.050629, 40.04235 ], [ -75.051012, 40.042567 ], [ -75.051088, 40.042611 ], [ -75.05142, 40.042801 ], [ -75.05179, 40.043011 ], [ -75.052242, 40.043268 ], [ -75.052722, 40.043539 ], [ -75.053108, 40.043758 ], [ -75.053168, 40.043794 ], [ -75.053206, 40.043856 ], [ -75.053365, 40.043957 ], [ -75.053524, 40.044042 ], [ -75.053555, 40.044056 ], [ -75.05358, 40.044067 ], [ -75.053662, 40.04407 ], [ -75.054065, 40.044315 ], [ -75.054293, 40.044446 ], [ -75.054441, 40.044534 ], [ -75.054547, 40.044602 ], [ -75.054642, 40.044663 ], [ -75.055211, 40.044981 ], [ -75.055715, 40.045252 ], [ -75.056034, 40.045434 ], [ -75.056272, 40.04557 ], [ -75.056378, 40.045631 ], [ -75.056716, 40.045828 ], [ -75.05684, 40.045899 ], [ -75.057059, 40.046026 ], [ -75.057266, 40.046146 ], [ -75.057391, 40.046217 ], [ -75.057609, 40.046341 ], [ -75.057735, 40.046413 ], [ -75.057906, 40.046512 ], [ -75.058064, 40.046603 ], [ -75.058268, 40.04672 ], [ -75.058405, 40.0468 ], [ -75.058574, 40.046899 ], [ -75.058711, 40.04698 ], [ -75.059208, 40.047272 ], [ -75.059394, 40.047382 ], [ -75.059894, 40.047675 ], [ -75.060179, 40.047842 ], [ -75.060542, 40.048044 ], [ -75.060999, 40.048307 ], [ -75.061201, 40.04842 ], [ -75.061418, 40.048542 ], [ -75.061568, 40.04863 ], [ -75.061742, 40.048731 ], [ -75.061911, 40.048829 ], [ -75.06241, 40.049118 ], [ -75.062958, 40.049429 ], [ -75.063319, 40.049634 ], [ -75.063476, 40.049724 ], [ -75.063714, 40.049858 ], [ -75.064186, 40.050125 ], [ -75.064557, 40.050334 ], [ -75.064843, 40.050495 ], [ -75.065017, 40.050597 ], [ -75.065272, 40.050745 ], [ -75.065409, 40.050824 ], [ -75.065622, 40.05095 ], [ -75.066027, 40.051177 ], [ -75.066082, 40.051213 ], [ -75.066133, 40.051241 ], [ -75.066392, 40.05139 ], [ -75.066763, 40.051607 ], [ -75.066878, 40.051671 ], [ -75.067283, 40.051896 ], [ -75.067732, 40.052146 ], [ -75.068191, 40.052409 ], [ -75.068517, 40.052596 ], [ -75.069141, 40.052952 ], [ -75.069358, 40.053075 ], [ -75.06973, 40.053284 ], [ -75.070182, 40.053549 ], [ -75.070335, 40.053639 ], [ -75.07038, 40.053722 ], [ -75.070434, 40.053759 ], [ -75.070651, 40.053876 ], [ -75.071049, 40.054081 ], [ -75.071168, 40.054147 ], [ -75.071227, 40.054154 ], [ -75.071488, 40.0543 ], [ -75.071943, 40.05456 ], [ -75.072085, 40.054643 ], [ -75.072647, 40.054968 ], [ -75.07285, 40.055085 ], [ -75.073252, 40.055318 ], [ -75.073493, 40.055456 ], [ -75.07354, 40.05554 ], [ -75.074077, 40.055859 ], [ -75.074146, 40.055902 ], [ -75.074226, 40.055944 ], [ -75.074336, 40.055951 ], [ -75.074657, 40.056147 ], [ -75.075026, 40.056373 ], [ -75.07542, 40.056596 ], [ -75.076356, 40.057127 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307983", "route_id": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.067732, 40.052146 ], [ -75.068191, 40.052409 ], [ -75.068517, 40.052596 ], [ -75.069141, 40.052952 ], [ -75.069358, 40.053075 ], [ -75.06973, 40.053284 ], [ -75.070182, 40.053549 ], [ -75.070335, 40.053639 ], [ -75.07038, 40.053722 ], [ -75.070434, 40.053759 ], [ -75.070651, 40.053876 ], [ -75.071049, 40.054081 ], [ -75.071168, 40.054147 ], [ -75.071227, 40.054154 ], [ -75.071488, 40.0543 ], [ -75.071943, 40.05456 ], [ -75.072085, 40.054643 ], [ -75.072647, 40.054968 ], [ -75.07285, 40.055085 ], [ -75.073252, 40.055318 ], [ -75.073493, 40.055456 ], [ -75.07354, 40.05554 ], [ -75.074077, 40.055859 ], [ -75.074146, 40.055902 ], [ -75.074226, 40.055944 ], [ -75.074336, 40.055951 ], [ -75.074657, 40.056147 ], [ -75.075026, 40.056373 ], [ -75.07542, 40.056596 ], [ -75.076356, 40.057127 ], [ -75.076749, 40.057351 ], [ -75.077165, 40.05759 ], [ -75.077756, 40.05793 ], [ -75.078049, 40.058102 ], [ -75.078743, 40.058501 ], [ -75.079627, 40.059013 ], [ -75.080113, 40.059294 ], [ -75.080508, 40.059523 ], [ -75.080913, 40.059752 ], [ -75.081401, 40.060037 ], [ -75.081885, 40.060318 ], [ -75.082281, 40.060548 ], [ -75.082726, 40.060801 ], [ -75.083098, 40.061025 ], [ -75.083509, 40.061271 ], [ -75.083619, 40.061343 ], [ -75.083722, 40.061412 ], [ -75.083822, 40.061477 ], [ -75.084092, 40.061642 ], [ -75.084205, 40.061709 ], [ -75.084433, 40.061846 ], [ -75.08478, 40.062054 ], [ -75.085124, 40.062256 ], [ -75.085738, 40.062616 ], [ -75.086292, 40.062933 ], [ -75.086557, 40.063085 ], [ -75.086884, 40.063267 ], [ -75.087024, 40.063345 ], [ -75.087277, 40.06349 ], [ -75.087471, 40.063593 ], [ -75.087885, 40.06384 ], [ -75.088746, 40.064355 ], [ -75.089366, 40.064706 ], [ -75.089494, 40.064789 ], [ -75.090355, 40.065301 ], [ -75.090752, 40.064875 ], [ -75.091135, 40.064492 ], [ -75.091451, 40.064184 ], [ -75.091909, 40.063731 ], [ -75.092666, 40.062982 ], [ -75.093053, 40.062587 ], [ -75.093434, 40.062208 ], [ -75.094405, 40.061265 ], [ -75.095567, 40.060106 ], [ -75.095664, 40.060012 ], [ -75.095796, 40.05988 ], [ -75.096025, 40.05967 ], [ -75.096173, 40.059708 ], [ -75.096915, 40.059985 ], [ -75.097092, 40.060064 ], [ -75.097158, 40.060095 ], [ -75.097225, 40.060128 ], [ -75.09736, 40.060213 ], [ -75.0976, 40.060379 ], [ -75.098571, 40.061122 ], [ -75.099274, 40.061645 ], [ -75.099386, 40.061726 ], [ -75.099507, 40.061797 ], [ -75.09962, 40.061851 ], [ -75.099711, 40.061886 ], [ -75.099828, 40.061918 ], [ -75.099899, 40.061935 ], [ -75.100029, 40.061952 ], [ -75.101061, 40.062014 ], [ -75.102944, 40.062138 ], [ -75.10363, 40.06218 ], [ -75.103774, 40.062175 ], [ -75.103843, 40.062169 ], [ -75.103934, 40.062159 ], [ -75.104019, 40.062141 ], [ -75.10408, 40.062127 ], [ -75.10418, 40.062097 ], [ -75.104267, 40.062066 ], [ -75.104407, 40.062008 ], [ -75.104497, 40.061962 ], [ -75.104554, 40.061924 ], [ -75.104688, 40.061823 ], [ -75.104823, 40.061682 ], [ -75.105103, 40.061409 ], [ -75.105415, 40.061094 ], [ -75.105719, 40.060769 ], [ -75.106555, 40.059928 ], [ -75.106754, 40.059759 ], [ -75.106786, 40.059804 ], [ -75.10683, 40.059858 ], [ -75.106888, 40.059908 ], [ -75.106912, 40.05992 ], [ -75.107024, 40.059982 ], [ -75.108124, 40.060541 ], [ -75.108398, 40.060679 ], [ -75.109988, 40.061499 ], [ -75.11075, 40.061887 ], [ -75.110877, 40.061802 ], [ -75.111871, 40.061192 ], [ -75.112268, 40.060961 ], [ -75.113165, 40.060435 ], [ -75.114038, 40.059946 ], [ -75.11437, 40.059779 ], [ -75.114982, 40.059487 ], [ -75.115459, 40.059259 ], [ -75.116232, 40.058892 ], [ -75.117328, 40.058347 ], [ -75.117783, 40.058121 ], [ -75.119249, 40.057424 ], [ -75.11962, 40.057248 ], [ -75.120875, 40.056619 ], [ -75.121453, 40.056328 ], [ -75.12254, 40.055828 ], [ -75.122981, 40.05562 ], [ -75.12463, 40.05482 ], [ -75.124865, 40.054707 ], [ -75.125, 40.054649 ], [ -75.12557, 40.05441 ], [ -75.126645, 40.053979 ], [ -75.126789, 40.053311 ], [ -75.127061, 40.052074 ], [ -75.127136, 40.051736 ], [ -75.127241, 40.051272 ], [ -75.127343, 40.050844 ], [ -75.127471, 40.050217 ], [ -75.127754, 40.048932 ], [ -75.128149, 40.047188 ], [ -75.128331, 40.046392 ], [ -75.128486, 40.045646 ], [ -75.129036, 40.045711 ], [ -75.129491, 40.045766 ], [ -75.129648, 40.045786 ], [ -75.130472, 40.045895 ], [ -75.130761, 40.045936 ], [ -75.131019, 40.045961 ], [ -75.131297, 40.045985 ], [ -75.132133, 40.046018 ], [ -75.132564, 40.046039 ], [ -75.132933, 40.04607 ], [ -75.133293, 40.046088 ], [ -75.133755, 40.046115 ], [ -75.134733, 40.046158 ], [ -75.134756, 40.046158 ], [ -75.135528, 40.046192 ], [ -75.135626, 40.046197 ], [ -75.135649, 40.046198 ], [ -75.135741, 40.046214 ], [ -75.135823, 40.046234 ], [ -75.135908, 40.046264 ], [ -75.135982, 40.0463 ], [ -75.136055, 40.046343 ], [ -75.136119, 40.046385 ], [ -75.136168, 40.046422 ], [ -75.136187, 40.046437 ], [ -75.136259, 40.046492 ], [ -75.136285, 40.04651 ], [ -75.136296, 40.046518 ], [ -75.136369, 40.04656 ], [ -75.136438, 40.046593 ], [ -75.136564, 40.046641 ], [ -75.136648, 40.046669 ], [ -75.136741, 40.04669 ], [ -75.136843, 40.046713 ], [ -75.136946, 40.046728 ], [ -75.137132, 40.046752 ], [ -75.137536, 40.046806 ], [ -75.137546, 40.046727 ], [ -75.137564, 40.046633 ], [ -75.137862, 40.045245 ], [ -75.13821, 40.043735 ], [ -75.138526, 40.042197 ], [ -75.137727, 40.042094 ], [ -75.136952, 40.041995 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307994", "route_id": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.084234, 40.01681 ], [ -75.084711, 40.01704 ], [ -75.085539, 40.017483 ], [ -75.086309, 40.017908 ], [ -75.087666, 40.018688 ], [ -75.088562, 40.019189 ], [ -75.089711, 40.019853 ], [ -75.090769, 40.020541 ], [ -75.091495, 40.021015 ], [ -75.091805, 40.021222 ], [ -75.091996, 40.021353 ], [ -75.092135, 40.021436 ], [ -75.092933, 40.021949 ], [ -75.093358, 40.022237 ], [ -75.093431, 40.022284 ], [ -75.09377, 40.022504 ], [ -75.093805, 40.022466 ], [ -75.093859, 40.022399 ], [ -75.093919, 40.02234 ], [ -75.093989, 40.022314 ], [ -75.094155, 40.02215 ], [ -75.094177, 40.022123 ], [ -75.094199, 40.02209 ], [ -75.094214, 40.022045 ], [ -75.09422, 40.021978 ], [ -75.094219, 40.021915 ], [ -75.094212, 40.021851 ], [ -75.094203, 40.021772 ], [ -75.094202, 40.021713 ], [ -75.094202, 40.02166 ], [ -75.094208, 40.021595 ], [ -75.094218, 40.021529 ], [ -75.094233, 40.021473 ], [ -75.094248, 40.021423 ], [ -75.094274, 40.021366 ], [ -75.094314, 40.021293 ], [ -75.094357, 40.021232 ], [ -75.094415, 40.02117 ], [ -75.094427, 40.021111 ], [ -75.094648, 40.020888 ], [ -75.094818, 40.020712 ], [ -75.094996, 40.020527 ], [ -75.095394, 40.02012 ], [ -75.095718, 40.019785 ], [ -75.095879, 40.019619 ], [ -75.096111, 40.019379 ], [ -75.096173, 40.019315 ], [ -75.096341, 40.019144 ], [ -75.096533, 40.01893 ], [ -75.096715, 40.01871 ], [ -75.096772, 40.018648 ], [ -75.096857, 40.018612 ], [ -75.096997, 40.018481 ], [ -75.09713, 40.018357 ], [ -75.097161, 40.018328 ], [ -75.09719, 40.018294 ], [ -75.097222, 40.018253 ], [ -75.09728, 40.018232 ], [ -75.097334, 40.018195 ], [ -75.09736, 40.018158 ], [ -75.097371, 40.018128 ], [ -75.097442, 40.018147 ], [ -75.097505, 40.018163 ], [ -75.097601, 40.018183 ], [ -75.097736, 40.018206 ], [ -75.097845, 40.018218 ], [ -75.100349, 40.018538 ], [ -75.101092, 40.018634 ], [ -75.101737, 40.018718 ], [ -75.102226, 40.018781 ], [ -75.104553, 40.019064 ], [ -75.105412, 40.019161 ], [ -75.106642, 40.019334 ], [ -75.106763, 40.019349 ], [ -75.106989, 40.019382 ], [ -75.10737, 40.019434 ], [ -75.108325, 40.019549 ], [ -75.109045, 40.019642 ], [ -75.109755, 40.019728 ], [ -75.110512, 40.019822 ], [ -75.110867, 40.019867 ], [ -75.111637, 40.019966 ], [ -75.111944, 40.020005 ], [ -75.112166, 40.020035 ], [ -75.112372, 40.020061 ], [ -75.112934, 40.020132 ], [ -75.113154, 40.020154 ], [ -75.113854, 40.020249 ], [ -75.114061, 40.020275 ], [ -75.114117, 40.020282 ], [ -75.114186, 40.020289 ], [ -75.114672, 40.020354 ], [ -75.116263, 40.020554 ], [ -75.116979, 40.020643 ], [ -75.117565, 40.020717 ], [ -75.118288, 40.02081 ], [ -75.118597, 40.020846 ], [ -75.119106, 40.020905 ], [ -75.119272, 40.020925 ], [ -75.119624, 40.020968 ], [ -75.120472, 40.021076 ], [ -75.121391, 40.021188 ], [ -75.121492, 40.021201 ], [ -75.121625, 40.021215 ], [ -75.122413, 40.02131 ], [ -75.124352, 40.021555 ], [ -75.125667, 40.021723 ], [ -75.126053, 40.021763 ], [ -75.127578, 40.021949 ], [ -75.127809, 40.021975 ], [ -75.127969, 40.021994 ], [ -75.128137, 40.022013 ], [ -75.128306, 40.022033 ], [ -75.130669, 40.022332 ], [ -75.131667, 40.022464 ], [ -75.132657, 40.022593 ], [ -75.133512, 40.022704 ], [ -75.133392, 40.023323 ], [ -75.133344, 40.023544 ], [ -75.133286, 40.023783 ], [ -75.133265, 40.023891 ], [ -75.133248, 40.02397 ], [ -75.133203, 40.02415 ], [ -75.134283, 40.023927 ], [ -75.134535, 40.023876 ], [ -75.134725, 40.023835 ], [ -75.134909, 40.02379 ], [ -75.13511, 40.023741 ], [ -75.135303, 40.023686 ], [ -75.135468, 40.023641 ], [ -75.135626, 40.023592 ], [ -75.135792, 40.023537 ], [ -75.135922, 40.023495 ], [ -75.136206, 40.023399 ], [ -75.136381, 40.023334 ], [ -75.136525, 40.023277 ], [ -75.136614, 40.023243 ], [ -75.136805, 40.023165 ], [ -75.136935, 40.023112 ], [ -75.13708, 40.023047 ], [ -75.137106, 40.023092 ], [ -75.137131, 40.023125 ], [ -75.137162, 40.023149 ], [ -75.137207, 40.02317 ], [ -75.137262, 40.023185 ], [ -75.137333, 40.023198 ], [ -75.137796, 40.023254 ], [ -75.138435, 40.023337 ], [ -75.139367, 40.02346 ], [ -75.140177, 40.023562 ], [ -75.140987, 40.023647 ], [ -75.141778, 40.023755 ], [ -75.142546, 40.023852 ], [ -75.143348, 40.023945 ], [ -75.144121, 40.024066 ], [ -75.1449, 40.024156 ], [ -75.145707, 40.024266 ], [ -75.146915, 40.024436 ], [ -75.147734, 40.024543 ], [ -75.147855, 40.024558 ], [ -75.148761, 40.024666 ], [ -75.149545, 40.024758 ], [ -75.149893, 40.025257 ], [ -75.150024, 40.025445 ], [ -75.150075, 40.025425 ], [ -75.150108, 40.025422 ], [ -75.150151, 40.025422 ], [ -75.150202, 40.025425 ], [ -75.151001, 40.025511 ], [ -75.151474, 40.023371 ], [ -75.152251, 40.023471 ], [ -75.153058, 40.023571 ], [ -75.153554, 40.023641 ], [ -75.154046, 40.0237 ], [ -75.154615, 40.023773 ], [ -75.155418, 40.02388 ], [ -75.156188, 40.024004 ], [ -75.156675, 40.024077 ], [ -75.156975, 40.024133 ], [ -75.157052, 40.024147 ], [ -75.157083, 40.024153 ], [ -75.157093, 40.024155 ], [ -75.157568, 40.02391 ], [ -75.157777, 40.023793 ], [ -75.157918, 40.023703 ], [ -75.158007, 40.023641 ], [ -75.158075, 40.02359 ], [ -75.159022, 40.02281 ], [ -75.159097, 40.022746 ], [ -75.159217, 40.022635 ], [ -75.159319, 40.022521 ], [ -75.15952, 40.022292 ], [ -75.15969, 40.022082 ], [ -75.159871, 40.021837 ], [ -75.160024, 40.02162 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "307995", "route_id": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.160024, 40.02162 ], [ -75.160094, 40.021512 ], [ -75.160159, 40.021398 ], [ -75.160208, 40.021294 ], [ -75.159804, 40.021086 ], [ -75.159737, 40.021044 ], [ -75.159683, 40.02101 ], [ -75.159635, 40.02097 ], [ -75.159585, 40.020924 ], [ -75.158607, 40.021298 ], [ -75.15952, 40.022292 ], [ -75.159319, 40.022521 ], [ -75.159217, 40.022635 ], [ -75.159097, 40.022746 ], [ -75.159022, 40.02281 ], [ -75.158092, 40.022721 ], [ -75.157812, 40.022681 ], [ -75.157387, 40.02262 ], [ -75.157099, 40.022577 ], [ -75.156519, 40.022487 ], [ -75.155945, 40.022413 ], [ -75.155739, 40.022386 ], [ -75.155489, 40.022354 ], [ -75.154963, 40.022285 ], [ -75.15436, 40.022223 ], [ -75.153889, 40.022151 ], [ -75.153388, 40.022079 ], [ -75.152856, 40.021998 ], [ -75.152586, 40.021972 ], [ -75.152371, 40.021938 ], [ -75.151798, 40.021871 ], [ -75.151262, 40.021809 ], [ -75.150772, 40.021749 ], [ -75.150217, 40.021665 ], [ -75.149885, 40.023168 ], [ -75.149545, 40.024758 ], [ -75.148761, 40.024666 ], [ -75.147855, 40.024558 ], [ -75.147734, 40.024543 ], [ -75.146915, 40.024436 ], [ -75.145707, 40.024266 ], [ -75.1449, 40.024156 ], [ -75.144121, 40.024066 ], [ -75.143348, 40.023945 ], [ -75.142546, 40.023852 ], [ -75.141778, 40.023755 ], [ -75.140987, 40.023647 ], [ -75.140177, 40.023562 ], [ -75.139367, 40.02346 ], [ -75.138435, 40.023337 ], [ -75.137796, 40.023254 ], [ -75.137333, 40.023198 ], [ -75.137262, 40.023185 ], [ -75.137207, 40.02317 ], [ -75.137162, 40.023149 ], [ -75.137131, 40.023125 ], [ -75.137106, 40.023092 ], [ -75.13708, 40.023047 ], [ -75.136999, 40.022932 ], [ -75.136813, 40.022661 ], [ -75.136726, 40.02254 ], [ -75.136592, 40.022603 ], [ -75.136374, 40.02269 ], [ -75.136185, 40.022763 ], [ -75.135933, 40.02286 ], [ -75.135841, 40.022893 ], [ -75.135741, 40.022934 ], [ -75.135629, 40.02298 ], [ -75.135564, 40.022959 ], [ -75.135503, 40.022945 ], [ -75.135451, 40.022932 ], [ -75.135397, 40.022923 ], [ -75.135326, 40.022914 ], [ -75.135238, 40.022904 ], [ -75.13516, 40.022897 ], [ -75.134965, 40.022887 ], [ -75.133512, 40.022704 ], [ -75.132657, 40.022593 ], [ -75.131667, 40.022464 ], [ -75.130669, 40.022332 ], [ -75.128306, 40.022033 ], [ -75.128137, 40.022013 ], [ -75.127969, 40.021994 ], [ -75.127809, 40.021975 ], [ -75.127578, 40.021949 ], [ -75.126053, 40.021763 ], [ -75.125667, 40.021723 ], [ -75.124352, 40.021555 ], [ -75.122413, 40.02131 ], [ -75.121625, 40.021215 ], [ -75.121492, 40.021201 ], [ -75.121391, 40.021188 ], [ -75.120472, 40.021076 ], [ -75.119624, 40.020968 ], [ -75.119272, 40.020925 ], [ -75.119106, 40.020905 ], [ -75.118597, 40.020846 ], [ -75.118288, 40.02081 ], [ -75.117565, 40.020717 ], [ -75.116979, 40.020643 ], [ -75.116263, 40.020554 ], [ -75.114672, 40.020354 ], [ -75.114186, 40.020289 ], [ -75.114117, 40.020282 ], [ -75.114061, 40.020275 ], [ -75.113854, 40.020249 ], [ -75.113154, 40.020154 ], [ -75.112934, 40.020132 ], [ -75.112372, 40.020061 ], [ -75.112166, 40.020035 ], [ -75.111944, 40.020005 ], [ -75.111637, 40.019966 ], [ -75.110867, 40.019867 ], [ -75.110512, 40.019822 ], [ -75.109755, 40.019728 ], [ -75.109045, 40.019642 ], [ -75.108325, 40.019549 ], [ -75.10737, 40.019434 ], [ -75.106989, 40.019382 ], [ -75.106763, 40.019349 ], [ -75.106642, 40.019334 ], [ -75.105412, 40.019161 ], [ -75.104553, 40.019064 ], [ -75.102226, 40.018781 ], [ -75.101737, 40.018718 ], [ -75.101092, 40.018634 ], [ -75.100349, 40.018538 ], [ -75.097845, 40.018218 ], [ -75.097736, 40.018206 ], [ -75.097601, 40.018183 ], [ -75.097505, 40.018163 ], [ -75.097442, 40.018147 ], [ -75.097371, 40.018128 ], [ -75.097377, 40.018104 ], [ -75.097372, 40.01807 ], [ -75.09736, 40.018041 ], [ -75.097338, 40.018009 ], [ -75.097313, 40.017982 ], [ -75.097285, 40.017967 ], [ -75.097244, 40.017951 ], [ -75.097192, 40.017942 ], [ -75.097151, 40.017944 ], [ -75.097113, 40.01795 ], [ -75.097072, 40.017961 ], [ -75.097027, 40.017987 ], [ -75.096995, 40.018015 ], [ -75.096976, 40.018063 ], [ -75.096978, 40.018115 ], [ -75.096943, 40.018194 ], [ -75.096912, 40.018268 ], [ -75.096777, 40.018564 ], [ -75.096772, 40.018575 ], [ -75.096772, 40.018648 ], [ -75.096715, 40.01871 ], [ -75.096533, 40.01893 ], [ -75.096341, 40.019144 ], [ -75.096173, 40.019315 ], [ -75.096111, 40.019379 ], [ -75.095879, 40.019619 ], [ -75.095826, 40.0196 ], [ -75.095745, 40.019583 ], [ -75.095706, 40.01958 ], [ -75.094408, 40.019513 ], [ -75.09436, 40.019509 ], [ -75.094326, 40.0195 ], [ -75.094291, 40.019483 ], [ -75.093358, 40.018988 ], [ -75.092552, 40.018555 ], [ -75.092405, 40.018468 ], [ -75.092176, 40.018353 ], [ -75.091944, 40.018229 ], [ -75.091312, 40.017899 ], [ -75.090335, 40.017368 ], [ -75.089417, 40.016869 ], [ -75.088048, 40.016147 ], [ -75.087204, 40.015696 ], [ -75.086356, 40.016622 ], [ -75.085539, 40.017483 ], [ -75.084319, 40.018809 ], [ -75.084057, 40.018659 ], [ -75.083992, 40.018218 ], [ -75.083959, 40.018009 ], [ -75.083936, 40.017879 ], [ -75.083804, 40.01694 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308029", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.035165, 40.030134 ], [ -75.033875, 40.030787 ], [ -75.03358, 40.030943 ], [ -75.033043, 40.031223 ], [ -75.032454, 40.031518 ], [ -75.031939, 40.03179 ], [ -75.03145, 40.032039 ], [ -75.030909, 40.032323 ], [ -75.030295, 40.032641 ], [ -75.029748, 40.032923 ], [ -75.029127, 40.033243 ], [ -75.028804, 40.033409 ], [ -75.028517, 40.033558 ], [ -75.028247, 40.033698 ], [ -75.027993, 40.033831 ], [ -75.02771, 40.033975 ], [ -75.02739, 40.034137 ], [ -75.027071, 40.034301 ], [ -75.026819, 40.034438 ], [ -75.02654, 40.034583 ], [ -75.02628, 40.034718 ], [ -75.025903, 40.034913 ], [ -75.025595, 40.035073 ], [ -75.025157, 40.0353 ], [ -75.024821, 40.034769 ], [ -75.024725, 40.034625 ], [ -75.024514, 40.034306 ], [ -75.024304, 40.033983 ], [ -75.024231, 40.033867 ], [ -75.024182, 40.033788 ], [ -75.024149, 40.033726 ], [ -75.024121, 40.033677 ], [ -75.024075, 40.033605 ], [ -75.024008, 40.033522 ], [ -75.023902, 40.033407 ], [ -75.023783, 40.033276 ], [ -75.023631, 40.033117 ], [ -75.023405, 40.032893 ], [ -75.023195, 40.032683 ], [ -75.023018, 40.03252 ], [ -75.022909, 40.032419 ], [ -75.022772, 40.032295 ], [ -75.022705, 40.032235 ], [ -75.022649, 40.032176 ], [ -75.022572, 40.032091 ], [ -75.022457, 40.031974 ], [ -75.022095, 40.031604 ], [ -75.022084, 40.031592 ], [ -75.021767, 40.031251 ], [ -75.021596, 40.031352 ], [ -75.021316, 40.031483 ], [ -75.021263, 40.031513 ], [ -75.021181, 40.031562 ], [ -75.020562, 40.031904 ], [ -75.020138, 40.032147 ], [ -75.019947, 40.032256 ], [ -75.019775, 40.032354 ], [ -75.019318, 40.032612 ], [ -75.019133, 40.032717 ], [ -75.018037, 40.033335 ], [ -75.017165, 40.033821 ], [ -75.016778, 40.034036 ], [ -75.016325, 40.034289 ], [ -75.015093, 40.034977 ], [ -75.014624, 40.035232 ], [ -75.012332, 40.036517 ], [ -75.01215, 40.036614 ], [ -75.011869, 40.03677 ], [ -75.011332, 40.037054 ], [ -75.010938, 40.037241 ], [ -75.01077, 40.037321 ], [ -75.01068, 40.037365 ], [ -75.009924, 40.037707 ], [ -75.007553, 40.038771 ], [ -75.007235, 40.03891 ], [ -75.006816, 40.039107 ], [ -75.006423, 40.039299 ], [ -75.005316, 40.039879 ], [ -75.005105, 40.039991 ], [ -75.005094, 40.039996 ], [ -75.004857, 40.040124 ], [ -75.004532, 40.040309 ], [ -75.004455, 40.040352 ], [ -75.00411, 40.040572 ], [ -75.003908, 40.040701 ], [ -75.003442, 40.04099 ], [ -75.003203, 40.041129 ], [ -75.002977, 40.04125 ], [ -75.002344, 40.041587 ], [ -75.001444, 40.042063 ], [ -74.999336, 40.043203 ], [ -74.998714, 40.043544 ], [ -74.998372, 40.043732 ], [ -74.997936, 40.043986 ], [ -74.997258, 40.044388 ], [ -74.996526, 40.04482 ], [ -74.99573, 40.045292 ], [ -74.995663, 40.045331 ], [ -74.995415, 40.045471 ], [ -74.995269, 40.045553 ], [ -74.994744, 40.045849 ], [ -74.994277, 40.046116 ], [ -74.993814, 40.046381 ], [ -74.99319, 40.046739 ], [ -74.992798, 40.046965 ], [ -74.992413, 40.047194 ], [ -74.991913, 40.047494 ], [ -74.991484, 40.047754 ], [ -74.991074, 40.047996 ], [ -74.990991, 40.048005 ], [ -74.990878, 40.048049 ], [ -74.9907, 40.048143 ], [ -74.990451, 40.048286 ], [ -74.99034, 40.048353 ], [ -74.989561, 40.048849 ], [ -74.989522, 40.048911 ], [ -74.989422, 40.048974 ], [ -74.989248, 40.049084 ], [ -74.988951, 40.049263 ], [ -74.988681, 40.049424 ], [ -74.98823, 40.049701 ], [ -74.987805, 40.049957 ], [ -74.986345, 40.050841 ], [ -74.985389, 40.051423 ], [ -74.985165, 40.051549 ], [ -74.984518, 40.05195 ], [ -74.984159, 40.052164 ], [ -74.983633, 40.052477 ], [ -74.983281, 40.052686 ], [ -74.983229, 40.052717 ], [ -74.98274, 40.053018 ], [ -74.983023, 40.053322 ], [ -74.98326, 40.053595 ], [ -74.983306, 40.053652 ], [ -74.983508, 40.053895 ], [ -74.983722, 40.054131 ], [ -74.983772, 40.054196 ], [ -74.983809, 40.054255 ], [ -74.983841, 40.054334 ], [ -74.983892, 40.054497 ], [ -74.983937, 40.054596 ], [ -74.983987, 40.054673 ], [ -74.984049, 40.054742 ], [ -74.984124, 40.054806 ], [ -74.984315, 40.054963 ], [ -74.9845, 40.05513 ], [ -74.984612, 40.055231 ], [ -74.984651, 40.055267 ], [ -74.984742, 40.05534 ], [ -74.985002, 40.055577 ], [ -74.985295, 40.055841 ], [ -74.985392, 40.055926 ], [ -74.985755, 40.056249 ], [ -74.986302, 40.056729 ], [ -74.986755, 40.057142 ], [ -74.986858, 40.057237 ], [ -74.988019, 40.058268 ], [ -74.988832, 40.058987 ], [ -74.98906, 40.059189 ], [ -74.989277, 40.059384 ], [ -74.989368, 40.059463 ], [ -74.989832, 40.059868 ], [ -74.990427, 40.060396 ], [ -74.989961, 40.060689 ], [ -74.989623, 40.060894 ], [ -74.989078, 40.061222 ], [ -74.988922, 40.061318 ], [ -74.988552, 40.061538 ], [ -74.98837, 40.061651 ], [ -74.987972, 40.061893 ], [ -74.987791, 40.062003 ], [ -74.987478, 40.062194 ], [ -74.987248, 40.062335 ], [ -74.987116, 40.062418 ], [ -74.987027, 40.062474 ], [ -74.986927, 40.062534 ], [ -74.986639, 40.062706 ], [ -74.986312, 40.062903 ], [ -74.985985, 40.063098 ], [ -74.985736, 40.063249 ], [ -74.98552, 40.063379 ], [ -74.986837, 40.064918 ], [ -74.986922, 40.06501 ], [ -74.987001, 40.065087 ], [ -74.987078, 40.065155 ], [ -74.987177, 40.06523 ], [ -74.987365, 40.065382 ], [ -74.987611, 40.06558 ], [ -74.987774, 40.065711 ], [ -74.987879, 40.065799 ], [ -74.987963, 40.065878 ], [ -74.988051, 40.065971 ], [ -74.988141, 40.066078 ], [ -74.988203, 40.066165 ], [ -74.988277, 40.066274 ], [ -74.988343, 40.066393 ], [ -74.988389, 40.066511 ], [ -74.988429, 40.066648 ], [ -74.98845, 40.066747 ], [ -74.988466, 40.066869 ], [ -74.988475, 40.066976 ], [ -74.988479, 40.067083 ], [ -74.988475, 40.067172 ], [ -74.988464, 40.067273 ], [ -74.988417, 40.067561 ], [ -74.988363, 40.067795 ], [ -74.988353, 40.06785 ], [ -74.988332, 40.067941 ], [ -74.98804, 40.06917 ], [ -74.987838, 40.070105 ], [ -74.987802, 40.070316 ], [ -74.987777, 40.070464 ], [ -74.98776, 40.070631 ], [ -74.987747, 40.070783 ], [ -74.987721, 40.071124 ], [ -74.987681, 40.071608 ], [ -74.987675, 40.071726 ], [ -74.987669, 40.071906 ], [ -74.987679, 40.072116 ], [ -74.987696, 40.072255 ], [ -74.987726, 40.072416 ], [ -74.987782, 40.072654 ], [ -74.987865, 40.072907 ], [ -74.987935, 40.07306 ], [ -74.988019, 40.073228 ], [ -74.988092, 40.073366 ], [ -74.98819, 40.073532 ], [ -74.988297, 40.073684 ], [ -74.988424, 40.073854 ], [ -74.988509, 40.073952 ], [ -74.988697, 40.074152 ], [ -74.988919, 40.074366 ], [ -74.9891, 40.074535 ], [ -74.989275, 40.074698 ], [ -74.988439, 40.075232 ], [ -74.987887, 40.075581 ], [ -74.987749, 40.075674 ], [ -74.987653, 40.075744 ], [ -74.987612, 40.075778 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308030", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.035165, 40.030134 ], [ -75.033875, 40.030787 ], [ -75.03358, 40.030943 ], [ -75.033043, 40.031223 ], [ -75.032454, 40.031518 ], [ -75.031939, 40.03179 ], [ -75.03145, 40.032039 ], [ -75.030909, 40.032323 ], [ -75.030295, 40.032641 ], [ -75.029748, 40.032923 ], [ -75.029127, 40.033243 ], [ -75.028804, 40.033409 ], [ -75.028517, 40.033558 ], [ -75.028247, 40.033698 ], [ -75.027993, 40.033831 ], [ -75.02771, 40.033975 ], [ -75.02739, 40.034137 ], [ -75.027071, 40.034301 ], [ -75.026819, 40.034438 ], [ -75.02654, 40.034583 ], [ -75.02628, 40.034718 ], [ -75.025903, 40.034913 ], [ -75.025595, 40.035073 ], [ -75.025157, 40.0353 ], [ -75.024821, 40.034769 ], [ -75.024725, 40.034625 ], [ -75.024514, 40.034306 ], [ -75.024304, 40.033983 ], [ -75.024231, 40.033867 ], [ -75.024182, 40.033788 ], [ -75.024149, 40.033726 ], [ -75.024121, 40.033677 ], [ -75.024075, 40.033605 ], [ -75.024008, 40.033522 ], [ -75.023902, 40.033407 ], [ -75.023783, 40.033276 ], [ -75.023631, 40.033117 ], [ -75.023405, 40.032893 ], [ -75.023195, 40.032683 ], [ -75.023018, 40.03252 ], [ -75.022909, 40.032419 ], [ -75.022772, 40.032295 ], [ -75.022705, 40.032235 ], [ -75.022649, 40.032176 ], [ -75.022572, 40.032091 ], [ -75.022457, 40.031974 ], [ -75.022095, 40.031604 ], [ -75.022084, 40.031592 ], [ -75.021767, 40.031251 ], [ -75.021596, 40.031352 ], [ -75.021316, 40.031483 ], [ -75.021263, 40.031513 ], [ -75.021181, 40.031562 ], [ -75.020562, 40.031904 ], [ -75.020138, 40.032147 ], [ -75.019947, 40.032256 ], [ -75.019775, 40.032354 ], [ -75.019318, 40.032612 ], [ -75.019133, 40.032717 ], [ -75.018037, 40.033335 ], [ -75.017165, 40.033821 ], [ -75.016778, 40.034036 ], [ -75.016325, 40.034289 ], [ -75.015093, 40.034977 ], [ -75.014624, 40.035232 ], [ -75.012332, 40.036517 ], [ -75.01215, 40.036614 ], [ -75.011869, 40.03677 ], [ -75.011332, 40.037054 ], [ -75.010938, 40.037241 ], [ -75.01077, 40.037321 ], [ -75.01068, 40.037365 ], [ -75.009924, 40.037707 ], [ -75.007553, 40.038771 ], [ -75.007235, 40.03891 ], [ -75.006816, 40.039107 ], [ -75.006423, 40.039299 ], [ -75.005316, 40.039879 ], [ -75.005105, 40.039991 ], [ -75.005094, 40.039996 ], [ -75.004857, 40.040124 ], [ -75.004532, 40.040309 ], [ -75.004455, 40.040352 ], [ -75.00411, 40.040572 ], [ -75.003908, 40.040701 ], [ -75.003442, 40.04099 ], [ -75.003203, 40.041129 ], [ -75.002977, 40.04125 ], [ -75.002344, 40.041587 ], [ -75.001444, 40.042063 ], [ -74.999336, 40.043203 ], [ -74.998714, 40.043544 ], [ -74.998372, 40.043732 ], [ -74.997936, 40.043986 ], [ -74.997258, 40.044388 ], [ -74.996526, 40.04482 ], [ -74.99573, 40.045292 ], [ -74.995663, 40.045331 ], [ -74.995415, 40.045471 ], [ -74.995269, 40.045553 ], [ -74.994744, 40.045849 ], [ -74.994277, 40.046116 ], [ -74.993814, 40.046381 ], [ -74.99319, 40.046739 ], [ -74.992798, 40.046965 ], [ -74.992413, 40.047194 ], [ -74.991913, 40.047494 ], [ -74.991484, 40.047754 ], [ -74.991074, 40.047996 ], [ -74.990991, 40.048005 ], [ -74.990878, 40.048049 ], [ -74.9907, 40.048143 ], [ -74.990451, 40.048286 ], [ -74.99034, 40.048353 ], [ -74.989561, 40.048849 ], [ -74.989522, 40.048911 ], [ -74.989422, 40.048974 ], [ -74.989248, 40.049084 ], [ -74.988951, 40.049263 ], [ -74.988681, 40.049424 ], [ -74.98823, 40.049701 ], [ -74.987805, 40.049957 ], [ -74.986345, 40.050841 ], [ -74.985389, 40.051423 ], [ -74.985165, 40.051549 ], [ -74.984518, 40.05195 ], [ -74.984159, 40.052164 ], [ -74.983633, 40.052477 ], [ -74.983281, 40.052686 ], [ -74.983229, 40.052717 ], [ -74.98274, 40.053018 ], [ -74.983023, 40.053322 ], [ -74.98326, 40.053595 ], [ -74.983306, 40.053652 ], [ -74.983508, 40.053895 ], [ -74.983722, 40.054131 ], [ -74.983772, 40.054196 ], [ -74.983809, 40.054255 ], [ -74.983841, 40.054334 ], [ -74.983892, 40.054497 ], [ -74.983937, 40.054596 ], [ -74.983987, 40.054673 ], [ -74.984049, 40.054742 ], [ -74.984124, 40.054806 ], [ -74.984315, 40.054963 ], [ -74.9845, 40.05513 ], [ -74.984612, 40.055231 ], [ -74.984651, 40.055267 ], [ -74.984742, 40.05534 ], [ -74.985002, 40.055577 ], [ -74.985295, 40.055841 ], [ -74.985392, 40.055926 ], [ -74.985755, 40.056249 ], [ -74.986302, 40.056729 ], [ -74.986755, 40.057142 ], [ -74.986858, 40.057237 ], [ -74.988019, 40.058268 ], [ -74.988832, 40.058987 ], [ -74.98906, 40.059189 ], [ -74.989277, 40.059384 ], [ -74.989368, 40.059463 ], [ -74.989832, 40.059868 ], [ -74.990427, 40.060396 ], [ -74.989961, 40.060689 ], [ -74.989623, 40.060894 ], [ -74.989078, 40.061222 ], [ -74.988922, 40.061318 ], [ -74.988552, 40.061538 ], [ -74.98837, 40.061651 ], [ -74.987972, 40.061893 ], [ -74.987791, 40.062003 ], [ -74.987478, 40.062194 ], [ -74.987248, 40.062335 ], [ -74.987116, 40.062418 ], [ -74.987027, 40.062474 ], [ -74.986927, 40.062534 ], [ -74.986639, 40.062706 ], [ -74.986312, 40.062903 ], [ -74.985985, 40.063098 ], [ -74.985736, 40.063249 ], [ -74.98552, 40.063379 ], [ -74.986837, 40.064918 ], [ -74.986922, 40.06501 ], [ -74.987001, 40.065087 ], [ -74.987078, 40.065155 ], [ -74.987177, 40.06523 ], [ -74.987365, 40.065382 ], [ -74.987611, 40.06558 ], [ -74.987774, 40.065711 ], [ -74.987879, 40.065799 ], [ -74.987963, 40.065878 ], [ -74.988051, 40.065971 ], [ -74.988141, 40.066078 ], [ -74.988203, 40.066165 ], [ -74.988277, 40.066274 ], [ -74.988343, 40.066393 ], [ -74.988389, 40.066511 ], [ -74.988429, 40.066648 ], [ -74.98845, 40.066747 ], [ -74.988466, 40.066869 ], [ -74.988475, 40.066976 ], [ -74.988479, 40.067083 ], [ -74.988475, 40.067172 ], [ -74.988464, 40.067273 ], [ -74.988417, 40.067561 ], [ -74.988363, 40.067795 ], [ -74.988353, 40.06785 ], [ -74.988332, 40.067941 ], [ -74.98804, 40.06917 ], [ -74.987838, 40.070105 ], [ -74.987802, 40.070316 ], [ -74.987777, 40.070464 ], [ -74.98776, 40.070631 ], [ -74.987747, 40.070783 ], [ -74.987721, 40.071124 ], [ -74.987681, 40.071608 ], [ -74.987675, 40.071726 ], [ -74.987669, 40.071906 ], [ -74.987679, 40.072116 ], [ -74.987696, 40.072255 ], [ -74.987726, 40.072416 ], [ -74.987782, 40.072654 ], [ -74.987865, 40.072907 ], [ -74.987935, 40.07306 ], [ -74.988019, 40.073228 ], [ -74.988092, 40.073366 ], [ -74.98819, 40.073532 ], [ -74.988297, 40.073684 ], [ -74.988424, 40.073854 ], [ -74.988509, 40.073952 ], [ -74.988697, 40.074152 ], [ -74.988919, 40.074366 ], [ -74.9891, 40.074535 ], [ -74.989275, 40.074698 ], [ -74.988439, 40.075232 ], [ -74.987887, 40.075581 ], [ -74.987749, 40.075674 ], [ -74.987653, 40.075744 ], [ -74.987612, 40.075778 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308031", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.064517, 40.009026 ], [ -75.06395, 40.009187 ], [ -75.064053, 40.009432 ], [ -75.064119, 40.00959 ], [ -75.063154, 40.009898 ], [ -75.062516, 40.0101 ], [ -75.062379, 40.010143 ], [ -75.062298, 40.010166 ], [ -75.062189, 40.010208 ], [ -75.062089, 40.010256 ], [ -75.061999, 40.010304 ], [ -75.061857, 40.010383 ], [ -75.061056, 40.010858 ], [ -75.060722, 40.011055 ], [ -75.06064, 40.011106 ], [ -75.059575, 40.011762 ], [ -75.058833, 40.012214 ], [ -75.058725, 40.012281 ], [ -75.05864, 40.01233 ], [ -75.058441, 40.012435 ], [ -75.05793, 40.012726 ], [ -75.057776, 40.012814 ], [ -75.05664, 40.013469 ], [ -75.056474, 40.013549 ], [ -75.055947, 40.013827 ], [ -75.054, 40.014809 ], [ -75.053834, 40.01489 ], [ -75.0537, 40.014951 ], [ -75.052624, 40.015409 ], [ -75.052253, 40.015578 ], [ -75.051345, 40.016024 ], [ -75.050305, 40.016577 ], [ -75.049966, 40.016732 ], [ -75.049877, 40.016734 ], [ -75.049574, 40.016864 ], [ -75.049486, 40.016849 ], [ -75.049432, 40.016836 ], [ -75.049342, 40.016805 ], [ -75.049273, 40.016774 ], [ -75.049213, 40.016739 ], [ -75.048983, 40.016602 ], [ -75.048705, 40.016399 ], [ -75.048623, 40.01634 ], [ -75.04858, 40.01631 ], [ -75.048555, 40.016293 ], [ -75.048467, 40.016241 ], [ -75.048379, 40.016196 ], [ -75.048309, 40.016161 ], [ -75.048206, 40.016118 ], [ -75.048133, 40.016093 ], [ -75.048054, 40.016069 ], [ -75.047957, 40.016047 ], [ -75.047843, 40.016031 ], [ -75.047767, 40.016024 ], [ -75.047656, 40.016017 ], [ -75.047546, 40.016014 ], [ -75.047448, 40.016017 ], [ -75.047347, 40.016025 ], [ -75.047244, 40.016042 ], [ -75.047169, 40.016062 ], [ -75.047027, 40.016103 ], [ -75.046894, 40.016152 ], [ -75.046743, 40.016227 ], [ -75.046666, 40.016273 ], [ -75.046602, 40.01631 ], [ -75.046531, 40.016359 ], [ -75.046493, 40.016386 ], [ -75.046416, 40.016451 ], [ -75.046363, 40.016514 ], [ -75.046326, 40.016577 ], [ -75.046306, 40.016647 ], [ -75.046303, 40.016717 ], [ -75.046312, 40.016788 ], [ -75.046337, 40.016856 ], [ -75.046377, 40.016921 ], [ -75.046427, 40.016977 ], [ -75.046673, 40.017258 ], [ -75.046878, 40.017489 ], [ -75.046949, 40.01758 ], [ -75.047106, 40.017779 ], [ -75.047133, 40.017827 ], [ -75.047147, 40.017869 ], [ -75.047156, 40.017908 ], [ -75.047158, 40.017939 ], [ -75.047157, 40.017987 ], [ -75.047146, 40.018028 ], [ -75.047127, 40.018072 ], [ -75.047103, 40.018108 ], [ -75.047083, 40.018141 ], [ -75.047035, 40.018194 ], [ -75.046793, 40.018339 ], [ -75.046727, 40.018376 ], [ -75.046465, 40.018522 ], [ -75.046384, 40.018567 ], [ -75.046298, 40.018614 ], [ -75.04616, 40.018688 ], [ -75.04606, 40.018735 ], [ -75.045923, 40.018794 ], [ -75.045346, 40.019014 ], [ -75.045239, 40.019061 ], [ -75.044816, 40.019248 ], [ -75.044764, 40.019276 ], [ -75.044448, 40.019434 ], [ -75.044003, 40.019658 ], [ -75.043388, 40.019957 ], [ -75.043362, 40.01997 ], [ -75.043294, 40.020001 ], [ -75.043194, 40.020038 ], [ -75.043106, 40.02006 ], [ -75.043015, 40.020078 ], [ -75.042931, 40.020089 ], [ -75.042811, 40.0201 ], [ -75.04269, 40.020106 ], [ -75.042456, 40.020106 ], [ -75.041955, 40.020106 ], [ -75.041812, 40.020106 ], [ -75.041654, 40.020115 ], [ -75.041512, 40.020129 ], [ -75.041365, 40.020159 ], [ -75.041281, 40.020187 ], [ -75.040622, 40.020472 ], [ -75.040193, 40.020661 ], [ -75.039708, 40.020875 ], [ -75.039474, 40.020979 ], [ -75.038922, 40.021228 ], [ -75.038512, 40.021407 ], [ -75.038192, 40.021563 ], [ -75.038103, 40.021615 ], [ -75.038009, 40.021695 ], [ -75.037911, 40.0218 ], [ -75.037849, 40.021879 ], [ -75.037814, 40.021933 ], [ -75.037763, 40.022037 ], [ -75.037734, 40.022104 ], [ -75.037716, 40.022147 ], [ -75.037699, 40.022189 ], [ -75.037664, 40.022275 ], [ -75.037609, 40.022464 ], [ -75.037594, 40.022529 ], [ -75.037568, 40.022634 ], [ -75.037528, 40.022729 ], [ -75.03748, 40.022817 ], [ -75.037414, 40.022903 ], [ -75.037326, 40.022994 ], [ -75.037264, 40.023056 ], [ -75.03716, 40.023131 ], [ -75.037052, 40.023201 ], [ -75.036959, 40.02325 ], [ -75.036853, 40.023301 ], [ -75.03675, 40.023351 ], [ -75.036497, 40.023461 ], [ -75.036152, 40.023611 ], [ -75.03578, 40.023773 ], [ -75.035637, 40.023838 ], [ -75.035378, 40.023964 ], [ -75.034746, 40.024237 ], [ -75.034483, 40.024352 ], [ -75.033924, 40.024614 ], [ -75.033025, 40.025034 ], [ -75.032461, 40.025298 ], [ -75.031641, 40.025681 ], [ -75.031589, 40.025711 ], [ -75.031688, 40.025808 ], [ -75.032056, 40.026215 ], [ -75.032288, 40.026489 ], [ -75.032466, 40.026702 ], [ -75.032667, 40.026948 ], [ -75.032755, 40.027057 ], [ -75.032795, 40.027108 ], [ -75.032825, 40.027145 ], [ -75.0329, 40.027241 ], [ -75.033087, 40.027487 ], [ -75.033287, 40.027741 ], [ -75.033519, 40.028037 ], [ -75.033647, 40.028202 ], [ -75.03394, 40.028577 ], [ -75.034348, 40.029098 ], [ -75.034683, 40.029541 ], [ -75.03473, 40.029602 ], [ -75.035015, 40.029949 ], [ -75.035165, 40.030134 ], [ -75.033875, 40.030787 ], [ -75.03358, 40.030943 ], [ -75.033043, 40.031223 ], [ -75.032454, 40.031518 ], [ -75.031939, 40.03179 ], [ -75.03145, 40.032039 ], [ -75.030909, 40.032323 ], [ -75.030295, 40.032641 ], [ -75.029748, 40.032923 ], [ -75.029127, 40.033243 ], [ -75.028804, 40.033409 ], [ -75.028517, 40.033558 ], [ -75.028247, 40.033698 ], [ -75.027993, 40.033831 ], [ -75.02771, 40.033975 ], [ -75.02739, 40.034137 ], [ -75.027071, 40.034301 ], [ -75.026819, 40.034438 ], [ -75.02654, 40.034583 ], [ -75.02628, 40.034718 ], [ -75.025903, 40.034913 ], [ -75.025595, 40.035073 ], [ -75.025157, 40.0353 ], [ -75.024821, 40.034769 ], [ -75.024725, 40.034625 ], [ -75.024514, 40.034306 ], [ -75.024304, 40.033983 ], [ -75.024231, 40.033867 ], [ -75.024182, 40.033788 ], [ -75.024149, 40.033726 ], [ -75.024121, 40.033677 ], [ -75.024075, 40.033605 ], [ -75.024008, 40.033522 ], [ -75.023902, 40.033407 ], [ -75.023783, 40.033276 ], [ -75.023631, 40.033117 ], [ -75.023405, 40.032893 ], [ -75.023195, 40.032683 ], [ -75.023018, 40.03252 ], [ -75.022909, 40.032419 ], [ -75.022772, 40.032295 ], [ -75.022705, 40.032235 ], [ -75.022649, 40.032176 ], [ -75.022572, 40.032091 ], [ -75.022457, 40.031974 ], [ -75.022095, 40.031604 ], [ -75.022084, 40.031592 ], [ -75.021767, 40.031251 ], [ -75.021596, 40.031352 ], [ -75.021316, 40.031483 ], [ -75.021263, 40.031513 ], [ -75.021181, 40.031562 ], [ -75.020562, 40.031904 ], [ -75.020138, 40.032147 ], [ -75.019947, 40.032256 ], [ -75.019775, 40.032354 ], [ -75.019318, 40.032612 ], [ -75.019133, 40.032717 ], [ -75.018037, 40.033335 ], [ -75.017165, 40.033821 ], [ -75.016778, 40.034036 ], [ -75.016325, 40.034289 ], [ -75.015093, 40.034977 ], [ -75.014624, 40.035232 ], [ -75.012332, 40.036517 ], [ -75.01215, 40.036614 ], [ -75.011869, 40.03677 ], [ -75.011332, 40.037054 ], [ -75.010938, 40.037241 ], [ -75.01077, 40.037321 ], [ -75.01068, 40.037365 ], [ -75.009924, 40.037707 ], [ -75.007553, 40.038771 ], [ -75.007235, 40.03891 ], [ -75.006816, 40.039107 ], [ -75.006423, 40.039299 ], [ -75.005316, 40.039879 ], [ -75.005105, 40.039991 ], [ -75.005094, 40.039996 ], [ -75.004857, 40.040124 ], [ -75.004532, 40.040309 ], [ -75.004455, 40.040352 ], [ -75.00411, 40.040572 ], [ -75.003908, 40.040701 ], [ -75.003442, 40.04099 ], [ -75.003203, 40.041129 ], [ -75.002977, 40.04125 ], [ -75.002344, 40.041587 ], [ -75.001444, 40.042063 ], [ -74.999336, 40.043203 ], [ -74.998714, 40.043544 ], [ -74.998372, 40.043732 ], [ -74.997936, 40.043986 ], [ -74.997258, 40.044388 ], [ -74.996526, 40.04482 ], [ -74.99573, 40.045292 ], [ -74.995663, 40.045331 ], [ -74.995415, 40.045471 ], [ -74.995269, 40.045553 ], [ -74.994744, 40.045849 ], [ -74.994277, 40.046116 ], [ -74.993814, 40.046381 ], [ -74.99319, 40.046739 ], [ -74.992798, 40.046965 ], [ -74.992413, 40.047194 ], [ -74.991913, 40.047494 ], [ -74.991484, 40.047754 ], [ -74.991074, 40.047996 ], [ -74.990991, 40.048005 ], [ -74.990878, 40.048049 ], [ -74.9907, 40.048143 ], [ -74.990451, 40.048286 ], [ -74.99034, 40.048353 ], [ -74.989561, 40.048849 ], [ -74.989522, 40.048911 ], [ -74.989422, 40.048974 ], [ -74.989248, 40.049084 ], [ -74.988951, 40.049263 ], [ -74.988681, 40.049424 ], [ -74.98823, 40.049701 ], [ -74.987805, 40.049957 ], [ -74.986345, 40.050841 ], [ -74.985389, 40.051423 ], [ -74.985165, 40.051549 ], [ -74.984518, 40.05195 ], [ -74.984159, 40.052164 ], [ -74.983633, 40.052477 ], [ -74.983281, 40.052686 ], [ -74.983229, 40.052717 ], [ -74.98274, 40.053018 ], [ -74.983023, 40.053322 ], [ -74.98326, 40.053595 ], [ -74.983306, 40.053652 ], [ -74.983508, 40.053895 ], [ -74.983722, 40.054131 ], [ -74.983772, 40.054196 ], [ -74.983809, 40.054255 ], [ -74.983841, 40.054334 ], [ -74.983892, 40.054497 ], [ -74.983937, 40.054596 ], [ -74.983987, 40.054673 ], [ -74.984049, 40.054742 ], [ -74.984124, 40.054806 ], [ -74.984315, 40.054963 ], [ -74.9845, 40.05513 ], [ -74.984612, 40.055231 ], [ -74.984651, 40.055267 ], [ -74.984742, 40.05534 ], [ -74.985002, 40.055577 ], [ -74.985295, 40.055841 ], [ -74.985392, 40.055926 ], [ -74.985755, 40.056249 ], [ -74.986302, 40.056729 ], [ -74.986755, 40.057142 ], [ -74.986858, 40.057237 ], [ -74.988019, 40.058268 ], [ -74.988832, 40.058987 ], [ -74.98906, 40.059189 ], [ -74.989277, 40.059384 ], [ -74.989368, 40.059463 ], [ -74.989832, 40.059868 ], [ -74.990427, 40.060396 ], [ -74.989961, 40.060689 ], [ -74.989623, 40.060894 ], [ -74.989078, 40.061222 ], [ -74.988922, 40.061318 ], [ -74.988552, 40.061538 ], [ -74.98837, 40.061651 ], [ -74.987972, 40.061893 ], [ -74.987791, 40.062003 ], [ -74.987478, 40.062194 ], [ -74.987248, 40.062335 ], [ -74.987116, 40.062418 ], [ -74.987027, 40.062474 ], [ -74.986927, 40.062534 ], [ -74.986639, 40.062706 ], [ -74.986312, 40.062903 ], [ -74.985985, 40.063098 ], [ -74.985736, 40.063249 ], [ -74.98552, 40.063379 ], [ -74.986837, 40.064918 ], [ -74.986922, 40.06501 ], [ -74.987001, 40.065087 ], [ -74.987078, 40.065155 ], [ -74.987177, 40.06523 ], [ -74.987365, 40.065382 ], [ -74.987611, 40.06558 ], [ -74.987774, 40.065711 ], [ -74.987879, 40.065799 ], [ -74.987963, 40.065878 ], [ -74.988051, 40.065971 ], [ -74.988141, 40.066078 ], [ -74.988203, 40.066165 ], [ -74.988277, 40.066274 ], [ -74.988343, 40.066393 ], [ -74.988389, 40.066511 ], [ -74.988429, 40.066648 ], [ -74.98845, 40.066747 ], [ -74.988466, 40.066869 ], [ -74.988475, 40.066976 ], [ -74.988479, 40.067083 ], [ -74.988475, 40.067172 ], [ -74.988464, 40.067273 ], [ -74.988417, 40.067561 ], [ -74.988363, 40.067795 ], [ -74.988353, 40.06785 ], [ -74.988332, 40.067941 ], [ -74.98804, 40.06917 ], [ -74.987838, 40.070105 ], [ -74.987802, 40.070316 ], [ -74.987777, 40.070464 ], [ -74.98776, 40.070631 ], [ -74.987747, 40.070783 ], [ -74.987721, 40.071124 ], [ -74.987681, 40.071608 ], [ -74.987675, 40.071726 ], [ -74.987669, 40.071906 ], [ -74.987679, 40.072116 ], [ -74.987696, 40.072255 ], [ -74.987726, 40.072416 ], [ -74.987782, 40.072654 ], [ -74.987865, 40.072907 ], [ -74.987935, 40.07306 ], [ -74.988019, 40.073228 ], [ -74.988092, 40.073366 ], [ -74.98819, 40.073532 ], [ -74.988297, 40.073684 ], [ -74.988424, 40.073854 ], [ -74.988509, 40.073952 ], [ -74.988697, 40.074152 ], [ -74.988919, 40.074366 ], [ -74.9891, 40.074535 ], [ -74.989275, 40.074698 ], [ -74.988439, 40.075232 ], [ -74.987887, 40.075581 ], [ -74.987749, 40.075674 ], [ -74.987653, 40.075744 ], [ -74.987612, 40.075778 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308032", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.076915, 40.023795 ], [ -75.07694, 40.023655 ], [ -75.076961, 40.023463 ], [ -75.076849, 40.023262 ], [ -75.076836, 40.023246 ], [ -75.076058, 40.022521 ], [ -75.075698, 40.022175 ], [ -75.07533, 40.021837 ], [ -75.074998, 40.021525 ], [ -75.074859, 40.021386 ], [ -75.074691, 40.021198 ], [ -75.074593, 40.021082 ], [ -75.07448, 40.020945 ], [ -75.074432, 40.02089 ], [ -75.074304, 40.020739 ], [ -75.07409, 40.020491 ], [ -75.07386, 40.020213 ], [ -75.073811, 40.020156 ], [ -75.073634, 40.019946 ], [ -75.073376, 40.019639 ], [ -75.073214, 40.019442 ], [ -75.073186, 40.019408 ], [ -75.073148, 40.019366 ], [ -75.073105, 40.019327 ], [ -75.072918, 40.019161 ], [ -75.072785, 40.019043 ], [ -75.072676, 40.018943 ], [ -75.072643, 40.018912 ], [ -75.072592, 40.018848 ], [ -75.072555, 40.018778 ], [ -75.072544, 40.01875 ], [ -75.072502, 40.018643 ], [ -75.07239, 40.018369 ], [ -75.072278, 40.018082 ], [ -75.072181, 40.017812 ], [ -75.072083, 40.017542 ], [ -75.071852, 40.016945 ], [ -75.071655, 40.016428 ], [ -75.071463, 40.015924 ], [ -75.071304, 40.015465 ], [ -75.071227, 40.015277 ], [ -75.071067, 40.014841 ], [ -75.070978, 40.014596 ], [ -75.070881, 40.014347 ], [ -75.070433, 40.013176 ], [ -75.069999, 40.012021 ], [ -75.069929, 40.011834 ], [ -75.069865, 40.01166 ], [ -75.069803, 40.011516 ], [ -75.06966, 40.011171 ], [ -75.06952, 40.010798 ], [ -75.069473, 40.010669 ], [ -75.069448, 40.010595 ], [ -75.069418, 40.010497 ], [ -75.069445, 40.0104 ], [ -75.069434, 40.010207 ], [ -75.069425, 40.01012 ], [ -75.069413, 40.010058 ], [ -75.069352, 40.009839 ], [ -75.069281, 40.009624 ], [ -75.069228, 40.009466 ], [ -75.069164, 40.009271 ], [ -75.069087, 40.009047 ], [ -75.069054, 40.00895 ], [ -75.069007, 40.008817 ], [ -75.068979, 40.008727 ], [ -75.068957, 40.008645 ], [ -75.068845, 40.008654 ], [ -75.068418, 40.008691 ], [ -75.068165, 40.008714 ], [ -75.06613, 40.008987 ], [ -75.06602, 40.009003 ], [ -75.065884, 40.009041 ], [ -75.065663, 40.009115 ], [ -75.065126, 40.009275 ], [ -75.064529, 40.009464 ], [ -75.064119, 40.00959 ], [ -75.063154, 40.009898 ], [ -75.062516, 40.0101 ], [ -75.062379, 40.010143 ], [ -75.062298, 40.010166 ], [ -75.062189, 40.010208 ], [ -75.062089, 40.010256 ], [ -75.061999, 40.010304 ], [ -75.061857, 40.010383 ], [ -75.061056, 40.010858 ], [ -75.060722, 40.011055 ], [ -75.06064, 40.011106 ], [ -75.059575, 40.011762 ], [ -75.058833, 40.012214 ], [ -75.058725, 40.012281 ], [ -75.05864, 40.01233 ], [ -75.058441, 40.012435 ], [ -75.05793, 40.012726 ], [ -75.057776, 40.012814 ], [ -75.05664, 40.013469 ], [ -75.056474, 40.013549 ], [ -75.055947, 40.013827 ], [ -75.054, 40.014809 ], [ -75.053834, 40.01489 ], [ -75.0537, 40.014951 ], [ -75.052624, 40.015409 ], [ -75.052253, 40.015578 ], [ -75.051345, 40.016024 ], [ -75.050305, 40.016577 ], [ -75.049966, 40.016732 ], [ -75.049877, 40.016734 ], [ -75.049574, 40.016864 ], [ -75.049486, 40.016849 ], [ -75.049432, 40.016836 ], [ -75.049342, 40.016805 ], [ -75.049273, 40.016774 ], [ -75.049213, 40.016739 ], [ -75.048983, 40.016602 ], [ -75.048705, 40.016399 ], [ -75.048623, 40.01634 ], [ -75.04858, 40.01631 ], [ -75.048555, 40.016293 ], [ -75.048467, 40.016241 ], [ -75.048379, 40.016196 ], [ -75.048309, 40.016161 ], [ -75.048206, 40.016118 ], [ -75.048133, 40.016093 ], [ -75.048054, 40.016069 ], [ -75.047957, 40.016047 ], [ -75.047843, 40.016031 ], [ -75.047767, 40.016024 ], [ -75.047656, 40.016017 ], [ -75.047546, 40.016014 ], [ -75.047448, 40.016017 ], [ -75.047347, 40.016025 ], [ -75.047244, 40.016042 ], [ -75.047169, 40.016062 ], [ -75.047027, 40.016103 ], [ -75.046894, 40.016152 ], [ -75.046743, 40.016227 ], [ -75.046666, 40.016273 ], [ -75.046602, 40.01631 ], [ -75.046531, 40.016359 ], [ -75.046493, 40.016386 ], [ -75.046416, 40.016451 ], [ -75.046363, 40.016514 ], [ -75.046326, 40.016577 ], [ -75.046306, 40.016647 ], [ -75.046303, 40.016717 ], [ -75.046312, 40.016788 ], [ -75.046337, 40.016856 ], [ -75.046377, 40.016921 ], [ -75.046427, 40.016977 ], [ -75.046673, 40.017258 ], [ -75.046878, 40.017489 ], [ -75.046949, 40.01758 ], [ -75.047106, 40.017779 ], [ -75.047133, 40.017827 ], [ -75.047147, 40.017869 ], [ -75.047156, 40.017908 ], [ -75.047158, 40.017939 ], [ -75.047157, 40.017987 ], [ -75.047146, 40.018028 ], [ -75.047127, 40.018072 ], [ -75.047103, 40.018108 ], [ -75.047083, 40.018141 ], [ -75.047035, 40.018194 ], [ -75.046793, 40.018339 ], [ -75.046727, 40.018376 ], [ -75.046465, 40.018522 ], [ -75.046384, 40.018567 ], [ -75.046298, 40.018614 ], [ -75.04616, 40.018688 ], [ -75.04606, 40.018735 ], [ -75.045923, 40.018794 ], [ -75.045346, 40.019014 ], [ -75.045239, 40.019061 ], [ -75.044816, 40.019248 ], [ -75.044764, 40.019276 ], [ -75.044448, 40.019434 ], [ -75.044003, 40.019658 ], [ -75.043388, 40.019957 ], [ -75.043362, 40.01997 ], [ -75.043294, 40.020001 ], [ -75.043194, 40.020038 ], [ -75.043106, 40.02006 ], [ -75.043015, 40.020078 ], [ -75.042931, 40.020089 ], [ -75.042811, 40.0201 ], [ -75.04269, 40.020106 ], [ -75.042456, 40.020106 ], [ -75.041955, 40.020106 ], [ -75.041812, 40.020106 ], [ -75.041654, 40.020115 ], [ -75.041512, 40.020129 ], [ -75.041365, 40.020159 ], [ -75.041281, 40.020187 ], [ -75.040622, 40.020472 ], [ -75.040193, 40.020661 ], [ -75.039708, 40.020875 ], [ -75.039474, 40.020979 ], [ -75.038922, 40.021228 ], [ -75.038512, 40.021407 ], [ -75.038192, 40.021563 ], [ -75.038103, 40.021615 ], [ -75.038009, 40.021695 ], [ -75.037911, 40.0218 ], [ -75.037849, 40.021879 ], [ -75.037814, 40.021933 ], [ -75.037763, 40.022037 ], [ -75.037734, 40.022104 ], [ -75.037716, 40.022147 ], [ -75.037699, 40.022189 ], [ -75.037664, 40.022275 ], [ -75.037609, 40.022464 ], [ -75.037594, 40.022529 ], [ -75.037568, 40.022634 ], [ -75.037528, 40.022729 ], [ -75.03748, 40.022817 ], [ -75.037414, 40.022903 ], [ -75.037326, 40.022994 ], [ -75.037264, 40.023056 ], [ -75.03716, 40.023131 ], [ -75.037052, 40.023201 ], [ -75.036959, 40.02325 ], [ -75.036853, 40.023301 ], [ -75.03675, 40.023351 ], [ -75.036497, 40.023461 ], [ -75.036152, 40.023611 ], [ -75.03578, 40.023773 ], [ -75.035637, 40.023838 ], [ -75.035378, 40.023964 ], [ -75.034746, 40.024237 ], [ -75.034483, 40.024352 ], [ -75.033924, 40.024614 ], [ -75.033025, 40.025034 ], [ -75.032461, 40.025298 ], [ -75.031641, 40.025681 ], [ -75.031589, 40.025711 ], [ -75.031688, 40.025808 ], [ -75.032056, 40.026215 ], [ -75.032288, 40.026489 ], [ -75.032466, 40.026702 ], [ -75.032667, 40.026948 ], [ -75.032755, 40.027057 ], [ -75.032795, 40.027108 ], [ -75.032825, 40.027145 ], [ -75.0329, 40.027241 ], [ -75.033087, 40.027487 ], [ -75.033287, 40.027741 ], [ -75.033519, 40.028037 ], [ -75.033647, 40.028202 ], [ -75.03394, 40.028577 ], [ -75.034348, 40.029098 ], [ -75.034683, 40.029541 ], [ -75.03473, 40.029602 ], [ -75.035015, 40.029949 ], [ -75.035165, 40.030134 ], [ -75.033875, 40.030787 ], [ -75.03358, 40.030943 ], [ -75.033043, 40.031223 ], [ -75.032454, 40.031518 ], [ -75.031939, 40.03179 ], [ -75.03145, 40.032039 ], [ -75.030909, 40.032323 ], [ -75.030295, 40.032641 ], [ -75.029748, 40.032923 ], [ -75.029127, 40.033243 ], [ -75.028804, 40.033409 ], [ -75.028517, 40.033558 ], [ -75.028247, 40.033698 ], [ -75.027993, 40.033831 ], [ -75.02771, 40.033975 ], [ -75.02739, 40.034137 ], [ -75.027071, 40.034301 ], [ -75.026819, 40.034438 ], [ -75.02654, 40.034583 ], [ -75.02628, 40.034718 ], [ -75.025903, 40.034913 ], [ -75.025595, 40.035073 ], [ -75.025157, 40.0353 ], [ -75.024821, 40.034769 ], [ -75.024725, 40.034625 ], [ -75.024514, 40.034306 ], [ -75.024304, 40.033983 ], [ -75.024231, 40.033867 ], [ -75.024182, 40.033788 ], [ -75.024149, 40.033726 ], [ -75.024121, 40.033677 ], [ -75.024075, 40.033605 ], [ -75.024008, 40.033522 ], [ -75.023902, 40.033407 ], [ -75.023783, 40.033276 ], [ -75.023631, 40.033117 ], [ -75.023405, 40.032893 ], [ -75.023195, 40.032683 ], [ -75.023018, 40.03252 ], [ -75.022909, 40.032419 ], [ -75.022772, 40.032295 ], [ -75.022705, 40.032235 ], [ -75.022649, 40.032176 ], [ -75.022572, 40.032091 ], [ -75.022457, 40.031974 ], [ -75.022095, 40.031604 ], [ -75.022084, 40.031592 ], [ -75.021767, 40.031251 ], [ -75.021596, 40.031352 ], [ -75.021316, 40.031483 ], [ -75.021263, 40.031513 ], [ -75.021181, 40.031562 ], [ -75.020562, 40.031904 ], [ -75.020138, 40.032147 ], [ -75.019947, 40.032256 ], [ -75.019775, 40.032354 ], [ -75.019318, 40.032612 ], [ -75.019133, 40.032717 ], [ -75.018037, 40.033335 ], [ -75.017165, 40.033821 ], [ -75.016778, 40.034036 ], [ -75.016325, 40.034289 ], [ -75.015093, 40.034977 ], [ -75.014624, 40.035232 ], [ -75.012332, 40.036517 ], [ -75.01215, 40.036614 ], [ -75.011869, 40.03677 ], [ -75.011332, 40.037054 ], [ -75.010938, 40.037241 ], [ -75.01077, 40.037321 ], [ -75.01068, 40.037365 ], [ -75.009924, 40.037707 ], [ -75.007553, 40.038771 ], [ -75.007235, 40.03891 ], [ -75.006816, 40.039107 ], [ -75.006423, 40.039299 ], [ -75.005316, 40.039879 ], [ -75.005105, 40.039991 ], [ -75.005094, 40.039996 ], [ -75.004857, 40.040124 ], [ -75.004532, 40.040309 ], [ -75.004455, 40.040352 ], [ -75.00411, 40.040572 ], [ -75.003908, 40.040701 ], [ -75.003442, 40.04099 ], [ -75.003203, 40.041129 ], [ -75.002977, 40.04125 ], [ -75.002344, 40.041587 ], [ -75.001444, 40.042063 ], [ -74.999336, 40.043203 ], [ -74.998714, 40.043544 ], [ -74.998372, 40.043732 ], [ -74.997936, 40.043986 ], [ -74.997258, 40.044388 ], [ -74.996526, 40.04482 ], [ -74.99573, 40.045292 ], [ -74.995663, 40.045331 ], [ -74.995415, 40.045471 ], [ -74.995269, 40.045553 ], [ -74.994744, 40.045849 ], [ -74.994277, 40.046116 ], [ -74.993814, 40.046381 ], [ -74.99319, 40.046739 ], [ -74.992798, 40.046965 ], [ -74.992413, 40.047194 ], [ -74.991913, 40.047494 ], [ -74.991484, 40.047754 ], [ -74.991074, 40.047996 ], [ -74.990991, 40.048005 ], [ -74.990878, 40.048049 ], [ -74.9907, 40.048143 ], [ -74.990451, 40.048286 ], [ -74.99034, 40.048353 ], [ -74.989561, 40.048849 ], [ -74.989522, 40.048911 ], [ -74.989422, 40.048974 ], [ -74.989248, 40.049084 ], [ -74.988951, 40.049263 ], [ -74.988681, 40.049424 ], [ -74.98823, 40.049701 ], [ -74.987805, 40.049957 ], [ -74.986345, 40.050841 ], [ -74.985389, 40.051423 ], [ -74.985165, 40.051549 ], [ -74.984518, 40.05195 ], [ -74.984159, 40.052164 ], [ -74.983633, 40.052477 ], [ -74.983281, 40.052686 ], [ -74.983229, 40.052717 ], [ -74.98274, 40.053018 ], [ -74.983023, 40.053322 ], [ -74.98326, 40.053595 ], [ -74.983306, 40.053652 ], [ -74.983508, 40.053895 ], [ -74.983722, 40.054131 ], [ -74.983772, 40.054196 ], [ -74.983809, 40.054255 ], [ -74.983841, 40.054334 ], [ -74.983892, 40.054497 ], [ -74.983937, 40.054596 ], [ -74.983987, 40.054673 ], [ -74.984049, 40.054742 ], [ -74.984124, 40.054806 ], [ -74.984315, 40.054963 ], [ -74.9845, 40.05513 ], [ -74.984612, 40.055231 ], [ -74.984651, 40.055267 ], [ -74.984742, 40.05534 ], [ -74.985002, 40.055577 ], [ -74.985295, 40.055841 ], [ -74.985392, 40.055926 ], [ -74.985755, 40.056249 ], [ -74.986302, 40.056729 ], [ -74.986755, 40.057142 ], [ -74.986858, 40.057237 ], [ -74.988019, 40.058268 ], [ -74.988832, 40.058987 ], [ -74.98906, 40.059189 ], [ -74.989277, 40.059384 ], [ -74.989368, 40.059463 ], [ -74.989832, 40.059868 ], [ -74.990427, 40.060396 ], [ -74.989961, 40.060689 ], [ -74.989623, 40.060894 ], [ -74.989078, 40.061222 ], [ -74.988922, 40.061318 ], [ -74.988552, 40.061538 ], [ -74.98837, 40.061651 ], [ -74.987972, 40.061893 ], [ -74.987791, 40.062003 ], [ -74.987478, 40.062194 ], [ -74.987248, 40.062335 ], [ -74.987116, 40.062418 ], [ -74.987027, 40.062474 ], [ -74.986927, 40.062534 ], [ -74.986639, 40.062706 ], [ -74.986312, 40.062903 ], [ -74.985985, 40.063098 ], [ -74.985736, 40.063249 ], [ -74.98552, 40.063379 ], [ -74.986837, 40.064918 ], [ -74.986922, 40.06501 ], [ -74.987001, 40.065087 ], [ -74.987078, 40.065155 ], [ -74.987177, 40.06523 ], [ -74.987365, 40.065382 ], [ -74.987611, 40.06558 ], [ -74.987774, 40.065711 ], [ -74.987879, 40.065799 ], [ -74.987963, 40.065878 ], [ -74.988051, 40.065971 ], [ -74.988141, 40.066078 ], [ -74.988203, 40.066165 ], [ -74.988277, 40.066274 ], [ -74.988343, 40.066393 ], [ -74.988389, 40.066511 ], [ -74.988429, 40.066648 ], [ -74.98845, 40.066747 ], [ -74.988466, 40.066869 ], [ -74.988475, 40.066976 ], [ -74.988479, 40.067083 ], [ -74.988475, 40.067172 ], [ -74.988464, 40.067273 ], [ -74.988417, 40.067561 ], [ -74.988363, 40.067795 ], [ -74.988353, 40.06785 ], [ -74.988332, 40.067941 ], [ -74.98804, 40.06917 ], [ -74.987838, 40.070105 ], [ -74.987802, 40.070316 ], [ -74.987777, 40.070464 ], [ -74.98776, 40.070631 ], [ -74.987747, 40.070783 ], [ -74.987721, 40.071124 ], [ -74.987681, 40.071608 ], [ -74.987675, 40.071726 ], [ -74.987669, 40.071906 ], [ -74.987679, 40.072116 ], [ -74.987696, 40.072255 ], [ -74.987726, 40.072416 ], [ -74.987782, 40.072654 ], [ -74.987865, 40.072907 ], [ -74.987935, 40.07306 ], [ -74.988019, 40.073228 ], [ -74.988092, 40.073366 ], [ -74.98819, 40.073532 ], [ -74.988297, 40.073684 ], [ -74.988424, 40.073854 ], [ -74.988509, 40.073952 ], [ -74.988697, 40.074152 ], [ -74.988919, 40.074366 ], [ -74.9891, 40.074535 ], [ -74.989275, 40.074698 ], [ -74.988439, 40.075232 ], [ -74.987887, 40.075581 ], [ -74.987749, 40.075674 ], [ -74.987653, 40.075744 ], [ -74.987612, 40.075778 ], [ -74.987566, 40.075818 ], [ -74.9874, 40.075671 ], [ -74.987265, 40.075565 ], [ -74.987119, 40.075469 ], [ -74.98709, 40.075452 ], [ -74.986969, 40.075381 ], [ -74.986809, 40.075302 ], [ -74.986612, 40.075222 ], [ -74.986226, 40.07508 ], [ -74.985967, 40.074999 ], [ -74.985845, 40.074953 ], [ -74.985584, 40.074833 ], [ -74.985237, 40.074658 ], [ -74.985031, 40.074546 ], [ -74.984957, 40.074506 ], [ -74.984625, 40.074326 ], [ -74.984059, 40.074016 ], [ -74.983753, 40.073843 ], [ -74.983458, 40.073661 ], [ -74.983173, 40.07347 ], [ -74.982895, 40.073274 ], [ -74.982689, 40.073118 ], [ -74.982541, 40.073001 ], [ -74.981896, 40.072523 ], [ -74.981836, 40.072479 ], [ -74.981468, 40.072185 ], [ -74.981408, 40.072143 ], [ -74.981402, 40.072139 ], [ -74.981338, 40.072101 ], [ -74.981262, 40.07206 ], [ -74.981154, 40.072016 ], [ -74.9811, 40.072 ], [ -74.981076, 40.071993 ], [ -74.981049, 40.071985 ], [ -74.980896, 40.072313 ], [ -74.98039, 40.073373 ], [ -74.980235, 40.073687 ], [ -74.979762, 40.074675 ], [ -74.97946, 40.075322 ], [ -74.97925, 40.075772 ], [ -74.97889, 40.076519 ], [ -74.978732, 40.076865 ], [ -74.978321, 40.07785 ], [ -74.978199, 40.07814 ], [ -74.978113, 40.07834 ], [ -74.977912, 40.078903 ], [ -74.977809, 40.079189 ], [ -74.977729, 40.079408 ], [ -74.977649, 40.079625 ], [ -74.977592, 40.079752 ], [ -74.97755, 40.079848 ], [ -74.977468, 40.080001 ], [ -74.977464, 40.08001 ], [ -74.977384, 40.080141 ], [ -74.977274, 40.080299 ], [ -74.977169, 40.080441 ], [ -74.977034, 40.080588 ], [ -74.976889, 40.080735 ], [ -74.976518, 40.081086 ], [ -74.976201, 40.081387 ], [ -74.976035, 40.081545 ], [ -74.97581, 40.081761 ], [ -74.97573, 40.081843 ], [ -74.975702, 40.081874 ], [ -74.97565, 40.081934 ], [ -74.975518, 40.082091 ], [ -74.974986, 40.082778 ], [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97301, 40.085335 ], [ -74.973005, 40.085342 ], [ -74.972586, 40.085842 ], [ -74.972455, 40.086 ], [ -74.972386, 40.086087 ], [ -74.972251, 40.086257 ], [ -74.972096, 40.086453 ], [ -74.971848, 40.086787 ], [ -74.97177, 40.086889 ], [ -74.97171, 40.08696 ], [ -74.971655, 40.087022 ], [ -74.971544, 40.087137 ], [ -74.971501, 40.087185 ], [ -74.971418, 40.087266 ], [ -74.971338, 40.087348 ], [ -74.971139, 40.087539 ], [ -74.970888, 40.08775 ], [ -74.970784, 40.087848 ], [ -74.970706, 40.087917 ], [ -74.970641, 40.087976 ], [ -74.970547, 40.088052 ], [ -74.970464, 40.088121 ], [ -74.970374, 40.088189 ], [ -74.970253, 40.088283 ], [ -74.969856, 40.088569 ], [ -74.969467, 40.08885 ], [ -74.969377, 40.088919 ], [ -74.967959, 40.089909 ], [ -74.967261, 40.090401 ], [ -74.967173, 40.090468 ], [ -74.966982, 40.090607 ], [ -74.966437, 40.090984 ], [ -74.966332, 40.09106 ], [ -74.965842, 40.091423 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308036", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97372, 40.084499 ], [ -74.973771, 40.084522 ], [ -74.974857, 40.085034 ], [ -74.975735, 40.085422 ], [ -74.976207, 40.085641 ], [ -74.976489, 40.085782 ], [ -74.976708, 40.085923 ], [ -74.976966, 40.086118 ], [ -74.97723, 40.086336 ], [ -74.977844, 40.086832 ], [ -74.978437, 40.08731 ], [ -74.978689, 40.087494 ], [ -74.978989, 40.087663 ], [ -74.979202, 40.087749 ], [ -74.979511, 40.087811 ], [ -74.979754, 40.087842 ], [ -74.980609, 40.08791 ], [ -74.980597, 40.087781 ], [ -74.980586, 40.087694 ], [ -74.980574, 40.087618 ], [ -74.980551, 40.087536 ], [ -74.980523, 40.087449 ], [ -74.980382, 40.087041 ], [ -74.980249, 40.086697 ], [ -74.980204, 40.086556 ], [ -74.980179, 40.08644 ], [ -74.980165, 40.086329 ], [ -74.980162, 40.086226 ], [ -74.980164, 40.086126 ], [ -74.980176, 40.086042 ], [ -74.980199, 40.085945 ], [ -74.980242, 40.085838 ], [ -74.98031, 40.085701 ], [ -74.980406, 40.085543 ], [ -74.981288, 40.084153 ], [ -74.981329, 40.084079 ], [ -74.981365, 40.084009 ], [ -74.981406, 40.083922 ], [ -74.981454, 40.083809 ], [ -74.981513, 40.083672 ], [ -74.98156, 40.083547 ], [ -74.98163, 40.083333 ], [ -74.981718, 40.082963 ], [ -74.981744, 40.082847 ], [ -74.981765, 40.08272 ], [ -74.981817, 40.082357 ], [ -74.981584, 40.08233 ], [ -74.98138, 40.082296 ], [ -74.98118, 40.082251 ], [ -74.980983, 40.082198 ], [ -74.980792, 40.082135 ], [ -74.980751, 40.082119 ], [ -74.980629, 40.08207 ], [ -74.979964, 40.081768 ], [ -74.97852, 40.0811 ], [ -74.978222, 40.08096 ], [ -74.977368, 40.080569 ], [ -74.977303, 40.080535 ], [ -74.977246, 40.0805 ], [ -74.97733, 40.080394 ], [ -74.977417, 40.080273 ], [ -74.977541, 40.080079 ], [ -74.977651, 40.079881 ], [ -74.977745, 40.079679 ], [ -74.977824, 40.079471 ], [ -74.977918, 40.079208 ], [ -74.978239, 40.078312 ], [ -74.978281, 40.078204 ], [ -74.978411, 40.077898 ], [ -74.978588, 40.07747 ], [ -74.97861, 40.077408 ], [ -74.978831, 40.076893 ], [ -74.978918, 40.076693 ], [ -74.979101, 40.07631 ], [ -74.979345, 40.075798 ], [ -74.979861, 40.074706 ], [ -74.980334, 40.073718 ], [ -74.98058, 40.073204 ], [ -74.980947, 40.072442 ], [ -74.981154, 40.072016 ], [ -74.981262, 40.07206 ], [ -74.981338, 40.072101 ], [ -74.981402, 40.072139 ], [ -74.981408, 40.072143 ], [ -74.981468, 40.072185 ], [ -74.981836, 40.072479 ], [ -74.981896, 40.072523 ], [ -74.982541, 40.073001 ], [ -74.982689, 40.073118 ], [ -74.982895, 40.073274 ], [ -74.983173, 40.07347 ], [ -74.983458, 40.073661 ], [ -74.983753, 40.073843 ], [ -74.984059, 40.074016 ], [ -74.984625, 40.074326 ], [ -74.984957, 40.074506 ], [ -74.985031, 40.074546 ], [ -74.985237, 40.074658 ], [ -74.985584, 40.074833 ], [ -74.985845, 40.074953 ], [ -74.985967, 40.074999 ], [ -74.986226, 40.07508 ], [ -74.986612, 40.075222 ], [ -74.986809, 40.075302 ], [ -74.986969, 40.075381 ], [ -74.98709, 40.075452 ], [ -74.987119, 40.075469 ], [ -74.987265, 40.075565 ], [ -74.9874, 40.075671 ], [ -74.987566, 40.075818 ], [ -74.987612, 40.075778 ], [ -74.987653, 40.075744 ], [ -74.987749, 40.075674 ], [ -74.987887, 40.075581 ], [ -74.988439, 40.075232 ], [ -74.989275, 40.074698 ], [ -74.9891, 40.074535 ], [ -74.988919, 40.074366 ], [ -74.988697, 40.074152 ], [ -74.988509, 40.073952 ], [ -74.988424, 40.073854 ], [ -74.988297, 40.073684 ], [ -74.98819, 40.073532 ], [ -74.988092, 40.073366 ], [ -74.988019, 40.073228 ], [ -74.987935, 40.07306 ], [ -74.987865, 40.072907 ], [ -74.987782, 40.072654 ], [ -74.987726, 40.072416 ], [ -74.987696, 40.072255 ], [ -74.987679, 40.072116 ], [ -74.987669, 40.071906 ], [ -74.987675, 40.071726 ], [ -74.987681, 40.071608 ], [ -74.987721, 40.071124 ], [ -74.987747, 40.070783 ], [ -74.98776, 40.070631 ], [ -74.987777, 40.070464 ], [ -74.987802, 40.070316 ], [ -74.987838, 40.070105 ], [ -74.98804, 40.06917 ], [ -74.988332, 40.067941 ], [ -74.988353, 40.06785 ], [ -74.988363, 40.067795 ], [ -74.988417, 40.067561 ], [ -74.988464, 40.067273 ], [ -74.988475, 40.067172 ], [ -74.988479, 40.067083 ], [ -74.988475, 40.066976 ], [ -74.988466, 40.066869 ], [ -74.98845, 40.066747 ], [ -74.988429, 40.066648 ], [ -74.988389, 40.066511 ], [ -74.988343, 40.066393 ], [ -74.988277, 40.066274 ], [ -74.988203, 40.066165 ], [ -74.988141, 40.066078 ], [ -74.988051, 40.065971 ], [ -74.987963, 40.065878 ], [ -74.987879, 40.065799 ], [ -74.987774, 40.065711 ], [ -74.987611, 40.06558 ], [ -74.987365, 40.065382 ], [ -74.987177, 40.06523 ], [ -74.987078, 40.065155 ], [ -74.987001, 40.065087 ], [ -74.986922, 40.06501 ], [ -74.986837, 40.064918 ], [ -74.98552, 40.063379 ], [ -74.985736, 40.063249 ], [ -74.985985, 40.063098 ], [ -74.986312, 40.062903 ], [ -74.986639, 40.062706 ], [ -74.986927, 40.062534 ], [ -74.987027, 40.062474 ], [ -74.987116, 40.062418 ], [ -74.987248, 40.062335 ], [ -74.987478, 40.062194 ], [ -74.987791, 40.062003 ], [ -74.987972, 40.061893 ], [ -74.98837, 40.061651 ], [ -74.988552, 40.061538 ], [ -74.988922, 40.061318 ], [ -74.989078, 40.061222 ], [ -74.989623, 40.060894 ], [ -74.989961, 40.060689 ], [ -74.990427, 40.060396 ], [ -74.989832, 40.059868 ], [ -74.989368, 40.059463 ], [ -74.989277, 40.059384 ], [ -74.98906, 40.059189 ], [ -74.988832, 40.058987 ], [ -74.988019, 40.058268 ], [ -74.986858, 40.057237 ], [ -74.986755, 40.057142 ], [ -74.986302, 40.056729 ], [ -74.985755, 40.056249 ], [ -74.985392, 40.055926 ], [ -74.985295, 40.055841 ], [ -74.985002, 40.055577 ], [ -74.984742, 40.05534 ], [ -74.984651, 40.055267 ], [ -74.984612, 40.055231 ], [ -74.9845, 40.05513 ], [ -74.984315, 40.054963 ], [ -74.984124, 40.054806 ], [ -74.984049, 40.054742 ], [ -74.983987, 40.054673 ], [ -74.983937, 40.054596 ], [ -74.983892, 40.054497 ], [ -74.983841, 40.054334 ], [ -74.983809, 40.054255 ], [ -74.983772, 40.054196 ], [ -74.983722, 40.054131 ], [ -74.983508, 40.053895 ], [ -74.983306, 40.053652 ], [ -74.98326, 40.053595 ], [ -74.983023, 40.053322 ], [ -74.98274, 40.053018 ], [ -74.983229, 40.052717 ], [ -74.983281, 40.052686 ], [ -74.983633, 40.052477 ], [ -74.984159, 40.052164 ], [ -74.984518, 40.05195 ], [ -74.985165, 40.051549 ], [ -74.985389, 40.051423 ], [ -74.986345, 40.050841 ], [ -74.987805, 40.049957 ], [ -74.98823, 40.049701 ], [ -74.988681, 40.049424 ], [ -74.988951, 40.049263 ], [ -74.989248, 40.049084 ], [ -74.989422, 40.048974 ], [ -74.989522, 40.048911 ], [ -74.989586, 40.04891 ], [ -74.989609, 40.048906 ], [ -74.98964, 40.048894 ], [ -74.990014, 40.048671 ], [ -74.990423, 40.048428 ], [ -74.990534, 40.048362 ], [ -74.990921, 40.04813 ], [ -74.991044, 40.048051 ], [ -74.991074, 40.047996 ], [ -74.991484, 40.047754 ], [ -74.991913, 40.047494 ], [ -74.992413, 40.047194 ], [ -74.992798, 40.046965 ], [ -74.99319, 40.046739 ], [ -74.993814, 40.046381 ], [ -74.994277, 40.046116 ], [ -74.994744, 40.045849 ], [ -74.995269, 40.045553 ], [ -74.995415, 40.045471 ], [ -74.995663, 40.045331 ], [ -74.99573, 40.045292 ], [ -74.996526, 40.04482 ], [ -74.997258, 40.044388 ], [ -74.997936, 40.043986 ], [ -74.998372, 40.043732 ], [ -74.998714, 40.043544 ], [ -74.999336, 40.043203 ], [ -75.001444, 40.042063 ], [ -75.002344, 40.041587 ], [ -75.002977, 40.04125 ], [ -75.003203, 40.041129 ], [ -75.003442, 40.04099 ], [ -75.003908, 40.040701 ], [ -75.00411, 40.040572 ], [ -75.004455, 40.040352 ], [ -75.004532, 40.040309 ], [ -75.004857, 40.040124 ], [ -75.005094, 40.039996 ], [ -75.005105, 40.039991 ], [ -75.005316, 40.039879 ], [ -75.006423, 40.039299 ], [ -75.006816, 40.039107 ], [ -75.007235, 40.03891 ], [ -75.007553, 40.038771 ], [ -75.009924, 40.037707 ], [ -75.01068, 40.037365 ], [ -75.01077, 40.037321 ], [ -75.010938, 40.037241 ], [ -75.011332, 40.037054 ], [ -75.011869, 40.03677 ], [ -75.01215, 40.036614 ], [ -75.012332, 40.036517 ], [ -75.014624, 40.035232 ], [ -75.015093, 40.034977 ], [ -75.016325, 40.034289 ], [ -75.016778, 40.034036 ], [ -75.017165, 40.033821 ], [ -75.018037, 40.033335 ], [ -75.019133, 40.032717 ], [ -75.019318, 40.032612 ], [ -75.019775, 40.032354 ], [ -75.019947, 40.032256 ], [ -75.020138, 40.032147 ], [ -75.020562, 40.031904 ], [ -75.021181, 40.031562 ], [ -75.021263, 40.031513 ], [ -75.021316, 40.031483 ], [ -75.021596, 40.031352 ], [ -75.021767, 40.031251 ], [ -75.022084, 40.031592 ], [ -75.022095, 40.031604 ], [ -75.022457, 40.031974 ], [ -75.022572, 40.032091 ], [ -75.022649, 40.032176 ], [ -75.022705, 40.032235 ], [ -75.022772, 40.032295 ], [ -75.022909, 40.032419 ], [ -75.023018, 40.03252 ], [ -75.023195, 40.032683 ], [ -75.023405, 40.032893 ], [ -75.023631, 40.033117 ], [ -75.023783, 40.033276 ], [ -75.023902, 40.033407 ], [ -75.024008, 40.033522 ], [ -75.024075, 40.033605 ], [ -75.024121, 40.033677 ], [ -75.024149, 40.033726 ], [ -75.024182, 40.033788 ], [ -75.024231, 40.033867 ], [ -75.024304, 40.033983 ], [ -75.024514, 40.034306 ], [ -75.024725, 40.034625 ], [ -75.024821, 40.034769 ], [ -75.025157, 40.0353 ], [ -75.025595, 40.035073 ], [ -75.025903, 40.034913 ], [ -75.02628, 40.034718 ], [ -75.02654, 40.034583 ], [ -75.026819, 40.034438 ], [ -75.027071, 40.034301 ], [ -75.02739, 40.034137 ], [ -75.02771, 40.033975 ], [ -75.027993, 40.033831 ], [ -75.028247, 40.033698 ], [ -75.028517, 40.033558 ], [ -75.028804, 40.033409 ], [ -75.029127, 40.033243 ], [ -75.029748, 40.032923 ], [ -75.030295, 40.032641 ], [ -75.030909, 40.032323 ], [ -75.03145, 40.032039 ], [ -75.031939, 40.03179 ], [ -75.032454, 40.031518 ], [ -75.033043, 40.031223 ], [ -75.03358, 40.030943 ], [ -75.033875, 40.030787 ], [ -75.035165, 40.030134 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308037", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.974747, 40.083089 ], [ -74.97395, 40.084116 ], [ -74.973672, 40.084475 ], [ -74.97372, 40.084499 ], [ -74.973771, 40.084522 ], [ -74.974857, 40.085034 ], [ -74.975735, 40.085422 ], [ -74.976207, 40.085641 ], [ -74.976489, 40.085782 ], [ -74.976708, 40.085923 ], [ -74.976966, 40.086118 ], [ -74.97723, 40.086336 ], [ -74.977844, 40.086832 ], [ -74.978437, 40.08731 ], [ -74.978689, 40.087494 ], [ -74.978989, 40.087663 ], [ -74.979202, 40.087749 ], [ -74.979511, 40.087811 ], [ -74.979754, 40.087842 ], [ -74.980609, 40.08791 ], [ -74.980597, 40.087781 ], [ -74.980586, 40.087694 ], [ -74.980574, 40.087618 ], [ -74.980551, 40.087536 ], [ -74.980523, 40.087449 ], [ -74.980382, 40.087041 ], [ -74.980249, 40.086697 ], [ -74.980204, 40.086556 ], [ -74.980179, 40.08644 ], [ -74.980165, 40.086329 ], [ -74.980162, 40.086226 ], [ -74.980164, 40.086126 ], [ -74.980176, 40.086042 ], [ -74.980199, 40.085945 ], [ -74.980242, 40.085838 ], [ -74.98031, 40.085701 ], [ -74.980406, 40.085543 ], [ -74.981288, 40.084153 ], [ -74.981329, 40.084079 ], [ -74.981365, 40.084009 ], [ -74.981406, 40.083922 ], [ -74.981454, 40.083809 ], [ -74.981513, 40.083672 ], [ -74.98156, 40.083547 ], [ -74.98163, 40.083333 ], [ -74.981718, 40.082963 ], [ -74.981744, 40.082847 ], [ -74.981765, 40.08272 ], [ -74.981817, 40.082357 ], [ -74.981584, 40.08233 ], [ -74.98138, 40.082296 ], [ -74.98118, 40.082251 ], [ -74.980983, 40.082198 ], [ -74.980792, 40.082135 ], [ -74.980751, 40.082119 ], [ -74.980629, 40.08207 ], [ -74.979964, 40.081768 ], [ -74.97852, 40.0811 ], [ -74.978222, 40.08096 ], [ -74.977368, 40.080569 ], [ -74.977303, 40.080535 ], [ -74.977246, 40.0805 ], [ -74.97733, 40.080394 ], [ -74.977417, 40.080273 ], [ -74.977541, 40.080079 ], [ -74.977651, 40.079881 ], [ -74.977745, 40.079679 ], [ -74.977824, 40.079471 ], [ -74.977918, 40.079208 ], [ -74.978239, 40.078312 ], [ -74.978281, 40.078204 ], [ -74.978411, 40.077898 ], [ -74.978588, 40.07747 ], [ -74.97861, 40.077408 ], [ -74.978831, 40.076893 ], [ -74.978918, 40.076693 ], [ -74.979101, 40.07631 ], [ -74.979345, 40.075798 ], [ -74.979861, 40.074706 ], [ -74.980334, 40.073718 ], [ -74.98058, 40.073204 ], [ -74.980947, 40.072442 ], [ -74.981154, 40.072016 ], [ -74.981262, 40.07206 ], [ -74.981338, 40.072101 ], [ -74.981402, 40.072139 ], [ -74.981408, 40.072143 ], [ -74.981468, 40.072185 ], [ -74.981836, 40.072479 ], [ -74.981896, 40.072523 ], [ -74.982541, 40.073001 ], [ -74.982689, 40.073118 ], [ -74.982895, 40.073274 ], [ -74.983173, 40.07347 ], [ -74.983458, 40.073661 ], [ -74.983753, 40.073843 ], [ -74.984059, 40.074016 ], [ -74.984625, 40.074326 ], [ -74.984957, 40.074506 ], [ -74.985031, 40.074546 ], [ -74.985237, 40.074658 ], [ -74.985584, 40.074833 ], [ -74.985845, 40.074953 ], [ -74.985967, 40.074999 ], [ -74.986226, 40.07508 ], [ -74.986612, 40.075222 ], [ -74.986809, 40.075302 ], [ -74.986969, 40.075381 ], [ -74.98709, 40.075452 ], [ -74.987119, 40.075469 ], [ -74.987265, 40.075565 ], [ -74.9874, 40.075671 ], [ -74.987566, 40.075818 ], [ -74.987612, 40.075778 ], [ -74.987653, 40.075744 ], [ -74.987749, 40.075674 ], [ -74.987887, 40.075581 ], [ -74.988439, 40.075232 ], [ -74.989275, 40.074698 ], [ -74.9891, 40.074535 ], [ -74.988919, 40.074366 ], [ -74.988697, 40.074152 ], [ -74.988509, 40.073952 ], [ -74.988424, 40.073854 ], [ -74.988297, 40.073684 ], [ -74.98819, 40.073532 ], [ -74.988092, 40.073366 ], [ -74.988019, 40.073228 ], [ -74.987935, 40.07306 ], [ -74.987865, 40.072907 ], [ -74.987782, 40.072654 ], [ -74.987726, 40.072416 ], [ -74.987696, 40.072255 ], [ -74.987679, 40.072116 ], [ -74.987669, 40.071906 ], [ -74.987675, 40.071726 ], [ -74.987681, 40.071608 ], [ -74.987721, 40.071124 ], [ -74.987747, 40.070783 ], [ -74.98776, 40.070631 ], [ -74.987777, 40.070464 ], [ -74.987802, 40.070316 ], [ -74.987838, 40.070105 ], [ -74.98804, 40.06917 ], [ -74.988332, 40.067941 ], [ -74.988353, 40.06785 ], [ -74.988363, 40.067795 ], [ -74.988417, 40.067561 ], [ -74.988464, 40.067273 ], [ -74.988475, 40.067172 ], [ -74.988479, 40.067083 ], [ -74.988475, 40.066976 ], [ -74.988466, 40.066869 ], [ -74.98845, 40.066747 ], [ -74.988429, 40.066648 ], [ -74.988389, 40.066511 ], [ -74.988343, 40.066393 ], [ -74.988277, 40.066274 ], [ -74.988203, 40.066165 ], [ -74.988141, 40.066078 ], [ -74.988051, 40.065971 ], [ -74.987963, 40.065878 ], [ -74.987879, 40.065799 ], [ -74.987774, 40.065711 ], [ -74.987611, 40.06558 ], [ -74.987365, 40.065382 ], [ -74.987177, 40.06523 ], [ -74.987078, 40.065155 ], [ -74.987001, 40.065087 ], [ -74.986922, 40.06501 ], [ -74.986837, 40.064918 ], [ -74.98552, 40.063379 ], [ -74.985736, 40.063249 ], [ -74.985985, 40.063098 ], [ -74.986312, 40.062903 ], [ -74.986639, 40.062706 ], [ -74.986927, 40.062534 ], [ -74.987027, 40.062474 ], [ -74.987116, 40.062418 ], [ -74.987248, 40.062335 ], [ -74.987478, 40.062194 ], [ -74.987791, 40.062003 ], [ -74.987972, 40.061893 ], [ -74.98837, 40.061651 ], [ -74.988552, 40.061538 ], [ -74.988922, 40.061318 ], [ -74.989078, 40.061222 ], [ -74.989623, 40.060894 ], [ -74.989961, 40.060689 ], [ -74.990427, 40.060396 ], [ -74.989832, 40.059868 ], [ -74.989368, 40.059463 ], [ -74.989277, 40.059384 ], [ -74.98906, 40.059189 ], [ -74.988832, 40.058987 ], [ -74.988019, 40.058268 ], [ -74.986858, 40.057237 ], [ -74.986755, 40.057142 ], [ -74.986302, 40.056729 ], [ -74.985755, 40.056249 ], [ -74.985392, 40.055926 ], [ -74.985295, 40.055841 ], [ -74.985002, 40.055577 ], [ -74.984742, 40.05534 ], [ -74.984651, 40.055267 ], [ -74.984612, 40.055231 ], [ -74.9845, 40.05513 ], [ -74.984315, 40.054963 ], [ -74.984124, 40.054806 ], [ -74.984049, 40.054742 ], [ -74.983987, 40.054673 ], [ -74.983937, 40.054596 ], [ -74.983892, 40.054497 ], [ -74.983841, 40.054334 ], [ -74.983809, 40.054255 ], [ -74.983772, 40.054196 ], [ -74.983722, 40.054131 ], [ -74.983508, 40.053895 ], [ -74.983306, 40.053652 ], [ -74.98326, 40.053595 ], [ -74.983023, 40.053322 ], [ -74.98274, 40.053018 ], [ -74.983229, 40.052717 ], [ -74.983281, 40.052686 ], [ -74.983633, 40.052477 ], [ -74.984159, 40.052164 ], [ -74.984518, 40.05195 ], [ -74.985165, 40.051549 ], [ -74.985389, 40.051423 ], [ -74.986345, 40.050841 ], [ -74.987805, 40.049957 ], [ -74.98823, 40.049701 ], [ -74.988681, 40.049424 ], [ -74.988951, 40.049263 ], [ -74.989248, 40.049084 ], [ -74.989422, 40.048974 ], [ -74.989522, 40.048911 ], [ -74.989586, 40.04891 ], [ -74.989609, 40.048906 ], [ -74.98964, 40.048894 ], [ -74.990014, 40.048671 ], [ -74.990423, 40.048428 ], [ -74.990534, 40.048362 ], [ -74.990921, 40.04813 ], [ -74.991044, 40.048051 ], [ -74.991074, 40.047996 ], [ -74.991484, 40.047754 ], [ -74.991913, 40.047494 ], [ -74.992413, 40.047194 ], [ -74.992798, 40.046965 ], [ -74.99319, 40.046739 ], [ -74.993814, 40.046381 ], [ -74.994277, 40.046116 ], [ -74.994744, 40.045849 ], [ -74.995269, 40.045553 ], [ -74.995415, 40.045471 ], [ -74.995663, 40.045331 ], [ -74.99573, 40.045292 ], [ -74.996526, 40.04482 ], [ -74.997258, 40.044388 ], [ -74.997936, 40.043986 ], [ -74.998372, 40.043732 ], [ -74.998714, 40.043544 ], [ -74.999336, 40.043203 ], [ -75.001444, 40.042063 ], [ -75.002344, 40.041587 ], [ -75.002977, 40.04125 ], [ -75.003203, 40.041129 ], [ -75.003442, 40.04099 ], [ -75.003908, 40.040701 ], [ -75.00411, 40.040572 ], [ -75.004455, 40.040352 ], [ -75.004532, 40.040309 ], [ -75.004857, 40.040124 ], [ -75.005094, 40.039996 ], [ -75.005105, 40.039991 ], [ -75.005316, 40.039879 ], [ -75.006423, 40.039299 ], [ -75.006816, 40.039107 ], [ -75.007235, 40.03891 ], [ -75.007553, 40.038771 ], [ -75.009924, 40.037707 ], [ -75.01068, 40.037365 ], [ -75.01077, 40.037321 ], [ -75.010938, 40.037241 ], [ -75.011332, 40.037054 ], [ -75.011869, 40.03677 ], [ -75.01215, 40.036614 ], [ -75.012332, 40.036517 ], [ -75.014624, 40.035232 ], [ -75.015093, 40.034977 ], [ -75.016325, 40.034289 ], [ -75.016778, 40.034036 ], [ -75.017165, 40.033821 ], [ -75.018037, 40.033335 ], [ -75.019133, 40.032717 ], [ -75.019318, 40.032612 ], [ -75.019775, 40.032354 ], [ -75.019947, 40.032256 ], [ -75.020138, 40.032147 ], [ -75.020562, 40.031904 ], [ -75.021181, 40.031562 ], [ -75.021263, 40.031513 ], [ -75.021316, 40.031483 ], [ -75.021596, 40.031352 ], [ -75.021767, 40.031251 ], [ -75.022084, 40.031592 ], [ -75.022095, 40.031604 ], [ -75.022457, 40.031974 ], [ -75.022572, 40.032091 ], [ -75.022649, 40.032176 ], [ -75.022705, 40.032235 ], [ -75.022772, 40.032295 ], [ -75.022909, 40.032419 ], [ -75.023018, 40.03252 ], [ -75.023195, 40.032683 ], [ -75.023405, 40.032893 ], [ -75.023631, 40.033117 ], [ -75.023783, 40.033276 ], [ -75.023902, 40.033407 ], [ -75.024008, 40.033522 ], [ -75.024075, 40.033605 ], [ -75.024121, 40.033677 ], [ -75.024149, 40.033726 ], [ -75.024182, 40.033788 ], [ -75.024231, 40.033867 ], [ -75.024304, 40.033983 ], [ -75.024514, 40.034306 ], [ -75.024725, 40.034625 ], [ -75.024821, 40.034769 ], [ -75.025157, 40.0353 ], [ -75.025595, 40.035073 ], [ -75.025903, 40.034913 ], [ -75.02628, 40.034718 ], [ -75.02654, 40.034583 ], [ -75.026819, 40.034438 ], [ -75.027071, 40.034301 ], [ -75.02739, 40.034137 ], [ -75.02771, 40.033975 ], [ -75.027993, 40.033831 ], [ -75.028247, 40.033698 ], [ -75.028517, 40.033558 ], [ -75.028804, 40.033409 ], [ -75.029127, 40.033243 ], [ -75.029748, 40.032923 ], [ -75.030295, 40.032641 ], [ -75.030909, 40.032323 ], [ -75.03145, 40.032039 ], [ -75.031939, 40.03179 ], [ -75.032454, 40.031518 ], [ -75.033043, 40.031223 ], [ -75.03358, 40.030943 ], [ -75.033875, 40.030787 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.035811, 40.029792 ], [ -75.03667, 40.029347 ], [ -75.037756, 40.02878 ], [ -75.037893, 40.028711 ], [ -75.03791, 40.0287 ], [ -75.038134, 40.028573 ], [ -75.03816, 40.028558 ], [ -75.038328, 40.028469 ], [ -75.038907, 40.028177 ], [ -75.038649, 40.027888 ], [ -75.03845, 40.027667 ], [ -75.038029, 40.027187 ], [ -75.037585, 40.026683 ], [ -75.037371, 40.02644 ], [ -75.037134, 40.026174 ], [ -75.036693, 40.025653 ], [ -75.036457, 40.025363 ], [ -75.036391, 40.025287 ], [ -75.036302, 40.025172 ], [ -75.036202, 40.02505 ], [ -75.036155, 40.024992 ], [ -75.036073, 40.024881 ], [ -75.035825, 40.024564 ], [ -75.035604, 40.024273 ], [ -75.035378, 40.023964 ], [ -75.035637, 40.023838 ], [ -75.03578, 40.023773 ], [ -75.036152, 40.023611 ], [ -75.036497, 40.023461 ], [ -75.03675, 40.023351 ], [ -75.036853, 40.023301 ], [ -75.036959, 40.02325 ], [ -75.037052, 40.023201 ], [ -75.03716, 40.023131 ], [ -75.037264, 40.023056 ], [ -75.037326, 40.022994 ], [ -75.037414, 40.022903 ], [ -75.03748, 40.022817 ], [ -75.037528, 40.022729 ], [ -75.037568, 40.022634 ], [ -75.037594, 40.022529 ], [ -75.037609, 40.022464 ], [ -75.037664, 40.022275 ], [ -75.037699, 40.022189 ], [ -75.037716, 40.022147 ], [ -75.037734, 40.022104 ], [ -75.037763, 40.022037 ], [ -75.037814, 40.021933 ], [ -75.037849, 40.021879 ], [ -75.037911, 40.0218 ], [ -75.038009, 40.021695 ], [ -75.038103, 40.021615 ], [ -75.038192, 40.021563 ], [ -75.038512, 40.021407 ], [ -75.038922, 40.021228 ], [ -75.039474, 40.020979 ], [ -75.039708, 40.020875 ], [ -75.040193, 40.020661 ], [ -75.040622, 40.020472 ], [ -75.041281, 40.020187 ], [ -75.041365, 40.020159 ], [ -75.041512, 40.020129 ], [ -75.041654, 40.020115 ], [ -75.041812, 40.020106 ], [ -75.041955, 40.020106 ], [ -75.042456, 40.020106 ], [ -75.04269, 40.020106 ], [ -75.042811, 40.0201 ], [ -75.042931, 40.020089 ], [ -75.043015, 40.020078 ], [ -75.043106, 40.02006 ], [ -75.043194, 40.020038 ], [ -75.043294, 40.020001 ], [ -75.043362, 40.01997 ], [ -75.043388, 40.019957 ], [ -75.044003, 40.019658 ], [ -75.044448, 40.019434 ], [ -75.044764, 40.019276 ], [ -75.044816, 40.019248 ], [ -75.045239, 40.019061 ], [ -75.045346, 40.019014 ], [ -75.045923, 40.018794 ], [ -75.04606, 40.018735 ], [ -75.04616, 40.018688 ], [ -75.046298, 40.018614 ], [ -75.046384, 40.018567 ], [ -75.046465, 40.018522 ], [ -75.046727, 40.018376 ], [ -75.046793, 40.018339 ], [ -75.047035, 40.018194 ], [ -75.047083, 40.018141 ], [ -75.047103, 40.018108 ], [ -75.047127, 40.018072 ], [ -75.047146, 40.018028 ], [ -75.047157, 40.017987 ], [ -75.047158, 40.017939 ], [ -75.047156, 40.017908 ], [ -75.047147, 40.017869 ], [ -75.047133, 40.017827 ], [ -75.047106, 40.017779 ], [ -75.046949, 40.01758 ], [ -75.046878, 40.017489 ], [ -75.046673, 40.017258 ], [ -75.046427, 40.016977 ], [ -75.046377, 40.016921 ], [ -75.046337, 40.016856 ], [ -75.046312, 40.016788 ], [ -75.046303, 40.016717 ], [ -75.046306, 40.016647 ], [ -75.046326, 40.016577 ], [ -75.046363, 40.016514 ], [ -75.046416, 40.016451 ], [ -75.046493, 40.016386 ], [ -75.046531, 40.016359 ], [ -75.046602, 40.01631 ], [ -75.046666, 40.016273 ], [ -75.046743, 40.016227 ], [ -75.046894, 40.016152 ], [ -75.047027, 40.016103 ], [ -75.047169, 40.016062 ], [ -75.047244, 40.016042 ], [ -75.047347, 40.016025 ], [ -75.047448, 40.016017 ], [ -75.047546, 40.016014 ], [ -75.047656, 40.016017 ], [ -75.047767, 40.016024 ], [ -75.047843, 40.016031 ], [ -75.047957, 40.016047 ], [ -75.048054, 40.016069 ], [ -75.048133, 40.016093 ], [ -75.048206, 40.016118 ], [ -75.048309, 40.016161 ], [ -75.048379, 40.016196 ], [ -75.048467, 40.016241 ], [ -75.048555, 40.016293 ], [ -75.04858, 40.01631 ], [ -75.048623, 40.01634 ], [ -75.048705, 40.016399 ], [ -75.048983, 40.016602 ], [ -75.049213, 40.016739 ], [ -75.049273, 40.016774 ], [ -75.049342, 40.016805 ], [ -75.049432, 40.016836 ], [ -75.049486, 40.016849 ], [ -75.049574, 40.016864 ], [ -75.049877, 40.016734 ], [ -75.049966, 40.016732 ], [ -75.050305, 40.016577 ], [ -75.051345, 40.016024 ], [ -75.052253, 40.015578 ], [ -75.052624, 40.015409 ], [ -75.0537, 40.014951 ], [ -75.053834, 40.01489 ], [ -75.054, 40.014809 ], [ -75.055947, 40.013827 ], [ -75.056474, 40.013549 ], [ -75.05664, 40.013469 ], [ -75.057776, 40.012814 ], [ -75.05793, 40.012726 ], [ -75.058441, 40.012435 ], [ -75.05864, 40.01233 ], [ -75.058725, 40.012281 ], [ -75.058833, 40.012214 ], [ -75.059575, 40.011762 ], [ -75.06064, 40.011106 ], [ -75.060722, 40.011055 ], [ -75.061056, 40.010858 ], [ -75.061857, 40.010383 ], [ -75.061999, 40.010304 ], [ -75.062089, 40.010256 ], [ -75.062189, 40.010208 ], [ -75.062298, 40.010166 ], [ -75.062379, 40.010143 ], [ -75.062516, 40.0101 ], [ -75.063154, 40.009898 ], [ -75.064118, 40.009589 ], [ -75.064529, 40.009464 ], [ -75.065126, 40.009275 ], [ -75.065663, 40.009115 ], [ -75.065884, 40.009041 ], [ -75.06602, 40.009003 ], [ -75.06613, 40.008987 ], [ -75.068165, 40.008714 ], [ -75.068418, 40.008691 ], [ -75.068845, 40.008654 ], [ -75.068868, 40.008753 ], [ -75.068897, 40.008838 ], [ -75.068912, 40.008891 ], [ -75.06894, 40.00897 ], [ -75.068976, 40.009084 ], [ -75.06904, 40.009283 ], [ -75.069285, 40.010078 ], [ -75.069324, 40.010221 ], [ -75.069357, 40.010412 ], [ -75.069418, 40.010497 ], [ -75.069448, 40.010595 ], [ -75.069473, 40.010669 ], [ -75.06952, 40.010798 ], [ -75.06966, 40.011171 ], [ -75.069803, 40.011516 ], [ -75.069865, 40.01166 ], [ -75.069929, 40.011834 ], [ -75.069999, 40.012021 ], [ -75.070433, 40.013176 ], [ -75.070881, 40.014347 ], [ -75.070978, 40.014596 ], [ -75.071067, 40.014841 ], [ -75.071227, 40.015277 ], [ -75.071304, 40.015465 ], [ -75.071463, 40.015924 ], [ -75.071655, 40.016428 ], [ -75.071852, 40.016945 ], [ -75.072083, 40.017542 ], [ -75.072181, 40.017812 ], [ -75.072278, 40.018082 ], [ -75.07239, 40.018369 ], [ -75.072502, 40.018643 ], [ -75.072544, 40.01875 ], [ -75.072555, 40.018778 ], [ -75.072592, 40.018848 ], [ -75.072643, 40.018912 ], [ -75.072676, 40.018943 ], [ -75.072785, 40.019043 ], [ -75.072918, 40.019161 ], [ -75.073105, 40.019327 ], [ -75.073148, 40.019366 ], [ -75.073186, 40.019408 ], [ -75.073214, 40.019442 ], [ -75.073376, 40.019639 ], [ -75.073634, 40.019946 ], [ -75.073811, 40.020156 ], [ -75.07386, 40.020213 ], [ -75.07409, 40.020491 ], [ -75.074304, 40.020739 ], [ -75.074432, 40.02089 ], [ -75.07448, 40.020945 ], [ -75.074593, 40.021082 ], [ -75.074691, 40.021198 ], [ -75.074859, 40.021386 ], [ -75.074998, 40.021525 ], [ -75.07533, 40.021837 ], [ -75.075698, 40.022175 ], [ -75.076058, 40.022521 ], [ -75.076836, 40.023246 ], [ -75.07685, 40.023261 ], [ -75.076522, 40.023478 ], [ -75.075993, 40.023835 ], [ -75.075729, 40.024015 ], [ -75.075682, 40.024044 ], [ -75.075644, 40.024066 ], [ -75.075527, 40.024135 ], [ -75.075189, 40.024339 ], [ -75.07421, 40.024927 ], [ -75.0739, 40.025112 ], [ -75.07367, 40.025241 ], [ -75.073563, 40.025293 ], [ -75.073482, 40.02533 ], [ -75.073379, 40.025371 ], [ -75.073849, 40.025788 ], [ -75.074165, 40.026052 ], [ -75.074983, 40.026686 ], [ -75.075205, 40.026877 ], [ -75.075324, 40.026975 ], [ -75.075401, 40.027017 ], [ -75.075454, 40.027038 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.07651, 40.025667 ], [ -75.076529, 40.025611 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076623, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076736, 40.024539 ], [ -75.076776, 40.024262 ], [ -75.076794, 40.024107 ], [ -75.076915, 40.023795 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308038", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.96452, 40.08584 ], [ -74.964652, 40.086546 ], [ -74.964659, 40.086648 ], [ -74.96468, 40.086971 ], [ -74.964677, 40.087207 ], [ -74.964632, 40.087688 ], [ -74.96458, 40.087877 ], [ -74.964533, 40.087993 ], [ -74.965633, 40.088094 ], [ -74.965598, 40.088193 ], [ -74.96557, 40.088269 ], [ -74.965547, 40.088322 ], [ -74.965515, 40.08838 ], [ -74.965476, 40.088446 ], [ -74.965419, 40.08853 ], [ -74.965352, 40.088626 ], [ -74.965294, 40.088716 ], [ -74.965218, 40.088822 ], [ -74.96491, 40.08925 ], [ -74.964828, 40.089357 ], [ -74.964734, 40.089504 ], [ -74.964663, 40.089645 ], [ -74.964615, 40.089783 ], [ -74.964589, 40.089915 ], [ -74.96458, 40.090052 ], [ -74.964587, 40.090188 ], [ -74.964606, 40.090323 ], [ -74.964635, 40.090441 ], [ -74.96467, 40.090571 ], [ -74.964696, 40.090644 ], [ -74.96472, 40.09071 ], [ -74.964775, 40.090799 ], [ -74.964817, 40.090857 ], [ -74.964901, 40.090966 ], [ -74.964995, 40.091066 ], [ -74.965359, 40.09138 ], [ -74.965493, 40.091504 ], [ -74.965583, 40.091591 ], [ -74.965612, 40.091623 ], [ -74.965662, 40.09167 ], [ -74.965746, 40.091621 ], [ -74.965898, 40.091518 ], [ -74.966433, 40.091142 ], [ -74.966725, 40.090938 ], [ -74.967424, 40.090444 ], [ -74.968051, 40.090001 ], [ -74.969083, 40.08927 ], [ -74.969479, 40.089 ], [ -74.969569, 40.088936 ], [ -74.970469, 40.088288 ], [ -74.970505, 40.088259 ], [ -74.970713, 40.088096 ], [ -74.970776, 40.088055 ], [ -74.971262, 40.087633 ], [ -74.971435, 40.087437 ], [ -74.971524, 40.08734 ], [ -74.9716, 40.08726 ], [ -74.971638, 40.087216 ], [ -74.971814, 40.087033 ], [ -74.971886, 40.08696 ], [ -74.971954, 40.086887 ], [ -74.971999, 40.086832 ], [ -74.972055, 40.086763 ], [ -74.972359, 40.08636 ], [ -74.972648, 40.085977 ], [ -74.972683, 40.085932 ], [ -74.973063, 40.085437 ], [ -74.973094, 40.085396 ], [ -74.973415, 40.084983 ], [ -74.97352, 40.084849 ], [ -74.973772, 40.084523 ], [ -74.974043, 40.084171 ], [ -74.974359, 40.083763 ], [ -74.974674, 40.083352 ], [ -74.974846, 40.083134 ], [ -74.975033, 40.082893 ], [ -74.975619, 40.082136 ], [ -74.975718, 40.082014 ], [ -74.975828, 40.081888 ], [ -74.975911, 40.081803 ], [ -74.975974, 40.08174 ], [ -74.976289, 40.081441 ], [ -74.97658, 40.081165 ], [ -74.976685, 40.081065 ], [ -74.977032, 40.08074 ], [ -74.977156, 40.080608 ], [ -74.977246, 40.0805 ], [ -74.97733, 40.080394 ], [ -74.977417, 40.080273 ], [ -74.977541, 40.080079 ], [ -74.977651, 40.079881 ], [ -74.977745, 40.079679 ], [ -74.977824, 40.079471 ], [ -74.977918, 40.079208 ], [ -74.978239, 40.078312 ], [ -74.978281, 40.078204 ], [ -74.978411, 40.077898 ], [ -74.978588, 40.07747 ], [ -74.97861, 40.077408 ], [ -74.978831, 40.076893 ], [ -74.978918, 40.076693 ], [ -74.979101, 40.07631 ], [ -74.979345, 40.075798 ], [ -74.979861, 40.074706 ], [ -74.980334, 40.073718 ], [ -74.98058, 40.073204 ], [ -74.980947, 40.072442 ], [ -74.981154, 40.072016 ], [ -74.981262, 40.07206 ], [ -74.981338, 40.072101 ], [ -74.981402, 40.072139 ], [ -74.981408, 40.072143 ], [ -74.981468, 40.072185 ], [ -74.981836, 40.072479 ], [ -74.981896, 40.072523 ], [ -74.982541, 40.073001 ], [ -74.982689, 40.073118 ], [ -74.982895, 40.073274 ], [ -74.983173, 40.07347 ], [ -74.983458, 40.073661 ], [ -74.983753, 40.073843 ], [ -74.984059, 40.074016 ], [ -74.984625, 40.074326 ], [ -74.984957, 40.074506 ], [ -74.985031, 40.074546 ], [ -74.985237, 40.074658 ], [ -74.985584, 40.074833 ], [ -74.985845, 40.074953 ], [ -74.985967, 40.074999 ], [ -74.986226, 40.07508 ], [ -74.986612, 40.075222 ], [ -74.986809, 40.075302 ], [ -74.986969, 40.075381 ], [ -74.98709, 40.075452 ], [ -74.987119, 40.075469 ], [ -74.987265, 40.075565 ], [ -74.9874, 40.075671 ], [ -74.987566, 40.075818 ], [ -74.987612, 40.075778 ], [ -74.987653, 40.075744 ], [ -74.987749, 40.075674 ], [ -74.987887, 40.075581 ], [ -74.988439, 40.075232 ], [ -74.989275, 40.074698 ], [ -74.9891, 40.074535 ], [ -74.988919, 40.074366 ], [ -74.988697, 40.074152 ], [ -74.988509, 40.073952 ], [ -74.988424, 40.073854 ], [ -74.988297, 40.073684 ], [ -74.98819, 40.073532 ], [ -74.988092, 40.073366 ], [ -74.988019, 40.073228 ], [ -74.987935, 40.07306 ], [ -74.987865, 40.072907 ], [ -74.987782, 40.072654 ], [ -74.987726, 40.072416 ], [ -74.987696, 40.072255 ], [ -74.987679, 40.072116 ], [ -74.987669, 40.071906 ], [ -74.987675, 40.071726 ], [ -74.987681, 40.071608 ], [ -74.987721, 40.071124 ], [ -74.987747, 40.070783 ], [ -74.98776, 40.070631 ], [ -74.987777, 40.070464 ], [ -74.987802, 40.070316 ], [ -74.987838, 40.070105 ], [ -74.98804, 40.06917 ], [ -74.988332, 40.067941 ], [ -74.988353, 40.06785 ], [ -74.988363, 40.067795 ], [ -74.988417, 40.067561 ], [ -74.988464, 40.067273 ], [ -74.988475, 40.067172 ], [ -74.988479, 40.067083 ], [ -74.988475, 40.066976 ], [ -74.988466, 40.066869 ], [ -74.98845, 40.066747 ], [ -74.988429, 40.066648 ], [ -74.988389, 40.066511 ], [ -74.988343, 40.066393 ], [ -74.988277, 40.066274 ], [ -74.988203, 40.066165 ], [ -74.988141, 40.066078 ], [ -74.988051, 40.065971 ], [ -74.987963, 40.065878 ], [ -74.987879, 40.065799 ], [ -74.987774, 40.065711 ], [ -74.987611, 40.06558 ], [ -74.987365, 40.065382 ], [ -74.987177, 40.06523 ], [ -74.987078, 40.065155 ], [ -74.987001, 40.065087 ], [ -74.986922, 40.06501 ], [ -74.986837, 40.064918 ], [ -74.98552, 40.063379 ], [ -74.985736, 40.063249 ], [ -74.985985, 40.063098 ], [ -74.986312, 40.062903 ], [ -74.986639, 40.062706 ], [ -74.986927, 40.062534 ], [ -74.987027, 40.062474 ], [ -74.987116, 40.062418 ], [ -74.987248, 40.062335 ], [ -74.987478, 40.062194 ], [ -74.987791, 40.062003 ], [ -74.987972, 40.061893 ], [ -74.98837, 40.061651 ], [ -74.988552, 40.061538 ], [ -74.988922, 40.061318 ], [ -74.989078, 40.061222 ], [ -74.989623, 40.060894 ], [ -74.989961, 40.060689 ], [ -74.990427, 40.060396 ], [ -74.989832, 40.059868 ], [ -74.989368, 40.059463 ], [ -74.989277, 40.059384 ], [ -74.98906, 40.059189 ], [ -74.988832, 40.058987 ], [ -74.988019, 40.058268 ], [ -74.986858, 40.057237 ], [ -74.986755, 40.057142 ], [ -74.986302, 40.056729 ], [ -74.985755, 40.056249 ], [ -74.985392, 40.055926 ], [ -74.985295, 40.055841 ], [ -74.985002, 40.055577 ], [ -74.984742, 40.05534 ], [ -74.984651, 40.055267 ], [ -74.984612, 40.055231 ], [ -74.9845, 40.05513 ], [ -74.984315, 40.054963 ], [ -74.984124, 40.054806 ], [ -74.984049, 40.054742 ], [ -74.983987, 40.054673 ], [ -74.983937, 40.054596 ], [ -74.983892, 40.054497 ], [ -74.983841, 40.054334 ], [ -74.983809, 40.054255 ], [ -74.983772, 40.054196 ], [ -74.983722, 40.054131 ], [ -74.983508, 40.053895 ], [ -74.983306, 40.053652 ], [ -74.98326, 40.053595 ], [ -74.983023, 40.053322 ], [ -74.98274, 40.053018 ], [ -74.983229, 40.052717 ], [ -74.983281, 40.052686 ], [ -74.983633, 40.052477 ], [ -74.984159, 40.052164 ], [ -74.984518, 40.05195 ], [ -74.985165, 40.051549 ], [ -74.985389, 40.051423 ], [ -74.986345, 40.050841 ], [ -74.987805, 40.049957 ], [ -74.98823, 40.049701 ], [ -74.988681, 40.049424 ], [ -74.988951, 40.049263 ], [ -74.989248, 40.049084 ], [ -74.989422, 40.048974 ], [ -74.989522, 40.048911 ], [ -74.989586, 40.04891 ], [ -74.989609, 40.048906 ], [ -74.98964, 40.048894 ], [ -74.990014, 40.048671 ], [ -74.990423, 40.048428 ], [ -74.990534, 40.048362 ], [ -74.990921, 40.04813 ], [ -74.991044, 40.048051 ], [ -74.991074, 40.047996 ], [ -74.991484, 40.047754 ], [ -74.991913, 40.047494 ], [ -74.992413, 40.047194 ], [ -74.992798, 40.046965 ], [ -74.99319, 40.046739 ], [ -74.993814, 40.046381 ], [ -74.994277, 40.046116 ], [ -74.994744, 40.045849 ], [ -74.995269, 40.045553 ], [ -74.995415, 40.045471 ], [ -74.995663, 40.045331 ], [ -74.99573, 40.045292 ], [ -74.996526, 40.04482 ], [ -74.997258, 40.044388 ], [ -74.997936, 40.043986 ], [ -74.998372, 40.043732 ], [ -74.998714, 40.043544 ], [ -74.999336, 40.043203 ], [ -75.001444, 40.042063 ], [ -75.002344, 40.041587 ], [ -75.002977, 40.04125 ], [ -75.003203, 40.041129 ], [ -75.003442, 40.04099 ], [ -75.003908, 40.040701 ], [ -75.00411, 40.040572 ], [ -75.004455, 40.040352 ], [ -75.004532, 40.040309 ], [ -75.004857, 40.040124 ], [ -75.005094, 40.039996 ], [ -75.005105, 40.039991 ], [ -75.005316, 40.039879 ], [ -75.006423, 40.039299 ], [ -75.006816, 40.039107 ], [ -75.007235, 40.03891 ], [ -75.007553, 40.038771 ], [ -75.009924, 40.037707 ], [ -75.01068, 40.037365 ], [ -75.01077, 40.037321 ], [ -75.010938, 40.037241 ], [ -75.011332, 40.037054 ], [ -75.011869, 40.03677 ], [ -75.01215, 40.036614 ], [ -75.012332, 40.036517 ], [ -75.014624, 40.035232 ], [ -75.015093, 40.034977 ], [ -75.016325, 40.034289 ], [ -75.016778, 40.034036 ], [ -75.017165, 40.033821 ], [ -75.018037, 40.033335 ], [ -75.019133, 40.032717 ], [ -75.019318, 40.032612 ], [ -75.019775, 40.032354 ], [ -75.019947, 40.032256 ], [ -75.020138, 40.032147 ], [ -75.020562, 40.031904 ], [ -75.021181, 40.031562 ], [ -75.021263, 40.031513 ], [ -75.021316, 40.031483 ], [ -75.021596, 40.031352 ], [ -75.021767, 40.031251 ], [ -75.022084, 40.031592 ], [ -75.022095, 40.031604 ], [ -75.022457, 40.031974 ], [ -75.022572, 40.032091 ], [ -75.022649, 40.032176 ], [ -75.022705, 40.032235 ], [ -75.022772, 40.032295 ], [ -75.022909, 40.032419 ], [ -75.023018, 40.03252 ], [ -75.023195, 40.032683 ], [ -75.023405, 40.032893 ], [ -75.023631, 40.033117 ], [ -75.023783, 40.033276 ], [ -75.023902, 40.033407 ], [ -75.024008, 40.033522 ], [ -75.024075, 40.033605 ], [ -75.024121, 40.033677 ], [ -75.024149, 40.033726 ], [ -75.024182, 40.033788 ], [ -75.024231, 40.033867 ], [ -75.024304, 40.033983 ], [ -75.024514, 40.034306 ], [ -75.024725, 40.034625 ], [ -75.024821, 40.034769 ], [ -75.025157, 40.0353 ], [ -75.025595, 40.035073 ], [ -75.025903, 40.034913 ], [ -75.02628, 40.034718 ], [ -75.02654, 40.034583 ], [ -75.026819, 40.034438 ], [ -75.027071, 40.034301 ], [ -75.02739, 40.034137 ], [ -75.02771, 40.033975 ], [ -75.027993, 40.033831 ], [ -75.028247, 40.033698 ], [ -75.028517, 40.033558 ], [ -75.028804, 40.033409 ], [ -75.029127, 40.033243 ], [ -75.029748, 40.032923 ], [ -75.030295, 40.032641 ], [ -75.030909, 40.032323 ], [ -75.03145, 40.032039 ], [ -75.031939, 40.03179 ], [ -75.032454, 40.031518 ], [ -75.033043, 40.031223 ], [ -75.03358, 40.030943 ], [ -75.033875, 40.030787 ], [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.035811, 40.029792 ], [ -75.03667, 40.029347 ], [ -75.037756, 40.02878 ], [ -75.037893, 40.028711 ], [ -75.03791, 40.0287 ], [ -75.038134, 40.028573 ], [ -75.03816, 40.028558 ], [ -75.038328, 40.028469 ], [ -75.038907, 40.028177 ], [ -75.038649, 40.027888 ], [ -75.03845, 40.027667 ], [ -75.038029, 40.027187 ], [ -75.037585, 40.026683 ], [ -75.037371, 40.02644 ], [ -75.037134, 40.026174 ], [ -75.036693, 40.025653 ], [ -75.036457, 40.025363 ], [ -75.036391, 40.025287 ], [ -75.036302, 40.025172 ], [ -75.036202, 40.02505 ], [ -75.036155, 40.024992 ], [ -75.036073, 40.024881 ], [ -75.035825, 40.024564 ], [ -75.035604, 40.024273 ], [ -75.035378, 40.023964 ], [ -75.035637, 40.023838 ], [ -75.03578, 40.023773 ], [ -75.036152, 40.023611 ], [ -75.036497, 40.023461 ], [ -75.03675, 40.023351 ], [ -75.036853, 40.023301 ], [ -75.036959, 40.02325 ], [ -75.037052, 40.023201 ], [ -75.03716, 40.023131 ], [ -75.037264, 40.023056 ], [ -75.037326, 40.022994 ], [ -75.037414, 40.022903 ], [ -75.03748, 40.022817 ], [ -75.037528, 40.022729 ], [ -75.037568, 40.022634 ], [ -75.037594, 40.022529 ], [ -75.037609, 40.022464 ], [ -75.037664, 40.022275 ], [ -75.037699, 40.022189 ], [ -75.037716, 40.022147 ], [ -75.037734, 40.022104 ], [ -75.037763, 40.022037 ], [ -75.037814, 40.021933 ], [ -75.037849, 40.021879 ], [ -75.037911, 40.0218 ], [ -75.038009, 40.021695 ], [ -75.038103, 40.021615 ], [ -75.038192, 40.021563 ], [ -75.038512, 40.021407 ], [ -75.038922, 40.021228 ], [ -75.039474, 40.020979 ], [ -75.039708, 40.020875 ], [ -75.040193, 40.020661 ], [ -75.040622, 40.020472 ], [ -75.041281, 40.020187 ], [ -75.041365, 40.020159 ], [ -75.041512, 40.020129 ], [ -75.041654, 40.020115 ], [ -75.041812, 40.020106 ], [ -75.041955, 40.020106 ], [ -75.042456, 40.020106 ], [ -75.04269, 40.020106 ], [ -75.042811, 40.0201 ], [ -75.042931, 40.020089 ], [ -75.043015, 40.020078 ], [ -75.043106, 40.02006 ], [ -75.043194, 40.020038 ], [ -75.043294, 40.020001 ], [ -75.043362, 40.01997 ], [ -75.043388, 40.019957 ], [ -75.044003, 40.019658 ], [ -75.044448, 40.019434 ], [ -75.044764, 40.019276 ], [ -75.044816, 40.019248 ], [ -75.045239, 40.019061 ], [ -75.045346, 40.019014 ], [ -75.045923, 40.018794 ], [ -75.04606, 40.018735 ], [ -75.04616, 40.018688 ], [ -75.046298, 40.018614 ], [ -75.046384, 40.018567 ], [ -75.046465, 40.018522 ], [ -75.046727, 40.018376 ], [ -75.046793, 40.018339 ], [ -75.047035, 40.018194 ], [ -75.047083, 40.018141 ], [ -75.047103, 40.018108 ], [ -75.047127, 40.018072 ], [ -75.047146, 40.018028 ], [ -75.047157, 40.017987 ], [ -75.047158, 40.017939 ], [ -75.047156, 40.017908 ], [ -75.047147, 40.017869 ], [ -75.047133, 40.017827 ], [ -75.047106, 40.017779 ], [ -75.046949, 40.01758 ], [ -75.046878, 40.017489 ], [ -75.046673, 40.017258 ], [ -75.046427, 40.016977 ], [ -75.046377, 40.016921 ], [ -75.046337, 40.016856 ], [ -75.046312, 40.016788 ], [ -75.046303, 40.016717 ], [ -75.046306, 40.016647 ], [ -75.046326, 40.016577 ], [ -75.046363, 40.016514 ], [ -75.046416, 40.016451 ], [ -75.046493, 40.016386 ], [ -75.046531, 40.016359 ], [ -75.046602, 40.01631 ], [ -75.046666, 40.016273 ], [ -75.046743, 40.016227 ], [ -75.046894, 40.016152 ], [ -75.047027, 40.016103 ], [ -75.047169, 40.016062 ], [ -75.047244, 40.016042 ], [ -75.047347, 40.016025 ], [ -75.047448, 40.016017 ], [ -75.047546, 40.016014 ], [ -75.047656, 40.016017 ], [ -75.047767, 40.016024 ], [ -75.047843, 40.016031 ], [ -75.047957, 40.016047 ], [ -75.048054, 40.016069 ], [ -75.048133, 40.016093 ], [ -75.048206, 40.016118 ], [ -75.048309, 40.016161 ], [ -75.048379, 40.016196 ], [ -75.048467, 40.016241 ], [ -75.048555, 40.016293 ], [ -75.04858, 40.01631 ], [ -75.048623, 40.01634 ], [ -75.048705, 40.016399 ], [ -75.048983, 40.016602 ], [ -75.049213, 40.016739 ], [ -75.049273, 40.016774 ], [ -75.049342, 40.016805 ], [ -75.049432, 40.016836 ], [ -75.049486, 40.016849 ], [ -75.049574, 40.016864 ], [ -75.049877, 40.016734 ], [ -75.049966, 40.016732 ], [ -75.050305, 40.016577 ], [ -75.051345, 40.016024 ], [ -75.052253, 40.015578 ], [ -75.052624, 40.015409 ], [ -75.0537, 40.014951 ], [ -75.053834, 40.01489 ], [ -75.054, 40.014809 ], [ -75.055947, 40.013827 ], [ -75.056474, 40.013549 ], [ -75.05664, 40.013469 ], [ -75.057776, 40.012814 ], [ -75.05793, 40.012726 ], [ -75.058441, 40.012435 ], [ -75.05864, 40.01233 ], [ -75.058725, 40.012281 ], [ -75.058833, 40.012214 ], [ -75.059575, 40.011762 ], [ -75.06064, 40.011106 ], [ -75.060722, 40.011055 ], [ -75.061056, 40.010858 ], [ -75.061857, 40.010383 ], [ -75.061999, 40.010304 ], [ -75.062089, 40.010256 ], [ -75.062189, 40.010208 ], [ -75.062298, 40.010166 ], [ -75.062379, 40.010143 ], [ -75.062516, 40.0101 ], [ -75.063154, 40.009898 ], [ -75.064118, 40.009589 ], [ -75.064529, 40.009464 ], [ -75.065126, 40.009275 ], [ -75.065663, 40.009115 ], [ -75.065884, 40.009041 ], [ -75.06602, 40.009003 ], [ -75.06613, 40.008987 ], [ -75.068165, 40.008714 ], [ -75.068418, 40.008691 ], [ -75.068845, 40.008654 ], [ -75.068868, 40.008753 ], [ -75.068897, 40.008838 ], [ -75.068912, 40.008891 ], [ -75.06894, 40.00897 ], [ -75.068976, 40.009084 ], [ -75.06904, 40.009283 ], [ -75.069285, 40.010078 ], [ -75.069324, 40.010221 ], [ -75.069357, 40.010412 ], [ -75.069418, 40.010497 ], [ -75.069448, 40.010595 ], [ -75.069473, 40.010669 ], [ -75.06952, 40.010798 ], [ -75.06966, 40.011171 ], [ -75.069803, 40.011516 ], [ -75.069865, 40.01166 ], [ -75.069929, 40.011834 ], [ -75.069999, 40.012021 ], [ -75.070433, 40.013176 ], [ -75.070881, 40.014347 ], [ -75.070978, 40.014596 ], [ -75.071067, 40.014841 ], [ -75.071227, 40.015277 ], [ -75.071304, 40.015465 ], [ -75.071463, 40.015924 ], [ -75.071655, 40.016428 ], [ -75.071852, 40.016945 ], [ -75.072083, 40.017542 ], [ -75.072181, 40.017812 ], [ -75.072278, 40.018082 ], [ -75.07239, 40.018369 ], [ -75.072502, 40.018643 ], [ -75.072544, 40.01875 ], [ -75.072555, 40.018778 ], [ -75.072592, 40.018848 ], [ -75.072643, 40.018912 ], [ -75.072676, 40.018943 ], [ -75.072785, 40.019043 ], [ -75.072918, 40.019161 ], [ -75.073105, 40.019327 ], [ -75.073148, 40.019366 ], [ -75.073186, 40.019408 ], [ -75.073214, 40.019442 ], [ -75.073376, 40.019639 ], [ -75.073634, 40.019946 ], [ -75.073811, 40.020156 ], [ -75.07386, 40.020213 ], [ -75.07409, 40.020491 ], [ -75.074304, 40.020739 ], [ -75.074432, 40.02089 ], [ -75.07448, 40.020945 ], [ -75.074593, 40.021082 ], [ -75.074691, 40.021198 ], [ -75.074859, 40.021386 ], [ -75.074998, 40.021525 ], [ -75.07533, 40.021837 ], [ -75.075698, 40.022175 ], [ -75.076058, 40.022521 ], [ -75.076836, 40.023246 ], [ -75.07685, 40.023261 ], [ -75.076522, 40.023478 ], [ -75.075993, 40.023835 ], [ -75.075729, 40.024015 ], [ -75.075682, 40.024044 ], [ -75.075644, 40.024066 ], [ -75.075527, 40.024135 ], [ -75.075189, 40.024339 ], [ -75.07421, 40.024927 ], [ -75.0739, 40.025112 ], [ -75.07367, 40.025241 ], [ -75.073563, 40.025293 ], [ -75.073482, 40.02533 ], [ -75.073379, 40.025371 ], [ -75.073849, 40.025788 ], [ -75.074165, 40.026052 ], [ -75.074983, 40.026686 ], [ -75.075205, 40.026877 ], [ -75.075324, 40.026975 ], [ -75.075401, 40.027017 ], [ -75.075454, 40.027038 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.07651, 40.025667 ], [ -75.076529, 40.025611 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076623, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076736, 40.024539 ], [ -75.076776, 40.024262 ], [ -75.076794, 40.024107 ], [ -75.076915, 40.023795 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308041", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.035165, 40.030134 ], [ -75.035578, 40.029915 ], [ -75.03578, 40.029809 ], [ -75.035811, 40.029792 ], [ -75.03667, 40.029347 ], [ -75.037756, 40.02878 ], [ -75.037893, 40.028711 ], [ -75.03791, 40.0287 ], [ -75.038134, 40.028573 ], [ -75.03816, 40.028558 ], [ -75.038328, 40.028469 ], [ -75.038907, 40.028177 ], [ -75.038649, 40.027888 ], [ -75.03845, 40.027667 ], [ -75.038029, 40.027187 ], [ -75.037585, 40.026683 ], [ -75.037371, 40.02644 ], [ -75.037134, 40.026174 ], [ -75.036693, 40.025653 ], [ -75.036457, 40.025363 ], [ -75.036391, 40.025287 ], [ -75.036302, 40.025172 ], [ -75.036202, 40.02505 ], [ -75.036155, 40.024992 ], [ -75.036073, 40.024881 ], [ -75.035825, 40.024564 ], [ -75.035604, 40.024273 ], [ -75.035378, 40.023964 ], [ -75.035637, 40.023838 ], [ -75.03578, 40.023773 ], [ -75.036152, 40.023611 ], [ -75.036497, 40.023461 ], [ -75.03675, 40.023351 ], [ -75.036853, 40.023301 ], [ -75.036959, 40.02325 ], [ -75.037052, 40.023201 ], [ -75.03716, 40.023131 ], [ -75.037264, 40.023056 ], [ -75.037326, 40.022994 ], [ -75.037414, 40.022903 ], [ -75.03748, 40.022817 ], [ -75.037528, 40.022729 ], [ -75.037568, 40.022634 ], [ -75.037594, 40.022529 ], [ -75.037609, 40.022464 ], [ -75.037664, 40.022275 ], [ -75.037699, 40.022189 ], [ -75.037716, 40.022147 ], [ -75.037734, 40.022104 ], [ -75.037763, 40.022037 ], [ -75.037814, 40.021933 ], [ -75.037849, 40.021879 ], [ -75.037911, 40.0218 ], [ -75.038009, 40.021695 ], [ -75.038103, 40.021615 ], [ -75.038192, 40.021563 ], [ -75.038512, 40.021407 ], [ -75.038922, 40.021228 ], [ -75.039474, 40.020979 ], [ -75.039708, 40.020875 ], [ -75.040193, 40.020661 ], [ -75.040622, 40.020472 ], [ -75.041281, 40.020187 ], [ -75.041365, 40.020159 ], [ -75.041512, 40.020129 ], [ -75.041654, 40.020115 ], [ -75.041812, 40.020106 ], [ -75.041955, 40.020106 ], [ -75.042456, 40.020106 ], [ -75.04269, 40.020106 ], [ -75.042811, 40.0201 ], [ -75.042931, 40.020089 ], [ -75.043015, 40.020078 ], [ -75.043106, 40.02006 ], [ -75.043194, 40.020038 ], [ -75.043294, 40.020001 ], [ -75.043362, 40.01997 ], [ -75.043388, 40.019957 ], [ -75.044003, 40.019658 ], [ -75.044448, 40.019434 ], [ -75.044764, 40.019276 ], [ -75.044816, 40.019248 ], [ -75.045239, 40.019061 ], [ -75.045346, 40.019014 ], [ -75.045923, 40.018794 ], [ -75.04606, 40.018735 ], [ -75.04616, 40.018688 ], [ -75.046298, 40.018614 ], [ -75.046384, 40.018567 ], [ -75.046465, 40.018522 ], [ -75.046727, 40.018376 ], [ -75.046793, 40.018339 ], [ -75.047035, 40.018194 ], [ -75.047083, 40.018141 ], [ -75.047103, 40.018108 ], [ -75.047127, 40.018072 ], [ -75.047146, 40.018028 ], [ -75.047157, 40.017987 ], [ -75.047158, 40.017939 ], [ -75.047156, 40.017908 ], [ -75.047147, 40.017869 ], [ -75.047133, 40.017827 ], [ -75.047106, 40.017779 ], [ -75.046949, 40.01758 ], [ -75.046878, 40.017489 ], [ -75.046673, 40.017258 ], [ -75.046427, 40.016977 ], [ -75.046377, 40.016921 ], [ -75.046337, 40.016856 ], [ -75.046312, 40.016788 ], [ -75.046303, 40.016717 ], [ -75.046306, 40.016647 ], [ -75.046326, 40.016577 ], [ -75.046363, 40.016514 ], [ -75.046416, 40.016451 ], [ -75.046493, 40.016386 ], [ -75.046531, 40.016359 ], [ -75.046602, 40.01631 ], [ -75.046666, 40.016273 ], [ -75.046743, 40.016227 ], [ -75.046894, 40.016152 ], [ -75.047027, 40.016103 ], [ -75.047169, 40.016062 ], [ -75.047244, 40.016042 ], [ -75.047347, 40.016025 ], [ -75.047448, 40.016017 ], [ -75.047546, 40.016014 ], [ -75.047656, 40.016017 ], [ -75.047767, 40.016024 ], [ -75.047843, 40.016031 ], [ -75.047957, 40.016047 ], [ -75.048054, 40.016069 ], [ -75.048133, 40.016093 ], [ -75.048206, 40.016118 ], [ -75.048309, 40.016161 ], [ -75.048379, 40.016196 ], [ -75.048467, 40.016241 ], [ -75.048555, 40.016293 ], [ -75.04858, 40.01631 ], [ -75.048623, 40.01634 ], [ -75.048705, 40.016399 ], [ -75.048983, 40.016602 ], [ -75.049213, 40.016739 ], [ -75.049273, 40.016774 ], [ -75.049342, 40.016805 ], [ -75.049432, 40.016836 ], [ -75.049486, 40.016849 ], [ -75.049574, 40.016864 ], [ -75.049877, 40.016734 ], [ -75.049966, 40.016732 ], [ -75.050305, 40.016577 ], [ -75.051345, 40.016024 ], [ -75.052253, 40.015578 ], [ -75.052624, 40.015409 ], [ -75.0537, 40.014951 ], [ -75.053834, 40.01489 ], [ -75.054, 40.014809 ], [ -75.055947, 40.013827 ], [ -75.056474, 40.013549 ], [ -75.05664, 40.013469 ], [ -75.057776, 40.012814 ], [ -75.05793, 40.012726 ], [ -75.058441, 40.012435 ], [ -75.05864, 40.01233 ], [ -75.058725, 40.012281 ], [ -75.058833, 40.012214 ], [ -75.059575, 40.011762 ], [ -75.06064, 40.011106 ], [ -75.060722, 40.011055 ], [ -75.061056, 40.010858 ], [ -75.061857, 40.010383 ], [ -75.061999, 40.010304 ], [ -75.062089, 40.010256 ], [ -75.062189, 40.010208 ], [ -75.062298, 40.010166 ], [ -75.062379, 40.010143 ], [ -75.062516, 40.0101 ], [ -75.063154, 40.009898 ], [ -75.064118, 40.009589 ], [ -75.064529, 40.009464 ], [ -75.065126, 40.009275 ], [ -75.065663, 40.009115 ], [ -75.065884, 40.009041 ], [ -75.06602, 40.009003 ], [ -75.06613, 40.008987 ], [ -75.068165, 40.008714 ], [ -75.068418, 40.008691 ], [ -75.068845, 40.008654 ], [ -75.068868, 40.008753 ], [ -75.068897, 40.008838 ], [ -75.068912, 40.008891 ], [ -75.06894, 40.00897 ], [ -75.068976, 40.009084 ], [ -75.06904, 40.009283 ], [ -75.069285, 40.010078 ], [ -75.069324, 40.010221 ], [ -75.069357, 40.010412 ], [ -75.069418, 40.010497 ], [ -75.069448, 40.010595 ], [ -75.069473, 40.010669 ], [ -75.06952, 40.010798 ], [ -75.06966, 40.011171 ], [ -75.069803, 40.011516 ], [ -75.069865, 40.01166 ], [ -75.069929, 40.011834 ], [ -75.069999, 40.012021 ], [ -75.070433, 40.013176 ], [ -75.070881, 40.014347 ], [ -75.070978, 40.014596 ], [ -75.071067, 40.014841 ], [ -75.071227, 40.015277 ], [ -75.071304, 40.015465 ], [ -75.071463, 40.015924 ], [ -75.071655, 40.016428 ], [ -75.071852, 40.016945 ], [ -75.072083, 40.017542 ], [ -75.072181, 40.017812 ], [ -75.072278, 40.018082 ], [ -75.07239, 40.018369 ], [ -75.072502, 40.018643 ], [ -75.072544, 40.01875 ], [ -75.072555, 40.018778 ], [ -75.072592, 40.018848 ], [ -75.072643, 40.018912 ], [ -75.072676, 40.018943 ], [ -75.072785, 40.019043 ], [ -75.072918, 40.019161 ], [ -75.073105, 40.019327 ], [ -75.073148, 40.019366 ], [ -75.073186, 40.019408 ], [ -75.073214, 40.019442 ], [ -75.073376, 40.019639 ], [ -75.073634, 40.019946 ], [ -75.073811, 40.020156 ], [ -75.07386, 40.020213 ], [ -75.07409, 40.020491 ], [ -75.074304, 40.020739 ], [ -75.074432, 40.02089 ], [ -75.07448, 40.020945 ], [ -75.074593, 40.021082 ], [ -75.074691, 40.021198 ], [ -75.074859, 40.021386 ], [ -75.074998, 40.021525 ], [ -75.07533, 40.021837 ], [ -75.075698, 40.022175 ], [ -75.076058, 40.022521 ], [ -75.076836, 40.023246 ], [ -75.07685, 40.023261 ], [ -75.076522, 40.023478 ], [ -75.075993, 40.023835 ], [ -75.075729, 40.024015 ], [ -75.075682, 40.024044 ], [ -75.075644, 40.024066 ], [ -75.075527, 40.024135 ], [ -75.075189, 40.024339 ], [ -75.07421, 40.024927 ], [ -75.0739, 40.025112 ], [ -75.07367, 40.025241 ], [ -75.073563, 40.025293 ], [ -75.073482, 40.02533 ], [ -75.073379, 40.025371 ], [ -75.073849, 40.025788 ], [ -75.074165, 40.026052 ], [ -75.074983, 40.026686 ], [ -75.075205, 40.026877 ], [ -75.075324, 40.026975 ], [ -75.075401, 40.027017 ], [ -75.075454, 40.027038 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.07651, 40.025667 ], [ -75.076529, 40.025611 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076623, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076736, 40.024539 ], [ -75.076776, 40.024262 ], [ -75.076794, 40.024107 ], [ -75.076915, 40.023795 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308080", "route_id": "L1 OWL" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.258284, 39.962026 ], [ -75.258969, 39.961928 ], [ -75.259029, 39.961819 ], [ -75.259025, 39.961773 ], [ -75.259023, 39.961722 ], [ -75.258872, 39.961725 ], [ -75.258812, 39.961728 ], [ -75.258716, 39.961773 ], [ -75.258601, 39.961778 ], [ -75.258369, 39.961803 ], [ -75.258003, 39.961866 ], [ -75.25771, 39.961915 ], [ -75.257207, 39.961991 ], [ -75.256565, 39.962094 ], [ -75.256235, 39.962149 ], [ -75.255856, 39.962213 ], [ -75.255436, 39.962281 ], [ -75.255071, 39.962339 ], [ -75.254807, 39.962381 ], [ -75.25457, 39.962419 ], [ -75.254365, 39.962451 ], [ -75.25423, 39.962469 ], [ -75.254105, 39.962483 ], [ -75.253748, 39.962522 ], [ -75.253548, 39.962544 ], [ -75.253064, 39.962602 ], [ -75.252658, 39.962651 ], [ -75.251818, 39.962775 ], [ -75.250937, 39.962914 ], [ -75.250239, 39.963009 ], [ -75.250165, 39.962993 ], [ -75.250052, 39.963 ], [ -75.249791, 39.963018 ], [ -75.24972, 39.96302 ], [ -75.249622, 39.963012 ], [ -75.249517, 39.963001 ], [ -75.249423, 39.96299 ], [ -75.248663, 39.962894 ], [ -75.248521, 39.962877 ], [ -75.248387, 39.962861 ], [ -75.248167, 39.962834 ], [ -75.247701, 39.962762 ], [ -75.247521, 39.962734 ], [ -75.247391, 39.962714 ], [ -75.247301, 39.9627 ], [ -75.247115, 39.962672 ], [ -75.246783, 39.962644 ], [ -75.246006, 39.962553 ], [ -75.245455, 39.962488 ], [ -75.244721, 39.962393 ], [ -75.244039, 39.962306 ], [ -75.243451, 39.962239 ], [ -75.242959, 39.962171 ], [ -75.242761, 39.962143 ], [ -75.242053, 39.962057 ], [ -75.241378, 39.961971 ], [ -75.240769, 39.961895 ], [ -75.24006, 39.961811 ], [ -75.23946, 39.96174 ], [ -75.238811, 39.961653 ], [ -75.237075, 39.961442 ], [ -75.236823, 39.961411 ], [ -75.23489, 39.961169 ], [ -75.234206, 39.961084 ], [ -75.23357, 39.961008 ], [ -75.23286, 39.960915 ], [ -75.230794, 39.960676 ], [ -75.230674, 39.96066 ], [ -75.230226, 39.9606 ], [ -75.229827, 39.960558 ], [ -75.229295, 39.960491 ], [ -75.228636, 39.960411 ], [ -75.228489, 39.960393 ], [ -75.227999, 39.960331 ], [ -75.227481, 39.960266 ], [ -75.227117, 39.960225 ], [ -75.226874, 39.960194 ], [ -75.226244, 39.960113 ], [ -75.224941, 39.959933 ], [ -75.224527, 39.959889 ], [ -75.223919, 39.959806 ], [ -75.222938, 39.959686 ], [ -75.222684, 39.959652 ], [ -75.222426, 39.95962 ], [ -75.221949, 39.959562 ], [ -75.221358, 39.959489 ], [ -75.221175, 39.959466 ], [ -75.220955, 39.959438 ], [ -75.219945, 39.959314 ], [ -75.219107, 39.959203 ], [ -75.217297, 39.958983 ], [ -75.217019, 39.95894 ], [ -75.214035, 39.958566 ], [ -75.213691, 39.958529 ], [ -75.213347, 39.958489 ], [ -75.213025, 39.958456 ], [ -75.212481, 39.958393 ], [ -75.211475, 39.958273 ], [ -75.211079, 39.958225 ], [ -75.210873, 39.9582 ], [ -75.210707, 39.958185 ], [ -75.210589, 39.95822 ], [ -75.210501, 39.958211 ], [ -75.210236, 39.958182 ], [ -75.209908, 39.958146 ], [ -75.209412, 39.958092 ], [ -75.20868, 39.957996 ], [ -75.208523, 39.957976 ], [ -75.208137, 39.957926 ], [ -75.207883, 39.957892 ], [ -75.206748, 39.957744 ], [ -75.206556, 39.957719 ], [ -75.206075, 39.957657 ], [ -75.205599, 39.957598 ], [ -75.205396, 39.957574 ], [ -75.205061, 39.957532 ], [ -75.204836, 39.957505 ], [ -75.204168, 39.957428 ], [ -75.203926, 39.957396 ], [ -75.203428, 39.95733 ], [ -75.203174, 39.957298 ], [ -75.202666, 39.957234 ], [ -75.202213, 39.95718 ], [ -75.201955, 39.95715 ], [ -75.201091, 39.957043 ], [ -75.200866, 39.957015 ], [ -75.200304, 39.956945 ], [ -75.200139, 39.956924 ], [ -75.199615, 39.95686 ], [ -75.199215, 39.956812 ], [ -75.198588, 39.956738 ], [ -75.198133, 39.956685 ], [ -75.198072, 39.956678 ], [ -75.198006, 39.956669 ], [ -75.197276, 39.956578 ], [ -75.197015, 39.956545 ], [ -75.196614, 39.956495 ], [ -75.196433, 39.956472 ], [ -75.196118, 39.956433 ], [ -75.195849, 39.956401 ], [ -75.195685, 39.956381 ], [ -75.195059, 39.956306 ], [ -75.194854, 39.956282 ], [ -75.194159, 39.956199 ], [ -75.193559, 39.956123 ], [ -75.193291, 39.956089 ], [ -75.191978, 39.955924 ], [ -75.19174, 39.955895 ], [ -75.19147, 39.955861 ], [ -75.190799, 39.955776 ], [ -75.190357, 39.95572 ], [ -75.190183, 39.955698 ], [ -75.189486, 39.955611 ], [ -75.188979, 39.955546 ], [ -75.188834, 39.955528 ], [ -75.188254, 39.955453 ], [ -75.187807, 39.9554 ], [ -75.187671, 39.955382 ], [ -75.187525, 39.955362 ], [ -75.187221, 39.955329 ], [ -75.187086, 39.955314 ], [ -75.186872, 39.955287 ], [ -75.186583, 39.955251 ], [ -75.186349, 39.955222 ], [ -75.185608, 39.955133 ], [ -75.18536, 39.955104 ], [ -75.185148, 39.955079 ], [ -75.18511, 39.955073 ], [ -75.18508, 39.955068 ], [ -75.185004, 39.955058 ], [ -75.184745, 39.955026 ], [ -75.184521, 39.954999 ], [ -75.183652, 39.954893 ], [ -75.18342, 39.954865 ], [ -75.183377, 39.954859 ], [ -75.183297, 39.954848 ], [ -75.183249, 39.954843 ], [ -75.182669, 39.954771 ], [ -75.182124, 39.9547 ], [ -75.181302, 39.954583 ], [ -75.181202, 39.95457 ], [ -75.181185, 39.954567 ], [ -75.181159, 39.954564 ], [ -75.181099, 39.954557 ], [ -75.181051, 39.954546 ], [ -75.181012, 39.954544 ], [ -75.180951, 39.954538 ], [ -75.180514, 39.954488 ], [ -75.180082, 39.954437 ], [ -75.179741, 39.954397 ], [ -75.179515, 39.954367 ], [ -75.179219, 39.95433 ], [ -75.178332, 39.954219 ], [ -75.177816, 39.954153 ], [ -75.177334, 39.954095 ], [ -75.177129, 39.95407 ], [ -75.176662, 39.954014 ], [ -75.176172, 39.95395 ], [ -75.175078, 39.95381 ], [ -75.174455, 39.953735 ], [ -75.17408, 39.95369 ], [ -75.173745, 39.95365 ], [ -75.173169, 39.953582 ], [ -75.172081, 39.953445 ], [ -75.171562, 39.953379 ], [ -75.170544, 39.953251 ], [ -75.170006, 39.953182 ], [ -75.168977, 39.953061 ], [ -75.168415, 39.952995 ], [ -75.167228, 39.952852 ], [ -75.166846, 39.952799 ], [ -75.165883, 39.95268 ], [ -75.165283, 39.952605 ], [ -75.165309, 39.952479 ], [ -75.165256, 39.952126 ], [ -75.165245, 39.952058 ], [ -75.165232, 39.952006 ], [ -75.165213, 39.951966 ], [ -75.165189, 39.951926 ], [ -75.165157, 39.95189 ], [ -75.165126, 39.951861 ], [ -75.165066, 39.951823 ], [ -75.165015, 39.951806 ], [ -75.164953, 39.951784 ], [ -75.164819, 39.951746 ], [ -75.164571, 39.951671 ], [ -75.163791, 39.951588 ], [ -75.163198, 39.951524 ], [ -75.163095, 39.951518 ], [ -75.163033, 39.951515 ], [ -75.162976, 39.951521 ], [ -75.162933, 39.95153 ], [ -75.162894, 39.95155 ], [ -75.162863, 39.951578 ], [ -75.162838, 39.95162 ], [ -75.162815, 39.951698 ], [ -75.162792, 39.951779 ], [ -75.162742, 39.95196 ], [ -75.16263, 39.95206 ], [ -75.16254, 39.952129 ], [ -75.162456, 39.952177 ], [ -75.162303, 39.952201 ], [ -75.162149, 39.952182 ], [ -75.16145, 39.952096 ], [ -75.161024, 39.952044 ], [ -75.159921, 39.951909 ], [ -75.159564, 39.951868 ], [ -75.158313, 39.951724 ], [ -75.156735, 39.951515 ], [ -75.155914, 39.951422 ], [ -75.155166, 39.95133 ], [ -75.153588, 39.951136 ], [ -75.152576, 39.951015 ], [ -75.152006, 39.950947 ], [ -75.150392, 39.950745 ], [ -75.150241, 39.950728 ], [ -75.149896, 39.950684 ], [ -75.149662, 39.950654 ], [ -75.14905, 39.950575 ], [ -75.148932, 39.950561 ], [ -75.147266, 39.950345 ], [ -75.145686, 39.950148 ], [ -75.145232, 39.950095 ], [ -75.144888, 39.950053 ], [ -75.14433, 39.94998 ], [ -75.143917, 39.949937 ], [ -75.143861, 39.949935 ], [ -75.143776, 39.94994 ], [ -75.143727, 39.949948 ], [ -75.143744, 39.949861 ], [ -75.142947, 39.94977 ], [ -75.142863, 39.949759 ], [ -75.142631, 39.949732 ], [ -75.142311, 39.949693 ], [ -75.142137, 39.949672 ], [ -75.142111, 39.949774 ], [ -75.142094, 39.949844 ], [ -75.142071, 39.949936 ], [ -75.142017, 39.950134 ], [ -75.141973, 39.950313 ], [ -75.141793, 39.95109 ], [ -75.141725, 39.951381 ], [ -75.14169, 39.951606 ], [ -75.141669, 39.951744 ], [ -75.142578, 39.951843 ], [ -75.14329, 39.951935 ], [ -75.14426, 39.952055 ], [ -75.14495, 39.952141 ], [ -75.14523, 39.952185 ], [ -75.14504, 39.953051 ], [ -75.144942, 39.953499 ], [ -75.14483, 39.954015 ], [ -75.14472, 39.954553 ], [ -75.144697, 39.954685 ], [ -75.144669, 39.954791 ], [ -75.144556, 39.955295 ], [ -75.144438, 39.95585 ], [ -75.144333, 39.956392 ], [ -75.144273, 39.956738 ], [ -75.144255, 39.956812 ], [ -75.144239, 39.956905 ], [ -75.144202, 39.95708 ], [ -75.144182, 39.957183 ], [ -75.144146, 39.957333 ], [ -75.144119, 39.957437 ], [ -75.143885, 39.95852 ], [ -75.143678, 39.959523 ], [ -75.143397, 39.960803 ], [ -75.142871, 39.96075 ], [ -75.142439, 39.960709 ], [ -75.141849, 39.96064 ], [ -75.141451, 39.960589 ], [ -75.140915, 39.960528 ], [ -75.140779, 39.960513 ], [ -75.140594, 39.960495 ], [ -75.140534, 39.960487 ], [ -75.140203, 39.960451 ], [ -75.140074, 39.960437 ], [ -75.139564, 39.960384 ], [ -75.139331, 39.96036 ], [ -75.139221, 39.960349 ], [ -75.138899, 39.960308 ], [ -75.138883, 39.960364 ], [ -75.138869, 39.960417 ], [ -75.138584, 39.961307 ], [ -75.138475, 39.961664 ], [ -75.138455, 39.961725 ], [ -75.138408, 39.961877 ], [ -75.138271, 39.962291 ], [ -75.138067, 39.962952 ], [ -75.137776, 39.963913 ], [ -75.137573, 39.964542 ], [ -75.137506, 39.964754 ], [ -75.137408, 39.965014 ], [ -75.137325, 39.965268 ], [ -75.137311, 39.965318 ], [ -75.137198, 39.965641 ], [ -75.137008, 39.966238 ], [ -75.13692, 39.966538 ], [ -75.13676, 39.96705 ], [ -75.136685, 39.967289 ], [ -75.136571, 39.967688 ], [ -75.136479, 39.967979 ], [ -75.136423, 39.968173 ], [ -75.136191, 39.968885 ], [ -75.136037, 39.969398 ], [ -75.135874, 39.969919 ], [ -75.135742, 39.970338 ], [ -75.135652, 39.970633 ], [ -75.135264, 39.971843 ], [ -75.134973, 39.972778 ], [ -75.134947, 39.972856 ], [ -75.134888, 39.973054 ], [ -75.13459, 39.974011 ], [ -75.134553, 39.974131 ], [ -75.134524, 39.974219 ], [ -75.134511, 39.97426 ], [ -75.134433, 39.974522 ], [ -75.134356, 39.974768 ], [ -75.134283, 39.974987 ], [ -75.134199, 39.975274 ], [ -75.134014, 39.976149 ], [ -75.133972, 39.976352 ], [ -75.133941, 39.976507 ], [ -75.133811, 39.977129 ], [ -75.133487, 39.978626 ], [ -75.133378, 39.979172 ], [ -75.133168, 39.980118 ], [ -75.132893, 39.981367 ], [ -75.132857, 39.981561 ], [ -75.132838, 39.981635 ], [ -75.132591, 39.982806 ], [ -75.132547, 39.983018 ], [ -75.132505, 39.983208 ], [ -75.132171, 39.98467 ], [ -75.132155, 39.984723 ], [ -75.132145, 39.984777 ], [ -75.132044, 39.985277 ], [ -75.131909, 39.986047 ], [ -75.131896, 39.986098 ], [ -75.131872, 39.986183 ], [ -75.131852, 39.986238 ], [ -75.131834, 39.986284 ], [ -75.131739, 39.986362 ], [ -75.131641, 39.986435 ], [ -75.131609, 39.986452 ], [ -75.131335, 39.986601 ], [ -75.13101, 39.986775 ], [ -75.130723, 39.986929 ], [ -75.130479, 39.987066 ], [ -75.130218, 39.987216 ], [ -75.129911, 39.987378 ], [ -75.129599, 39.987544 ], [ -75.128478, 39.988174 ], [ -75.127913, 39.988479 ], [ -75.127294, 39.988823 ], [ -75.126849, 39.989058 ], [ -75.126419, 39.989298 ], [ -75.125937, 39.989554 ], [ -75.125652, 39.98972 ], [ -75.125466, 39.989817 ], [ -75.125404, 39.98985 ], [ -75.124867, 39.99013 ], [ -75.124676, 39.990254 ], [ -75.124611, 39.990294 ], [ -75.124552, 39.990319 ], [ -75.124425, 39.990382 ], [ -75.124415, 39.990387 ], [ -75.124342, 39.990429 ], [ -75.124242, 39.990485 ], [ -75.123943, 39.990652 ], [ -75.123654, 39.990815 ], [ -75.123009, 39.991167 ], [ -75.122507, 39.991448 ], [ -75.121983, 39.991771 ], [ -75.121667, 39.991966 ], [ -75.121567, 39.992018 ], [ -75.121456, 39.992084 ], [ -75.120882, 39.992396 ], [ -75.12034, 39.992692 ], [ -75.120035, 39.99287 ], [ -75.11974, 39.993032 ], [ -75.118515, 39.993697 ], [ -75.118297, 39.993818 ], [ -75.118197, 39.99387 ], [ -75.118055, 39.993953 ], [ -75.117825, 39.994077 ], [ -75.115788, 39.995191 ], [ -75.115742, 39.995218 ], [ -75.115653, 39.995272 ], [ -75.114905, 39.995681 ], [ -75.11446, 39.995928 ], [ -75.11403, 39.996175 ], [ -75.113463, 39.996496 ], [ -75.113329, 39.996569 ], [ -75.113211, 39.996643 ], [ -75.112741, 39.996887 ], [ -75.112149, 39.997198 ], [ -75.111617, 39.997484 ], [ -75.110971, 39.997842 ], [ -75.110428, 39.998146 ], [ -75.109878, 39.998447 ], [ -75.109336, 39.998746 ], [ -75.108749, 39.999069 ], [ -75.108153, 39.999404 ], [ -75.107632, 39.999683 ], [ -75.106458, 40.000319 ], [ -75.105423, 40.000898 ], [ -75.10481, 40.001228 ], [ -75.104385, 40.001469 ], [ -75.104255, 40.001543 ], [ -75.104152, 40.001602 ], [ -75.103641, 40.001892 ], [ -75.103229, 40.002122 ], [ -75.103073, 40.00221 ], [ -75.102813, 40.00235 ], [ -75.102257, 40.002652 ], [ -75.101948, 40.002812 ], [ -75.101852, 40.002866 ], [ -75.101607, 40.002998 ], [ -75.101252, 40.003192 ], [ -75.100501, 40.003599 ], [ -75.099375, 40.004214 ], [ -75.097989, 40.004977 ], [ -75.09689, 40.005582 ], [ -75.096417, 40.005851 ], [ -75.094888, 40.006682 ], [ -75.094112, 40.007104 ], [ -75.094013, 40.007161 ], [ -75.093595, 40.007388 ], [ -75.092593, 40.007956 ], [ -75.092038, 40.00825 ], [ -75.091526, 40.00853 ], [ -75.0914, 40.008598 ], [ -75.090713, 40.00897 ], [ -75.090186, 40.009265 ], [ -75.090043, 40.009343 ], [ -75.089855, 40.009454 ], [ -75.089727, 40.009544 ], [ -75.089687, 40.009575 ], [ -75.089633, 40.009619 ], [ -75.08958, 40.009668 ], [ -75.08948, 40.009768 ], [ -75.089396, 40.009873 ], [ -75.089383, 40.009892 ], [ -75.089257, 40.010085 ], [ -75.089199, 40.010175 ], [ -75.088693, 40.010912 ], [ -75.088616, 40.011029 ], [ -75.088482, 40.011247 ], [ -75.088396, 40.011386 ], [ -75.088172, 40.011738 ], [ -75.088079, 40.011882 ], [ -75.087966, 40.012046 ], [ -75.087831, 40.012217 ], [ -75.087627, 40.012426 ], [ -75.087543, 40.012519 ], [ -75.08663, 40.013531 ], [ -75.086325, 40.013863 ], [ -75.085803, 40.014426 ], [ -75.085483, 40.014765 ], [ -75.084623, 40.015688 ], [ -75.08437, 40.015958 ], [ -75.083907, 40.016494 ], [ -75.083869, 40.01654 ], [ -75.083823, 40.016591 ], [ -75.083651, 40.016767 ], [ -75.08269, 40.017797 ], [ -75.082625, 40.017868 ], [ -75.081977, 40.018574 ], [ -75.081477, 40.019116 ], [ -75.080882, 40.019755 ], [ -75.080393, 40.020289 ], [ -75.079901, 40.02082 ], [ -75.079383, 40.021381 ], [ -75.079042, 40.021729 ], [ -75.078937, 40.021832 ], [ -75.07882, 40.021926 ], [ -75.078752, 40.021975 ], [ -75.07851, 40.022138 ], [ -75.078183, 40.022356 ], [ -75.077815, 40.022606 ], [ -75.077503, 40.022818 ], [ -75.077311, 40.022947 ], [ -75.077042, 40.023131 ], [ -75.076849, 40.023262 ], [ -75.076866, 40.023297 ], [ -75.076872, 40.023325 ], [ -75.076873, 40.023356 ], [ -75.076852, 40.023534 ], [ -75.076833, 40.023703 ], [ -75.076827, 40.023769 ], [ -75.076819, 40.023858 ], [ -75.076795, 40.024107 ], [ -75.077018, 40.024113 ], [ -75.077115, 40.024115 ], [ -75.077323, 40.024124 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308082", "route_id": "L1 OWL" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.07779, 40.023406 ], [ -75.077725, 40.02347 ], [ -75.07768, 40.023514 ], [ -75.077575, 40.023617 ], [ -75.077539, 40.023674 ], [ -75.077522, 40.023775 ], [ -75.077494, 40.023962 ], [ -75.077477, 40.024133 ], [ -75.077385, 40.024124 ], [ -75.077323, 40.024124 ], [ -75.077115, 40.024115 ], [ -75.077018, 40.024113 ], [ -75.076795, 40.024107 ], [ -75.076819, 40.023858 ], [ -75.076827, 40.023769 ], [ -75.076833, 40.023703 ], [ -75.076853, 40.023534 ], [ -75.076873, 40.023356 ], [ -75.076871, 40.023324 ], [ -75.076866, 40.023297 ], [ -75.07685, 40.023261 ], [ -75.077042, 40.023131 ], [ -75.077311, 40.022947 ], [ -75.077502, 40.022818 ], [ -75.077815, 40.022606 ], [ -75.078183, 40.022356 ], [ -75.07851, 40.022138 ], [ -75.078752, 40.021975 ], [ -75.07882, 40.021926 ], [ -75.078937, 40.021832 ], [ -75.079042, 40.021729 ], [ -75.079383, 40.021381 ], [ -75.079901, 40.02082 ], [ -75.080393, 40.020289 ], [ -75.080882, 40.019755 ], [ -75.081477, 40.019116 ], [ -75.081977, 40.018574 ], [ -75.082625, 40.017868 ], [ -75.08269, 40.017797 ], [ -75.083651, 40.016767 ], [ -75.083823, 40.016591 ], [ -75.083869, 40.01654 ], [ -75.083907, 40.016494 ], [ -75.08437, 40.015958 ], [ -75.084623, 40.015688 ], [ -75.085483, 40.014765 ], [ -75.085803, 40.014426 ], [ -75.086325, 40.013863 ], [ -75.08663, 40.013531 ], [ -75.087543, 40.012519 ], [ -75.087627, 40.012426 ], [ -75.087831, 40.012217 ], [ -75.087966, 40.012046 ], [ -75.088079, 40.011882 ], [ -75.088172, 40.011738 ], [ -75.088396, 40.011386 ], [ -75.088482, 40.011247 ], [ -75.088616, 40.011029 ], [ -75.088693, 40.010912 ], [ -75.089199, 40.010175 ], [ -75.089257, 40.010085 ], [ -75.089383, 40.009892 ], [ -75.089396, 40.009873 ], [ -75.08948, 40.009768 ], [ -75.08958, 40.009668 ], [ -75.089633, 40.009619 ], [ -75.089687, 40.009575 ], [ -75.089727, 40.009544 ], [ -75.089855, 40.009454 ], [ -75.090043, 40.009343 ], [ -75.090186, 40.009265 ], [ -75.090713, 40.00897 ], [ -75.0914, 40.008598 ], [ -75.091526, 40.00853 ], [ -75.092038, 40.00825 ], [ -75.092593, 40.007956 ], [ -75.093595, 40.007388 ], [ -75.094013, 40.007161 ], [ -75.094112, 40.007104 ], [ -75.094888, 40.006682 ], [ -75.096417, 40.005851 ], [ -75.09689, 40.005582 ], [ -75.097989, 40.004977 ], [ -75.099375, 40.004214 ], [ -75.100501, 40.003599 ], [ -75.101252, 40.003192 ], [ -75.101607, 40.002998 ], [ -75.101852, 40.002866 ], [ -75.101948, 40.002812 ], [ -75.102257, 40.002652 ], [ -75.102813, 40.00235 ], [ -75.103073, 40.00221 ], [ -75.103229, 40.002122 ], [ -75.103641, 40.001892 ], [ -75.104152, 40.001602 ], [ -75.104255, 40.001543 ], [ -75.104385, 40.001469 ], [ -75.10481, 40.001228 ], [ -75.105423, 40.000898 ], [ -75.106458, 40.000319 ], [ -75.107632, 39.999683 ], [ -75.108153, 39.999404 ], [ -75.108749, 39.999069 ], [ -75.109336, 39.998746 ], [ -75.109878, 39.998447 ], [ -75.110428, 39.998146 ], [ -75.110971, 39.997842 ], [ -75.111617, 39.997484 ], [ -75.112149, 39.997198 ], [ -75.112741, 39.996887 ], [ -75.113211, 39.996643 ], [ -75.113329, 39.996569 ], [ -75.113463, 39.996496 ], [ -75.11403, 39.996175 ], [ -75.11446, 39.995928 ], [ -75.114905, 39.995681 ], [ -75.115653, 39.995272 ], [ -75.115742, 39.995218 ], [ -75.115788, 39.995191 ], [ -75.117825, 39.994077 ], [ -75.118055, 39.993953 ], [ -75.118197, 39.99387 ], [ -75.118297, 39.993818 ], [ -75.118515, 39.993697 ], [ -75.11974, 39.993032 ], [ -75.120035, 39.99287 ], [ -75.12034, 39.992692 ], [ -75.120882, 39.992396 ], [ -75.121456, 39.992084 ], [ -75.121567, 39.992018 ], [ -75.121667, 39.991966 ], [ -75.121983, 39.991771 ], [ -75.122507, 39.991448 ], [ -75.123009, 39.991167 ], [ -75.123654, 39.990815 ], [ -75.123943, 39.990652 ], [ -75.124242, 39.990485 ], [ -75.124342, 39.990429 ], [ -75.124415, 39.990387 ], [ -75.124425, 39.990382 ], [ -75.124552, 39.990319 ], [ -75.124611, 39.990294 ], [ -75.124676, 39.990254 ], [ -75.124867, 39.99013 ], [ -75.125404, 39.98985 ], [ -75.125466, 39.989817 ], [ -75.125652, 39.98972 ], [ -75.125937, 39.989554 ], [ -75.126419, 39.989298 ], [ -75.126849, 39.989058 ], [ -75.127294, 39.988823 ], [ -75.127913, 39.988479 ], [ -75.128478, 39.988174 ], [ -75.129599, 39.987544 ], [ -75.129911, 39.987378 ], [ -75.130218, 39.987216 ], [ -75.130479, 39.987066 ], [ -75.130723, 39.986929 ], [ -75.13101, 39.986775 ], [ -75.131335, 39.986601 ], [ -75.131609, 39.986452 ], [ -75.131641, 39.986435 ], [ -75.131739, 39.986362 ], [ -75.131834, 39.986284 ], [ -75.131852, 39.986238 ], [ -75.131872, 39.986183 ], [ -75.131896, 39.986098 ], [ -75.131909, 39.986047 ], [ -75.132044, 39.985277 ], [ -75.132145, 39.984777 ], [ -75.132155, 39.984723 ], [ -75.132171, 39.98467 ], [ -75.132505, 39.983208 ], [ -75.132547, 39.983018 ], [ -75.132591, 39.982806 ], [ -75.132838, 39.981635 ], [ -75.132857, 39.981561 ], [ -75.132893, 39.981367 ], [ -75.133168, 39.980118 ], [ -75.133378, 39.979172 ], [ -75.133487, 39.978626 ], [ -75.133811, 39.977129 ], [ -75.133941, 39.976507 ], [ -75.133972, 39.976352 ], [ -75.134014, 39.976149 ], [ -75.134199, 39.975274 ], [ -75.134283, 39.974987 ], [ -75.134356, 39.974768 ], [ -75.134433, 39.974522 ], [ -75.134511, 39.97426 ], [ -75.134524, 39.974219 ], [ -75.134553, 39.974131 ], [ -75.13459, 39.974011 ], [ -75.134888, 39.973054 ], [ -75.134947, 39.972856 ], [ -75.134973, 39.972778 ], [ -75.135264, 39.971843 ], [ -75.135652, 39.970633 ], [ -75.135742, 39.970338 ], [ -75.135874, 39.969919 ], [ -75.136037, 39.969398 ], [ -75.136191, 39.968885 ], [ -75.136782, 39.968993 ], [ -75.137245, 39.969082 ], [ -75.137755, 39.969176 ], [ -75.13792, 39.969203 ], [ -75.138481, 39.969294 ], [ -75.138684, 39.969328 ], [ -75.138997, 39.969381 ], [ -75.139558, 39.969474 ], [ -75.139794, 39.968367 ], [ -75.139865, 39.968027 ], [ -75.139965, 39.967537 ], [ -75.140123, 39.966803 ], [ -75.140211, 39.966359 ], [ -75.140453, 39.96519 ], [ -75.140686, 39.964126 ], [ -75.140947, 39.962947 ], [ -75.141168, 39.961906 ], [ -75.141364, 39.960957 ], [ -75.141421, 39.960713 ], [ -75.141437, 39.96065 ], [ -75.141451, 39.960589 ], [ -75.141714, 39.959343 ], [ -75.141993, 39.958073 ], [ -75.14208, 39.95766 ], [ -75.142107, 39.957535 ], [ -75.142175, 39.957208 ], [ -75.142263, 39.956747 ], [ -75.142276, 39.956701 ], [ -75.142286, 39.956654 ], [ -75.142319, 39.956508 ], [ -75.142361, 39.956313 ], [ -75.142383, 39.956206 ], [ -75.142399, 39.956132 ], [ -75.142512, 39.955618 ], [ -75.142621, 39.955076 ], [ -75.142744, 39.954457 ], [ -75.142765, 39.95436 ], [ -75.142799, 39.954209 ], [ -75.142893, 39.953785 ], [ -75.143007, 39.95324 ], [ -75.14309, 39.952856 ], [ -75.14329, 39.951935 ], [ -75.1434, 39.951397 ], [ -75.143424, 39.951288 ], [ -75.143445, 39.951176 ], [ -75.143481, 39.951001 ], [ -75.143597, 39.950501 ], [ -75.143727, 39.949948 ], [ -75.143776, 39.94994 ], [ -75.143861, 39.949935 ], [ -75.143917, 39.949937 ], [ -75.14433, 39.94998 ], [ -75.144888, 39.950053 ], [ -75.145232, 39.950095 ], [ -75.145686, 39.950148 ], [ -75.147266, 39.950345 ], [ -75.148932, 39.950561 ], [ -75.14905, 39.950575 ], [ -75.149662, 39.950654 ], [ -75.149896, 39.950684 ], [ -75.150241, 39.950728 ], [ -75.150392, 39.950745 ], [ -75.152006, 39.950947 ], [ -75.152576, 39.951015 ], [ -75.153588, 39.951136 ], [ -75.155166, 39.95133 ], [ -75.155914, 39.951422 ], [ -75.156735, 39.951515 ], [ -75.158313, 39.951724 ], [ -75.159564, 39.951868 ], [ -75.159921, 39.951909 ], [ -75.161024, 39.952044 ], [ -75.16145, 39.952096 ], [ -75.162149, 39.952182 ], [ -75.162303, 39.952201 ], [ -75.162448, 39.952272 ], [ -75.162509, 39.952325 ], [ -75.162562, 39.952404 ], [ -75.162591, 39.952473 ], [ -75.162608, 39.952536 ], [ -75.162522, 39.952911 ], [ -75.16251, 39.952993 ], [ -75.1625, 39.953066 ], [ -75.162505, 39.95312 ], [ -75.162533, 39.953187 ], [ -75.162572, 39.953234 ], [ -75.162642, 39.953263 ], [ -75.162785, 39.953289 ], [ -75.162954, 39.95332 ], [ -75.163339, 39.953379 ], [ -75.163838, 39.953458 ], [ -75.164226, 39.953508 ], [ -75.164558, 39.953475 ], [ -75.16465, 39.953464 ], [ -75.164727, 39.953452 ], [ -75.164814, 39.953427 ], [ -75.164895, 39.953365 ], [ -75.164935, 39.953333 ], [ -75.165002, 39.953261 ], [ -75.1652, 39.952982 ], [ -75.165283, 39.952605 ], [ -75.165309, 39.952479 ], [ -75.165256, 39.952126 ], [ -75.165245, 39.952058 ], [ -75.165232, 39.952006 ], [ -75.165213, 39.951966 ], [ -75.165189, 39.951926 ], [ -75.165157, 39.95189 ], [ -75.165126, 39.951861 ], [ -75.165066, 39.951823 ], [ -75.165015, 39.951806 ], [ -75.164953, 39.951784 ], [ -75.164819, 39.951746 ], [ -75.164571, 39.951671 ], [ -75.163791, 39.951588 ], [ -75.163198, 39.951524 ], [ -75.163095, 39.951518 ], [ -75.163033, 39.951515 ], [ -75.162976, 39.951521 ], [ -75.162933, 39.95153 ], [ -75.162894, 39.95155 ], [ -75.162863, 39.951578 ], [ -75.162838, 39.95162 ], [ -75.162815, 39.951698 ], [ -75.162792, 39.951779 ], [ -75.162742, 39.95196 ], [ -75.162608, 39.952536 ], [ -75.162522, 39.952911 ], [ -75.16251, 39.952993 ], [ -75.1625, 39.953066 ], [ -75.162505, 39.95312 ], [ -75.162533, 39.953187 ], [ -75.162572, 39.953234 ], [ -75.162642, 39.953263 ], [ -75.162785, 39.953289 ], [ -75.162954, 39.95332 ], [ -75.163339, 39.953379 ], [ -75.163838, 39.953458 ], [ -75.164226, 39.953508 ], [ -75.165059, 39.953609 ], [ -75.165972, 39.953721 ], [ -75.166612, 39.953799 ], [ -75.167559, 39.953918 ], [ -75.16821, 39.954 ], [ -75.169782, 39.954195 ], [ -75.171362, 39.954394 ], [ -75.171925, 39.954472 ], [ -75.172152, 39.954503 ], [ -75.172282, 39.954518 ], [ -75.172573, 39.954551 ], [ -75.172771, 39.954568 ], [ -75.172881, 39.954576 ], [ -75.17298, 39.954581 ], [ -75.172986, 39.954528 ], [ -75.173053, 39.954221 ], [ -75.173091, 39.954002 ], [ -75.173169, 39.953581 ], [ -75.173745, 39.95365 ], [ -75.17408, 39.95369 ], [ -75.174455, 39.953735 ], [ -75.175078, 39.95381 ], [ -75.176172, 39.95395 ], [ -75.176662, 39.954014 ], [ -75.177129, 39.95407 ], [ -75.177334, 39.954095 ], [ -75.177816, 39.954153 ], [ -75.178332, 39.954219 ], [ -75.179219, 39.95433 ], [ -75.179515, 39.954367 ], [ -75.179741, 39.954397 ], [ -75.180082, 39.954437 ], [ -75.180514, 39.954488 ], [ -75.180951, 39.954538 ], [ -75.181012, 39.954544 ], [ -75.181051, 39.954546 ], [ -75.181099, 39.954557 ], [ -75.181159, 39.954564 ], [ -75.181185, 39.954567 ], [ -75.181202, 39.95457 ], [ -75.181302, 39.954583 ], [ -75.182124, 39.9547 ], [ -75.182669, 39.954771 ], [ -75.183249, 39.954843 ], [ -75.183297, 39.954848 ], [ -75.183377, 39.954859 ], [ -75.18342, 39.954865 ], [ -75.183652, 39.954893 ], [ -75.184521, 39.954999 ], [ -75.184745, 39.955026 ], [ -75.185004, 39.955058 ], [ -75.18508, 39.955068 ], [ -75.18511, 39.955073 ], [ -75.185148, 39.955079 ], [ -75.18536, 39.955104 ], [ -75.185608, 39.955133 ], [ -75.186349, 39.955222 ], [ -75.186583, 39.955251 ], [ -75.186872, 39.955287 ], [ -75.187086, 39.955314 ], [ -75.187221, 39.955329 ], [ -75.187525, 39.955362 ], [ -75.187671, 39.955382 ], [ -75.187807, 39.9554 ], [ -75.188254, 39.955453 ], [ -75.188834, 39.955528 ], [ -75.188979, 39.955546 ], [ -75.189486, 39.955611 ], [ -75.190183, 39.955698 ], [ -75.190357, 39.95572 ], [ -75.190799, 39.955776 ], [ -75.19147, 39.955861 ], [ -75.19174, 39.955895 ], [ -75.191978, 39.955924 ], [ -75.193291, 39.956089 ], [ -75.193559, 39.956123 ], [ -75.194159, 39.956199 ], [ -75.194854, 39.956282 ], [ -75.195059, 39.956306 ], [ -75.195685, 39.956381 ], [ -75.195849, 39.956401 ], [ -75.196118, 39.956433 ], [ -75.196433, 39.956472 ], [ -75.196614, 39.956495 ], [ -75.197015, 39.956545 ], [ -75.197276, 39.956578 ], [ -75.198006, 39.956669 ], [ -75.198072, 39.956678 ], [ -75.198133, 39.956685 ], [ -75.198588, 39.956738 ], [ -75.199215, 39.956812 ], [ -75.199615, 39.95686 ], [ -75.200139, 39.956924 ], [ -75.200304, 39.956945 ], [ -75.200866, 39.957015 ], [ -75.201091, 39.957043 ], [ -75.201955, 39.95715 ], [ -75.202213, 39.95718 ], [ -75.202666, 39.957234 ], [ -75.203174, 39.957298 ], [ -75.203428, 39.95733 ], [ -75.203926, 39.957396 ], [ -75.204168, 39.957428 ], [ -75.204836, 39.957505 ], [ -75.205061, 39.957532 ], [ -75.205396, 39.957574 ], [ -75.205599, 39.957598 ], [ -75.206075, 39.957657 ], [ -75.206556, 39.957719 ], [ -75.206748, 39.957744 ], [ -75.207883, 39.957892 ], [ -75.208137, 39.957926 ], [ -75.208523, 39.957976 ], [ -75.20868, 39.957996 ], [ -75.209412, 39.958092 ], [ -75.209908, 39.958146 ], [ -75.210236, 39.958182 ], [ -75.210501, 39.958211 ], [ -75.210589, 39.95822 ], [ -75.210704, 39.95829 ], [ -75.211062, 39.958334 ], [ -75.211311, 39.958366 ], [ -75.211373, 39.958375 ], [ -75.212891, 39.958539 ], [ -75.212992, 39.958549 ], [ -75.21342, 39.958649 ], [ -75.213991, 39.958737 ], [ -75.216661, 39.959067 ], [ -75.216979, 39.959106 ], [ -75.217289, 39.959137 ], [ -75.219145, 39.959353 ], [ -75.219972, 39.95946 ], [ -75.220927, 39.959592 ], [ -75.221328, 39.959637 ], [ -75.221919, 39.959707 ], [ -75.222394, 39.959765 ], [ -75.222651, 39.959804 ], [ -75.222904, 39.95984 ], [ -75.223897, 39.959962 ], [ -75.22451, 39.960029 ], [ -75.224868, 39.960083 ], [ -75.226233, 39.960256 ], [ -75.226841, 39.960328 ], [ -75.22708, 39.960356 ], [ -75.227419, 39.9604 ], [ -75.227929, 39.960462 ], [ -75.228441, 39.960522 ], [ -75.228603, 39.960544 ], [ -75.229202, 39.960623 ], [ -75.229726, 39.960685 ], [ -75.230209, 39.960743 ], [ -75.230592, 39.960788 ], [ -75.230654, 39.960795 ], [ -75.23079, 39.960813 ], [ -75.231422, 39.960887 ], [ -75.23253, 39.961027 ], [ -75.232835, 39.961062 ], [ -75.233527, 39.961162 ], [ -75.234126, 39.96123 ], [ -75.234602, 39.961295 ], [ -75.234854, 39.96133 ], [ -75.236787, 39.961569 ], [ -75.238545, 39.961789 ], [ -75.238773, 39.961818 ], [ -75.239415, 39.961909 ], [ -75.240016, 39.961985 ], [ -75.240726, 39.962077 ], [ -75.241394, 39.962151 ], [ -75.241962, 39.962213 ], [ -75.242717, 39.962303 ], [ -75.243327, 39.962382 ], [ -75.244016, 39.962458 ], [ -75.244455, 39.962516 ], [ -75.244688, 39.962547 ], [ -75.245379, 39.962635 ], [ -75.24598, 39.962716 ], [ -75.246443, 39.962771 ], [ -75.246742, 39.962807 ], [ -75.247074, 39.962833 ], [ -75.247652, 39.962885 ], [ -75.247847, 39.962908 ], [ -75.248042, 39.96293 ], [ -75.248121, 39.962937 ], [ -75.249016, 39.963066 ], [ -75.249198, 39.963085 ], [ -75.249333, 39.963094 ], [ -75.249472, 39.963099 ], [ -75.249594, 39.963096 ], [ -75.249794, 39.963082 ], [ -75.250006, 39.963066 ], [ -75.250064, 39.963062 ], [ -75.250131, 39.963055 ], [ -75.250182, 39.963045 ], [ -75.250239, 39.963009 ], [ -75.250937, 39.962914 ], [ -75.251818, 39.962775 ], [ -75.252658, 39.962651 ], [ -75.253064, 39.962602 ], [ -75.253548, 39.962544 ], [ -75.253748, 39.962522 ], [ -75.254105, 39.962483 ], [ -75.25423, 39.962469 ], [ -75.254365, 39.962451 ], [ -75.25457, 39.962419 ], [ -75.254807, 39.962381 ], [ -75.255071, 39.962339 ], [ -75.255436, 39.962281 ], [ -75.255856, 39.962213 ], [ -75.256235, 39.962149 ], [ -75.256565, 39.962094 ], [ -75.257207, 39.961991 ], [ -75.257304, 39.962069 ], [ -75.257481, 39.962123 ], [ -75.258284, 39.962026 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308521", "route_id": "5" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.07905, 40.022929 ], [ -75.07922, 40.023039 ], [ -75.079969, 40.022219 ], [ -75.079839, 40.022119 ], [ -75.07946, 40.021929 ], [ -75.079119, 40.021739 ], [ -75.079259, 40.021599 ], [ -75.079429, 40.021409 ], [ -75.079529, 40.021299 ], [ -75.07972, 40.02108 ], [ -75.07994, 40.02083 ], [ -75.080319, 40.020409 ], [ -75.08043, 40.02029 ], [ -75.08053, 40.02019 ], [ -75.080919, 40.01976 ], [ -75.081359, 40.01928 ], [ -75.08148, 40.019139 ], [ -75.0816, 40.01901 ], [ -75.08201, 40.01857 ], [ -75.08233, 40.01822 ], [ -75.08265, 40.017879 ], [ -75.083289, 40.017179 ], [ -75.083659, 40.01677 ], [ -75.083829, 40.01659 ], [ -75.08403, 40.016369 ], [ -75.084469, 40.015909 ], [ -75.08467, 40.01569 ], [ -75.085189, 40.015119 ], [ -75.085509, 40.014759 ], [ -75.08584, 40.01441 ], [ -75.086349, 40.013849 ], [ -75.086729, 40.01344 ], [ -75.086979, 40.01317 ], [ -75.087129, 40.013009 ], [ -75.08733, 40.012779 ], [ -75.08755, 40.01254 ], [ -75.087659, 40.012419 ], [ -75.087799, 40.01227 ], [ -75.08791, 40.012149 ], [ -75.088029, 40.01199 ], [ -75.08813, 40.011849 ], [ -75.08818, 40.011759 ], [ -75.08827, 40.01162 ], [ -75.088379, 40.01145 ], [ -75.088439, 40.01135 ], [ -75.088529, 40.01121 ], [ -75.088699, 40.01093 ], [ -75.088829, 40.01074 ], [ -75.089059, 40.01039 ], [ -75.089189, 40.01019 ], [ -75.08927, 40.010069 ], [ -75.089409, 40.009859 ], [ -75.089499, 40.009689 ], [ -75.089679, 40.009419 ], [ -75.08989, 40.0091 ], [ -75.09012, 40.008729 ], [ -75.090179, 40.008629 ], [ -75.090539, 40.008079 ], [ -75.09065, 40.007909 ], [ -75.090899, 40.0075 ], [ -75.09093, 40.007459 ], [ -75.090989, 40.007349 ], [ -75.09102, 40.00731 ], [ -75.091169, 40.00705 ], [ -75.09155, 40.006479 ], [ -75.09159, 40.00642 ], [ -75.091849, 40.006019 ], [ -75.09241, 40.005999 ], [ -75.0926, 40.00599 ], [ -75.092749, 40.00598 ], [ -75.093069, 40.00597 ], [ -75.093289, 40.00597 ], [ -75.09318, 40.0058 ], [ -75.09313, 40.00571 ], [ -75.09303, 40.00559 ], [ -75.09287, 40.005399 ], [ -75.092699, 40.00525 ], [ -75.092919, 40.00506 ], [ -75.09353, 40.004499 ], [ -75.09439, 40.00374 ], [ -75.095129, 40.003059 ], [ -75.095809, 40.00245 ], [ -75.096159, 40.00211 ], [ -75.09683, 40.001509 ], [ -75.096969, 40.00138 ], [ -75.097199, 40.001169 ], [ -75.097749, 40.000679 ], [ -75.098, 40.00047 ], [ -75.09834, 40.000159 ], [ -75.09848, 40.000059 ], [ -75.09875, 39.99985 ], [ -75.0988, 39.999819 ], [ -75.09902, 39.99967 ], [ -75.099449, 39.99939 ], [ -75.099639, 39.999269 ], [ -75.10007, 39.998989 ], [ -75.10047, 39.998739 ], [ -75.100849, 39.99848 ], [ -75.101249, 39.99822 ], [ -75.10169, 39.997919 ], [ -75.101709, 39.997909 ], [ -75.10185, 39.997819 ], [ -75.10195, 39.99776 ], [ -75.10204, 39.9977 ], [ -75.10245, 39.99744 ], [ -75.10294, 39.997109 ], [ -75.103369, 39.99681 ], [ -75.10371, 39.99659 ], [ -75.104179, 39.996289 ], [ -75.10465, 39.99599 ], [ -75.105129, 39.995679 ], [ -75.105529, 39.99544 ], [ -75.10718, 39.99455 ], [ -75.1078, 39.994209 ], [ -75.108669, 39.993759 ], [ -75.10947, 39.99337 ], [ -75.11027, 39.992979 ], [ -75.11113, 39.99257 ], [ -75.11131, 39.99248 ], [ -75.1114, 39.992429 ], [ -75.11149, 39.99239 ], [ -75.11163, 39.992319 ], [ -75.11216, 39.992059 ], [ -75.112779, 39.991769 ], [ -75.11414, 39.9912 ], [ -75.11429, 39.99113 ], [ -75.114849, 39.990889 ], [ -75.115109, 39.990779 ], [ -75.11532, 39.990689 ], [ -75.115739, 39.990529 ], [ -75.116009, 39.990429 ], [ -75.11617, 39.990369 ], [ -75.11667, 39.990179 ], [ -75.117189, 39.989979 ], [ -75.11774, 39.98975 ], [ -75.11838, 39.98951 ], [ -75.118979, 39.989279 ], [ -75.11942, 39.98912 ], [ -75.1195, 39.989089 ], [ -75.119609, 39.98905 ], [ -75.11996, 39.988899 ], [ -75.120199, 39.98877 ], [ -75.120429, 39.988649 ], [ -75.120699, 39.9885 ], [ -75.120919, 39.98834 ], [ -75.121049, 39.98822 ], [ -75.121359, 39.987939 ], [ -75.121459, 39.987839 ], [ -75.12161, 39.98769 ], [ -75.12167, 39.987629 ], [ -75.121719, 39.987579 ], [ -75.121829, 39.987489 ], [ -75.122359, 39.987029 ], [ -75.122539, 39.986859 ], [ -75.1227, 39.98671 ], [ -75.12311, 39.98633 ], [ -75.123519, 39.98583 ], [ -75.124109, 39.985129 ], [ -75.12462, 39.98456 ], [ -75.124919, 39.98418 ], [ -75.125819, 39.983229 ], [ -75.1263, 39.982799 ], [ -75.12674, 39.982349 ], [ -75.12683, 39.982249 ], [ -75.126939, 39.98213 ], [ -75.12761, 39.98142 ], [ -75.127759, 39.9813 ], [ -75.127929, 39.98115 ], [ -75.1281, 39.980979 ], [ -75.12855, 39.98052 ], [ -75.129459, 39.97959 ], [ -75.130459, 39.97861 ], [ -75.131049, 39.978009 ], [ -75.131219, 39.977819 ], [ -75.13134, 39.97761 ], [ -75.13179, 39.97681 ], [ -75.132069, 39.97635 ], [ -75.13219, 39.976149 ], [ -75.13265, 39.97538 ], [ -75.132969, 39.97481 ], [ -75.13317, 39.97448 ], [ -75.133389, 39.974079 ], [ -75.133789, 39.97339 ], [ -75.134059, 39.972909 ], [ -75.13413, 39.972789 ], [ -75.13427, 39.97256 ], [ -75.134379, 39.9724 ], [ -75.134409, 39.972259 ], [ -75.134409, 39.97203 ], [ -75.134409, 39.97176 ], [ -75.134409, 39.97167 ], [ -75.134419, 39.971379 ], [ -75.13443, 39.97088 ], [ -75.13444, 39.970379 ], [ -75.13444, 39.97025 ], [ -75.13443, 39.968839 ], [ -75.13476, 39.968729 ], [ -75.13485, 39.96871 ], [ -75.13499, 39.96869 ], [ -75.135139, 39.96869 ], [ -75.135359, 39.96872 ], [ -75.135449, 39.968739 ], [ -75.135639, 39.968769 ], [ -75.135729, 39.96878 ], [ -75.136219, 39.96889 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "308522", "route_id": "5" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.136219, 39.96889 ], [ -75.13578, 39.97032 ], [ -75.135279, 39.97024 ], [ -75.134919, 39.970189 ], [ -75.13461, 39.970189 ], [ -75.13449, 39.97022 ], [ -75.13444, 39.97025 ], [ -75.13444, 39.970379 ], [ -75.13443, 39.97088 ], [ -75.134419, 39.971379 ], [ -75.134409, 39.97167 ], [ -75.134409, 39.97176 ], [ -75.134409, 39.97203 ], [ -75.134409, 39.972259 ], [ -75.134379, 39.9724 ], [ -75.13427, 39.97256 ], [ -75.13413, 39.972789 ], [ -75.134059, 39.972909 ], [ -75.133789, 39.97339 ], [ -75.133389, 39.974079 ], [ -75.13317, 39.97448 ], [ -75.132969, 39.97481 ], [ -75.13265, 39.97538 ], [ -75.13219, 39.976149 ], [ -75.132069, 39.97635 ], [ -75.13179, 39.97681 ], [ -75.13134, 39.97761 ], [ -75.131219, 39.977819 ], [ -75.131049, 39.978009 ], [ -75.130459, 39.97861 ], [ -75.129459, 39.97959 ], [ -75.12855, 39.98052 ], [ -75.1281, 39.980979 ], [ -75.127929, 39.98115 ], [ -75.127759, 39.9813 ], [ -75.12761, 39.98142 ], [ -75.126939, 39.98213 ], [ -75.12683, 39.982249 ], [ -75.12674, 39.982349 ], [ -75.1263, 39.982799 ], [ -75.125819, 39.983229 ], [ -75.124919, 39.98418 ], [ -75.12462, 39.98456 ], [ -75.124109, 39.985129 ], [ -75.123519, 39.98583 ], [ -75.12311, 39.98633 ], [ -75.1227, 39.98671 ], [ -75.122539, 39.986859 ], [ -75.122359, 39.987029 ], [ -75.121829, 39.987489 ], [ -75.121719, 39.987579 ], [ -75.12167, 39.987629 ], [ -75.12161, 39.98769 ], [ -75.121459, 39.987839 ], [ -75.121359, 39.987939 ], [ -75.121049, 39.98822 ], [ -75.120919, 39.98834 ], [ -75.120699, 39.9885 ], [ -75.120429, 39.988649 ], [ -75.120199, 39.98877 ], [ -75.11996, 39.988899 ], [ -75.119609, 39.98905 ], [ -75.1195, 39.989089 ], [ -75.11942, 39.98912 ], [ -75.118979, 39.989279 ], [ -75.11838, 39.98951 ], [ -75.11774, 39.98975 ], [ -75.117189, 39.989979 ], [ -75.11667, 39.990179 ], [ -75.11617, 39.990369 ], [ -75.116009, 39.990429 ], [ -75.115739, 39.990529 ], [ -75.11532, 39.990689 ], [ -75.115109, 39.990779 ], [ -75.114849, 39.990889 ], [ -75.11429, 39.99113 ], [ -75.11414, 39.9912 ], [ -75.112779, 39.991769 ], [ -75.11216, 39.992059 ], [ -75.11163, 39.992319 ], [ -75.11149, 39.99239 ], [ -75.1114, 39.992429 ], [ -75.11131, 39.99248 ], [ -75.11113, 39.99257 ], [ -75.11027, 39.992979 ], [ -75.10947, 39.99337 ], [ -75.108669, 39.993759 ], [ -75.1078, 39.994209 ], [ -75.10718, 39.99455 ], [ -75.105529, 39.99544 ], [ -75.105129, 39.995679 ], [ -75.10465, 39.99599 ], [ -75.104179, 39.996289 ], [ -75.10371, 39.99659 ], [ -75.103369, 39.99681 ], [ -75.10294, 39.997109 ], [ -75.10245, 39.99744 ], [ -75.10204, 39.9977 ], [ -75.10195, 39.99776 ], [ -75.10185, 39.997819 ], [ -75.101709, 39.997909 ], [ -75.10169, 39.997919 ], [ -75.101249, 39.99822 ], [ -75.100849, 39.99848 ], [ -75.10047, 39.998739 ], [ -75.10007, 39.998989 ], [ -75.099639, 39.999269 ], [ -75.099449, 39.99939 ], [ -75.09902, 39.99967 ], [ -75.0988, 39.999819 ], [ -75.09875, 39.99985 ], [ -75.09848, 40.000059 ], [ -75.09834, 40.000159 ], [ -75.098, 40.00047 ], [ -75.097749, 40.000679 ], [ -75.097199, 40.001169 ], [ -75.096969, 40.00138 ], [ -75.09683, 40.001509 ], [ -75.096159, 40.00211 ], [ -75.095809, 40.00245 ], [ -75.095129, 40.003059 ], [ -75.09439, 40.00374 ], [ -75.09353, 40.004499 ], [ -75.092919, 40.00506 ], [ -75.092699, 40.00525 ], [ -75.09287, 40.005399 ], [ -75.09303, 40.00559 ], [ -75.09313, 40.00571 ], [ -75.09318, 40.0058 ], [ -75.093289, 40.00597 ], [ -75.093069, 40.00597 ], [ -75.092749, 40.00598 ], [ -75.0926, 40.00599 ], [ -75.09241, 40.005999 ], [ -75.091849, 40.006019 ], [ -75.09159, 40.00642 ], [ -75.09155, 40.006479 ], [ -75.091169, 40.00705 ], [ -75.09102, 40.00731 ], [ -75.090989, 40.007349 ], [ -75.09093, 40.007459 ], [ -75.090899, 40.0075 ], [ -75.09065, 40.007909 ], [ -75.090539, 40.008079 ], [ -75.090179, 40.008629 ], [ -75.09012, 40.008729 ], [ -75.08989, 40.0091 ], [ -75.089679, 40.009419 ], [ -75.089499, 40.009689 ], [ -75.089409, 40.009859 ], [ -75.08927, 40.010069 ], [ -75.089189, 40.01019 ], [ -75.089059, 40.01039 ], [ -75.088829, 40.01074 ], [ -75.088699, 40.01093 ], [ -75.088529, 40.01121 ], [ -75.088439, 40.01135 ], [ -75.088379, 40.01145 ], [ -75.08827, 40.01162 ], [ -75.08818, 40.011759 ], [ -75.08813, 40.011849 ], [ -75.088029, 40.01199 ], [ -75.08791, 40.012149 ], [ -75.087799, 40.01227 ], [ -75.087659, 40.012419 ], [ -75.08755, 40.01254 ], [ -75.08733, 40.012779 ], [ -75.087129, 40.013009 ], [ -75.086979, 40.01317 ], [ -75.086729, 40.01344 ], [ -75.086349, 40.013849 ], [ -75.08584, 40.01441 ], [ -75.085509, 40.014759 ], [ -75.085189, 40.015119 ], [ -75.08467, 40.01569 ], [ -75.084469, 40.015909 ], [ -75.08403, 40.016369 ], [ -75.083829, 40.01659 ], [ -75.083659, 40.01677 ], [ -75.083289, 40.017179 ], [ -75.08265, 40.017879 ], [ -75.08233, 40.01822 ], [ -75.08201, 40.01857 ], [ -75.0816, 40.01901 ], [ -75.08148, 40.019139 ], [ -75.081359, 40.01928 ], [ -75.080919, 40.01976 ], [ -75.08053, 40.02019 ], [ -75.08043, 40.02029 ], [ -75.080319, 40.020409 ], [ -75.07994, 40.02083 ], [ -75.07972, 40.02108 ], [ -75.079529, 40.021299 ], [ -75.079429, 40.021409 ], [ -75.079259, 40.021599 ], [ -75.079119, 40.021739 ], [ -75.079029, 40.02182 ], [ -75.07895, 40.02188 ], [ -75.078789, 40.02199 ], [ -75.078619, 40.022099 ], [ -75.07856, 40.022139 ], [ -75.07819, 40.022389 ], [ -75.07905, 40.022929 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309291", "route_id": "53" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.099849, 39.984156 ], [ -75.099209, 39.984466 ], [ -75.099033, 39.984252 ], [ -75.09902, 39.984239 ], [ -75.098469, 39.98453 ], [ -75.09781, 39.984869 ], [ -75.09673, 39.98545 ], [ -75.09722, 39.986019 ], [ -75.09745, 39.986309 ], [ -75.097709, 39.986579 ], [ -75.097779, 39.986659 ], [ -75.098, 39.986939 ], [ -75.098239, 39.987219 ], [ -75.098589, 39.98762 ], [ -75.09898, 39.98806 ], [ -75.099269, 39.988379 ], [ -75.09962, 39.988749 ], [ -75.099729, 39.98887 ], [ -75.09998, 39.98914 ], [ -75.10033, 39.989529 ], [ -75.10052, 39.989739 ], [ -75.100939, 39.99024 ], [ -75.101609, 39.99102 ], [ -75.10115, 39.991259 ], [ -75.10086, 39.9914 ], [ -75.100349, 39.99166 ], [ -75.100169, 39.99175 ], [ -75.09998, 39.99185 ], [ -75.09978, 39.991949 ], [ -75.099679, 39.992 ], [ -75.099279, 39.99221 ], [ -75.09899, 39.99236 ], [ -75.098729, 39.992499 ], [ -75.098369, 39.992689 ], [ -75.09813, 39.99282 ], [ -75.097779, 39.993 ], [ -75.09763, 39.99308 ], [ -75.09723, 39.99329 ], [ -75.09701, 39.993409 ], [ -75.096719, 39.99356 ], [ -75.096569, 39.99364 ], [ -75.096249, 39.99381 ], [ -75.09606, 39.99391 ], [ -75.095729, 39.99408 ], [ -75.09552, 39.99419 ], [ -75.0952, 39.99436 ], [ -75.095049, 39.99444 ], [ -75.09493, 39.994499 ], [ -75.094829, 39.99455 ], [ -75.09456, 39.994689 ], [ -75.09425, 39.994849 ], [ -75.09404, 39.994959 ], [ -75.093739, 39.995109 ], [ -75.093639, 39.99516 ], [ -75.093549, 39.995199 ], [ -75.093509, 39.995219 ], [ -75.093239, 39.99536 ], [ -75.093109, 39.99543 ], [ -75.09282, 39.995579 ], [ -75.092699, 39.995639 ], [ -75.09259, 39.9957 ], [ -75.0921, 39.995949 ], [ -75.09236, 39.99624 ], [ -75.0926, 39.99651 ], [ -75.09277, 39.9967 ], [ -75.093429, 39.997449 ], [ -75.09384, 39.997909 ], [ -75.09443, 39.99857 ], [ -75.09457, 39.998729 ], [ -75.094859, 39.99902 ], [ -75.09493, 39.999089 ], [ -75.09497, 39.99912 ], [ -75.095039, 39.999189 ], [ -75.095089, 39.99924 ], [ -75.095229, 39.999369 ], [ -75.095889, 39.999979 ], [ -75.0962, 40.000259 ], [ -75.096529, 40.000589 ], [ -75.096609, 40.00056 ], [ -75.09678, 40.000539 ], [ -75.097749, 40.000679 ], [ -75.09849, 40.000779 ], [ -75.09908, 40.00085 ], [ -75.10006, 40.000979 ], [ -75.10006, 40.00111 ], [ -75.100029, 40.0013 ], [ -75.09997, 40.00157 ], [ -75.09996, 40.00163 ], [ -75.09993, 40.001769 ], [ -75.099909, 40.00184 ], [ -75.09989, 40.00191 ], [ -75.099849, 40.0021 ], [ -75.099819, 40.002229 ], [ -75.099809, 40.00228 ], [ -75.09974, 40.002579 ], [ -75.09969, 40.002789 ], [ -75.09961, 40.00319 ], [ -75.099489, 40.003779 ], [ -75.09943, 40.00406 ], [ -75.099399, 40.00418 ], [ -75.099269, 40.00425 ], [ -75.098769, 40.00452 ], [ -75.09844, 40.0047 ], [ -75.09799, 40.004939 ], [ -75.09736, 40.005299 ], [ -75.097149, 40.00541 ], [ -75.09686, 40.005569 ], [ -75.096349, 40.00586 ], [ -75.096039, 40.006029 ], [ -75.09533, 40.00643 ], [ -75.094859, 40.00667 ], [ -75.09471, 40.006749 ], [ -75.09408, 40.007089 ], [ -75.09431, 40.007469 ], [ -75.094779, 40.00815 ], [ -75.094999, 40.00848 ], [ -75.095279, 40.008899 ], [ -75.09534, 40.008989 ], [ -75.095589, 40.009359 ], [ -75.095729, 40.00956 ], [ -75.095769, 40.009609 ], [ -75.09593, 40.009799 ], [ -75.09601, 40.009899 ], [ -75.09615, 40.01 ], [ -75.096519, 40.010059 ], [ -75.096749, 40.0101 ], [ -75.096809, 40.01011 ], [ -75.09705, 40.010139 ], [ -75.09728, 40.010169 ], [ -75.09737, 40.01018 ], [ -75.09768, 40.01021 ], [ -75.09808, 40.010259 ], [ -75.098469, 40.01031 ], [ -75.098779, 40.010349 ], [ -75.09935, 40.010429 ], [ -75.10002, 40.010519 ], [ -75.10052, 40.01058 ], [ -75.10077, 40.010609 ], [ -75.101249, 40.010679 ], [ -75.101349, 40.010689 ], [ -75.10146, 40.010709 ], [ -75.10172, 40.01075 ], [ -75.102019, 40.010789 ], [ -75.102199, 40.01081 ], [ -75.102729, 40.010879 ], [ -75.10316, 40.01094 ], [ -75.103459, 40.010969 ], [ -75.104139, 40.011059 ], [ -75.104809, 40.011149 ], [ -75.105439, 40.011229 ], [ -75.106069, 40.0113 ], [ -75.10676, 40.011399 ], [ -75.107319, 40.01147 ], [ -75.1078, 40.011519 ], [ -75.108039, 40.01155 ], [ -75.10862, 40.01163 ], [ -75.10887, 40.01166 ], [ -75.10902, 40.011679 ], [ -75.109209, 40.01171 ], [ -75.109449, 40.01174 ], [ -75.10978, 40.011789 ], [ -75.10997, 40.01182 ], [ -75.110529, 40.01189 ], [ -75.110889, 40.01193 ], [ -75.111149, 40.011969 ], [ -75.11126, 40.01198 ], [ -75.1114, 40.012 ], [ -75.111729, 40.012049 ], [ -75.11217, 40.01211 ], [ -75.11243, 40.012139 ], [ -75.11262, 40.01217 ], [ -75.112949, 40.012209 ], [ -75.113819, 40.012319 ], [ -75.114809, 40.01245 ], [ -75.115429, 40.01253 ], [ -75.11616, 40.01262 ], [ -75.116869, 40.01271 ], [ -75.117319, 40.012769 ], [ -75.117719, 40.01282 ], [ -75.1181, 40.012869 ], [ -75.118569, 40.012919 ], [ -75.1187, 40.012939 ], [ -75.119109, 40.01299 ], [ -75.11941, 40.013019 ], [ -75.119929, 40.01309 ], [ -75.120069, 40.013109 ], [ -75.12063, 40.01318 ], [ -75.120789, 40.013199 ], [ -75.121269, 40.01327 ], [ -75.121469, 40.013289 ], [ -75.12161, 40.013309 ], [ -75.121779, 40.013319 ], [ -75.122219, 40.013389 ], [ -75.122409, 40.01342 ], [ -75.122899, 40.013479 ], [ -75.12302, 40.013489 ], [ -75.123089, 40.013499 ], [ -75.12338, 40.01353 ], [ -75.123489, 40.01354 ], [ -75.12368, 40.013569 ], [ -75.124599, 40.013679 ], [ -75.12471, 40.01369 ], [ -75.12518, 40.013749 ], [ -75.125459, 40.01378 ], [ -75.12572, 40.01381 ], [ -75.12599, 40.013839 ], [ -75.126319, 40.01388 ], [ -75.126449, 40.0139 ], [ -75.126549, 40.013919 ], [ -75.126589, 40.013929 ], [ -75.126899, 40.01397 ], [ -75.127309, 40.014019 ], [ -75.12849, 40.014189 ], [ -75.128659, 40.014209 ], [ -75.128879, 40.01423 ], [ -75.12926, 40.014279 ], [ -75.12994, 40.014369 ], [ -75.130469, 40.01445 ], [ -75.130649, 40.014479 ], [ -75.131099, 40.014549 ], [ -75.13139, 40.014579 ], [ -75.131539, 40.0146 ], [ -75.131709, 40.01462 ], [ -75.132129, 40.014669 ], [ -75.13233, 40.0147 ], [ -75.132789, 40.014759 ], [ -75.133479, 40.01486 ], [ -75.13452, 40.01499 ], [ -75.134649, 40.014999 ], [ -75.13521, 40.01507 ], [ -75.135849, 40.01517 ], [ -75.136489, 40.015269 ], [ -75.137159, 40.015359 ], [ -75.137559, 40.01541 ], [ -75.137979, 40.015459 ], [ -75.13831, 40.01549 ], [ -75.13881, 40.015539 ], [ -75.13912, 40.015569 ], [ -75.139449, 40.01561 ], [ -75.139769, 40.015649 ], [ -75.140089, 40.0157 ], [ -75.140579, 40.015749 ], [ -75.140849, 40.01579 ], [ -75.141119, 40.015829 ], [ -75.14147, 40.014219 ], [ -75.14169, 40.01317 ], [ -75.141749, 40.012919 ], [ -75.141799, 40.0127 ], [ -75.142019, 40.01273 ], [ -75.14235, 40.012779 ], [ -75.1428, 40.012849 ], [ -75.14331, 40.012929 ], [ -75.143639, 40.01144 ], [ -75.14398, 40.00995 ], [ -75.14433, 40.008369 ], [ -75.14484, 40.008439 ], [ -75.14525, 40.0085 ], [ -75.145529, 40.008539 ], [ -75.14591, 40.00858 ], [ -75.14664, 40.00868 ], [ -75.147189, 40.00875 ], [ -75.147609, 40.008799 ], [ -75.148449, 40.008909 ], [ -75.149039, 40.008979 ], [ -75.149949, 40.0091 ], [ -75.15037, 40.009149 ], [ -75.15081, 40.00921 ], [ -75.15123, 40.009249 ], [ -75.15172, 40.009319 ], [ -75.15213, 40.00937 ], [ -75.152869, 40.00948 ], [ -75.15365, 40.00958 ], [ -75.154029, 40.009609 ], [ -75.154439, 40.00964 ], [ -75.15464, 40.00976 ], [ -75.15505, 40.010229 ], [ -75.155749, 40.011129 ], [ -75.155979, 40.01147 ], [ -75.156369, 40.011969 ], [ -75.156999, 40.0128 ], [ -75.156929, 40.013139 ], [ -75.15663, 40.0145 ], [ -75.156659, 40.01462 ], [ -75.15689, 40.014919 ], [ -75.157049, 40.01513 ], [ -75.157589, 40.015819 ], [ -75.15776, 40.01605 ], [ -75.157919, 40.01625 ], [ -75.158229, 40.01666 ], [ -75.158539, 40.017059 ], [ -75.158719, 40.01723 ], [ -75.158809, 40.01741 ], [ -75.159039, 40.017699 ], [ -75.15929, 40.01804 ], [ -75.15959, 40.018429 ], [ -75.15977, 40.01866 ], [ -75.159939, 40.018889 ], [ -75.16004, 40.01901 ], [ -75.160299, 40.019339 ], [ -75.160419, 40.019499 ], [ -75.16049, 40.01958 ], [ -75.16059, 40.01967 ], [ -75.160599, 40.01976 ], [ -75.160659, 40.019959 ], [ -75.16068, 40.02017 ], [ -75.16067, 40.02027 ], [ -75.16058, 40.020519 ], [ -75.16053, 40.02063 ], [ -75.16031, 40.02117 ], [ -75.16023, 40.021329 ], [ -75.160379, 40.021419 ], [ -75.16063, 40.02155 ], [ -75.16072, 40.02161 ], [ -75.1609, 40.0217 ], [ -75.16098, 40.021739 ], [ -75.16157, 40.022049 ], [ -75.161639, 40.02209 ], [ -75.161909, 40.022229 ], [ -75.162039, 40.022299 ], [ -75.162639, 40.022649 ], [ -75.163209, 40.022949 ], [ -75.163929, 40.02334 ], [ -75.16458, 40.02369 ], [ -75.165239, 40.02408 ], [ -75.165599, 40.024269 ], [ -75.16613, 40.024559 ], [ -75.166369, 40.02469 ], [ -75.16679, 40.024919 ], [ -75.166999, 40.02504 ], [ -75.167539, 40.02532 ], [ -75.167629, 40.025369 ], [ -75.169159, 40.02623 ], [ -75.170999, 40.02722 ], [ -75.17147, 40.02747 ], [ -75.1725, 40.02804 ], [ -75.1736, 40.02867 ], [ -75.17459, 40.029239 ], [ -75.174999, 40.029489 ], [ -75.175629, 40.029849 ], [ -75.17566, 40.029869 ], [ -75.176179, 40.03018 ], [ -75.176679, 40.030469 ], [ -75.177619, 40.031039 ], [ -75.17781, 40.03115 ], [ -75.17791, 40.031199 ], [ -75.177969, 40.03124 ], [ -75.178339, 40.031459 ], [ -75.17891, 40.03179 ], [ -75.17939, 40.032039 ], [ -75.17961, 40.03216 ], [ -75.17979, 40.03226 ], [ -75.180219, 40.03251 ], [ -75.180359, 40.03259 ], [ -75.180489, 40.032659 ], [ -75.180719, 40.03279 ], [ -75.18101, 40.03296 ], [ -75.18123, 40.03308 ], [ -75.18205, 40.03358 ], [ -75.182889, 40.03406 ], [ -75.18435, 40.034909 ], [ -75.1848, 40.035169 ], [ -75.18543, 40.035529 ], [ -75.186299, 40.03602 ], [ -75.186439, 40.0361 ], [ -75.187199, 40.03657 ], [ -75.18731, 40.036629 ], [ -75.187479, 40.03674 ], [ -75.187919, 40.03703 ], [ -75.18836, 40.03729 ], [ -75.18899, 40.03763 ], [ -75.18911, 40.037699 ], [ -75.18933, 40.03782 ], [ -75.189449, 40.037879 ], [ -75.189759, 40.038049 ], [ -75.189899, 40.038129 ], [ -75.19006, 40.038229 ], [ -75.19061, 40.03854 ], [ -75.191169, 40.038849 ], [ -75.191739, 40.03918 ], [ -75.19204, 40.039229 ], [ -75.192639, 40.039209 ], [ -75.192779, 40.039229 ], [ -75.192999, 40.039299 ], [ -75.193199, 40.039389 ], [ -75.1934, 40.039489 ], [ -75.19367, 40.039689 ], [ -75.19393, 40.040019 ], [ -75.19398, 40.04033 ], [ -75.19398, 40.040749 ], [ -75.194009, 40.04096 ], [ -75.194099, 40.04126 ], [ -75.19424, 40.04151 ], [ -75.194399, 40.041659 ], [ -75.19465, 40.04186 ], [ -75.19474, 40.041919 ], [ -75.194809, 40.04195 ], [ -75.19492, 40.041999 ], [ -75.19505, 40.04205 ], [ -75.19515, 40.04208 ], [ -75.19556, 40.04217 ], [ -75.19608, 40.042199 ], [ -75.196469, 40.042179 ], [ -75.19658, 40.04217 ], [ -75.196689, 40.04217 ], [ -75.1968, 40.042179 ], [ -75.197009, 40.04223 ], [ -75.19712, 40.042269 ], [ -75.197959, 40.042729 ], [ -75.19902, 40.043379 ], [ -75.19937, 40.043619 ], [ -75.20005, 40.044269 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309292", "route_id": "53" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.20005, 40.044269 ], [ -75.19937, 40.043619 ], [ -75.19902, 40.043379 ], [ -75.197959, 40.042729 ], [ -75.19712, 40.042269 ], [ -75.197009, 40.04223 ], [ -75.1968, 40.042179 ], [ -75.196689, 40.04217 ], [ -75.19658, 40.04217 ], [ -75.196469, 40.042179 ], [ -75.19608, 40.042199 ], [ -75.19556, 40.04217 ], [ -75.19515, 40.04208 ], [ -75.19505, 40.04205 ], [ -75.19492, 40.041999 ], [ -75.194809, 40.04195 ], [ -75.19474, 40.041919 ], [ -75.19465, 40.04186 ], [ -75.194399, 40.041659 ], [ -75.19424, 40.04151 ], [ -75.194099, 40.04126 ], [ -75.194009, 40.04096 ], [ -75.19398, 40.040749 ], [ -75.19398, 40.04033 ], [ -75.19393, 40.040019 ], [ -75.19367, 40.039689 ], [ -75.1934, 40.039489 ], [ -75.193199, 40.039389 ], [ -75.192999, 40.039299 ], [ -75.192779, 40.039229 ], [ -75.192639, 40.039209 ], [ -75.19204, 40.039229 ], [ -75.191739, 40.03918 ], [ -75.191169, 40.038849 ], [ -75.19061, 40.03854 ], [ -75.19006, 40.038229 ], [ -75.189899, 40.038129 ], [ -75.189759, 40.038049 ], [ -75.189449, 40.037879 ], [ -75.18933, 40.03782 ], [ -75.18911, 40.037699 ], [ -75.18899, 40.03763 ], [ -75.18836, 40.03729 ], [ -75.187919, 40.03703 ], [ -75.187479, 40.03674 ], [ -75.18731, 40.036629 ], [ -75.187199, 40.03657 ], [ -75.186439, 40.0361 ], [ -75.186299, 40.03602 ], [ -75.18543, 40.035529 ], [ -75.1848, 40.035169 ], [ -75.18435, 40.034909 ], [ -75.182889, 40.03406 ], [ -75.18205, 40.03358 ], [ -75.18123, 40.03308 ], [ -75.18101, 40.03296 ], [ -75.180719, 40.03279 ], [ -75.180489, 40.032659 ], [ -75.180359, 40.03259 ], [ -75.180219, 40.03251 ], [ -75.17979, 40.03226 ], [ -75.17961, 40.03216 ], [ -75.17939, 40.032039 ], [ -75.17891, 40.03179 ], [ -75.178339, 40.031459 ], [ -75.177969, 40.03124 ], [ -75.17791, 40.031199 ], [ -75.17781, 40.03115 ], [ -75.177619, 40.031039 ], [ -75.176679, 40.030469 ], [ -75.176179, 40.03018 ], [ -75.17566, 40.029869 ], [ -75.175629, 40.029849 ], [ -75.174999, 40.029489 ], [ -75.17459, 40.029239 ], [ -75.1736, 40.02867 ], [ -75.1725, 40.02804 ], [ -75.17147, 40.02747 ], [ -75.170999, 40.02722 ], [ -75.169159, 40.02623 ], [ -75.167629, 40.025369 ], [ -75.167539, 40.02532 ], [ -75.166999, 40.02504 ], [ -75.16679, 40.024919 ], [ -75.166369, 40.02469 ], [ -75.16613, 40.024559 ], [ -75.165599, 40.024269 ], [ -75.165239, 40.02408 ], [ -75.16458, 40.02369 ], [ -75.163929, 40.02334 ], [ -75.163209, 40.022949 ], [ -75.162639, 40.022649 ], [ -75.162039, 40.022299 ], [ -75.161909, 40.022229 ], [ -75.161639, 40.02209 ], [ -75.16157, 40.022049 ], [ -75.16098, 40.021739 ], [ -75.1609, 40.0217 ], [ -75.16072, 40.02161 ], [ -75.16063, 40.02155 ], [ -75.160379, 40.021419 ], [ -75.16023, 40.021329 ], [ -75.16031, 40.02117 ], [ -75.16053, 40.02063 ], [ -75.16058, 40.020519 ], [ -75.16067, 40.02027 ], [ -75.16068, 40.02017 ], [ -75.160659, 40.019959 ], [ -75.160599, 40.01976 ], [ -75.16059, 40.01967 ], [ -75.16049, 40.01958 ], [ -75.160419, 40.019499 ], [ -75.160299, 40.019339 ], [ -75.16004, 40.01901 ], [ -75.159939, 40.018889 ], [ -75.15977, 40.01866 ], [ -75.15959, 40.018429 ], [ -75.15929, 40.01804 ], [ -75.159039, 40.017699 ], [ -75.158809, 40.01741 ], [ -75.158719, 40.01723 ], [ -75.158539, 40.017059 ], [ -75.158229, 40.01666 ], [ -75.157919, 40.01625 ], [ -75.15776, 40.01605 ], [ -75.157589, 40.015819 ], [ -75.157049, 40.01513 ], [ -75.15689, 40.014919 ], [ -75.156659, 40.01462 ], [ -75.15663, 40.0145 ], [ -75.156929, 40.013139 ], [ -75.156999, 40.0128 ], [ -75.156369, 40.011969 ], [ -75.155979, 40.01147 ], [ -75.155749, 40.011129 ], [ -75.156019, 40.009869 ], [ -75.155559, 40.009809 ], [ -75.15522, 40.00976 ], [ -75.154839, 40.009699 ], [ -75.154439, 40.00964 ], [ -75.154029, 40.009609 ], [ -75.15365, 40.00958 ], [ -75.152869, 40.00948 ], [ -75.15213, 40.00937 ], [ -75.15172, 40.009319 ], [ -75.15123, 40.009249 ], [ -75.15081, 40.00921 ], [ -75.15037, 40.009149 ], [ -75.149949, 40.0091 ], [ -75.149039, 40.008979 ], [ -75.148449, 40.008909 ], [ -75.147609, 40.008799 ], [ -75.147189, 40.00875 ], [ -75.14664, 40.00868 ], [ -75.14591, 40.00858 ], [ -75.145529, 40.008539 ], [ -75.14525, 40.0085 ], [ -75.14484, 40.008439 ], [ -75.14433, 40.008369 ], [ -75.14398, 40.00995 ], [ -75.143639, 40.01144 ], [ -75.14331, 40.012929 ], [ -75.1428, 40.012849 ], [ -75.14235, 40.012779 ], [ -75.142019, 40.01273 ], [ -75.141799, 40.0127 ], [ -75.141749, 40.012919 ], [ -75.14169, 40.01317 ], [ -75.14147, 40.014219 ], [ -75.141119, 40.015829 ], [ -75.140849, 40.01579 ], [ -75.140579, 40.015749 ], [ -75.140089, 40.0157 ], [ -75.139769, 40.015649 ], [ -75.139449, 40.01561 ], [ -75.13912, 40.015569 ], [ -75.13881, 40.015539 ], [ -75.13831, 40.01549 ], [ -75.137979, 40.015459 ], [ -75.137559, 40.01541 ], [ -75.137159, 40.015359 ], [ -75.136489, 40.015269 ], [ -75.135849, 40.01517 ], [ -75.13521, 40.01507 ], [ -75.134649, 40.014999 ], [ -75.13452, 40.01499 ], [ -75.133479, 40.01486 ], [ -75.132789, 40.014759 ], [ -75.13233, 40.0147 ], [ -75.132129, 40.014669 ], [ -75.131709, 40.01462 ], [ -75.131539, 40.0146 ], [ -75.13139, 40.014579 ], [ -75.131099, 40.014549 ], [ -75.130649, 40.014479 ], [ -75.130469, 40.01445 ], [ -75.12994, 40.014369 ], [ -75.12926, 40.014279 ], [ -75.128879, 40.01423 ], [ -75.128659, 40.014209 ], [ -75.12849, 40.014189 ], [ -75.127309, 40.014019 ], [ -75.126899, 40.01397 ], [ -75.126589, 40.013929 ], [ -75.126549, 40.013919 ], [ -75.126449, 40.0139 ], [ -75.126319, 40.01388 ], [ -75.12599, 40.013839 ], [ -75.12572, 40.01381 ], [ -75.125459, 40.01378 ], [ -75.12518, 40.013749 ], [ -75.12471, 40.01369 ], [ -75.124599, 40.013679 ], [ -75.12368, 40.013569 ], [ -75.123489, 40.01354 ], [ -75.12338, 40.01353 ], [ -75.123089, 40.013499 ], [ -75.12302, 40.013489 ], [ -75.122899, 40.013479 ], [ -75.122409, 40.01342 ], [ -75.122219, 40.013389 ], [ -75.121779, 40.013319 ], [ -75.12161, 40.013309 ], [ -75.121469, 40.013289 ], [ -75.121269, 40.01327 ], [ -75.120789, 40.013199 ], [ -75.12063, 40.01318 ], [ -75.120069, 40.013109 ], [ -75.119929, 40.01309 ], [ -75.11941, 40.013019 ], [ -75.119109, 40.01299 ], [ -75.1187, 40.012939 ], [ -75.118569, 40.012919 ], [ -75.1181, 40.012869 ], [ -75.117719, 40.01282 ], [ -75.117319, 40.012769 ], [ -75.116869, 40.01271 ], [ -75.11616, 40.01262 ], [ -75.115429, 40.01253 ], [ -75.114809, 40.01245 ], [ -75.113819, 40.012319 ], [ -75.112949, 40.012209 ], [ -75.11262, 40.01217 ], [ -75.11243, 40.012139 ], [ -75.11217, 40.01211 ], [ -75.111729, 40.012049 ], [ -75.1114, 40.012 ], [ -75.11126, 40.01198 ], [ -75.111149, 40.011969 ], [ -75.110889, 40.01193 ], [ -75.110529, 40.01189 ], [ -75.10997, 40.01182 ], [ -75.10978, 40.011789 ], [ -75.109449, 40.01174 ], [ -75.109209, 40.01171 ], [ -75.10902, 40.011679 ], [ -75.10887, 40.01166 ], [ -75.10862, 40.01163 ], [ -75.108039, 40.01155 ], [ -75.1078, 40.011519 ], [ -75.107319, 40.01147 ], [ -75.10676, 40.011399 ], [ -75.106069, 40.0113 ], [ -75.105439, 40.011229 ], [ -75.104809, 40.011149 ], [ -75.104139, 40.011059 ], [ -75.103459, 40.010969 ], [ -75.10316, 40.01094 ], [ -75.102729, 40.010879 ], [ -75.102199, 40.01081 ], [ -75.102019, 40.010789 ], [ -75.10172, 40.01075 ], [ -75.10146, 40.010709 ], [ -75.101349, 40.010689 ], [ -75.101249, 40.010679 ], [ -75.10077, 40.010609 ], [ -75.10052, 40.01058 ], [ -75.10002, 40.010519 ], [ -75.09935, 40.010429 ], [ -75.098779, 40.010349 ], [ -75.098469, 40.01031 ], [ -75.09808, 40.010259 ], [ -75.09768, 40.01021 ], [ -75.09737, 40.01018 ], [ -75.09728, 40.010169 ], [ -75.09705, 40.010139 ], [ -75.096809, 40.01011 ], [ -75.096749, 40.0101 ], [ -75.096519, 40.010059 ], [ -75.09615, 40.01 ], [ -75.09601, 40.009899 ], [ -75.09593, 40.009799 ], [ -75.095769, 40.009609 ], [ -75.095729, 40.00956 ], [ -75.095589, 40.009359 ], [ -75.09534, 40.008989 ], [ -75.095279, 40.008899 ], [ -75.094999, 40.00848 ], [ -75.094779, 40.00815 ], [ -75.09431, 40.007469 ], [ -75.09408, 40.007089 ], [ -75.09471, 40.006749 ], [ -75.094859, 40.00667 ], [ -75.09533, 40.00643 ], [ -75.096039, 40.006029 ], [ -75.096349, 40.00586 ], [ -75.09686, 40.005569 ], [ -75.097149, 40.00541 ], [ -75.09736, 40.005299 ], [ -75.09799, 40.004939 ], [ -75.09844, 40.0047 ], [ -75.098769, 40.00452 ], [ -75.099269, 40.00425 ], [ -75.099399, 40.00418 ], [ -75.09943, 40.00406 ], [ -75.099489, 40.003779 ], [ -75.09961, 40.00319 ], [ -75.09969, 40.002789 ], [ -75.09974, 40.002579 ], [ -75.099809, 40.00228 ], [ -75.099819, 40.002229 ], [ -75.099849, 40.0021 ], [ -75.09989, 40.00191 ], [ -75.099909, 40.00184 ], [ -75.09993, 40.001769 ], [ -75.09996, 40.00163 ], [ -75.09997, 40.00157 ], [ -75.100029, 40.0013 ], [ -75.10006, 40.00111 ], [ -75.10006, 40.000979 ], [ -75.09908, 40.00085 ], [ -75.09849, 40.000779 ], [ -75.097749, 40.000679 ], [ -75.09678, 40.000539 ], [ -75.096609, 40.00056 ], [ -75.096529, 40.000589 ], [ -75.0962, 40.000259 ], [ -75.095889, 39.999979 ], [ -75.095229, 39.999369 ], [ -75.095089, 39.99924 ], [ -75.095039, 39.999189 ], [ -75.09497, 39.99912 ], [ -75.09493, 39.999089 ], [ -75.094859, 39.99902 ], [ -75.09457, 39.998729 ], [ -75.09443, 39.99857 ], [ -75.09384, 39.997909 ], [ -75.093429, 39.997449 ], [ -75.09277, 39.9967 ], [ -75.0926, 39.99651 ], [ -75.09236, 39.99624 ], [ -75.0921, 39.995949 ], [ -75.09259, 39.9957 ], [ -75.092699, 39.995639 ], [ -75.09282, 39.995579 ], [ -75.093109, 39.99543 ], [ -75.093239, 39.99536 ], [ -75.093509, 39.995219 ], [ -75.093549, 39.995199 ], [ -75.093639, 39.99516 ], [ -75.093739, 39.995109 ], [ -75.09404, 39.994959 ], [ -75.09425, 39.994849 ], [ -75.09456, 39.994689 ], [ -75.094829, 39.99455 ], [ -75.09493, 39.994499 ], [ -75.095049, 39.99444 ], [ -75.0952, 39.99436 ], [ -75.09552, 39.99419 ], [ -75.095729, 39.99408 ], [ -75.09606, 39.99391 ], [ -75.096249, 39.99381 ], [ -75.096569, 39.99364 ], [ -75.096719, 39.99356 ], [ -75.09701, 39.993409 ], [ -75.09723, 39.99329 ], [ -75.09763, 39.99308 ], [ -75.097779, 39.993 ], [ -75.09813, 39.99282 ], [ -75.098369, 39.992689 ], [ -75.098729, 39.992499 ], [ -75.09899, 39.99236 ], [ -75.099279, 39.99221 ], [ -75.099679, 39.992 ], [ -75.09978, 39.991949 ], [ -75.09998, 39.99185 ], [ -75.100169, 39.99175 ], [ -75.100349, 39.99166 ], [ -75.10086, 39.9914 ], [ -75.10115, 39.991259 ], [ -75.101609, 39.99102 ], [ -75.100939, 39.99024 ], [ -75.10052, 39.989739 ], [ -75.10033, 39.989529 ], [ -75.09998, 39.98914 ], [ -75.099729, 39.98887 ], [ -75.09962, 39.988749 ], [ -75.099269, 39.988379 ], [ -75.09898, 39.98806 ], [ -75.098589, 39.98762 ], [ -75.098239, 39.987219 ], [ -75.098, 39.986939 ], [ -75.097779, 39.986659 ], [ -75.097709, 39.986579 ], [ -75.09745, 39.986309 ], [ -75.09722, 39.986019 ], [ -75.09673, 39.98545 ], [ -75.09781, 39.984869 ], [ -75.098469, 39.98453 ], [ -75.09902, 39.984239 ], [ -75.09915, 39.98418 ], [ -75.099409, 39.984039 ], [ -75.099549, 39.983969 ], [ -75.099819, 39.98383 ], [ -75.100087, 39.983692 ], [ -75.100099, 39.98371 ], [ -75.100275, 39.983916 ], [ -75.099849, 39.984156 ], [ -75.099209, 39.984466 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309298", "route_id": "38" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.207381, 40.014925 ], [ -75.20726, 40.01506 ], [ -75.206999, 40.01498 ], [ -75.20681, 40.014929 ], [ -75.206559, 40.01486 ], [ -75.20649, 40.014839 ], [ -75.20643, 40.014819 ], [ -75.20639, 40.01481 ], [ -75.20626, 40.01478 ], [ -75.206149, 40.014749 ], [ -75.20603, 40.01472 ], [ -75.205829, 40.014579 ], [ -75.20537, 40.01435 ], [ -75.20528, 40.014289 ], [ -75.20513, 40.014119 ], [ -75.205029, 40.013949 ], [ -75.20499, 40.013819 ], [ -75.20496, 40.01369 ], [ -75.20495, 40.013549 ], [ -75.20496, 40.013319 ], [ -75.20496, 40.013129 ], [ -75.204979, 40.012919 ], [ -75.204979, 40.012669 ], [ -75.205, 40.012569 ], [ -75.20504, 40.012489 ], [ -75.2051, 40.012399 ], [ -75.205239, 40.01227 ], [ -75.205339, 40.01218 ], [ -75.20541, 40.012129 ], [ -75.2055, 40.01207 ], [ -75.20562, 40.01198 ], [ -75.206019, 40.011689 ], [ -75.20613, 40.011609 ], [ -75.206379, 40.011429 ], [ -75.206559, 40.0113 ], [ -75.20663, 40.011239 ], [ -75.20671, 40.01118 ], [ -75.206819, 40.01109 ], [ -75.20693, 40.01101 ], [ -75.20716, 40.010879 ], [ -75.207369, 40.01072 ], [ -75.20756, 40.01058 ], [ -75.207849, 40.01038 ], [ -75.207999, 40.01028 ], [ -75.20814, 40.01019 ], [ -75.208259, 40.01011 ], [ -75.20838, 40.01002 ], [ -75.2085, 40.00995 ], [ -75.208889, 40.009699 ], [ -75.209529, 40.009339 ], [ -75.20981, 40.009179 ], [ -75.210189, 40.008979 ], [ -75.2104, 40.008869 ], [ -75.2105, 40.008809 ], [ -75.210609, 40.00874 ], [ -75.210689, 40.00867 ], [ -75.210749, 40.00857 ], [ -75.210419, 40.008169 ], [ -75.210339, 40.008079 ], [ -75.210099, 40.00779 ], [ -75.209839, 40.00748 ], [ -75.209619, 40.00724 ], [ -75.209519, 40.00714 ], [ -75.208629, 40.00642 ], [ -75.20852, 40.00634 ], [ -75.20842, 40.006299 ], [ -75.20819, 40.00625 ], [ -75.20796, 40.00626 ], [ -75.20775, 40.00633 ], [ -75.207459, 40.00651 ], [ -75.20716, 40.00677 ], [ -75.20689, 40.00696 ], [ -75.206689, 40.00707 ], [ -75.206369, 40.007189 ], [ -75.20357, 40.007809 ], [ -75.20343, 40.007829 ], [ -75.20324, 40.007829 ], [ -75.202989, 40.007809 ], [ -75.202809, 40.00777 ], [ -75.20261, 40.007719 ], [ -75.202409, 40.007649 ], [ -75.20198, 40.0075 ], [ -75.202279, 40.007079 ], [ -75.2023, 40.00696 ], [ -75.202239, 40.00686 ], [ -75.201999, 40.00667 ], [ -75.201819, 40.006569 ], [ -75.20172, 40.006539 ], [ -75.201519, 40.0065 ], [ -75.201059, 40.00653 ], [ -75.200849, 40.00652 ], [ -75.20054, 40.00643 ], [ -75.20045, 40.006389 ], [ -75.200309, 40.00624 ], [ -75.20023, 40.00606 ], [ -75.200219, 40.00586 ], [ -75.20028, 40.005669 ], [ -75.20041, 40.00551 ], [ -75.200489, 40.005449 ], [ -75.200579, 40.00541 ], [ -75.201199, 40.005219 ], [ -75.201519, 40.005099 ], [ -75.201919, 40.00488 ], [ -75.202099, 40.0047 ], [ -75.202199, 40.004559 ], [ -75.20261, 40.004 ], [ -75.20275, 40.00381 ], [ -75.20289, 40.003659 ], [ -75.202999, 40.00355 ], [ -75.203189, 40.003419 ], [ -75.2036, 40.003309 ], [ -75.20406, 40.00325 ], [ -75.20428, 40.003219 ], [ -75.205059, 40.0031 ], [ -75.20636, 40.0029 ], [ -75.20748, 40.00273 ], [ -75.207669, 40.002699 ], [ -75.207899, 40.002669 ], [ -75.208209, 40.00262 ], [ -75.208349, 40.002599 ], [ -75.209069, 40.00248 ], [ -75.20924, 40.00245 ], [ -75.20951, 40.00239 ], [ -75.20981, 40.002339 ], [ -75.20991, 40.002319 ], [ -75.210159, 40.00228 ], [ -75.210519, 40.002219 ], [ -75.211109, 40.00212 ], [ -75.211009, 40.00176 ], [ -75.210929, 40.00156 ], [ -75.210689, 40.00119 ], [ -75.210429, 40.000899 ], [ -75.21027, 40.00074 ], [ -75.210069, 40.000619 ], [ -75.20968, 40.000429 ], [ -75.20959, 40.000319 ], [ -75.20955, 40.0002 ], [ -75.20955, 40.00013 ], [ -75.209559, 40.00011 ], [ -75.20964, 39.99985 ], [ -75.20973, 39.99966 ], [ -75.21094, 39.999969 ], [ -75.21224, 40.0003 ], [ -75.21306, 40.000509 ], [ -75.213579, 40.000629 ], [ -75.214119, 40.00075 ], [ -75.21473, 40.00091 ], [ -75.215009, 40.000969 ], [ -75.21539, 40.00109 ], [ -75.21581, 40.00119 ], [ -75.21752, 40.001609 ], [ -75.218109, 40.00175 ], [ -75.21891, 40.00194 ], [ -75.219749, 40.002149 ], [ -75.22007, 40.002229 ], [ -75.220189, 40.002239 ], [ -75.219959, 40.00146 ], [ -75.219869, 40.00113 ], [ -75.219779, 40.000789 ], [ -75.21976, 40.000719 ], [ -75.21971, 40.000529 ], [ -75.21959, 40.0001 ], [ -75.21953, 39.99986 ], [ -75.21941, 39.999429 ], [ -75.21936, 39.99921 ], [ -75.21917, 39.99834 ], [ -75.21909, 39.998169 ], [ -75.219019, 39.998019 ], [ -75.219, 39.997839 ], [ -75.218969, 39.997659 ], [ -75.21895, 39.9976 ], [ -75.21886, 39.99725 ], [ -75.218829, 39.99713 ], [ -75.218709, 39.996739 ], [ -75.218519, 39.996189 ], [ -75.218389, 39.99579 ], [ -75.21833, 39.99554 ], [ -75.218289, 39.995409 ], [ -75.218159, 39.994929 ], [ -75.21809, 39.994689 ], [ -75.21797, 39.99427 ], [ -75.21783, 39.99371 ], [ -75.21782, 39.993669 ], [ -75.21774, 39.99338 ], [ -75.217629, 39.992949 ], [ -75.2175, 39.99248 ], [ -75.217439, 39.992249 ], [ -75.21711, 39.991059 ], [ -75.21675, 39.98976 ], [ -75.21639, 39.988469 ], [ -75.216309, 39.988179 ], [ -75.216189, 39.98777 ], [ -75.215949, 39.98689 ], [ -75.21588, 39.986659 ], [ -75.215639, 39.98581 ], [ -75.21552, 39.98534 ], [ -75.215469, 39.98516 ], [ -75.21539, 39.984869 ], [ -75.2153, 39.98453 ], [ -75.214879, 39.98303 ], [ -75.21482, 39.98282 ], [ -75.21462, 39.98211 ], [ -75.21427, 39.98078 ], [ -75.21418, 39.98042 ], [ -75.21414, 39.980279 ], [ -75.214019, 39.97987 ], [ -75.21396, 39.979639 ], [ -75.213879, 39.97935 ], [ -75.21381, 39.979089 ], [ -75.21368, 39.97861 ], [ -75.2136, 39.97833 ], [ -75.213439, 39.97778 ], [ -75.21284, 39.977549 ], [ -75.212439, 39.977399 ], [ -75.211899, 39.977199 ], [ -75.211279, 39.97697 ], [ -75.210959, 39.976849 ], [ -75.21035, 39.97663 ], [ -75.209399, 39.97626 ], [ -75.209339, 39.976239 ], [ -75.208619, 39.97599 ], [ -75.20838, 39.97589 ], [ -75.207899, 39.97571 ], [ -75.2069, 39.97535 ], [ -75.206689, 39.97527 ], [ -75.20661, 39.975249 ], [ -75.204969, 39.97464 ], [ -75.2046, 39.974499 ], [ -75.20432, 39.97439 ], [ -75.20433, 39.974349 ], [ -75.20433, 39.974309 ], [ -75.20432, 39.97418 ], [ -75.204309, 39.97412 ], [ -75.20418, 39.97339 ], [ -75.20406, 39.972699 ], [ -75.203989, 39.972249 ], [ -75.203939, 39.971999 ], [ -75.203899, 39.97176 ], [ -75.20379, 39.97115 ], [ -75.20369, 39.97067 ], [ -75.20361, 39.970269 ], [ -75.203449, 39.969479 ], [ -75.20325, 39.96844 ], [ -75.20315, 39.9679 ], [ -75.20306, 39.967399 ], [ -75.20253, 39.96746 ], [ -75.20195, 39.96753 ], [ -75.200469, 39.967689 ], [ -75.19824, 39.96791 ], [ -75.197509, 39.96801 ], [ -75.1968, 39.96808 ], [ -75.196469, 39.968109 ], [ -75.19577, 39.96818 ], [ -75.195299, 39.968029 ], [ -75.193539, 39.967389 ], [ -75.192879, 39.967149 ], [ -75.192149, 39.96689 ], [ -75.19204, 39.966339 ], [ -75.191919, 39.965769 ], [ -75.19182, 39.965219 ], [ -75.191709, 39.96464 ], [ -75.191659, 39.9644 ], [ -75.19159, 39.964059 ], [ -75.191529, 39.963729 ], [ -75.191489, 39.9635 ], [ -75.19145, 39.96321 ], [ -75.19142, 39.96296 ], [ -75.19131, 39.96241 ], [ -75.191259, 39.96216 ], [ -75.191199, 39.96185 ], [ -75.191109, 39.961439 ], [ -75.190989, 39.960809 ], [ -75.19087, 39.960219 ], [ -75.19086, 39.95978 ], [ -75.19086, 39.959499 ], [ -75.190849, 39.959109 ], [ -75.19086, 39.958769 ], [ -75.19095, 39.95836 ], [ -75.19105, 39.957869 ], [ -75.19114, 39.95736 ], [ -75.19115, 39.957309 ], [ -75.191159, 39.95727 ], [ -75.19124, 39.956889 ], [ -75.191289, 39.956619 ], [ -75.19133, 39.95645 ], [ -75.191399, 39.956169 ], [ -75.19146, 39.955869 ], [ -75.19083, 39.955799 ], [ -75.1902, 39.955719 ], [ -75.18948, 39.955629 ], [ -75.18899, 39.95557 ], [ -75.188369, 39.95549 ], [ -75.188279, 39.95548 ], [ -75.18785, 39.955429 ], [ -75.18758, 39.95539 ], [ -75.18713, 39.955329 ], [ -75.187029, 39.95531 ], [ -75.18647, 39.955239 ], [ -75.185759, 39.95514 ], [ -75.18534, 39.955089 ], [ -75.185129, 39.955069 ], [ -75.185049, 39.955059 ], [ -75.184899, 39.95504 ], [ -75.18431, 39.95496 ], [ -75.183909, 39.954909 ], [ -75.183779, 39.954889 ], [ -75.1834, 39.95487 ], [ -75.183239, 39.95485 ], [ -75.18296, 39.954809 ], [ -75.182519, 39.95475 ], [ -75.18228, 39.954719 ], [ -75.181989, 39.95468 ], [ -75.18125, 39.95458 ], [ -75.18116, 39.95457 ], [ -75.180909, 39.954539 ], [ -75.18053, 39.95449 ], [ -75.17981, 39.95441 ], [ -75.179639, 39.95438 ], [ -75.179499, 39.954359 ], [ -75.17832, 39.95421 ], [ -75.17782, 39.95415 ], [ -75.177609, 39.95412 ], [ -75.17738, 39.954089 ], [ -75.177119, 39.95406 ], [ -75.1767, 39.954009 ], [ -75.17616, 39.95394 ], [ -75.175549, 39.95386 ], [ -75.17508, 39.953809 ], [ -75.17441, 39.953719 ], [ -75.17417, 39.95369 ], [ -75.173739, 39.953639 ], [ -75.173169, 39.953559 ], [ -75.17207, 39.95343 ], [ -75.17157, 39.953359 ], [ -75.17049, 39.95323 ], [ -75.170009, 39.953169 ], [ -75.16931, 39.953079 ], [ -75.16904, 39.95305 ], [ -75.16845, 39.952989 ], [ -75.16801, 39.95294 ], [ -75.16778, 39.952909 ], [ -75.167619, 39.95289 ], [ -75.16724, 39.95285 ], [ -75.16685, 39.9528 ], [ -75.165839, 39.95268 ], [ -75.16522, 39.95259 ], [ -75.165239, 39.95249 ], [ -75.165279, 39.95232 ], [ -75.165289, 39.95224 ], [ -75.165289, 39.952179 ], [ -75.165279, 39.952099 ], [ -75.16526, 39.952019 ], [ -75.165239, 39.95197 ], [ -75.165199, 39.951919 ], [ -75.165149, 39.95187 ], [ -75.165099, 39.951839 ], [ -75.165059, 39.951819 ], [ -75.165009, 39.9518 ], [ -75.16495, 39.95178 ], [ -75.16491, 39.95177 ], [ -75.164789, 39.951749 ], [ -75.164619, 39.951729 ], [ -75.16451, 39.951719 ], [ -75.16436, 39.95171 ], [ -75.164019, 39.95169 ], [ -75.16388, 39.95168 ], [ -75.16378, 39.951669 ], [ -75.163719, 39.951659 ], [ -75.163479, 39.95162 ], [ -75.163269, 39.95159 ], [ -75.16307, 39.951559 ], [ -75.162999, 39.951559 ], [ -75.16296, 39.951559 ], [ -75.162909, 39.951569 ], [ -75.16288, 39.951579 ], [ -75.16284, 39.9516 ], [ -75.162809, 39.95162 ], [ -75.16278, 39.951649 ], [ -75.16275, 39.95169 ], [ -75.162729, 39.951729 ], [ -75.1627, 39.951819 ], [ -75.162679, 39.95189 ], [ -75.16266, 39.951939 ], [ -75.162629, 39.952109 ], [ -75.162579, 39.95216 ], [ -75.16253, 39.952189 ], [ -75.162489, 39.952209 ], [ -75.16242, 39.95223 ], [ -75.16234, 39.95224 ], [ -75.16203, 39.952209 ], [ -75.161409, 39.95213 ], [ -75.15987, 39.951939 ], [ -75.158269, 39.951739 ], [ -75.15671, 39.951539 ], [ -75.1559, 39.95144 ], [ -75.15515, 39.95135 ], [ -75.15434, 39.95125 ], [ -75.15356, 39.95115 ], [ -75.15199, 39.95096 ], [ -75.151239, 39.950849 ], [ -75.150979, 39.95082 ], [ -75.15037, 39.950739 ], [ -75.149889, 39.950669 ], [ -75.149619, 39.95063 ], [ -75.149219, 39.950579 ], [ -75.14906, 39.950559 ], [ -75.148949, 39.95055 ], [ -75.148842, 39.951047 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309299", "route_id": "38" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.148842, 39.951047 ], [ -75.14879, 39.95126 ], [ -75.148769, 39.951369 ], [ -75.148559, 39.952269 ], [ -75.14849, 39.95258 ], [ -75.148779, 39.95261 ], [ -75.149349, 39.95268 ], [ -75.149489, 39.9527 ], [ -75.14993, 39.95276 ], [ -75.150029, 39.95232 ], [ -75.15006, 39.952169 ], [ -75.1502, 39.95153 ], [ -75.150269, 39.951179 ], [ -75.150299, 39.95105 ], [ -75.15037, 39.950739 ], [ -75.150979, 39.95082 ], [ -75.151239, 39.950849 ], [ -75.15199, 39.95096 ], [ -75.15356, 39.95115 ], [ -75.15434, 39.95125 ], [ -75.15515, 39.95135 ], [ -75.1559, 39.95144 ], [ -75.15671, 39.951539 ], [ -75.158269, 39.951739 ], [ -75.15987, 39.951939 ], [ -75.161409, 39.95213 ], [ -75.16203, 39.952209 ], [ -75.16234, 39.95224 ], [ -75.162409, 39.952269 ], [ -75.16248, 39.95231 ], [ -75.16253, 39.952359 ], [ -75.162579, 39.952439 ], [ -75.162539, 39.952649 ], [ -75.16248, 39.952909 ], [ -75.16247, 39.952989 ], [ -75.16247, 39.95305 ], [ -75.16248, 39.953099 ], [ -75.162499, 39.95314 ], [ -75.16252, 39.953179 ], [ -75.16257, 39.95322 ], [ -75.162629, 39.953259 ], [ -75.16271, 39.953289 ], [ -75.162809, 39.95331 ], [ -75.162949, 39.95333 ], [ -75.16332, 39.95339 ], [ -75.163809, 39.953449 ], [ -75.164559, 39.953539 ], [ -75.16505, 39.95359 ], [ -75.16523, 39.953629 ], [ -75.16544, 39.95367 ], [ -75.16554, 39.95369 ], [ -75.166089, 39.95376 ], [ -75.16635, 39.95379 ], [ -75.166629, 39.953819 ], [ -75.16721, 39.95388 ], [ -75.167619, 39.95393 ], [ -75.16828, 39.954009 ], [ -75.16836, 39.95402 ], [ -75.168799, 39.954069 ], [ -75.169059, 39.954099 ], [ -75.16936, 39.95414 ], [ -75.169559, 39.954169 ], [ -75.169739, 39.954189 ], [ -75.170829, 39.95432 ], [ -75.171359, 39.95439 ], [ -75.17234, 39.954519 ], [ -75.173019, 39.954609 ], [ -75.173079, 39.954249 ], [ -75.173119, 39.954009 ], [ -75.173169, 39.953559 ], [ -75.173739, 39.953639 ], [ -75.17417, 39.95369 ], [ -75.17441, 39.953719 ], [ -75.17508, 39.953809 ], [ -75.175549, 39.95386 ], [ -75.17616, 39.95394 ], [ -75.1767, 39.954009 ], [ -75.177119, 39.95406 ], [ -75.17738, 39.954089 ], [ -75.177609, 39.95412 ], [ -75.17782, 39.95415 ], [ -75.17832, 39.95421 ], [ -75.179499, 39.954359 ], [ -75.179639, 39.95438 ], [ -75.17981, 39.95441 ], [ -75.18053, 39.95449 ], [ -75.180909, 39.954539 ], [ -75.18116, 39.95457 ], [ -75.18125, 39.95458 ], [ -75.181989, 39.95468 ], [ -75.18228, 39.954719 ], [ -75.182519, 39.95475 ], [ -75.18296, 39.954809 ], [ -75.183239, 39.95485 ], [ -75.1834, 39.95487 ], [ -75.183779, 39.954889 ], [ -75.183909, 39.954909 ], [ -75.18431, 39.95496 ], [ -75.184899, 39.95504 ], [ -75.185049, 39.955059 ], [ -75.185129, 39.955069 ], [ -75.18534, 39.955089 ], [ -75.185759, 39.95514 ], [ -75.18647, 39.955239 ], [ -75.187029, 39.95531 ], [ -75.18713, 39.955329 ], [ -75.18758, 39.95539 ], [ -75.18785, 39.955429 ], [ -75.188279, 39.95548 ], [ -75.188369, 39.95549 ], [ -75.18899, 39.95557 ], [ -75.18948, 39.955629 ], [ -75.18934, 39.95645 ], [ -75.18929, 39.956669 ], [ -75.18924, 39.95692 ], [ -75.189179, 39.957159 ], [ -75.18911, 39.95748 ], [ -75.18908, 39.957589 ], [ -75.18908, 39.957769 ], [ -75.189099, 39.95799 ], [ -75.18912, 39.958139 ], [ -75.189129, 39.95827 ], [ -75.189179, 39.95856 ], [ -75.189229, 39.95882 ], [ -75.18925, 39.95898 ], [ -75.189269, 39.95908 ], [ -75.18939, 39.959999 ], [ -75.18944, 39.960369 ], [ -75.18953, 39.9608 ], [ -75.18956, 39.96098 ], [ -75.18961, 39.961259 ], [ -75.189679, 39.96162 ], [ -75.18975, 39.96198 ], [ -75.189819, 39.962349 ], [ -75.18998, 39.96311 ], [ -75.19006, 39.963639 ], [ -75.19015, 39.964229 ], [ -75.19024, 39.96464 ], [ -75.190269, 39.964799 ], [ -75.190359, 39.96537 ], [ -75.190479, 39.965949 ], [ -75.190529, 39.96621 ], [ -75.190569, 39.966499 ], [ -75.190669, 39.966519 ], [ -75.19155, 39.96674 ], [ -75.19168, 39.966769 ], [ -75.192149, 39.96689 ], [ -75.192879, 39.967149 ], [ -75.193539, 39.967389 ], [ -75.193679, 39.967299 ], [ -75.194349, 39.967229 ], [ -75.195129, 39.967139 ], [ -75.195889, 39.967059 ], [ -75.19627, 39.967029 ], [ -75.196599, 39.96699 ], [ -75.197319, 39.9669 ], [ -75.198009, 39.96683 ], [ -75.20027, 39.96657 ], [ -75.20082, 39.966509 ], [ -75.20126, 39.96646 ], [ -75.201749, 39.966399 ], [ -75.2023, 39.966339 ], [ -75.2024, 39.966329 ], [ -75.20285, 39.96628 ], [ -75.20339, 39.9662 ], [ -75.203939, 39.966149 ], [ -75.20555, 39.966049 ], [ -75.20564, 39.96716 ], [ -75.20567, 39.96763 ], [ -75.205699, 39.96816 ], [ -75.205779, 39.969209 ], [ -75.20586, 39.970259 ], [ -75.2059, 39.9707 ], [ -75.20591, 39.97089 ], [ -75.206009, 39.971449 ], [ -75.20608, 39.971819 ], [ -75.20618, 39.972459 ], [ -75.206289, 39.973149 ], [ -75.20635, 39.97347 ], [ -75.20643, 39.973859 ], [ -75.20657, 39.97463 ], [ -75.206689, 39.97527 ], [ -75.2069, 39.97535 ], [ -75.207899, 39.97571 ], [ -75.20838, 39.97589 ], [ -75.208619, 39.97599 ], [ -75.209339, 39.976239 ], [ -75.209399, 39.97626 ], [ -75.21035, 39.97663 ], [ -75.210959, 39.976849 ], [ -75.211279, 39.97697 ], [ -75.211899, 39.977199 ], [ -75.212439, 39.977399 ], [ -75.21284, 39.977549 ], [ -75.213439, 39.97778 ], [ -75.2136, 39.97833 ], [ -75.21368, 39.97861 ], [ -75.21381, 39.979089 ], [ -75.213879, 39.97935 ], [ -75.21396, 39.979639 ], [ -75.214019, 39.97987 ], [ -75.21414, 39.980279 ], [ -75.21418, 39.98042 ], [ -75.21427, 39.98078 ], [ -75.21462, 39.98211 ], [ -75.21482, 39.98282 ], [ -75.214879, 39.98303 ], [ -75.2153, 39.98453 ], [ -75.21539, 39.984869 ], [ -75.215469, 39.98516 ], [ -75.21552, 39.98534 ], [ -75.215639, 39.98581 ], [ -75.21588, 39.986659 ], [ -75.215949, 39.98689 ], [ -75.216189, 39.98777 ], [ -75.216309, 39.988179 ], [ -75.21639, 39.988469 ], [ -75.21675, 39.98976 ], [ -75.21711, 39.991059 ], [ -75.217439, 39.992249 ], [ -75.2175, 39.99248 ], [ -75.217629, 39.992949 ], [ -75.21774, 39.99338 ], [ -75.21782, 39.993669 ], [ -75.21783, 39.99371 ], [ -75.21797, 39.99427 ], [ -75.21809, 39.994689 ], [ -75.218159, 39.994929 ], [ -75.218289, 39.995409 ], [ -75.21833, 39.99554 ], [ -75.218389, 39.99579 ], [ -75.218519, 39.996189 ], [ -75.218709, 39.996739 ], [ -75.218829, 39.99713 ], [ -75.21886, 39.99725 ], [ -75.21895, 39.9976 ], [ -75.218969, 39.997659 ], [ -75.219, 39.997839 ], [ -75.219019, 39.998019 ], [ -75.21909, 39.998169 ], [ -75.21917, 39.99834 ], [ -75.21936, 39.99921 ], [ -75.21941, 39.999429 ], [ -75.21953, 39.99986 ], [ -75.21959, 40.0001 ], [ -75.21971, 40.000529 ], [ -75.21976, 40.000719 ], [ -75.219779, 40.000789 ], [ -75.219869, 40.00113 ], [ -75.219959, 40.00146 ], [ -75.220189, 40.002239 ], [ -75.22007, 40.002229 ], [ -75.219749, 40.002149 ], [ -75.21891, 40.00194 ], [ -75.218109, 40.00175 ], [ -75.21752, 40.001609 ], [ -75.21581, 40.00119 ], [ -75.21539, 40.00109 ], [ -75.215009, 40.000969 ], [ -75.21473, 40.00091 ], [ -75.214119, 40.00075 ], [ -75.213579, 40.000629 ], [ -75.21306, 40.000509 ], [ -75.21224, 40.0003 ], [ -75.21094, 39.999969 ], [ -75.20973, 39.99966 ], [ -75.20964, 39.99985 ], [ -75.209559, 40.00011 ], [ -75.20955, 40.00013 ], [ -75.20955, 40.0002 ], [ -75.20959, 40.000319 ], [ -75.20968, 40.000429 ], [ -75.210069, 40.000619 ], [ -75.21027, 40.00074 ], [ -75.210429, 40.000899 ], [ -75.210689, 40.00119 ], [ -75.210929, 40.00156 ], [ -75.211009, 40.00176 ], [ -75.211109, 40.00212 ], [ -75.210519, 40.002219 ], [ -75.210159, 40.00228 ], [ -75.20991, 40.002319 ], [ -75.20981, 40.002339 ], [ -75.20951, 40.00239 ], [ -75.20924, 40.00245 ], [ -75.209069, 40.00248 ], [ -75.208349, 40.002599 ], [ -75.208209, 40.00262 ], [ -75.207899, 40.002669 ], [ -75.207669, 40.002699 ], [ -75.20748, 40.00273 ], [ -75.20636, 40.0029 ], [ -75.205059, 40.0031 ], [ -75.20428, 40.003219 ], [ -75.20406, 40.00325 ], [ -75.2036, 40.003309 ], [ -75.203189, 40.003419 ], [ -75.202999, 40.00355 ], [ -75.20289, 40.003659 ], [ -75.20275, 40.00381 ], [ -75.20261, 40.004 ], [ -75.202199, 40.004559 ], [ -75.202099, 40.0047 ], [ -75.201919, 40.00488 ], [ -75.201519, 40.005099 ], [ -75.201199, 40.005219 ], [ -75.200579, 40.00541 ], [ -75.200489, 40.005449 ], [ -75.20041, 40.00551 ], [ -75.20028, 40.005669 ], [ -75.200219, 40.00586 ], [ -75.20023, 40.00606 ], [ -75.200309, 40.00624 ], [ -75.20045, 40.006389 ], [ -75.20054, 40.00643 ], [ -75.200849, 40.00652 ], [ -75.201059, 40.00653 ], [ -75.201519, 40.0065 ], [ -75.20172, 40.006539 ], [ -75.201819, 40.006569 ], [ -75.201999, 40.00667 ], [ -75.202239, 40.00686 ], [ -75.2023, 40.00696 ], [ -75.202279, 40.007079 ], [ -75.20198, 40.0075 ], [ -75.202409, 40.007649 ], [ -75.20261, 40.007719 ], [ -75.202809, 40.00777 ], [ -75.202989, 40.007809 ], [ -75.20324, 40.007829 ], [ -75.20343, 40.007829 ], [ -75.20357, 40.007809 ], [ -75.206369, 40.007189 ], [ -75.206689, 40.00707 ], [ -75.20689, 40.00696 ], [ -75.20716, 40.00677 ], [ -75.207459, 40.00651 ], [ -75.20775, 40.00633 ], [ -75.20796, 40.00626 ], [ -75.20819, 40.00625 ], [ -75.20842, 40.006299 ], [ -75.20852, 40.00634 ], [ -75.208629, 40.00642 ], [ -75.209519, 40.00714 ], [ -75.209619, 40.00724 ], [ -75.209839, 40.00748 ], [ -75.210099, 40.00779 ], [ -75.210339, 40.008079 ], [ -75.210419, 40.008169 ], [ -75.210749, 40.00857 ], [ -75.210609, 40.008599 ], [ -75.21045, 40.00866 ], [ -75.210329, 40.008719 ], [ -75.21004, 40.008869 ], [ -75.20973, 40.00904 ], [ -75.209169, 40.00931 ], [ -75.208749, 40.009509 ], [ -75.2085, 40.009629 ], [ -75.20806, 40.00983 ], [ -75.207989, 40.009859 ], [ -75.20747, 40.01011 ], [ -75.207229, 40.01022 ], [ -75.20708, 40.01029 ], [ -75.207049, 40.01031 ], [ -75.206869, 40.010429 ], [ -75.20671, 40.01055 ], [ -75.20645, 40.010709 ], [ -75.20639, 40.010769 ], [ -75.206319, 40.01085 ], [ -75.20625, 40.01093 ], [ -75.206149, 40.01103 ], [ -75.20599, 40.011159 ], [ -75.205779, 40.011339 ], [ -75.20567, 40.011419 ], [ -75.205149, 40.0118 ], [ -75.205059, 40.011859 ], [ -75.204979, 40.01192 ], [ -75.204889, 40.01198 ], [ -75.204759, 40.01207 ], [ -75.204659, 40.01217 ], [ -75.204579, 40.01235 ], [ -75.204519, 40.01244 ], [ -75.2045, 40.01252 ], [ -75.204489, 40.01261 ], [ -75.204489, 40.012749 ], [ -75.20451, 40.013009 ], [ -75.204519, 40.01309 ], [ -75.20454, 40.013319 ], [ -75.20455, 40.01342 ], [ -75.204579, 40.01351 ], [ -75.204659, 40.01369 ], [ -75.204749, 40.0139 ], [ -75.204789, 40.01406 ], [ -75.20483, 40.01416 ], [ -75.204849, 40.014389 ], [ -75.204879, 40.014399 ], [ -75.20532, 40.014549 ], [ -75.20603, 40.01472 ], [ -75.206149, 40.014749 ], [ -75.20626, 40.01478 ], [ -75.20639, 40.01481 ], [ -75.20643, 40.014819 ], [ -75.20649, 40.014839 ], [ -75.206559, 40.01486 ], [ -75.20681, 40.014929 ], [ -75.206999, 40.01498 ], [ -75.20726, 40.01506 ], [ -75.207359, 40.015089 ], [ -75.207409, 40.015099 ], [ -75.20747, 40.015119 ], [ -75.20756, 40.01515 ], [ -75.207772, 40.014738 ], [ -75.2075, 40.014657 ], [ -75.207381, 40.014925 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309378", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.01461, 40.09417 ], [ -75.014399, 40.09401 ], [ -75.014229, 40.093869 ], [ -75.01385, 40.09356 ], [ -75.01365, 40.093389 ], [ -75.013549, 40.093309 ], [ -75.013049, 40.092869 ], [ -75.012999, 40.09282 ], [ -75.01294, 40.092769 ], [ -75.012149, 40.092119 ], [ -75.011969, 40.091949 ], [ -75.01213, 40.0919 ], [ -75.01258, 40.09157 ], [ -75.013099, 40.09119 ], [ -75.013689, 40.090869 ], [ -75.013909, 40.09082 ], [ -75.01407, 40.090779 ], [ -75.014259, 40.09084 ], [ -75.01448, 40.090989 ], [ -75.014629, 40.09113 ], [ -75.01473, 40.09101 ], [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ], [ -75.014039, 40.09065 ], [ -75.01407, 40.090779 ], [ -75.01384, 40.090709 ], [ -75.01362, 40.09076 ], [ -75.01348, 40.09083 ], [ -75.013179, 40.090989 ], [ -75.01294, 40.091149 ], [ -75.01249, 40.091499 ], [ -75.01203, 40.09182 ], [ -75.011969, 40.091949 ], [ -75.012149, 40.092119 ], [ -75.01294, 40.092769 ], [ -75.012999, 40.09282 ], [ -75.013049, 40.092869 ], [ -75.013549, 40.093309 ], [ -75.01365, 40.093389 ], [ -75.01385, 40.09356 ], [ -75.014229, 40.093869 ], [ -75.014399, 40.09401 ], [ -75.01461, 40.09417 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.976609, 40.12898 ], [ -74.97677, 40.12902 ], [ -74.97776, 40.129219 ], [ -74.978889, 40.129409 ], [ -74.98008, 40.129589 ], [ -74.981149, 40.129749 ], [ -74.98293, 40.130119 ], [ -74.9832, 40.130219 ], [ -74.983719, 40.12971 ], [ -74.984969, 40.13042 ], [ -74.98604, 40.13109 ], [ -74.98616, 40.13117 ], [ -74.98657, 40.13141 ], [ -74.98761, 40.13204 ], [ -74.98796, 40.13225 ], [ -74.988079, 40.13232 ], [ -74.98881, 40.132749 ], [ -74.989299, 40.13304 ], [ -74.990019, 40.133459 ], [ -74.990409, 40.13367 ], [ -74.990469, 40.133709 ], [ -74.991039, 40.13404 ], [ -74.99125, 40.134179 ], [ -74.99138, 40.13429 ], [ -74.99134, 40.134369 ], [ -74.991359, 40.134439 ], [ -74.991419, 40.13449 ], [ -74.991319, 40.134629 ], [ -74.991179, 40.13485 ], [ -74.991009, 40.135059 ], [ -74.990769, 40.1353 ], [ -74.990429, 40.13564 ], [ -74.990339, 40.13573 ], [ -74.990249, 40.13582 ], [ -74.990149, 40.13593 ], [ -74.990059, 40.13603 ], [ -74.989929, 40.136159 ], [ -74.989649, 40.136439 ], [ -74.98946, 40.13664 ], [ -74.988889, 40.136329 ], [ -74.98823, 40.135979 ], [ -74.987769, 40.13573 ], [ -74.98766, 40.13583 ], [ -74.987179, 40.13538 ], [ -74.98694, 40.135359 ], [ -74.98666, 40.13529 ], [ -74.98702, 40.135679 ], [ -74.98742, 40.13612 ], [ -74.98728, 40.13628 ], [ -74.987229, 40.136329 ], [ -74.98688, 40.136679 ], [ -74.98647, 40.13702 ], [ -74.98629, 40.13719 ], [ -74.98607, 40.13737 ], [ -74.98589, 40.137519 ], [ -74.98566, 40.137609 ], [ -74.985339, 40.137689 ], [ -74.98544, 40.137399 ], [ -74.98544, 40.13718 ], [ -74.985369, 40.137049 ], [ -74.98532, 40.136949 ], [ -74.98521, 40.13684 ], [ -74.9849, 40.136529 ], [ -74.98469, 40.1363 ], [ -74.984029, 40.13564 ], [ -74.98391, 40.135789 ], [ -74.98378, 40.13594 ], [ -74.984389, 40.136519 ], [ -74.98468, 40.13654 ], [ -74.9849, 40.136529 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309379", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88335, 40.180409 ], [ -74.88366, 40.180519 ], [ -74.883949, 40.180699 ], [ -74.884029, 40.180769 ], [ -74.88411, 40.18084 ], [ -74.88419, 40.18093 ], [ -74.884299, 40.181129 ], [ -74.884349, 40.18128 ], [ -74.884499, 40.18175 ], [ -74.88461, 40.18219 ], [ -74.88464, 40.1823 ], [ -74.88482, 40.183029 ], [ -74.885039, 40.183939 ], [ -74.88509, 40.18426 ], [ -74.88509, 40.184549 ], [ -74.885039, 40.18488 ], [ -74.885, 40.18498 ], [ -74.884939, 40.185109 ], [ -74.884769, 40.185399 ], [ -74.88455, 40.185669 ], [ -74.88429, 40.18589 ], [ -74.88393, 40.186109 ], [ -74.88383, 40.18615 ], [ -74.883449, 40.18633 ], [ -74.883129, 40.18643 ], [ -74.8828, 40.18651 ], [ -74.881519, 40.18667 ], [ -74.87943, 40.18689 ], [ -74.879079, 40.186899 ], [ -74.87897, 40.186899 ], [ -74.878639, 40.18688 ], [ -74.87848, 40.18685 ], [ -74.87831, 40.186809 ], [ -74.87799, 40.18671 ], [ -74.87768, 40.186559 ], [ -74.877239, 40.18688 ], [ -74.877119, 40.18695 ], [ -74.877059, 40.18698 ], [ -74.876979, 40.187019 ], [ -74.876649, 40.18713 ], [ -74.876439, 40.187169 ], [ -74.87623, 40.187189 ], [ -74.875929, 40.187169 ], [ -74.875629, 40.18712 ], [ -74.874849, 40.18686 ], [ -74.87478, 40.186839 ], [ -74.87488, 40.186649 ], [ -74.875079, 40.186279 ], [ -74.87515, 40.18622 ], [ -74.87516, 40.18616 ], [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309380", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.959014, 40.13834 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88335, 40.180409 ], [ -74.88366, 40.180519 ], [ -74.883949, 40.180699 ], [ -74.884029, 40.180769 ], [ -74.88411, 40.18084 ], [ -74.88419, 40.18093 ], [ -74.884299, 40.181129 ], [ -74.884349, 40.18128 ], [ -74.884499, 40.18175 ], [ -74.88461, 40.18219 ], [ -74.88464, 40.1823 ], [ -74.88482, 40.183029 ], [ -74.885039, 40.183939 ], [ -74.88509, 40.18426 ], [ -74.88509, 40.184549 ], [ -74.885039, 40.18488 ], [ -74.885, 40.18498 ], [ -74.884939, 40.185109 ], [ -74.884769, 40.185399 ], [ -74.88455, 40.185669 ], [ -74.88429, 40.18589 ], [ -74.88393, 40.186109 ], [ -74.88383, 40.18615 ], [ -74.883449, 40.18633 ], [ -74.883129, 40.18643 ], [ -74.8828, 40.18651 ], [ -74.881519, 40.18667 ], [ -74.87943, 40.18689 ], [ -74.879079, 40.186899 ], [ -74.87897, 40.186899 ], [ -74.878639, 40.18688 ], [ -74.87848, 40.18685 ], [ -74.87831, 40.186809 ], [ -74.87799, 40.18671 ], [ -74.87768, 40.186559 ], [ -74.877239, 40.18688 ], [ -74.877119, 40.18695 ], [ -74.877059, 40.18698 ], [ -74.876979, 40.187019 ], [ -74.876649, 40.18713 ], [ -74.876439, 40.187169 ], [ -74.87623, 40.187189 ], [ -74.875929, 40.187169 ], [ -74.875629, 40.18712 ], [ -74.874849, 40.18686 ], [ -74.87478, 40.186839 ], [ -74.87488, 40.186649 ], [ -74.875079, 40.186279 ], [ -74.87515, 40.18622 ], [ -74.87516, 40.18616 ], [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309381", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.01461, 40.09417 ], [ -75.014399, 40.09401 ], [ -75.014229, 40.093869 ], [ -75.01385, 40.09356 ], [ -75.01365, 40.093389 ], [ -75.013549, 40.093309 ], [ -75.013049, 40.092869 ], [ -75.012999, 40.09282 ], [ -75.01294, 40.092769 ], [ -75.012149, 40.092119 ], [ -75.011969, 40.091949 ], [ -75.01213, 40.0919 ], [ -75.01258, 40.09157 ], [ -75.013099, 40.09119 ], [ -75.013689, 40.090869 ], [ -75.013909, 40.09082 ], [ -75.01407, 40.090779 ], [ -75.014259, 40.09084 ], [ -75.01448, 40.090989 ], [ -75.014629, 40.09113 ], [ -75.01473, 40.09101 ], [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ], [ -75.014039, 40.09065 ], [ -75.01407, 40.090779 ], [ -75.01384, 40.090709 ], [ -75.01362, 40.09076 ], [ -75.01348, 40.09083 ], [ -75.013179, 40.090989 ], [ -75.01294, 40.091149 ], [ -75.01249, 40.091499 ], [ -75.01203, 40.09182 ], [ -75.011969, 40.091949 ], [ -75.0119, 40.091889 ], [ -75.011749, 40.091789 ], [ -75.01142, 40.09154 ], [ -75.011159, 40.091349 ], [ -75.010839, 40.091069 ], [ -75.01056, 40.09082 ], [ -75.010359, 40.09067 ], [ -75.01011, 40.09058 ], [ -75.010039, 40.09056 ], [ -75.009629, 40.09039 ], [ -75.00957, 40.09039 ], [ -75.009229, 40.09037 ], [ -75.009179, 40.09037 ], [ -75.00889, 40.090359 ], [ -75.00853, 40.090439 ], [ -75.008199, 40.090529 ], [ -75.007959, 40.09066 ], [ -75.007829, 40.09076 ], [ -75.00768, 40.090869 ], [ -75.007479, 40.09101 ], [ -75.007439, 40.09104 ], [ -75.005799, 40.092159 ], [ -75.00456, 40.093 ], [ -75.00386, 40.09347 ], [ -75.00282, 40.09417 ], [ -75.003509, 40.094769 ], [ -75.00399, 40.095189 ], [ -75.00422, 40.095389 ], [ -75.005049, 40.096019 ], [ -75.00521, 40.09616 ], [ -75.00534, 40.096279 ], [ -75.005399, 40.096389 ], [ -75.005409, 40.09649 ], [ -75.00539, 40.09668 ], [ -75.0053, 40.096809 ], [ -75.0052, 40.096899 ], [ -75.00458, 40.097259 ], [ -75.0044, 40.097379 ], [ -75.00434, 40.09742 ], [ -75.00421, 40.09751 ], [ -75.003729, 40.09784 ], [ -75.003289, 40.09815 ], [ -75.00321, 40.09821 ], [ -75.00272, 40.098529 ], [ -75.00246, 40.098709 ], [ -75.0021, 40.09895 ], [ -75.000629, 40.09995 ], [ -75.00034, 40.100149 ], [ -74.99963, 40.10063 ], [ -74.999329, 40.10084 ], [ -74.998169, 40.101609 ], [ -74.998869, 40.10247 ], [ -74.99931, 40.102859 ], [ -74.999829, 40.10325 ], [ -75.000099, 40.103469 ], [ -75.000509, 40.10381 ], [ -75.000779, 40.104029 ], [ -75.000859, 40.104099 ], [ -75.000939, 40.10416 ], [ -75.000999, 40.104209 ], [ -75.00111, 40.104309 ], [ -75.001269, 40.10445 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97716, 40.107609 ], [ -74.976059, 40.10848 ], [ -74.97595, 40.10856 ], [ -74.97587, 40.108619 ], [ -74.975659, 40.108789 ], [ -74.9754, 40.108989 ], [ -74.974129, 40.10999 ], [ -74.972779, 40.111059 ], [ -74.971699, 40.111929 ], [ -74.971649, 40.11198 ], [ -74.971519, 40.11208 ], [ -74.970749, 40.11269 ], [ -74.97051, 40.11287 ], [ -74.97024, 40.11307 ], [ -74.97006, 40.11317 ], [ -74.96996, 40.113199 ], [ -74.969859, 40.113219 ], [ -74.96965, 40.113219 ], [ -74.96955, 40.113209 ], [ -74.969349, 40.11314 ], [ -74.96898, 40.11288 ], [ -74.96847, 40.112489 ], [ -74.967469, 40.111689 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309382", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.976609, 40.12898 ], [ -74.97677, 40.12902 ], [ -74.97776, 40.129219 ], [ -74.978889, 40.129409 ], [ -74.98008, 40.129589 ], [ -74.981149, 40.129749 ], [ -74.98293, 40.130119 ], [ -74.9832, 40.130219 ], [ -74.983719, 40.12971 ], [ -74.984969, 40.13042 ], [ -74.98604, 40.13109 ], [ -74.98616, 40.13117 ], [ -74.98657, 40.13141 ], [ -74.98761, 40.13204 ], [ -74.98796, 40.13225 ], [ -74.988079, 40.13232 ], [ -74.98881, 40.132749 ], [ -74.989299, 40.13304 ], [ -74.990019, 40.133459 ], [ -74.990409, 40.13367 ], [ -74.990469, 40.133709 ], [ -74.991039, 40.13404 ], [ -74.99125, 40.134179 ], [ -74.99138, 40.13429 ], [ -74.99134, 40.134369 ], [ -74.991359, 40.134439 ], [ -74.991419, 40.13449 ], [ -74.991319, 40.134629 ], [ -74.991179, 40.13485 ], [ -74.991009, 40.135059 ], [ -74.990769, 40.1353 ], [ -74.990429, 40.13564 ], [ -74.990339, 40.13573 ], [ -74.990249, 40.13582 ], [ -74.990149, 40.13593 ], [ -74.990059, 40.13603 ], [ -74.989929, 40.136159 ], [ -74.989649, 40.136439 ], [ -74.98946, 40.13664 ], [ -74.988889, 40.136329 ], [ -74.98823, 40.135979 ], [ -74.987769, 40.13573 ], [ -74.98766, 40.13583 ], [ -74.987179, 40.13538 ], [ -74.98694, 40.135359 ], [ -74.98666, 40.13529 ], [ -74.98702, 40.135679 ], [ -74.98742, 40.13612 ], [ -74.98728, 40.13628 ], [ -74.987229, 40.136329 ], [ -74.98688, 40.136679 ], [ -74.98647, 40.13702 ], [ -74.98629, 40.13719 ], [ -74.98607, 40.13737 ], [ -74.98589, 40.137519 ], [ -74.98566, 40.137609 ], [ -74.985339, 40.137689 ], [ -74.98544, 40.137399 ], [ -74.98544, 40.13718 ], [ -74.985369, 40.137049 ], [ -74.98532, 40.136949 ], [ -74.98521, 40.13684 ], [ -74.9849, 40.136529 ], [ -74.98469, 40.1363 ], [ -74.984029, 40.13564 ], [ -74.98391, 40.135789 ], [ -74.98378, 40.13594 ], [ -74.984389, 40.136519 ], [ -74.98468, 40.13654 ], [ -74.9849, 40.136529 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309383", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.01461, 40.09417 ], [ -75.014399, 40.09401 ], [ -75.014229, 40.093869 ], [ -75.01385, 40.09356 ], [ -75.01365, 40.093389 ], [ -75.013549, 40.093309 ], [ -75.013049, 40.092869 ], [ -75.012999, 40.09282 ], [ -75.01294, 40.092769 ], [ -75.012149, 40.092119 ], [ -75.011969, 40.091949 ], [ -75.01213, 40.0919 ], [ -75.01258, 40.09157 ], [ -75.013099, 40.09119 ], [ -75.013689, 40.090869 ], [ -75.013909, 40.09082 ], [ -75.01407, 40.090779 ], [ -75.014259, 40.09084 ], [ -75.01448, 40.090989 ], [ -75.014629, 40.09113 ], [ -75.01473, 40.09101 ], [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ], [ -75.014039, 40.09065 ], [ -75.01407, 40.090779 ], [ -75.01384, 40.090709 ], [ -75.01362, 40.09076 ], [ -75.01348, 40.09083 ], [ -75.013179, 40.090989 ], [ -75.01294, 40.091149 ], [ -75.01249, 40.091499 ], [ -75.01203, 40.09182 ], [ -75.011969, 40.091949 ], [ -75.012149, 40.092119 ], [ -75.01294, 40.092769 ], [ -75.012999, 40.09282 ], [ -75.013049, 40.092869 ], [ -75.013549, 40.093309 ], [ -75.01365, 40.093389 ], [ -75.01385, 40.09356 ], [ -75.014229, 40.093869 ], [ -75.014399, 40.09401 ], [ -75.01461, 40.09417 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309384", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309385", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309386", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.959014, 40.13834 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309387", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.01461, 40.09417 ], [ -75.014399, 40.09401 ], [ -75.014229, 40.093869 ], [ -75.01385, 40.09356 ], [ -75.01365, 40.093389 ], [ -75.013549, 40.093309 ], [ -75.013049, 40.092869 ], [ -75.012999, 40.09282 ], [ -75.01294, 40.092769 ], [ -75.012149, 40.092119 ], [ -75.011969, 40.091949 ], [ -75.01213, 40.0919 ], [ -75.01258, 40.09157 ], [ -75.013099, 40.09119 ], [ -75.013689, 40.090869 ], [ -75.013909, 40.09082 ], [ -75.01407, 40.090779 ], [ -75.014259, 40.09084 ], [ -75.01448, 40.090989 ], [ -75.014629, 40.09113 ], [ -75.01473, 40.09101 ], [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ], [ -75.014039, 40.09065 ], [ -75.01407, 40.090779 ], [ -75.01384, 40.090709 ], [ -75.01362, 40.09076 ], [ -75.01348, 40.09083 ], [ -75.013179, 40.090989 ], [ -75.01294, 40.091149 ], [ -75.01249, 40.091499 ], [ -75.01203, 40.09182 ], [ -75.011969, 40.091949 ], [ -75.012149, 40.092119 ], [ -75.01294, 40.092769 ], [ -75.012999, 40.09282 ], [ -75.013049, 40.092869 ], [ -75.013549, 40.093309 ], [ -75.01365, 40.093389 ], [ -75.01385, 40.09356 ], [ -75.014229, 40.093869 ], [ -75.014399, 40.09401 ], [ -75.01461, 40.09417 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.959014, 40.13834 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88335, 40.180409 ], [ -74.88366, 40.180519 ], [ -74.883949, 40.180699 ], [ -74.884029, 40.180769 ], [ -74.88411, 40.18084 ], [ -74.88419, 40.18093 ], [ -74.884299, 40.181129 ], [ -74.884349, 40.18128 ], [ -74.884499, 40.18175 ], [ -74.88461, 40.18219 ], [ -74.88464, 40.1823 ], [ -74.88482, 40.183029 ], [ -74.885039, 40.183939 ], [ -74.88509, 40.18426 ], [ -74.88509, 40.184549 ], [ -74.885039, 40.18488 ], [ -74.885, 40.18498 ], [ -74.884939, 40.185109 ], [ -74.884769, 40.185399 ], [ -74.88455, 40.185669 ], [ -74.88429, 40.18589 ], [ -74.88393, 40.186109 ], [ -74.88383, 40.18615 ], [ -74.883449, 40.18633 ], [ -74.883129, 40.18643 ], [ -74.8828, 40.18651 ], [ -74.881519, 40.18667 ], [ -74.87943, 40.18689 ], [ -74.879079, 40.186899 ], [ -74.87897, 40.186899 ], [ -74.878639, 40.18688 ], [ -74.87848, 40.18685 ], [ -74.87831, 40.186809 ], [ -74.87799, 40.18671 ], [ -74.87768, 40.186559 ], [ -74.877239, 40.18688 ], [ -74.877119, 40.18695 ], [ -74.877059, 40.18698 ], [ -74.876979, 40.187019 ], [ -74.876649, 40.18713 ], [ -74.876439, 40.187169 ], [ -74.87623, 40.187189 ], [ -74.875929, 40.187169 ], [ -74.875629, 40.18712 ], [ -74.874849, 40.18686 ], [ -74.87478, 40.186839 ], [ -74.87488, 40.186649 ], [ -74.875079, 40.186279 ], [ -74.87515, 40.18622 ], [ -74.87516, 40.18616 ], [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309388", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.959014, 40.13834 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88335, 40.180409 ], [ -74.88366, 40.180519 ], [ -74.883949, 40.180699 ], [ -74.884029, 40.180769 ], [ -74.88411, 40.18084 ], [ -74.88419, 40.18093 ], [ -74.884299, 40.181129 ], [ -74.884349, 40.18128 ], [ -74.884499, 40.18175 ], [ -74.88461, 40.18219 ], [ -74.88464, 40.1823 ], [ -74.88482, 40.183029 ], [ -74.885039, 40.183939 ], [ -74.88509, 40.18426 ], [ -74.88509, 40.184549 ], [ -74.885039, 40.18488 ], [ -74.885, 40.18498 ], [ -74.884939, 40.185109 ], [ -74.884769, 40.185399 ], [ -74.88455, 40.185669 ], [ -74.88429, 40.18589 ], [ -74.88393, 40.186109 ], [ -74.88383, 40.18615 ], [ -74.883449, 40.18633 ], [ -74.883129, 40.18643 ], [ -74.8828, 40.18651 ], [ -74.881519, 40.18667 ], [ -74.87943, 40.18689 ], [ -74.879079, 40.186899 ], [ -74.87897, 40.186899 ], [ -74.878639, 40.18688 ], [ -74.87848, 40.18685 ], [ -74.87831, 40.186809 ], [ -74.87799, 40.18671 ], [ -74.87768, 40.186559 ], [ -74.877239, 40.18688 ], [ -74.877119, 40.18695 ], [ -74.877059, 40.18698 ], [ -74.876979, 40.187019 ], [ -74.876649, 40.18713 ], [ -74.876439, 40.187169 ], [ -74.87623, 40.187189 ], [ -74.875929, 40.187169 ], [ -74.875629, 40.18712 ], [ -74.874849, 40.18686 ], [ -74.87478, 40.186839 ], [ -74.87488, 40.186649 ], [ -74.875079, 40.186279 ], [ -74.87515, 40.18622 ], [ -74.87516, 40.18616 ], [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309389", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88335, 40.180409 ], [ -74.88366, 40.180519 ], [ -74.883949, 40.180699 ], [ -74.884029, 40.180769 ], [ -74.88411, 40.18084 ], [ -74.88419, 40.18093 ], [ -74.884299, 40.181129 ], [ -74.884349, 40.18128 ], [ -74.884499, 40.18175 ], [ -74.88461, 40.18219 ], [ -74.88464, 40.1823 ], [ -74.88482, 40.183029 ], [ -74.885039, 40.183939 ], [ -74.88509, 40.18426 ], [ -74.88509, 40.184549 ], [ -74.885039, 40.18488 ], [ -74.885, 40.18498 ], [ -74.884939, 40.185109 ], [ -74.884769, 40.185399 ], [ -74.88455, 40.185669 ], [ -74.88429, 40.18589 ], [ -74.88393, 40.186109 ], [ -74.88383, 40.18615 ], [ -74.883449, 40.18633 ], [ -74.883129, 40.18643 ], [ -74.8828, 40.18651 ], [ -74.881519, 40.18667 ], [ -74.87943, 40.18689 ], [ -74.879079, 40.186899 ], [ -74.87897, 40.186899 ], [ -74.878639, 40.18688 ], [ -74.87848, 40.18685 ], [ -74.87831, 40.186809 ], [ -74.87799, 40.18671 ], [ -74.87768, 40.186559 ], [ -74.877239, 40.18688 ], [ -74.877119, 40.18695 ], [ -74.877059, 40.18698 ], [ -74.876979, 40.187019 ], [ -74.876649, 40.18713 ], [ -74.876439, 40.187169 ], [ -74.87623, 40.187189 ], [ -74.875929, 40.187169 ], [ -74.875629, 40.18712 ], [ -74.874849, 40.18686 ], [ -74.87478, 40.186839 ], [ -74.87488, 40.186649 ], [ -74.875079, 40.186279 ], [ -74.87515, 40.18622 ], [ -74.87516, 40.18616 ], [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309390", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.01461, 40.09417 ], [ -75.014399, 40.09401 ], [ -75.014229, 40.093869 ], [ -75.01385, 40.09356 ], [ -75.01365, 40.093389 ], [ -75.013549, 40.093309 ], [ -75.013049, 40.092869 ], [ -75.012999, 40.09282 ], [ -75.01294, 40.092769 ], [ -75.012149, 40.092119 ], [ -75.011969, 40.091949 ], [ -75.01213, 40.0919 ], [ -75.01258, 40.09157 ], [ -75.013099, 40.09119 ], [ -75.013689, 40.090869 ], [ -75.013909, 40.09082 ], [ -75.01407, 40.090779 ], [ -75.014259, 40.09084 ], [ -75.01448, 40.090989 ], [ -75.014629, 40.09113 ], [ -75.01473, 40.09101 ], [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309391", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.995679, 40.10841 ], [ -74.995509, 40.10846 ], [ -74.9954, 40.10848 ], [ -74.9952, 40.10849 ], [ -74.99508, 40.10847 ], [ -74.99493, 40.108419 ], [ -74.994789, 40.10831 ], [ -74.994739, 40.108249 ], [ -74.994649, 40.108079 ], [ -74.994649, 40.10801 ], [ -74.99466, 40.107889 ], [ -74.994699, 40.10777 ], [ -74.99476, 40.10765 ], [ -74.99486, 40.107549 ], [ -74.994969, 40.107449 ], [ -74.99508, 40.107369 ], [ -74.995229, 40.107339 ], [ -74.995369, 40.10733 ], [ -74.99552, 40.107349 ], [ -74.99566, 40.10738 ], [ -74.995809, 40.107429 ], [ -74.99611, 40.10758 ], [ -74.99639, 40.10777 ], [ -74.996529, 40.107879 ], [ -74.996679, 40.10801 ], [ -74.996799, 40.10812 ], [ -74.99696, 40.1083 ], [ -74.99701, 40.108359 ], [ -74.99723, 40.10856 ], [ -74.997399, 40.108709 ], [ -74.997519, 40.10882 ], [ -74.99786, 40.10913 ], [ -74.99818, 40.10937 ], [ -74.99858, 40.109669 ], [ -74.999869, 40.11063 ], [ -75.000639, 40.11125 ], [ -75.00093, 40.111479 ], [ -75.001089, 40.111389 ], [ -75.00141, 40.11127 ], [ -75.00152, 40.111229 ], [ -75.001849, 40.111129 ], [ -75.00192, 40.11111 ], [ -75.00218, 40.111039 ], [ -75.002289, 40.11101 ], [ -75.002349, 40.111 ], [ -75.002559, 40.11098 ], [ -75.00278, 40.11098 ], [ -75.00305, 40.11098 ], [ -75.00322, 40.110939 ], [ -75.003429, 40.11089 ], [ -75.003559, 40.110859 ], [ -75.003459, 40.11063 ], [ -75.00339, 40.110479 ], [ -75.003279, 40.110329 ], [ -75.003199, 40.110239 ], [ -75.003009, 40.110059 ], [ -75.00276, 40.109849 ], [ -75.00269, 40.109789 ], [ -75.002559, 40.109679 ], [ -75.002379, 40.109519 ], [ -75.00215, 40.109309 ], [ -75.002109, 40.10928 ], [ -75.001979, 40.109159 ], [ -75.001659, 40.108869 ], [ -75.001489, 40.10873 ], [ -75.00101, 40.10831 ], [ -75.00083, 40.108149 ], [ -75.000639, 40.107979 ], [ -75.000459, 40.10783 ], [ -75.000189, 40.10759 ], [ -75.000039, 40.10747 ], [ -74.99985, 40.10731 ], [ -74.999699, 40.107169 ], [ -74.99945, 40.10695 ], [ -74.999199, 40.106729 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309392", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97716, 40.107609 ], [ -74.976059, 40.10848 ], [ -74.97595, 40.10856 ], [ -74.97587, 40.108619 ], [ -74.975659, 40.108789 ], [ -74.9754, 40.108989 ], [ -74.974129, 40.10999 ], [ -74.972779, 40.111059 ], [ -74.971699, 40.111929 ], [ -74.971649, 40.11198 ], [ -74.971519, 40.11208 ], [ -74.970749, 40.11269 ], [ -74.97051, 40.11287 ], [ -74.97024, 40.11307 ], [ -74.97006, 40.11317 ], [ -74.96996, 40.113199 ], [ -74.969859, 40.113219 ], [ -74.96965, 40.113219 ], [ -74.96955, 40.113209 ], [ -74.969349, 40.11314 ], [ -74.96898, 40.11288 ], [ -74.96847, 40.112489 ], [ -74.967469, 40.111689 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309393", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.976609, 40.12898 ], [ -74.97677, 40.12902 ], [ -74.97776, 40.129219 ], [ -74.978889, 40.129409 ], [ -74.98008, 40.129589 ], [ -74.981149, 40.129749 ], [ -74.98293, 40.130119 ], [ -74.9832, 40.130219 ], [ -74.983719, 40.12971 ], [ -74.984969, 40.13042 ], [ -74.98604, 40.13109 ], [ -74.98616, 40.13117 ], [ -74.98657, 40.13141 ], [ -74.98761, 40.13204 ], [ -74.98796, 40.13225 ], [ -74.988079, 40.13232 ], [ -74.98881, 40.132749 ], [ -74.989299, 40.13304 ], [ -74.990019, 40.133459 ], [ -74.990409, 40.13367 ], [ -74.990469, 40.133709 ], [ -74.991039, 40.13404 ], [ -74.99125, 40.134179 ], [ -74.99138, 40.13429 ], [ -74.99134, 40.134369 ], [ -74.991359, 40.134439 ], [ -74.991419, 40.13449 ], [ -74.991319, 40.134629 ], [ -74.991179, 40.13485 ], [ -74.991009, 40.135059 ], [ -74.990769, 40.1353 ], [ -74.990429, 40.13564 ], [ -74.990339, 40.13573 ], [ -74.990249, 40.13582 ], [ -74.990149, 40.13593 ], [ -74.990059, 40.13603 ], [ -74.989929, 40.136159 ], [ -74.989649, 40.136439 ], [ -74.98946, 40.13664 ], [ -74.988889, 40.136329 ], [ -74.98823, 40.135979 ], [ -74.987769, 40.13573 ], [ -74.98766, 40.13583 ], [ -74.987179, 40.13538 ], [ -74.98694, 40.135359 ], [ -74.98666, 40.13529 ], [ -74.98702, 40.135679 ], [ -74.98742, 40.13612 ], [ -74.98728, 40.13628 ], [ -74.987229, 40.136329 ], [ -74.98688, 40.136679 ], [ -74.98647, 40.13702 ], [ -74.98629, 40.13719 ], [ -74.98607, 40.13737 ], [ -74.98589, 40.137519 ], [ -74.98566, 40.137609 ], [ -74.985339, 40.137689 ], [ -74.98544, 40.137399 ], [ -74.98544, 40.13718 ], [ -74.985369, 40.137049 ], [ -74.98532, 40.136949 ], [ -74.98521, 40.13684 ], [ -74.9849, 40.136529 ], [ -74.98469, 40.1363 ], [ -74.984029, 40.13564 ], [ -74.98391, 40.135789 ], [ -74.98378, 40.13594 ], [ -74.984389, 40.136519 ], [ -74.98468, 40.13654 ], [ -74.9849, 40.136529 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309394", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309395", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309396", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.995679, 40.10841 ], [ -74.995509, 40.10846 ], [ -74.9954, 40.10848 ], [ -74.9952, 40.10849 ], [ -74.99508, 40.10847 ], [ -74.99493, 40.108419 ], [ -74.994789, 40.10831 ], [ -74.994739, 40.108249 ], [ -74.994649, 40.108079 ], [ -74.994649, 40.10801 ], [ -74.99466, 40.107889 ], [ -74.994699, 40.10777 ], [ -74.99476, 40.10765 ], [ -74.99486, 40.107549 ], [ -74.994969, 40.107449 ], [ -74.99508, 40.107369 ], [ -74.995229, 40.107339 ], [ -74.995369, 40.10733 ], [ -74.99552, 40.107349 ], [ -74.99566, 40.10738 ], [ -74.995809, 40.107429 ], [ -74.99611, 40.10758 ], [ -74.99639, 40.10777 ], [ -74.996529, 40.107879 ], [ -74.996679, 40.10801 ], [ -74.996799, 40.10812 ], [ -74.99696, 40.1083 ], [ -74.99701, 40.108359 ], [ -74.99723, 40.10856 ], [ -74.997399, 40.108709 ], [ -74.997519, 40.10882 ], [ -74.99786, 40.10913 ], [ -74.99818, 40.10937 ], [ -74.99858, 40.109669 ], [ -74.999869, 40.11063 ], [ -75.000639, 40.11125 ], [ -75.00093, 40.111479 ], [ -75.001089, 40.111389 ], [ -75.00141, 40.11127 ], [ -75.00152, 40.111229 ], [ -75.001849, 40.111129 ], [ -75.00192, 40.11111 ], [ -75.00218, 40.111039 ], [ -75.002289, 40.11101 ], [ -75.002349, 40.111 ], [ -75.002559, 40.11098 ], [ -75.00278, 40.11098 ], [ -75.00305, 40.11098 ], [ -75.00322, 40.110939 ], [ -75.003429, 40.11089 ], [ -75.003559, 40.110859 ], [ -75.00368, 40.11111 ], [ -75.00375, 40.11126 ], [ -75.00398, 40.111759 ], [ -75.00404, 40.11188 ], [ -75.004329, 40.112499 ], [ -75.004359, 40.112569 ], [ -75.004509, 40.11289 ], [ -75.00476, 40.11344 ], [ -75.004959, 40.11386 ], [ -75.00529, 40.113729 ], [ -75.00596, 40.11422 ], [ -75.006079, 40.114109 ], [ -75.00546, 40.11362 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309397", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.077899, 40.02345 ], [ -75.077719, 40.02353 ], [ -75.077579, 40.023729 ], [ -75.07751, 40.02413 ], [ -75.077409, 40.024569 ], [ -75.07739, 40.024659 ], [ -75.07733, 40.024739 ], [ -75.07685, 40.025259 ], [ -75.076779, 40.02532 ], [ -75.076639, 40.02531 ], [ -75.076599, 40.02552 ], [ -75.076509, 40.025819 ], [ -75.076419, 40.025999 ], [ -75.0763, 40.026169 ], [ -75.07557, 40.02704 ], [ -75.075149, 40.0275 ], [ -75.074439, 40.02827 ], [ -75.07432, 40.02846 ], [ -75.074199, 40.028699 ], [ -75.07401, 40.029159 ], [ -75.07391, 40.029409 ], [ -75.07383, 40.02962 ], [ -75.073759, 40.029779 ], [ -75.073619, 40.0301 ], [ -75.073569, 40.030229 ], [ -75.073529, 40.03037 ], [ -75.07325, 40.030939 ], [ -75.07307, 40.031309 ], [ -75.072899, 40.03162 ], [ -75.07269, 40.03197 ], [ -75.072359, 40.032559 ], [ -75.07229, 40.032749 ], [ -75.07225, 40.032829 ], [ -75.072189, 40.032929 ], [ -75.07211, 40.033089 ], [ -75.07207, 40.03316 ], [ -75.07206, 40.033179 ], [ -75.071869, 40.03352 ], [ -75.071689, 40.033839 ], [ -75.071469, 40.03424 ], [ -75.071329, 40.034449 ], [ -75.071229, 40.0346 ], [ -75.07094, 40.03467 ], [ -75.070299, 40.034819 ], [ -75.069479, 40.035009 ], [ -75.06902, 40.03511 ], [ -75.068849, 40.035149 ], [ -75.068179, 40.0353 ], [ -75.067419, 40.03547 ], [ -75.06699, 40.03557 ], [ -75.066099, 40.035779 ], [ -75.065389, 40.03594 ], [ -75.06514, 40.035999 ], [ -75.065029, 40.03602 ], [ -75.06473, 40.036089 ], [ -75.06433, 40.036179 ], [ -75.064209, 40.0362 ], [ -75.06369, 40.036329 ], [ -75.06357, 40.036359 ], [ -75.063319, 40.036429 ], [ -75.06312, 40.0365 ], [ -75.06294, 40.03657 ], [ -75.06275, 40.03664 ], [ -75.06258, 40.036719 ], [ -75.062519, 40.03675 ], [ -75.06239, 40.036809 ], [ -75.06212, 40.036959 ], [ -75.06155, 40.037349 ], [ -75.060929, 40.0379 ], [ -75.06005, 40.03874 ], [ -75.059669, 40.0391 ], [ -75.0596, 40.03916 ], [ -75.05893, 40.039779 ], [ -75.05844, 40.040229 ], [ -75.057869, 40.040769 ], [ -75.05763, 40.04099 ], [ -75.057, 40.04159 ], [ -75.056919, 40.041659 ], [ -75.05668, 40.04189 ], [ -75.056569, 40.041999 ], [ -75.0564, 40.04216 ], [ -75.056159, 40.042379 ], [ -75.056079, 40.042449 ], [ -75.05586, 40.042659 ], [ -75.055799, 40.042719 ], [ -75.05564, 40.04286 ], [ -75.05537, 40.043109 ], [ -75.055169, 40.043279 ], [ -75.055029, 40.04342 ], [ -75.054989, 40.043449 ], [ -75.054669, 40.04375 ], [ -75.054589, 40.043819 ], [ -75.054499, 40.043909 ], [ -75.054409, 40.043999 ], [ -75.05425, 40.044149 ], [ -75.05406, 40.044329 ], [ -75.053699, 40.04466 ], [ -75.05349, 40.04485 ], [ -75.053369, 40.044969 ], [ -75.0533, 40.04504 ], [ -75.052029, 40.046229 ], [ -75.051839, 40.046419 ], [ -75.05168, 40.046599 ], [ -75.05138, 40.04702 ], [ -75.051259, 40.047239 ], [ -75.051169, 40.047419 ], [ -75.0511, 40.047589 ], [ -75.051039, 40.047779 ], [ -75.050979, 40.04801 ], [ -75.05092, 40.048319 ], [ -75.050889, 40.04861 ], [ -75.050849, 40.04906 ], [ -75.050819, 40.04943 ], [ -75.050819, 40.049479 ], [ -75.050809, 40.049589 ], [ -75.05078, 40.049949 ], [ -75.050769, 40.050129 ], [ -75.050759, 40.05032 ], [ -75.05074, 40.05059 ], [ -75.0507, 40.05108 ], [ -75.05066, 40.05141 ], [ -75.05061, 40.05167 ], [ -75.050539, 40.051929 ], [ -75.05046, 40.05213 ], [ -75.05038, 40.0523 ], [ -75.05028, 40.05248 ], [ -75.050169, 40.052649 ], [ -75.05003, 40.052819 ], [ -75.04983, 40.05305 ], [ -75.04948, 40.05341 ], [ -75.048909, 40.053999 ], [ -75.0485, 40.0544 ], [ -75.04823, 40.05467 ], [ -75.047979, 40.05492 ], [ -75.04794, 40.05495 ], [ -75.04769, 40.0552 ], [ -75.04737, 40.055519 ], [ -75.047019, 40.055869 ], [ -75.04678, 40.05611 ], [ -75.04656, 40.056329 ], [ -75.04637, 40.056509 ], [ -75.04625, 40.05663 ], [ -75.04602, 40.056859 ], [ -75.0456, 40.057289 ], [ -75.04526, 40.05764 ], [ -75.045139, 40.057749 ], [ -75.044969, 40.057939 ], [ -75.04472, 40.058199 ], [ -75.044519, 40.058409 ], [ -75.044229, 40.058769 ], [ -75.044149, 40.05888 ], [ -75.044059, 40.05908 ], [ -75.043959, 40.059309 ], [ -75.043869, 40.05951 ], [ -75.043799, 40.059669 ], [ -75.043519, 40.060299 ], [ -75.04327, 40.06087 ], [ -75.04291, 40.06167 ], [ -75.04265, 40.06222 ], [ -75.042579, 40.06238 ], [ -75.042299, 40.062999 ], [ -75.04224, 40.06313 ], [ -75.04205, 40.06357 ], [ -75.04187, 40.063979 ], [ -75.041799, 40.064139 ], [ -75.04157, 40.06467 ], [ -75.041499, 40.06484 ], [ -75.04147, 40.0649 ], [ -75.0411, 40.065779 ], [ -75.04101, 40.065969 ], [ -75.04092, 40.06617 ], [ -75.040589, 40.06688 ], [ -75.040419, 40.06726 ], [ -75.04003, 40.06809 ], [ -75.03984, 40.0685 ], [ -75.03968, 40.06881 ], [ -75.03953, 40.06908 ], [ -75.03932, 40.069369 ], [ -75.03917, 40.069559 ], [ -75.039109, 40.069629 ], [ -75.03896, 40.069809 ], [ -75.038709, 40.070079 ], [ -75.03831, 40.07051 ], [ -75.03782, 40.07102 ], [ -75.0371, 40.07175 ], [ -75.035829, 40.073059 ], [ -75.03548, 40.07345 ], [ -75.035199, 40.07373 ], [ -75.03473, 40.0742 ], [ -75.034029, 40.074929 ], [ -75.033169, 40.07583 ], [ -75.03255, 40.076479 ], [ -75.03183, 40.077219 ], [ -75.03156, 40.0775 ], [ -75.03135, 40.07771 ], [ -75.03111, 40.07795 ], [ -75.030789, 40.078279 ], [ -75.03053, 40.078559 ], [ -75.03045, 40.078639 ], [ -75.0303, 40.078799 ], [ -75.030019, 40.079079 ], [ -75.02959, 40.079529 ], [ -75.0291, 40.08003 ], [ -75.02897, 40.080159 ], [ -75.0286, 40.080539 ], [ -75.02847, 40.08068 ], [ -75.02837, 40.08078 ], [ -75.02805, 40.0811 ], [ -75.027669, 40.08148 ], [ -75.027539, 40.081609 ], [ -75.027449, 40.081709 ], [ -75.02711, 40.082049 ], [ -75.026959, 40.0822 ], [ -75.026329, 40.082869 ], [ -75.02599, 40.083219 ], [ -75.025839, 40.08338 ], [ -75.024709, 40.08453 ], [ -75.02455, 40.0847 ], [ -75.024479, 40.084779 ], [ -75.024259, 40.085 ], [ -75.02401, 40.08527 ], [ -75.02378, 40.085499 ], [ -75.02352, 40.085769 ], [ -75.02342, 40.08587 ], [ -75.023049, 40.08626 ], [ -75.02216, 40.087179 ], [ -75.021999, 40.08734 ], [ -75.02058, 40.088829 ], [ -75.018926, 40.090547 ], [ -75.018842, 40.090618 ], [ -75.01883, 40.090654 ], [ -75.018723, 40.090752 ], [ -75.018628, 40.090859 ], [ -75.018485, 40.091001 ], [ -75.01839, 40.091099 ], [ -75.018283, 40.091215 ], [ -75.018176, 40.091321 ], [ -75.018069, 40.091428 ], [ -75.017997, 40.091508 ], [ -75.017914, 40.091588 ], [ -75.017819, 40.091686 ], [ -75.017723, 40.091793 ], [ -75.017628, 40.091891 ], [ -75.017533, 40.091989 ], [ -75.017461, 40.092069 ], [ -75.017366, 40.092167 ], [ -75.017259, 40.092265 ], [ -75.017188, 40.092354 ], [ -75.017104, 40.092425 ], [ -75.017021, 40.092514 ], [ -75.016914, 40.092638 ], [ -75.016807, 40.092745 ], [ -75.016747, 40.092807 ], [ -75.016664, 40.092887 ], [ -75.016593, 40.092959 ], [ -75.016533, 40.093021 ], [ -75.016479, 40.09307 ], [ -75.015789, 40.09379 ], [ -75.015749, 40.093839 ], [ -75.01533, 40.09426 ], [ -75.01506, 40.09455 ], [ -75.014499, 40.095129 ], [ -75.014259, 40.09536 ], [ -75.014079, 40.09553 ], [ -75.01366, 40.095939 ], [ -75.01338, 40.096179 ], [ -75.01294, 40.096549 ], [ -75.01239, 40.09697 ], [ -75.01217, 40.09715 ], [ -75.01199, 40.097269 ], [ -75.011439, 40.097649 ], [ -75.011339, 40.097719 ], [ -75.01096, 40.097989 ], [ -75.010889, 40.09804 ], [ -75.01041, 40.098369 ], [ -75.00984, 40.09875 ], [ -75.008819, 40.09946 ], [ -75.008239, 40.099879 ], [ -75.006609, 40.100969 ], [ -75.00602, 40.10137 ], [ -75.005399, 40.1018 ], [ -75.00511, 40.102 ], [ -75.004689, 40.10229 ], [ -75.003919, 40.10282 ], [ -75.003609, 40.103029 ], [ -75.002649, 40.10369 ], [ -75.00195, 40.10417 ], [ -75.001389, 40.104549 ], [ -75.00124, 40.104659 ], [ -75.000809, 40.10496 ], [ -75.00066, 40.10506 ], [ -75.00052, 40.10516 ], [ -74.99993, 40.105559 ], [ -74.999869, 40.1056 ], [ -74.99985, 40.105619 ], [ -74.99975, 40.10568 ], [ -74.999639, 40.10576 ], [ -74.99935, 40.10596 ], [ -74.99904, 40.106169 ], [ -74.99894, 40.10624 ], [ -74.997969, 40.106899 ], [ -74.997079, 40.1075 ], [ -74.99665, 40.107789 ], [ -74.996529, 40.107879 ], [ -74.99593, 40.10832 ], [ -74.99508, 40.108889 ], [ -74.993979, 40.10965 ], [ -74.99367, 40.109869 ], [ -74.992129, 40.110929 ], [ -74.99143, 40.111409 ], [ -74.99057, 40.112039 ], [ -74.98994, 40.11246 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.98656, 40.114819 ], [ -74.98521, 40.11578 ], [ -74.98514, 40.115829 ], [ -74.984969, 40.11595 ], [ -74.98477, 40.116089 ], [ -74.98396, 40.11669 ], [ -74.983659, 40.116909 ], [ -74.9832, 40.117249 ], [ -74.983029, 40.11749 ], [ -74.982589, 40.11784 ], [ -74.982419, 40.117969 ], [ -74.981789, 40.11845 ], [ -74.981499, 40.118669 ], [ -74.981319, 40.11881 ], [ -74.98121, 40.118889 ], [ -74.981189, 40.1189 ], [ -74.98091, 40.1191 ], [ -74.9805, 40.11938 ], [ -74.98005, 40.119689 ], [ -74.979889, 40.1198 ], [ -74.979789, 40.119859 ], [ -74.97946, 40.12008 ], [ -74.97929, 40.12019 ], [ -74.979079, 40.12035 ], [ -74.978859, 40.120499 ], [ -74.9787, 40.12061 ], [ -74.97847, 40.120759 ], [ -74.97829, 40.12088 ], [ -74.978229, 40.12092 ], [ -74.97816, 40.120959 ], [ -74.97794, 40.121109 ], [ -74.97775, 40.12124 ], [ -74.977549, 40.121229 ], [ -74.977009, 40.121199 ], [ -74.976999, 40.121309 ], [ -74.97695, 40.1218 ], [ -74.976869, 40.12205 ], [ -74.976829, 40.122459 ], [ -74.976819, 40.1226 ], [ -74.97681, 40.12269 ], [ -74.97676, 40.12313 ], [ -74.976649, 40.123839 ], [ -74.976599, 40.124289 ], [ -74.976429, 40.1256 ], [ -74.97641, 40.125799 ], [ -74.976329, 40.12638 ], [ -74.97623, 40.12712 ], [ -74.97608, 40.128249 ], [ -74.976009, 40.128849 ], [ -74.975969, 40.129129 ], [ -74.97587, 40.129959 ], [ -74.975799, 40.130559 ], [ -74.97573, 40.13109 ], [ -74.97572, 40.13132 ], [ -74.97572, 40.13144 ], [ -74.97573, 40.13153 ], [ -74.97576, 40.131819 ], [ -74.975749, 40.13196 ], [ -74.975749, 40.131999 ], [ -74.97572, 40.132119 ], [ -74.97568, 40.132199 ], [ -74.975609, 40.132299 ], [ -74.975519, 40.1324 ], [ -74.97533, 40.13261 ], [ -74.975259, 40.13267 ], [ -74.975159, 40.13277 ], [ -74.97506, 40.13287 ], [ -74.974889, 40.13304 ], [ -74.974679, 40.13323 ], [ -74.97452, 40.133379 ], [ -74.97419, 40.13369 ], [ -74.97389, 40.13396 ], [ -74.973459, 40.134349 ], [ -74.9732, 40.1346 ], [ -74.972739, 40.13503 ], [ -74.972459, 40.13529 ], [ -74.97231, 40.135429 ], [ -74.971969, 40.13574 ], [ -74.971649, 40.136049 ], [ -74.97099, 40.13665 ], [ -74.97069, 40.13692 ], [ -74.970349, 40.137219 ], [ -74.97001, 40.136979 ], [ -74.96991, 40.13692 ], [ -74.96952, 40.136779 ], [ -74.96915, 40.136789 ], [ -74.968769, 40.13693 ], [ -74.96857, 40.1371 ], [ -74.96821, 40.137409 ], [ -74.9682, 40.137419 ], [ -74.967819, 40.13763 ], [ -74.967429, 40.137689 ], [ -74.967059, 40.137609 ], [ -74.966739, 40.13745 ], [ -74.965979, 40.136979 ], [ -74.96492, 40.13636 ], [ -74.964459, 40.13683 ], [ -74.9638, 40.137519 ], [ -74.963229, 40.138129 ], [ -74.962959, 40.138409 ], [ -74.96255, 40.138839 ], [ -74.962059, 40.13936 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.959014, 40.13834 ], [ -74.959193, 40.13818 ], [ -74.959478, 40.138056 ], [ -74.959892, 40.138039 ], [ -74.960188, 40.138112 ], [ -74.960436, 40.138238 ], [ -74.960576, 40.138462 ], [ -74.960563, 40.138658 ], [ -74.960538, 40.138836 ], [ -74.960269, 40.13909 ], [ -74.96019, 40.13918 ], [ -74.959359, 40.140029 ], [ -74.95764, 40.14179 ], [ -74.95741, 40.14203 ], [ -74.95719, 40.142259 ], [ -74.95673, 40.142739 ], [ -74.955909, 40.14359 ], [ -74.9543, 40.145219 ], [ -74.95413, 40.14539 ], [ -74.95368, 40.145849 ], [ -74.953509, 40.14602 ], [ -74.953069, 40.14647 ], [ -74.95292, 40.14663 ], [ -74.95269, 40.146869 ], [ -74.952, 40.147309 ], [ -74.951449, 40.147689 ], [ -74.951039, 40.14797 ], [ -74.950589, 40.148319 ], [ -74.949909, 40.1489 ], [ -74.949199, 40.149489 ], [ -74.94872, 40.149839 ], [ -74.948069, 40.15023 ], [ -74.946809, 40.15094 ], [ -74.94562, 40.151349 ], [ -74.944429, 40.15175 ], [ -74.94085, 40.152909 ], [ -74.9404, 40.153059 ], [ -74.93999, 40.15319 ], [ -74.939749, 40.153269 ], [ -74.93873, 40.153629 ], [ -74.93851, 40.153719 ], [ -74.938309, 40.153799 ], [ -74.9378, 40.153989 ], [ -74.93657, 40.15447 ], [ -74.93598, 40.15466 ], [ -74.93546, 40.154799 ], [ -74.934339, 40.15508 ], [ -74.93379, 40.15521 ], [ -74.933409, 40.15527 ], [ -74.932959, 40.155319 ], [ -74.93265, 40.155329 ], [ -74.932279, 40.155329 ], [ -74.931419, 40.15527 ], [ -74.930519, 40.1552 ], [ -74.92982, 40.155149 ], [ -74.929409, 40.15512 ], [ -74.929039, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.92826, 40.1551 ], [ -74.927879, 40.15511 ], [ -74.927599, 40.155129 ], [ -74.927229, 40.155159 ], [ -74.926829, 40.15521 ], [ -74.92591, 40.15535 ], [ -74.925339, 40.15546 ], [ -74.92452, 40.15562 ], [ -74.923949, 40.15573 ], [ -74.92334, 40.15584 ], [ -74.92298, 40.15591 ], [ -74.922869, 40.15593 ], [ -74.922789, 40.155949 ], [ -74.92262, 40.15598 ], [ -74.922469, 40.15601 ], [ -74.92213, 40.15608 ], [ -74.921879, 40.156129 ], [ -74.92141, 40.15625 ], [ -74.921289, 40.15628 ], [ -74.921169, 40.156319 ], [ -74.92083, 40.156419 ], [ -74.920709, 40.15646 ], [ -74.920529, 40.15652 ], [ -74.920259, 40.156599 ], [ -74.920139, 40.15664 ], [ -74.919939, 40.1567 ], [ -74.91934, 40.15689 ], [ -74.91916, 40.156939 ], [ -74.91881, 40.157049 ], [ -74.918639, 40.1571 ], [ -74.918589, 40.157119 ], [ -74.918369, 40.15719 ], [ -74.918139, 40.15726 ], [ -74.91799, 40.157309 ], [ -74.917739, 40.157379 ], [ -74.917689, 40.157399 ], [ -74.91726, 40.15753 ], [ -74.917159, 40.157559 ], [ -74.91691, 40.157639 ], [ -74.9165, 40.157769 ], [ -74.91633, 40.157819 ], [ -74.9161, 40.15789 ], [ -74.91556, 40.15805 ], [ -74.915309, 40.158119 ], [ -74.915139, 40.15817 ], [ -74.914899, 40.158219 ], [ -74.91479, 40.15825 ], [ -74.914689, 40.158269 ], [ -74.914549, 40.158299 ], [ -74.914359, 40.15834 ], [ -74.913789, 40.158469 ], [ -74.913549, 40.15852 ], [ -74.91314, 40.15861 ], [ -74.9126, 40.158739 ], [ -74.912249, 40.158829 ], [ -74.912079, 40.15887 ], [ -74.91182, 40.158919 ], [ -74.911629, 40.158989 ], [ -74.91152, 40.15904 ], [ -74.91134, 40.159119 ], [ -74.91111, 40.15925 ], [ -74.911229, 40.15934 ], [ -74.91147, 40.15952 ], [ -74.911799, 40.15977 ], [ -74.912129, 40.15998 ], [ -74.91214, 40.16003 ], [ -74.912159, 40.160099 ], [ -74.912209, 40.16024 ], [ -74.91228, 40.160449 ], [ -74.91237, 40.160729 ], [ -74.91241, 40.16085 ], [ -74.912469, 40.16104 ], [ -74.9125, 40.16114 ], [ -74.912519, 40.16121 ], [ -74.912559, 40.16133 ], [ -74.91259, 40.16142 ], [ -74.91277, 40.16201 ], [ -74.912879, 40.162319 ], [ -74.91304, 40.16276 ], [ -74.913159, 40.16309 ], [ -74.913189, 40.16318 ], [ -74.91322, 40.163259 ], [ -74.91326, 40.163349 ], [ -74.913299, 40.163429 ], [ -74.913379, 40.163589 ], [ -74.91371, 40.16419 ], [ -74.91404, 40.164769 ], [ -74.914689, 40.165959 ], [ -74.9148, 40.16615 ], [ -74.91501, 40.166499 ], [ -74.9151, 40.16663 ], [ -74.9153, 40.166929 ], [ -74.91542, 40.16708 ], [ -74.91552, 40.167219 ], [ -74.915629, 40.167389 ], [ -74.91579, 40.167629 ], [ -74.9152, 40.16779 ], [ -74.914819, 40.167899 ], [ -74.914679, 40.167939 ], [ -74.914629, 40.16795 ], [ -74.914369, 40.16805 ], [ -74.914269, 40.168109 ], [ -74.914179, 40.168179 ], [ -74.914009, 40.16834 ], [ -74.91389, 40.16853 ], [ -74.91381, 40.168749 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.16916 ], [ -74.913869, 40.16933 ], [ -74.91404, 40.16961 ], [ -74.91413, 40.16978 ], [ -74.91443, 40.17033 ], [ -74.91466, 40.170799 ], [ -74.914809, 40.1711 ], [ -74.91485, 40.171179 ], [ -74.914909, 40.17128 ], [ -74.91516, 40.171719 ], [ -74.915309, 40.17201 ], [ -74.915629, 40.172599 ], [ -74.915719, 40.17276 ], [ -74.91602, 40.17329 ], [ -74.9161, 40.17344 ], [ -74.916519, 40.174319 ], [ -74.91654, 40.17436 ], [ -74.916699, 40.17474 ], [ -74.91682, 40.175029 ], [ -74.916939, 40.175289 ], [ -74.917069, 40.1756 ], [ -74.91722, 40.17598 ], [ -74.917329, 40.17625 ], [ -74.91741, 40.176449 ], [ -74.91749, 40.176659 ], [ -74.91728, 40.17671 ], [ -74.91709, 40.176749 ], [ -74.91691, 40.17679 ], [ -74.91633, 40.1769 ], [ -74.915629, 40.17705 ], [ -74.9153, 40.177119 ], [ -74.9148, 40.17723 ], [ -74.91457, 40.177279 ], [ -74.91404, 40.17742 ], [ -74.913099, 40.17767 ], [ -74.912349, 40.17788 ], [ -74.911129, 40.17821 ], [ -74.91044, 40.17839 ], [ -74.910009, 40.1785 ], [ -74.90948, 40.178649 ], [ -74.909189, 40.178719 ], [ -74.90898, 40.17877 ], [ -74.908839, 40.178799 ], [ -74.908699, 40.178819 ], [ -74.908519, 40.17884 ], [ -74.90835, 40.17885 ], [ -74.908059, 40.17886 ], [ -74.907759, 40.17884 ], [ -74.90759, 40.178819 ], [ -74.907299, 40.17876 ], [ -74.90706, 40.1787 ], [ -74.906769, 40.178629 ], [ -74.906439, 40.178549 ], [ -74.90621, 40.17849 ], [ -74.90611, 40.178469 ], [ -74.905949, 40.178439 ], [ -74.905449, 40.178349 ], [ -74.90512, 40.178279 ], [ -74.904649, 40.17816 ], [ -74.90454, 40.17813 ], [ -74.90423, 40.17806 ], [ -74.904069, 40.17803 ], [ -74.903579, 40.177929 ], [ -74.903289, 40.17786 ], [ -74.903159, 40.177829 ], [ -74.90256, 40.17769 ], [ -74.90219, 40.1776 ], [ -74.901729, 40.17749 ], [ -74.9009, 40.177299 ], [ -74.90016, 40.17717 ], [ -74.89982, 40.177119 ], [ -74.899559, 40.17708 ], [ -74.89926, 40.17704 ], [ -74.89882, 40.17699 ], [ -74.898489, 40.17696 ], [ -74.89818, 40.176929 ], [ -74.89788, 40.1769 ], [ -74.897589, 40.17687 ], [ -74.89742, 40.176849 ], [ -74.89716, 40.176819 ], [ -74.896859, 40.17679 ], [ -74.89652, 40.176749 ], [ -74.896229, 40.176719 ], [ -74.8958, 40.17668 ], [ -74.895369, 40.176639 ], [ -74.894939, 40.17661 ], [ -74.894619, 40.1766 ], [ -74.89432, 40.1766 ], [ -74.8941, 40.17661 ], [ -74.89391, 40.17662 ], [ -74.89369, 40.176639 ], [ -74.893439, 40.17668 ], [ -74.89324, 40.176719 ], [ -74.893029, 40.176749 ], [ -74.892869, 40.17678 ], [ -74.892729, 40.1768 ], [ -74.89163, 40.17697 ], [ -74.8899, 40.17724 ], [ -74.88945, 40.17731 ], [ -74.88864, 40.17742 ], [ -74.888169, 40.17749 ], [ -74.887719, 40.177549 ], [ -74.887329, 40.1776 ], [ -74.88698, 40.177659 ], [ -74.88645, 40.177739 ], [ -74.886239, 40.17777 ], [ -74.886189, 40.17778 ], [ -74.88573, 40.17785 ], [ -74.885159, 40.17795 ], [ -74.884439, 40.17807 ], [ -74.8838, 40.178169 ], [ -74.88356, 40.17821 ], [ -74.883189, 40.178269 ], [ -74.882999, 40.17833 ], [ -74.88281, 40.17839 ], [ -74.882869, 40.17885 ], [ -74.88293, 40.17913 ], [ -74.882959, 40.17929 ], [ -74.88299, 40.179599 ], [ -74.88308, 40.180359 ], [ -74.88276, 40.180349 ], [ -74.882549, 40.18039 ], [ -74.882289, 40.18048 ], [ -74.882, 40.18057 ], [ -74.88153, 40.180679 ], [ -74.881159, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.880429, 40.180709 ], [ -74.880129, 40.18067 ], [ -74.87915, 40.18049 ], [ -74.878539, 40.180359 ], [ -74.87785, 40.180249 ], [ -74.87768, 40.180259 ], [ -74.87745, 40.180319 ], [ -74.87723, 40.18038 ], [ -74.877019, 40.18047 ], [ -74.87695, 40.180509 ], [ -74.876829, 40.180589 ], [ -74.876669, 40.18076 ], [ -74.87655, 40.18093 ], [ -74.87654, 40.180949 ], [ -74.87645, 40.181159 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309398", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88299, 40.179599 ], [ -74.882959, 40.17929 ], [ -74.88293, 40.17913 ], [ -74.882869, 40.17885 ], [ -74.88281, 40.17839 ], [ -74.882999, 40.17833 ], [ -74.883189, 40.178269 ], [ -74.88356, 40.17821 ], [ -74.8838, 40.178169 ], [ -74.884439, 40.17807 ], [ -74.885159, 40.17795 ], [ -74.88573, 40.17785 ], [ -74.886189, 40.17778 ], [ -74.886239, 40.17777 ], [ -74.88645, 40.177739 ], [ -74.88698, 40.177659 ], [ -74.887329, 40.1776 ], [ -74.887719, 40.177549 ], [ -74.888169, 40.17749 ], [ -74.88864, 40.17742 ], [ -74.88945, 40.17731 ], [ -74.8899, 40.17724 ], [ -74.89163, 40.17697 ], [ -74.892729, 40.1768 ], [ -74.892869, 40.17678 ], [ -74.893029, 40.176749 ], [ -74.89324, 40.176719 ], [ -74.893439, 40.17668 ], [ -74.89369, 40.176639 ], [ -74.89391, 40.17662 ], [ -74.8941, 40.17661 ], [ -74.89432, 40.1766 ], [ -74.894619, 40.1766 ], [ -74.894939, 40.17661 ], [ -74.895369, 40.176639 ], [ -74.8958, 40.17668 ], [ -74.896229, 40.176719 ], [ -74.89652, 40.176749 ], [ -74.896859, 40.17679 ], [ -74.89716, 40.176819 ], [ -74.89742, 40.176849 ], [ -74.897589, 40.17687 ], [ -74.89788, 40.1769 ], [ -74.89818, 40.176929 ], [ -74.898489, 40.17696 ], [ -74.89882, 40.17699 ], [ -74.89926, 40.17704 ], [ -74.899559, 40.17708 ], [ -74.89982, 40.177119 ], [ -74.90016, 40.17717 ], [ -74.9009, 40.177299 ], [ -74.901729, 40.17749 ], [ -74.90219, 40.1776 ], [ -74.90256, 40.17769 ], [ -74.903159, 40.177829 ], [ -74.903289, 40.17786 ], [ -74.903579, 40.177929 ], [ -74.904069, 40.17803 ], [ -74.90423, 40.17806 ], [ -74.90454, 40.17813 ], [ -74.904649, 40.17816 ], [ -74.90512, 40.178279 ], [ -74.905449, 40.178349 ], [ -74.905949, 40.178439 ], [ -74.90611, 40.178469 ], [ -74.90621, 40.17849 ], [ -74.906439, 40.178549 ], [ -74.906769, 40.178629 ], [ -74.90706, 40.1787 ], [ -74.907299, 40.17876 ], [ -74.90759, 40.178819 ], [ -74.907759, 40.17884 ], [ -74.908059, 40.17886 ], [ -74.90835, 40.17885 ], [ -74.908519, 40.17884 ], [ -74.908699, 40.178819 ], [ -74.908839, 40.178799 ], [ -74.90898, 40.17877 ], [ -74.909189, 40.178719 ], [ -74.90948, 40.178649 ], [ -74.910009, 40.1785 ], [ -74.91044, 40.17839 ], [ -74.911129, 40.17821 ], [ -74.912349, 40.17788 ], [ -74.913099, 40.17767 ], [ -74.91404, 40.17742 ], [ -74.91457, 40.177279 ], [ -74.9148, 40.17723 ], [ -74.9153, 40.177119 ], [ -74.915629, 40.17705 ], [ -74.91633, 40.1769 ], [ -74.91691, 40.17679 ], [ -74.91709, 40.176749 ], [ -74.91728, 40.17671 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912249, 40.158829 ], [ -74.9126, 40.158739 ], [ -74.91314, 40.15861 ], [ -74.913549, 40.15852 ], [ -74.913789, 40.158469 ], [ -74.914359, 40.15834 ], [ -74.914549, 40.158299 ], [ -74.914689, 40.158269 ], [ -74.91479, 40.15825 ], [ -74.914899, 40.158219 ], [ -74.915139, 40.15817 ], [ -74.915309, 40.158119 ], [ -74.91556, 40.15805 ], [ -74.9161, 40.15789 ], [ -74.91633, 40.157819 ], [ -74.9165, 40.157769 ], [ -74.91691, 40.157639 ], [ -74.917159, 40.157559 ], [ -74.91726, 40.15753 ], [ -74.917689, 40.157399 ], [ -74.917739, 40.157379 ], [ -74.91799, 40.157309 ], [ -74.918139, 40.15726 ], [ -74.918369, 40.15719 ], [ -74.918589, 40.157119 ], [ -74.918639, 40.1571 ], [ -74.91881, 40.157049 ], [ -74.91916, 40.156939 ], [ -74.91934, 40.15689 ], [ -74.919939, 40.1567 ], [ -74.920139, 40.15664 ], [ -74.920259, 40.156599 ], [ -74.920529, 40.15652 ], [ -74.920709, 40.15646 ], [ -74.92083, 40.156419 ], [ -74.921169, 40.156319 ], [ -74.921289, 40.15628 ], [ -74.92141, 40.15625 ], [ -74.921879, 40.156129 ], [ -74.92213, 40.15608 ], [ -74.922469, 40.15601 ], [ -74.92262, 40.15598 ], [ -74.922789, 40.155949 ], [ -74.922869, 40.15593 ], [ -74.92298, 40.15591 ], [ -74.92334, 40.15584 ], [ -74.923949, 40.15573 ], [ -74.92452, 40.15562 ], [ -74.925339, 40.15546 ], [ -74.92591, 40.15535 ], [ -74.926829, 40.15521 ], [ -74.927229, 40.155159 ], [ -74.927599, 40.155129 ], [ -74.927879, 40.15511 ], [ -74.92826, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.929039, 40.1551 ], [ -74.929409, 40.15512 ], [ -74.92982, 40.155149 ], [ -74.930519, 40.1552 ], [ -74.931419, 40.15527 ], [ -74.932279, 40.155329 ], [ -74.93265, 40.155329 ], [ -74.932959, 40.155319 ], [ -74.933409, 40.15527 ], [ -74.93379, 40.15521 ], [ -74.934339, 40.15508 ], [ -74.93546, 40.154799 ], [ -74.93598, 40.15466 ], [ -74.93657, 40.15447 ], [ -74.9378, 40.153989 ], [ -74.938309, 40.153799 ], [ -74.93851, 40.153719 ], [ -74.93873, 40.153629 ], [ -74.939749, 40.153269 ], [ -74.93999, 40.15319 ], [ -74.9404, 40.153059 ], [ -74.94085, 40.152909 ], [ -74.944429, 40.15175 ], [ -74.94562, 40.151349 ], [ -74.946809, 40.15094 ], [ -74.94824, 40.15053 ], [ -74.948919, 40.15034 ], [ -74.94945, 40.150169 ], [ -74.949599, 40.150119 ], [ -74.94985, 40.15004 ], [ -74.95016, 40.14995 ], [ -74.95049, 40.149819 ], [ -74.950899, 40.1496 ], [ -74.951219, 40.149379 ], [ -74.951359, 40.14925 ], [ -74.951589, 40.149029 ], [ -74.951889, 40.148659 ], [ -74.95201, 40.148489 ], [ -74.95215, 40.14827 ], [ -74.95232, 40.14797 ], [ -74.952519, 40.14761 ], [ -74.952749, 40.1472 ], [ -74.953069, 40.14674 ], [ -74.953609, 40.146049 ], [ -74.953829, 40.14583 ], [ -74.95426, 40.14539 ], [ -74.95445, 40.14519 ], [ -74.955129, 40.14449 ], [ -74.95592, 40.14369 ], [ -74.95598, 40.143629 ], [ -74.956029, 40.14358 ], [ -74.956849, 40.142729 ], [ -74.956989, 40.14259 ], [ -74.957479, 40.142099 ], [ -74.958379, 40.14134 ], [ -74.95872, 40.14107 ], [ -74.95902, 40.14089 ], [ -74.959139, 40.140839 ], [ -74.95926, 40.1408 ], [ -74.95938, 40.14077 ], [ -74.9601, 40.140659 ], [ -74.96039, 40.14061 ], [ -74.960589, 40.140569 ], [ -74.9607, 40.140539 ], [ -74.960799, 40.1405 ], [ -74.960949, 40.14043 ], [ -74.96114, 40.140309 ], [ -74.96133, 40.14017 ], [ -74.96142, 40.140089 ], [ -74.96151, 40.140019 ], [ -74.96156, 40.13997 ], [ -74.961579, 40.139919 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309399", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ], [ -75.014039, 40.09065 ], [ -75.01407, 40.090779 ], [ -75.01384, 40.090709 ], [ -75.01362, 40.09076 ], [ -75.01348, 40.09083 ], [ -75.013179, 40.090989 ], [ -75.01294, 40.091149 ], [ -75.01249, 40.091499 ], [ -75.01203, 40.09182 ], [ -75.011969, 40.091949 ], [ -75.012149, 40.092119 ], [ -75.01294, 40.092769 ], [ -75.012999, 40.09282 ], [ -75.013049, 40.092869 ], [ -75.013549, 40.093309 ], [ -75.01365, 40.093389 ], [ -75.01385, 40.09356 ], [ -75.014229, 40.093869 ], [ -75.014399, 40.09401 ], [ -75.01461, 40.09417 ], [ -75.01506, 40.09455 ], [ -75.01518, 40.094649 ], [ -75.01533, 40.094769 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309400", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.015789, 40.104749 ], [ -75.016149, 40.104469 ], [ -75.01646, 40.10423 ], [ -75.016569, 40.104129 ], [ -75.016879, 40.1039 ], [ -75.017059, 40.103759 ], [ -75.017189, 40.103659 ], [ -75.0179, 40.103109 ], [ -75.018909, 40.102329 ], [ -75.019539, 40.101849 ], [ -75.020609, 40.10102 ], [ -75.02109, 40.100689 ], [ -75.021459, 40.10039 ], [ -75.021789, 40.10012 ], [ -75.021459, 40.09984 ], [ -75.02073, 40.099239 ], [ -75.02023, 40.09883 ], [ -75.019619, 40.098349 ], [ -75.019119, 40.097909 ], [ -75.01883, 40.09766 ], [ -75.01866, 40.09751 ], [ -75.01861, 40.097469 ], [ -75.018219, 40.09715 ], [ -75.01794, 40.096919 ], [ -75.01785, 40.09685 ], [ -75.01771, 40.096739 ], [ -75.017509, 40.096569 ], [ -75.01744, 40.09651 ], [ -75.016169, 40.095469 ], [ -75.016059, 40.095379 ], [ -75.015929, 40.09527 ], [ -75.015849, 40.095209 ], [ -75.015669, 40.09506 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309401", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.99251, 40.1092 ], [ -74.992579, 40.10946 ], [ -74.99228, 40.10955 ], [ -74.99202, 40.10964 ], [ -74.991849, 40.109709 ], [ -74.99144, 40.109969 ], [ -74.991219, 40.110159 ], [ -74.991009, 40.11038 ], [ -74.990819, 40.11063 ], [ -74.990689, 40.110849 ], [ -74.99057, 40.110969 ], [ -74.99058, 40.111029 ], [ -74.990559, 40.11109 ], [ -74.990339, 40.111589 ], [ -74.990329, 40.11164 ], [ -74.990329, 40.11173 ], [ -74.99035, 40.11181 ], [ -74.99057, 40.112039 ], [ -74.99071, 40.11216 ], [ -74.9908, 40.11225 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309402", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ], [ -74.875669, 40.1858 ], [ -74.87551, 40.185289 ], [ -74.875299, 40.18535 ], [ -74.875169, 40.185379 ], [ -74.875179, 40.185479 ], [ -74.875229, 40.185839 ], [ -74.87516, 40.18616 ], [ -74.87515, 40.18622 ], [ -74.875079, 40.186279 ], [ -74.87488, 40.186649 ], [ -74.87478, 40.186839 ], [ -74.87444, 40.186749 ], [ -74.87415, 40.1867 ], [ -74.87363, 40.186659 ], [ -74.873499, 40.186659 ], [ -74.87331, 40.18667 ], [ -74.87299, 40.1867 ], [ -74.872289, 40.186839 ], [ -74.872119, 40.18688 ], [ -74.87205, 40.18689 ], [ -74.87183, 40.186919 ], [ -74.8716, 40.186929 ], [ -74.87136, 40.186909 ], [ -74.87102, 40.186829 ], [ -74.87082, 40.186739 ], [ -74.87064, 40.18662 ], [ -74.870539, 40.186549 ], [ -74.87046, 40.18649 ], [ -74.870269, 40.18634 ], [ -74.8702, 40.186289 ], [ -74.87001, 40.18615 ], [ -74.869959, 40.186119 ], [ -74.869539, 40.18586 ], [ -74.869379, 40.18578 ], [ -74.869719, 40.185289 ], [ -74.86998, 40.18489 ], [ -74.87006, 40.184739 ], [ -74.87012, 40.1846 ], [ -74.87016, 40.18451 ], [ -74.87021, 40.184389 ], [ -74.870309, 40.18409 ], [ -74.870359, 40.18392 ], [ -74.870409, 40.183669 ], [ -74.870439, 40.18347 ], [ -74.87048, 40.183059 ], [ -74.87078, 40.183049 ], [ -74.87109, 40.183039 ], [ -74.87132, 40.183039 ], [ -74.871619, 40.183 ], [ -74.87201, 40.18291 ], [ -74.87218, 40.182849 ], [ -74.87228, 40.18281 ], [ -74.87264, 40.18264 ], [ -74.872969, 40.18247 ], [ -74.8734, 40.182249 ], [ -74.873419, 40.182239 ], [ -74.87372, 40.18211 ], [ -74.87415, 40.182 ], [ -74.874579, 40.18194 ], [ -74.875029, 40.181959 ], [ -74.87546, 40.182 ], [ -74.87624, 40.182069 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88299, 40.179599 ], [ -74.882959, 40.17929 ], [ -74.88293, 40.17913 ], [ -74.882869, 40.17885 ], [ -74.88281, 40.17839 ], [ -74.882999, 40.17833 ], [ -74.883189, 40.178269 ], [ -74.88356, 40.17821 ], [ -74.8838, 40.178169 ], [ -74.884439, 40.17807 ], [ -74.885159, 40.17795 ], [ -74.88573, 40.17785 ], [ -74.886189, 40.17778 ], [ -74.886239, 40.17777 ], [ -74.88645, 40.177739 ], [ -74.88698, 40.177659 ], [ -74.887329, 40.1776 ], [ -74.887719, 40.177549 ], [ -74.888169, 40.17749 ], [ -74.88864, 40.17742 ], [ -74.88945, 40.17731 ], [ -74.8899, 40.17724 ], [ -74.89163, 40.17697 ], [ -74.892729, 40.1768 ], [ -74.892869, 40.17678 ], [ -74.893029, 40.176749 ], [ -74.89324, 40.176719 ], [ -74.893439, 40.17668 ], [ -74.89369, 40.176639 ], [ -74.89391, 40.17662 ], [ -74.8941, 40.17661 ], [ -74.89432, 40.1766 ], [ -74.894619, 40.1766 ], [ -74.894939, 40.17661 ], [ -74.895369, 40.176639 ], [ -74.8958, 40.17668 ], [ -74.896229, 40.176719 ], [ -74.89652, 40.176749 ], [ -74.896859, 40.17679 ], [ -74.89716, 40.176819 ], [ -74.89742, 40.176849 ], [ -74.897589, 40.17687 ], [ -74.89788, 40.1769 ], [ -74.89818, 40.176929 ], [ -74.898489, 40.17696 ], [ -74.89882, 40.17699 ], [ -74.89926, 40.17704 ], [ -74.899559, 40.17708 ], [ -74.89982, 40.177119 ], [ -74.90016, 40.17717 ], [ -74.9009, 40.177299 ], [ -74.901729, 40.17749 ], [ -74.90219, 40.1776 ], [ -74.90256, 40.17769 ], [ -74.903159, 40.177829 ], [ -74.903289, 40.17786 ], [ -74.903579, 40.177929 ], [ -74.904069, 40.17803 ], [ -74.90423, 40.17806 ], [ -74.90454, 40.17813 ], [ -74.904649, 40.17816 ], [ -74.90512, 40.178279 ], [ -74.905449, 40.178349 ], [ -74.905949, 40.178439 ], [ -74.90611, 40.178469 ], [ -74.90621, 40.17849 ], [ -74.906439, 40.178549 ], [ -74.906769, 40.178629 ], [ -74.90706, 40.1787 ], [ -74.907299, 40.17876 ], [ -74.90759, 40.178819 ], [ -74.907759, 40.17884 ], [ -74.908059, 40.17886 ], [ -74.90835, 40.17885 ], [ -74.908519, 40.17884 ], [ -74.908699, 40.178819 ], [ -74.908839, 40.178799 ], [ -74.90898, 40.17877 ], [ -74.909189, 40.178719 ], [ -74.90948, 40.178649 ], [ -74.910009, 40.1785 ], [ -74.91044, 40.17839 ], [ -74.911129, 40.17821 ], [ -74.912349, 40.17788 ], [ -74.913099, 40.17767 ], [ -74.91404, 40.17742 ], [ -74.91457, 40.177279 ], [ -74.9148, 40.17723 ], [ -74.9153, 40.177119 ], [ -74.915629, 40.17705 ], [ -74.91633, 40.1769 ], [ -74.91691, 40.17679 ], [ -74.91709, 40.176749 ], [ -74.91728, 40.17671 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912249, 40.158829 ], [ -74.9126, 40.158739 ], [ -74.91314, 40.15861 ], [ -74.913549, 40.15852 ], [ -74.913789, 40.158469 ], [ -74.914359, 40.15834 ], [ -74.914549, 40.158299 ], [ -74.914689, 40.158269 ], [ -74.91479, 40.15825 ], [ -74.914899, 40.158219 ], [ -74.915139, 40.15817 ], [ -74.915309, 40.158119 ], [ -74.91556, 40.15805 ], [ -74.9161, 40.15789 ], [ -74.91633, 40.157819 ], [ -74.9165, 40.157769 ], [ -74.91691, 40.157639 ], [ -74.917159, 40.157559 ], [ -74.91726, 40.15753 ], [ -74.917689, 40.157399 ], [ -74.917739, 40.157379 ], [ -74.91799, 40.157309 ], [ -74.918139, 40.15726 ], [ -74.918369, 40.15719 ], [ -74.918589, 40.157119 ], [ -74.918639, 40.1571 ], [ -74.91881, 40.157049 ], [ -74.91916, 40.156939 ], [ -74.91934, 40.15689 ], [ -74.919939, 40.1567 ], [ -74.920139, 40.15664 ], [ -74.920259, 40.156599 ], [ -74.920529, 40.15652 ], [ -74.920709, 40.15646 ], [ -74.92083, 40.156419 ], [ -74.921169, 40.156319 ], [ -74.921289, 40.15628 ], [ -74.92141, 40.15625 ], [ -74.921879, 40.156129 ], [ -74.92213, 40.15608 ], [ -74.922469, 40.15601 ], [ -74.92262, 40.15598 ], [ -74.922789, 40.155949 ], [ -74.922869, 40.15593 ], [ -74.92298, 40.15591 ], [ -74.92334, 40.15584 ], [ -74.923949, 40.15573 ], [ -74.92452, 40.15562 ], [ -74.925339, 40.15546 ], [ -74.92591, 40.15535 ], [ -74.926829, 40.15521 ], [ -74.927229, 40.155159 ], [ -74.927599, 40.155129 ], [ -74.927879, 40.15511 ], [ -74.92826, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.929039, 40.1551 ], [ -74.929409, 40.15512 ], [ -74.92982, 40.155149 ], [ -74.930519, 40.1552 ], [ -74.931419, 40.15527 ], [ -74.932279, 40.155329 ], [ -74.93265, 40.155329 ], [ -74.932959, 40.155319 ], [ -74.933409, 40.15527 ], [ -74.93379, 40.15521 ], [ -74.934339, 40.15508 ], [ -74.93546, 40.154799 ], [ -74.93598, 40.15466 ], [ -74.93657, 40.15447 ], [ -74.9378, 40.153989 ], [ -74.938309, 40.153799 ], [ -74.93851, 40.153719 ], [ -74.93873, 40.153629 ], [ -74.939749, 40.153269 ], [ -74.93999, 40.15319 ], [ -74.9404, 40.153059 ], [ -74.94085, 40.152909 ], [ -74.944429, 40.15175 ], [ -74.94562, 40.151349 ], [ -74.946809, 40.15094 ], [ -74.94824, 40.15053 ], [ -74.948919, 40.15034 ], [ -74.94945, 40.150169 ], [ -74.949599, 40.150119 ], [ -74.94985, 40.15004 ], [ -74.95016, 40.14995 ], [ -74.95049, 40.149819 ], [ -74.950899, 40.1496 ], [ -74.951219, 40.149379 ], [ -74.951359, 40.14925 ], [ -74.951589, 40.149029 ], [ -74.951889, 40.148659 ], [ -74.95201, 40.148489 ], [ -74.95215, 40.14827 ], [ -74.95232, 40.14797 ], [ -74.952519, 40.14761 ], [ -74.952749, 40.1472 ], [ -74.953069, 40.14674 ], [ -74.953609, 40.146049 ], [ -74.953829, 40.14583 ], [ -74.95426, 40.14539 ], [ -74.95445, 40.14519 ], [ -74.955129, 40.14449 ], [ -74.95592, 40.14369 ], [ -74.95598, 40.143629 ], [ -74.956029, 40.14358 ], [ -74.956849, 40.142729 ], [ -74.956989, 40.14259 ], [ -74.957479, 40.142099 ], [ -74.958379, 40.14134 ], [ -74.95872, 40.14107 ], [ -74.95902, 40.14089 ], [ -74.959139, 40.140839 ], [ -74.95926, 40.1408 ], [ -74.95938, 40.14077 ], [ -74.9601, 40.140659 ], [ -74.96039, 40.14061 ], [ -74.960589, 40.140569 ], [ -74.9607, 40.140539 ], [ -74.960799, 40.1405 ], [ -74.960949, 40.14043 ], [ -74.96114, 40.140309 ], [ -74.96133, 40.14017 ], [ -74.96142, 40.140089 ], [ -74.96151, 40.140019 ], [ -74.96156, 40.13997 ], [ -74.961579, 40.139919 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.982959, 40.117779 ], [ -74.983359, 40.11747 ], [ -74.98499, 40.116279 ], [ -74.98513, 40.116169 ], [ -74.9859, 40.115649 ], [ -74.9873, 40.11469 ], [ -74.987939, 40.114259 ], [ -74.987799, 40.11415 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.987799, 40.11415 ], [ -74.987939, 40.114259 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309403", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88299, 40.179599 ], [ -74.882959, 40.17929 ], [ -74.88293, 40.17913 ], [ -74.882869, 40.17885 ], [ -74.88281, 40.17839 ], [ -74.882999, 40.17833 ], [ -74.883189, 40.178269 ], [ -74.88356, 40.17821 ], [ -74.8838, 40.178169 ], [ -74.884439, 40.17807 ], [ -74.885159, 40.17795 ], [ -74.88573, 40.17785 ], [ -74.886189, 40.17778 ], [ -74.886239, 40.17777 ], [ -74.88645, 40.177739 ], [ -74.88698, 40.177659 ], [ -74.887329, 40.1776 ], [ -74.887719, 40.177549 ], [ -74.888169, 40.17749 ], [ -74.88864, 40.17742 ], [ -74.88945, 40.17731 ], [ -74.8899, 40.17724 ], [ -74.89163, 40.17697 ], [ -74.892729, 40.1768 ], [ -74.892869, 40.17678 ], [ -74.893029, 40.176749 ], [ -74.89324, 40.176719 ], [ -74.893439, 40.17668 ], [ -74.89369, 40.176639 ], [ -74.89391, 40.17662 ], [ -74.8941, 40.17661 ], [ -74.89432, 40.1766 ], [ -74.894619, 40.1766 ], [ -74.894939, 40.17661 ], [ -74.895369, 40.176639 ], [ -74.8958, 40.17668 ], [ -74.896229, 40.176719 ], [ -74.89652, 40.176749 ], [ -74.896859, 40.17679 ], [ -74.89716, 40.176819 ], [ -74.89742, 40.176849 ], [ -74.897589, 40.17687 ], [ -74.89788, 40.1769 ], [ -74.89818, 40.176929 ], [ -74.898489, 40.17696 ], [ -74.89882, 40.17699 ], [ -74.89926, 40.17704 ], [ -74.899559, 40.17708 ], [ -74.89982, 40.177119 ], [ -74.90016, 40.17717 ], [ -74.9009, 40.177299 ], [ -74.901729, 40.17749 ], [ -74.90219, 40.1776 ], [ -74.90256, 40.17769 ], [ -74.903159, 40.177829 ], [ -74.903289, 40.17786 ], [ -74.903579, 40.177929 ], [ -74.904069, 40.17803 ], [ -74.90423, 40.17806 ], [ -74.90454, 40.17813 ], [ -74.904649, 40.17816 ], [ -74.90512, 40.178279 ], [ -74.905449, 40.178349 ], [ -74.905949, 40.178439 ], [ -74.90611, 40.178469 ], [ -74.90621, 40.17849 ], [ -74.906439, 40.178549 ], [ -74.906769, 40.178629 ], [ -74.90706, 40.1787 ], [ -74.907299, 40.17876 ], [ -74.90759, 40.178819 ], [ -74.907759, 40.17884 ], [ -74.908059, 40.17886 ], [ -74.90835, 40.17885 ], [ -74.908519, 40.17884 ], [ -74.908699, 40.178819 ], [ -74.908839, 40.178799 ], [ -74.90898, 40.17877 ], [ -74.909189, 40.178719 ], [ -74.90948, 40.178649 ], [ -74.910009, 40.1785 ], [ -74.91044, 40.17839 ], [ -74.911129, 40.17821 ], [ -74.912349, 40.17788 ], [ -74.913099, 40.17767 ], [ -74.91404, 40.17742 ], [ -74.91457, 40.177279 ], [ -74.9148, 40.17723 ], [ -74.9153, 40.177119 ], [ -74.915629, 40.17705 ], [ -74.91633, 40.1769 ], [ -74.91691, 40.17679 ], [ -74.91709, 40.176749 ], [ -74.91728, 40.17671 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912249, 40.158829 ], [ -74.9126, 40.158739 ], [ -74.91314, 40.15861 ], [ -74.913549, 40.15852 ], [ -74.913789, 40.158469 ], [ -74.914359, 40.15834 ], [ -74.914549, 40.158299 ], [ -74.914689, 40.158269 ], [ -74.91479, 40.15825 ], [ -74.914899, 40.158219 ], [ -74.915139, 40.15817 ], [ -74.915309, 40.158119 ], [ -74.91556, 40.15805 ], [ -74.9161, 40.15789 ], [ -74.91633, 40.157819 ], [ -74.9165, 40.157769 ], [ -74.91691, 40.157639 ], [ -74.917159, 40.157559 ], [ -74.91726, 40.15753 ], [ -74.917689, 40.157399 ], [ -74.917739, 40.157379 ], [ -74.91799, 40.157309 ], [ -74.918139, 40.15726 ], [ -74.918369, 40.15719 ], [ -74.918589, 40.157119 ], [ -74.918639, 40.1571 ], [ -74.91881, 40.157049 ], [ -74.91916, 40.156939 ], [ -74.91934, 40.15689 ], [ -74.919939, 40.1567 ], [ -74.920139, 40.15664 ], [ -74.920259, 40.156599 ], [ -74.920529, 40.15652 ], [ -74.920709, 40.15646 ], [ -74.92083, 40.156419 ], [ -74.921169, 40.156319 ], [ -74.921289, 40.15628 ], [ -74.92141, 40.15625 ], [ -74.921879, 40.156129 ], [ -74.92213, 40.15608 ], [ -74.922469, 40.15601 ], [ -74.92262, 40.15598 ], [ -74.922789, 40.155949 ], [ -74.922869, 40.15593 ], [ -74.92298, 40.15591 ], [ -74.92334, 40.15584 ], [ -74.923949, 40.15573 ], [ -74.92452, 40.15562 ], [ -74.925339, 40.15546 ], [ -74.92591, 40.15535 ], [ -74.926829, 40.15521 ], [ -74.927229, 40.155159 ], [ -74.927599, 40.155129 ], [ -74.927879, 40.15511 ], [ -74.92826, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.929039, 40.1551 ], [ -74.929409, 40.15512 ], [ -74.92982, 40.155149 ], [ -74.930519, 40.1552 ], [ -74.931419, 40.15527 ], [ -74.932279, 40.155329 ], [ -74.93265, 40.155329 ], [ -74.932959, 40.155319 ], [ -74.933409, 40.15527 ], [ -74.93379, 40.15521 ], [ -74.934339, 40.15508 ], [ -74.93546, 40.154799 ], [ -74.93598, 40.15466 ], [ -74.93657, 40.15447 ], [ -74.9378, 40.153989 ], [ -74.938309, 40.153799 ], [ -74.93851, 40.153719 ], [ -74.93873, 40.153629 ], [ -74.939749, 40.153269 ], [ -74.93999, 40.15319 ], [ -74.9404, 40.153059 ], [ -74.94085, 40.152909 ], [ -74.944429, 40.15175 ], [ -74.94562, 40.151349 ], [ -74.946809, 40.15094 ], [ -74.94824, 40.15053 ], [ -74.948919, 40.15034 ], [ -74.94945, 40.150169 ], [ -74.949599, 40.150119 ], [ -74.94985, 40.15004 ], [ -74.95016, 40.14995 ], [ -74.95049, 40.149819 ], [ -74.950899, 40.1496 ], [ -74.951219, 40.149379 ], [ -74.951359, 40.14925 ], [ -74.951589, 40.149029 ], [ -74.951889, 40.148659 ], [ -74.95201, 40.148489 ], [ -74.95215, 40.14827 ], [ -74.95232, 40.14797 ], [ -74.952519, 40.14761 ], [ -74.952749, 40.1472 ], [ -74.953069, 40.14674 ], [ -74.953609, 40.146049 ], [ -74.953829, 40.14583 ], [ -74.95426, 40.14539 ], [ -74.95445, 40.14519 ], [ -74.955129, 40.14449 ], [ -74.95592, 40.14369 ], [ -74.95598, 40.143629 ], [ -74.956029, 40.14358 ], [ -74.956849, 40.142729 ], [ -74.956989, 40.14259 ], [ -74.957479, 40.142099 ], [ -74.958379, 40.14134 ], [ -74.95872, 40.14107 ], [ -74.95902, 40.14089 ], [ -74.959139, 40.140839 ], [ -74.95926, 40.1408 ], [ -74.95938, 40.14077 ], [ -74.9601, 40.140659 ], [ -74.96039, 40.14061 ], [ -74.960589, 40.140569 ], [ -74.9607, 40.140539 ], [ -74.960799, 40.1405 ], [ -74.960949, 40.14043 ], [ -74.96114, 40.140309 ], [ -74.96133, 40.14017 ], [ -74.96142, 40.140089 ], [ -74.96151, 40.140019 ], [ -74.96156, 40.13997 ], [ -74.961579, 40.139919 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309404", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ], [ -74.875669, 40.1858 ], [ -74.87551, 40.185289 ], [ -74.875299, 40.18535 ], [ -74.875169, 40.185379 ], [ -74.875179, 40.185479 ], [ -74.875229, 40.185839 ], [ -74.87516, 40.18616 ], [ -74.87515, 40.18622 ], [ -74.875079, 40.186279 ], [ -74.87488, 40.186649 ], [ -74.87478, 40.186839 ], [ -74.87444, 40.186749 ], [ -74.87415, 40.1867 ], [ -74.87363, 40.186659 ], [ -74.873499, 40.186659 ], [ -74.87331, 40.18667 ], [ -74.87299, 40.1867 ], [ -74.872289, 40.186839 ], [ -74.872119, 40.18688 ], [ -74.87205, 40.18689 ], [ -74.87183, 40.186919 ], [ -74.8716, 40.186929 ], [ -74.87136, 40.186909 ], [ -74.87102, 40.186829 ], [ -74.87082, 40.186739 ], [ -74.87064, 40.18662 ], [ -74.870539, 40.186549 ], [ -74.87046, 40.18649 ], [ -74.870269, 40.18634 ], [ -74.8702, 40.186289 ], [ -74.87001, 40.18615 ], [ -74.869959, 40.186119 ], [ -74.869539, 40.18586 ], [ -74.869379, 40.18578 ], [ -74.869719, 40.185289 ], [ -74.86998, 40.18489 ], [ -74.87006, 40.184739 ], [ -74.87012, 40.1846 ], [ -74.87016, 40.18451 ], [ -74.87021, 40.184389 ], [ -74.870309, 40.18409 ], [ -74.870359, 40.18392 ], [ -74.870409, 40.183669 ], [ -74.870439, 40.18347 ], [ -74.87048, 40.183059 ], [ -74.87078, 40.183049 ], [ -74.87109, 40.183039 ], [ -74.87132, 40.183039 ], [ -74.871619, 40.183 ], [ -74.87201, 40.18291 ], [ -74.87218, 40.182849 ], [ -74.87228, 40.18281 ], [ -74.87264, 40.18264 ], [ -74.872969, 40.18247 ], [ -74.8734, 40.182249 ], [ -74.873419, 40.182239 ], [ -74.87372, 40.18211 ], [ -74.87415, 40.182 ], [ -74.874579, 40.18194 ], [ -74.875029, 40.181959 ], [ -74.87546, 40.182 ], [ -74.87624, 40.182069 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88299, 40.179599 ], [ -74.882959, 40.17929 ], [ -74.88293, 40.17913 ], [ -74.882869, 40.17885 ], [ -74.88281, 40.17839 ], [ -74.882999, 40.17833 ], [ -74.883189, 40.178269 ], [ -74.88356, 40.17821 ], [ -74.8838, 40.178169 ], [ -74.884439, 40.17807 ], [ -74.885159, 40.17795 ], [ -74.88573, 40.17785 ], [ -74.886189, 40.17778 ], [ -74.886239, 40.17777 ], [ -74.88645, 40.177739 ], [ -74.88698, 40.177659 ], [ -74.887329, 40.1776 ], [ -74.887719, 40.177549 ], [ -74.888169, 40.17749 ], [ -74.88864, 40.17742 ], [ -74.88945, 40.17731 ], [ -74.8899, 40.17724 ], [ -74.89163, 40.17697 ], [ -74.892729, 40.1768 ], [ -74.892869, 40.17678 ], [ -74.893029, 40.176749 ], [ -74.89324, 40.176719 ], [ -74.893439, 40.17668 ], [ -74.89369, 40.176639 ], [ -74.89391, 40.17662 ], [ -74.8941, 40.17661 ], [ -74.89432, 40.1766 ], [ -74.894619, 40.1766 ], [ -74.894939, 40.17661 ], [ -74.895369, 40.176639 ], [ -74.8958, 40.17668 ], [ -74.896229, 40.176719 ], [ -74.89652, 40.176749 ], [ -74.896859, 40.17679 ], [ -74.89716, 40.176819 ], [ -74.89742, 40.176849 ], [ -74.897589, 40.17687 ], [ -74.89788, 40.1769 ], [ -74.89818, 40.176929 ], [ -74.898489, 40.17696 ], [ -74.89882, 40.17699 ], [ -74.89926, 40.17704 ], [ -74.899559, 40.17708 ], [ -74.89982, 40.177119 ], [ -74.90016, 40.17717 ], [ -74.9009, 40.177299 ], [ -74.901729, 40.17749 ], [ -74.90219, 40.1776 ], [ -74.90256, 40.17769 ], [ -74.903159, 40.177829 ], [ -74.903289, 40.17786 ], [ -74.903579, 40.177929 ], [ -74.904069, 40.17803 ], [ -74.90423, 40.17806 ], [ -74.90454, 40.17813 ], [ -74.904649, 40.17816 ], [ -74.90512, 40.178279 ], [ -74.905449, 40.178349 ], [ -74.905949, 40.178439 ], [ -74.90611, 40.178469 ], [ -74.90621, 40.17849 ], [ -74.906439, 40.178549 ], [ -74.906769, 40.178629 ], [ -74.90706, 40.1787 ], [ -74.907299, 40.17876 ], [ -74.90759, 40.178819 ], [ -74.907759, 40.17884 ], [ -74.908059, 40.17886 ], [ -74.90835, 40.17885 ], [ -74.908519, 40.17884 ], [ -74.908699, 40.178819 ], [ -74.908839, 40.178799 ], [ -74.90898, 40.17877 ], [ -74.909189, 40.178719 ], [ -74.90948, 40.178649 ], [ -74.910009, 40.1785 ], [ -74.91044, 40.17839 ], [ -74.911129, 40.17821 ], [ -74.912349, 40.17788 ], [ -74.913099, 40.17767 ], [ -74.91404, 40.17742 ], [ -74.91457, 40.177279 ], [ -74.9148, 40.17723 ], [ -74.9153, 40.177119 ], [ -74.915629, 40.17705 ], [ -74.91633, 40.1769 ], [ -74.91691, 40.17679 ], [ -74.91709, 40.176749 ], [ -74.91728, 40.17671 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912249, 40.158829 ], [ -74.9126, 40.158739 ], [ -74.91314, 40.15861 ], [ -74.913549, 40.15852 ], [ -74.913789, 40.158469 ], [ -74.914359, 40.15834 ], [ -74.914549, 40.158299 ], [ -74.914689, 40.158269 ], [ -74.91479, 40.15825 ], [ -74.914899, 40.158219 ], [ -74.915139, 40.15817 ], [ -74.915309, 40.158119 ], [ -74.91556, 40.15805 ], [ -74.9161, 40.15789 ], [ -74.91633, 40.157819 ], [ -74.9165, 40.157769 ], [ -74.91691, 40.157639 ], [ -74.917159, 40.157559 ], [ -74.91726, 40.15753 ], [ -74.917689, 40.157399 ], [ -74.917739, 40.157379 ], [ -74.91799, 40.157309 ], [ -74.918139, 40.15726 ], [ -74.918369, 40.15719 ], [ -74.918589, 40.157119 ], [ -74.918639, 40.1571 ], [ -74.91881, 40.157049 ], [ -74.91916, 40.156939 ], [ -74.91934, 40.15689 ], [ -74.919939, 40.1567 ], [ -74.920139, 40.15664 ], [ -74.920259, 40.156599 ], [ -74.920529, 40.15652 ], [ -74.920709, 40.15646 ], [ -74.92083, 40.156419 ], [ -74.921169, 40.156319 ], [ -74.921289, 40.15628 ], [ -74.92141, 40.15625 ], [ -74.921879, 40.156129 ], [ -74.92213, 40.15608 ], [ -74.922469, 40.15601 ], [ -74.92262, 40.15598 ], [ -74.922789, 40.155949 ], [ -74.922869, 40.15593 ], [ -74.92298, 40.15591 ], [ -74.92334, 40.15584 ], [ -74.923949, 40.15573 ], [ -74.92452, 40.15562 ], [ -74.925339, 40.15546 ], [ -74.92591, 40.15535 ], [ -74.926829, 40.15521 ], [ -74.927229, 40.155159 ], [ -74.927599, 40.155129 ], [ -74.927879, 40.15511 ], [ -74.92826, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.929039, 40.1551 ], [ -74.929409, 40.15512 ], [ -74.92982, 40.155149 ], [ -74.930519, 40.1552 ], [ -74.931419, 40.15527 ], [ -74.932279, 40.155329 ], [ -74.93265, 40.155329 ], [ -74.932959, 40.155319 ], [ -74.933409, 40.15527 ], [ -74.93379, 40.15521 ], [ -74.934339, 40.15508 ], [ -74.93546, 40.154799 ], [ -74.93598, 40.15466 ], [ -74.93657, 40.15447 ], [ -74.9378, 40.153989 ], [ -74.938309, 40.153799 ], [ -74.93851, 40.153719 ], [ -74.93873, 40.153629 ], [ -74.939749, 40.153269 ], [ -74.93999, 40.15319 ], [ -74.9404, 40.153059 ], [ -74.94085, 40.152909 ], [ -74.944429, 40.15175 ], [ -74.94562, 40.151349 ], [ -74.946809, 40.15094 ], [ -74.94824, 40.15053 ], [ -74.948919, 40.15034 ], [ -74.94945, 40.150169 ], [ -74.949599, 40.150119 ], [ -74.94985, 40.15004 ], [ -74.95016, 40.14995 ], [ -74.95049, 40.149819 ], [ -74.950899, 40.1496 ], [ -74.951219, 40.149379 ], [ -74.951359, 40.14925 ], [ -74.951589, 40.149029 ], [ -74.951889, 40.148659 ], [ -74.95201, 40.148489 ], [ -74.95215, 40.14827 ], [ -74.95232, 40.14797 ], [ -74.952519, 40.14761 ], [ -74.952749, 40.1472 ], [ -74.953069, 40.14674 ], [ -74.953609, 40.146049 ], [ -74.953829, 40.14583 ], [ -74.95426, 40.14539 ], [ -74.95445, 40.14519 ], [ -74.955129, 40.14449 ], [ -74.95592, 40.14369 ], [ -74.95598, 40.143629 ], [ -74.956029, 40.14358 ], [ -74.956849, 40.142729 ], [ -74.956989, 40.14259 ], [ -74.957479, 40.142099 ], [ -74.958379, 40.14134 ], [ -74.95872, 40.14107 ], [ -74.95902, 40.14089 ], [ -74.959139, 40.140839 ], [ -74.95926, 40.1408 ], [ -74.95938, 40.14077 ], [ -74.9601, 40.140659 ], [ -74.96039, 40.14061 ], [ -74.960589, 40.140569 ], [ -74.9607, 40.140539 ], [ -74.960799, 40.1405 ], [ -74.960949, 40.14043 ], [ -74.96114, 40.140309 ], [ -74.96133, 40.14017 ], [ -74.96142, 40.140089 ], [ -74.96151, 40.140019 ], [ -74.96156, 40.13997 ], [ -74.961579, 40.139919 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309405", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309406", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.875439, 40.18625 ], [ -74.87564, 40.186289 ], [ -74.875669, 40.1858 ], [ -74.87551, 40.185289 ], [ -74.875299, 40.18535 ], [ -74.875169, 40.185379 ], [ -74.875179, 40.185479 ], [ -74.875229, 40.185839 ], [ -74.87516, 40.18616 ], [ -74.87515, 40.18622 ], [ -74.875079, 40.186279 ], [ -74.87488, 40.186649 ], [ -74.87478, 40.186839 ], [ -74.87444, 40.186749 ], [ -74.87415, 40.1867 ], [ -74.87363, 40.186659 ], [ -74.873499, 40.186659 ], [ -74.87331, 40.18667 ], [ -74.87299, 40.1867 ], [ -74.872289, 40.186839 ], [ -74.872119, 40.18688 ], [ -74.87205, 40.18689 ], [ -74.87183, 40.186919 ], [ -74.8716, 40.186929 ], [ -74.87136, 40.186909 ], [ -74.87102, 40.186829 ], [ -74.87082, 40.186739 ], [ -74.87064, 40.18662 ], [ -74.870539, 40.186549 ], [ -74.87046, 40.18649 ], [ -74.870269, 40.18634 ], [ -74.8702, 40.186289 ], [ -74.87001, 40.18615 ], [ -74.869959, 40.186119 ], [ -74.869539, 40.18586 ], [ -74.869379, 40.18578 ], [ -74.869719, 40.185289 ], [ -74.86998, 40.18489 ], [ -74.87006, 40.184739 ], [ -74.87012, 40.1846 ], [ -74.87016, 40.18451 ], [ -74.87021, 40.184389 ], [ -74.870309, 40.18409 ], [ -74.870359, 40.18392 ], [ -74.870409, 40.183669 ], [ -74.870439, 40.18347 ], [ -74.87048, 40.183059 ], [ -74.87078, 40.183049 ], [ -74.87109, 40.183039 ], [ -74.87132, 40.183039 ], [ -74.871619, 40.183 ], [ -74.87201, 40.18291 ], [ -74.87218, 40.182849 ], [ -74.87228, 40.18281 ], [ -74.87264, 40.18264 ], [ -74.872969, 40.18247 ], [ -74.8734, 40.182249 ], [ -74.873419, 40.182239 ], [ -74.87372, 40.18211 ], [ -74.87415, 40.182 ], [ -74.874579, 40.18194 ], [ -74.875029, 40.181959 ], [ -74.87546, 40.182 ], [ -74.87624, 40.182069 ], [ -74.876379, 40.18139 ], [ -74.877009, 40.18148 ], [ -74.87718, 40.18156 ], [ -74.877469, 40.181709 ], [ -74.877839, 40.18199 ], [ -74.87844, 40.18248 ], [ -74.87911, 40.183059 ], [ -74.879309, 40.18292 ], [ -74.87948, 40.1828 ], [ -74.87966, 40.182669 ], [ -74.87982, 40.18256 ], [ -74.879989, 40.18244 ], [ -74.880169, 40.182309 ], [ -74.88033, 40.18219 ], [ -74.88046, 40.18209 ], [ -74.879859, 40.18155 ], [ -74.879269, 40.18102 ], [ -74.87902, 40.180799 ], [ -74.87903, 40.180609 ], [ -74.87915, 40.18049 ], [ -74.880129, 40.18067 ], [ -74.880429, 40.180709 ], [ -74.88074, 40.180719 ], [ -74.881159, 40.180709 ], [ -74.88153, 40.180679 ], [ -74.882, 40.18057 ], [ -74.882289, 40.18048 ], [ -74.882549, 40.18039 ], [ -74.88276, 40.180349 ], [ -74.88308, 40.180359 ], [ -74.88299, 40.179599 ], [ -74.882959, 40.17929 ], [ -74.88293, 40.17913 ], [ -74.882869, 40.17885 ], [ -74.88281, 40.17839 ], [ -74.882999, 40.17833 ], [ -74.883189, 40.178269 ], [ -74.88356, 40.17821 ], [ -74.8838, 40.178169 ], [ -74.884439, 40.17807 ], [ -74.885159, 40.17795 ], [ -74.88573, 40.17785 ], [ -74.886189, 40.17778 ], [ -74.886239, 40.17777 ], [ -74.88645, 40.177739 ], [ -74.88698, 40.177659 ], [ -74.887329, 40.1776 ], [ -74.887719, 40.177549 ], [ -74.888169, 40.17749 ], [ -74.88864, 40.17742 ], [ -74.88945, 40.17731 ], [ -74.8899, 40.17724 ], [ -74.89163, 40.17697 ], [ -74.892729, 40.1768 ], [ -74.892869, 40.17678 ], [ -74.893029, 40.176749 ], [ -74.89324, 40.176719 ], [ -74.893439, 40.17668 ], [ -74.89369, 40.176639 ], [ -74.89391, 40.17662 ], [ -74.8941, 40.17661 ], [ -74.89432, 40.1766 ], [ -74.894619, 40.1766 ], [ -74.894939, 40.17661 ], [ -74.895369, 40.176639 ], [ -74.8958, 40.17668 ], [ -74.896229, 40.176719 ], [ -74.89652, 40.176749 ], [ -74.896859, 40.17679 ], [ -74.89716, 40.176819 ], [ -74.89742, 40.176849 ], [ -74.897589, 40.17687 ], [ -74.89788, 40.1769 ], [ -74.89818, 40.176929 ], [ -74.898489, 40.17696 ], [ -74.89882, 40.17699 ], [ -74.89926, 40.17704 ], [ -74.899559, 40.17708 ], [ -74.89982, 40.177119 ], [ -74.90016, 40.17717 ], [ -74.9009, 40.177299 ], [ -74.901729, 40.17749 ], [ -74.90219, 40.1776 ], [ -74.90256, 40.17769 ], [ -74.903159, 40.177829 ], [ -74.903289, 40.17786 ], [ -74.903579, 40.177929 ], [ -74.904069, 40.17803 ], [ -74.90423, 40.17806 ], [ -74.90454, 40.17813 ], [ -74.904649, 40.17816 ], [ -74.90512, 40.178279 ], [ -74.905449, 40.178349 ], [ -74.905949, 40.178439 ], [ -74.90611, 40.178469 ], [ -74.90621, 40.17849 ], [ -74.906439, 40.178549 ], [ -74.906769, 40.178629 ], [ -74.90706, 40.1787 ], [ -74.907299, 40.17876 ], [ -74.90759, 40.178819 ], [ -74.907759, 40.17884 ], [ -74.908059, 40.17886 ], [ -74.90835, 40.17885 ], [ -74.908519, 40.17884 ], [ -74.908699, 40.178819 ], [ -74.908839, 40.178799 ], [ -74.90898, 40.17877 ], [ -74.909189, 40.178719 ], [ -74.90948, 40.178649 ], [ -74.910009, 40.1785 ], [ -74.91044, 40.17839 ], [ -74.911129, 40.17821 ], [ -74.912349, 40.17788 ], [ -74.913099, 40.17767 ], [ -74.91404, 40.17742 ], [ -74.91457, 40.177279 ], [ -74.9148, 40.17723 ], [ -74.9153, 40.177119 ], [ -74.915629, 40.17705 ], [ -74.91633, 40.1769 ], [ -74.91691, 40.17679 ], [ -74.91709, 40.176749 ], [ -74.91728, 40.17671 ], [ -74.91749, 40.176659 ], [ -74.91741, 40.176449 ], [ -74.917329, 40.17625 ], [ -74.91722, 40.17598 ], [ -74.917069, 40.1756 ], [ -74.916939, 40.175289 ], [ -74.91682, 40.175029 ], [ -74.916699, 40.17474 ], [ -74.91654, 40.17436 ], [ -74.916519, 40.174319 ], [ -74.9161, 40.17344 ], [ -74.91602, 40.17329 ], [ -74.915719, 40.17276 ], [ -74.915629, 40.172599 ], [ -74.915309, 40.17201 ], [ -74.91516, 40.171719 ], [ -74.914909, 40.17128 ], [ -74.91485, 40.171179 ], [ -74.914809, 40.1711 ], [ -74.91466, 40.170799 ], [ -74.91443, 40.17033 ], [ -74.91413, 40.16978 ], [ -74.91404, 40.16961 ], [ -74.913869, 40.16933 ], [ -74.91381, 40.16916 ], [ -74.913779, 40.16895 ], [ -74.91381, 40.168749 ], [ -74.91389, 40.16853 ], [ -74.914009, 40.16834 ], [ -74.914179, 40.168179 ], [ -74.914269, 40.168109 ], [ -74.914369, 40.16805 ], [ -74.914629, 40.16795 ], [ -74.914679, 40.167939 ], [ -74.914819, 40.167899 ], [ -74.9152, 40.16779 ], [ -74.91579, 40.167629 ], [ -74.915629, 40.167389 ], [ -74.91552, 40.167219 ], [ -74.91542, 40.16708 ], [ -74.9153, 40.166929 ], [ -74.9151, 40.16663 ], [ -74.91501, 40.166499 ], [ -74.9148, 40.16615 ], [ -74.914689, 40.165959 ], [ -74.91404, 40.164769 ], [ -74.91371, 40.16419 ], [ -74.913379, 40.163589 ], [ -74.913299, 40.163429 ], [ -74.91326, 40.163349 ], [ -74.91322, 40.163259 ], [ -74.913189, 40.16318 ], [ -74.913159, 40.16309 ], [ -74.91304, 40.16276 ], [ -74.912879, 40.162319 ], [ -74.91277, 40.16201 ], [ -74.91259, 40.16142 ], [ -74.912559, 40.16133 ], [ -74.912519, 40.16121 ], [ -74.9125, 40.16114 ], [ -74.912469, 40.16104 ], [ -74.91241, 40.16085 ], [ -74.91237, 40.160729 ], [ -74.91228, 40.160449 ], [ -74.912209, 40.16024 ], [ -74.912159, 40.160099 ], [ -74.91214, 40.16003 ], [ -74.912129, 40.15998 ], [ -74.912119, 40.15988 ], [ -74.912109, 40.15931 ], [ -74.912079, 40.15887 ], [ -74.912249, 40.158829 ], [ -74.9126, 40.158739 ], [ -74.91314, 40.15861 ], [ -74.913549, 40.15852 ], [ -74.913789, 40.158469 ], [ -74.914359, 40.15834 ], [ -74.914549, 40.158299 ], [ -74.914689, 40.158269 ], [ -74.91479, 40.15825 ], [ -74.914899, 40.158219 ], [ -74.915139, 40.15817 ], [ -74.915309, 40.158119 ], [ -74.91556, 40.15805 ], [ -74.9161, 40.15789 ], [ -74.91633, 40.157819 ], [ -74.9165, 40.157769 ], [ -74.91691, 40.157639 ], [ -74.917159, 40.157559 ], [ -74.91726, 40.15753 ], [ -74.917689, 40.157399 ], [ -74.917739, 40.157379 ], [ -74.91799, 40.157309 ], [ -74.918139, 40.15726 ], [ -74.918369, 40.15719 ], [ -74.918589, 40.157119 ], [ -74.918639, 40.1571 ], [ -74.91881, 40.157049 ], [ -74.91916, 40.156939 ], [ -74.91934, 40.15689 ], [ -74.919939, 40.1567 ], [ -74.920139, 40.15664 ], [ -74.920259, 40.156599 ], [ -74.920529, 40.15652 ], [ -74.920709, 40.15646 ], [ -74.92083, 40.156419 ], [ -74.921169, 40.156319 ], [ -74.921289, 40.15628 ], [ -74.92141, 40.15625 ], [ -74.921879, 40.156129 ], [ -74.92213, 40.15608 ], [ -74.922469, 40.15601 ], [ -74.92262, 40.15598 ], [ -74.922789, 40.155949 ], [ -74.922869, 40.15593 ], [ -74.92298, 40.15591 ], [ -74.92334, 40.15584 ], [ -74.923949, 40.15573 ], [ -74.92452, 40.15562 ], [ -74.925339, 40.15546 ], [ -74.92591, 40.15535 ], [ -74.926829, 40.15521 ], [ -74.927229, 40.155159 ], [ -74.927599, 40.155129 ], [ -74.927879, 40.15511 ], [ -74.92826, 40.1551 ], [ -74.928489, 40.1551 ], [ -74.929039, 40.1551 ], [ -74.929409, 40.15512 ], [ -74.92982, 40.155149 ], [ -74.930519, 40.1552 ], [ -74.931419, 40.15527 ], [ -74.932279, 40.155329 ], [ -74.93265, 40.155329 ], [ -74.932959, 40.155319 ], [ -74.933409, 40.15527 ], [ -74.93379, 40.15521 ], [ -74.934339, 40.15508 ], [ -74.93546, 40.154799 ], [ -74.93598, 40.15466 ], [ -74.93657, 40.15447 ], [ -74.9378, 40.153989 ], [ -74.938309, 40.153799 ], [ -74.93851, 40.153719 ], [ -74.93873, 40.153629 ], [ -74.939749, 40.153269 ], [ -74.93999, 40.15319 ], [ -74.9404, 40.153059 ], [ -74.94085, 40.152909 ], [ -74.944429, 40.15175 ], [ -74.94562, 40.151349 ], [ -74.946809, 40.15094 ], [ -74.94824, 40.15053 ], [ -74.948919, 40.15034 ], [ -74.94945, 40.150169 ], [ -74.949599, 40.150119 ], [ -74.94985, 40.15004 ], [ -74.95016, 40.14995 ], [ -74.95049, 40.149819 ], [ -74.950899, 40.1496 ], [ -74.951219, 40.149379 ], [ -74.951359, 40.14925 ], [ -74.951589, 40.149029 ], [ -74.951889, 40.148659 ], [ -74.95201, 40.148489 ], [ -74.95215, 40.14827 ], [ -74.95232, 40.14797 ], [ -74.952519, 40.14761 ], [ -74.952749, 40.1472 ], [ -74.953069, 40.14674 ], [ -74.953609, 40.146049 ], [ -74.953829, 40.14583 ], [ -74.95426, 40.14539 ], [ -74.95445, 40.14519 ], [ -74.955129, 40.14449 ], [ -74.95592, 40.14369 ], [ -74.95598, 40.143629 ], [ -74.956029, 40.14358 ], [ -74.956849, 40.142729 ], [ -74.956989, 40.14259 ], [ -74.957479, 40.142099 ], [ -74.958379, 40.14134 ], [ -74.95872, 40.14107 ], [ -74.95902, 40.14089 ], [ -74.959139, 40.140839 ], [ -74.95926, 40.1408 ], [ -74.95938, 40.14077 ], [ -74.9601, 40.140659 ], [ -74.96039, 40.14061 ], [ -74.960589, 40.140569 ], [ -74.9607, 40.140539 ], [ -74.960799, 40.1405 ], [ -74.960949, 40.14043 ], [ -74.96114, 40.140309 ], [ -74.96133, 40.14017 ], [ -74.96142, 40.140089 ], [ -74.96151, 40.140019 ], [ -74.96156, 40.13997 ], [ -74.961579, 40.139919 ], [ -74.961619, 40.139849 ], [ -74.96119, 40.13961 ], [ -74.96056, 40.13926 ], [ -74.96037, 40.13915 ], [ -74.960269, 40.13909 ], [ -74.96006, 40.13897 ], [ -74.95975, 40.13879 ], [ -74.95907, 40.13838 ], [ -74.95895, 40.138299 ], [ -74.95886, 40.13825 ], [ -74.958729, 40.13817 ], [ -74.958519, 40.13801 ], [ -74.95836, 40.13789 ], [ -74.95804, 40.13762 ], [ -74.95767, 40.137249 ], [ -74.957529, 40.13708 ], [ -74.957349, 40.136849 ], [ -74.957249, 40.136709 ], [ -74.95705, 40.13638 ], [ -74.956939, 40.136159 ], [ -74.956809, 40.13591 ], [ -74.956749, 40.135779 ], [ -74.956619, 40.135509 ], [ -74.95625, 40.135599 ], [ -74.955859, 40.135699 ], [ -74.955499, 40.135779 ], [ -74.95511, 40.13585 ], [ -74.9548, 40.13591 ], [ -74.95466, 40.13594 ], [ -74.954419, 40.135989 ], [ -74.953429, 40.13628 ], [ -74.952159, 40.136669 ], [ -74.952389, 40.137 ], [ -74.95272, 40.137489 ], [ -74.95281, 40.13762 ], [ -74.95292, 40.13775 ], [ -74.95301, 40.137879 ], [ -74.95309, 40.13801 ], [ -74.95318, 40.138149 ], [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309407", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.96898, 40.11288 ], [ -74.969349, 40.11314 ], [ -74.96955, 40.113209 ], [ -74.96965, 40.113219 ], [ -74.969859, 40.113219 ], [ -74.96996, 40.113199 ], [ -74.97006, 40.11317 ], [ -74.97024, 40.11307 ], [ -74.97051, 40.11287 ], [ -74.970749, 40.11269 ], [ -74.971519, 40.11208 ], [ -74.971649, 40.11198 ], [ -74.971699, 40.111929 ], [ -74.972779, 40.111059 ], [ -74.974129, 40.10999 ], [ -74.9754, 40.108989 ], [ -74.975659, 40.108789 ], [ -74.97587, 40.108619 ], [ -74.97595, 40.10856 ], [ -74.976059, 40.10848 ], [ -74.97716, 40.107609 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.987799, 40.11415 ], [ -74.987939, 40.114259 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309408", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.006079, 40.114109 ], [ -75.00546, 40.11362 ], [ -75.00529, 40.113729 ], [ -75.004959, 40.11386 ], [ -75.00476, 40.11344 ], [ -75.004509, 40.11289 ], [ -75.004359, 40.112569 ], [ -75.004329, 40.112499 ], [ -75.00404, 40.11188 ], [ -75.00398, 40.111759 ], [ -75.00375, 40.11126 ], [ -75.00368, 40.11111 ], [ -75.003559, 40.110859 ], [ -75.003459, 40.11063 ], [ -75.00339, 40.110479 ], [ -75.003279, 40.110329 ], [ -75.003199, 40.110239 ], [ -75.003009, 40.110059 ], [ -75.00276, 40.109849 ], [ -75.00269, 40.109789 ], [ -75.002559, 40.109679 ], [ -75.002379, 40.109519 ], [ -75.00215, 40.109309 ], [ -75.002109, 40.10928 ], [ -75.001979, 40.109159 ], [ -75.001659, 40.108869 ], [ -75.001489, 40.10873 ], [ -75.00101, 40.10831 ], [ -75.00083, 40.108149 ], [ -75.000639, 40.107979 ], [ -75.000459, 40.10783 ], [ -75.000189, 40.10759 ], [ -75.000039, 40.10747 ], [ -74.99985, 40.10731 ], [ -74.999699, 40.107169 ], [ -74.99945, 40.10695 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309409", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.998169, 40.101609 ], [ -74.999329, 40.10084 ], [ -74.99963, 40.10063 ], [ -75.00034, 40.100149 ], [ -75.000629, 40.09995 ], [ -75.0021, 40.09895 ], [ -75.00246, 40.098709 ], [ -75.00272, 40.098529 ], [ -75.00321, 40.09821 ], [ -75.003289, 40.09815 ], [ -75.003729, 40.09784 ], [ -75.00421, 40.09751 ], [ -75.00434, 40.09742 ], [ -75.0044, 40.097379 ], [ -75.00458, 40.097259 ], [ -75.0052, 40.096899 ], [ -75.0053, 40.096809 ], [ -75.00539, 40.09668 ], [ -75.005409, 40.09649 ], [ -75.005399, 40.096389 ], [ -75.00534, 40.096279 ], [ -75.00521, 40.09616 ], [ -75.005049, 40.096019 ], [ -75.00422, 40.095389 ], [ -75.00399, 40.095189 ], [ -75.003509, 40.094769 ], [ -75.00282, 40.09417 ], [ -75.00386, 40.09347 ], [ -75.00456, 40.093 ], [ -75.005799, 40.092159 ], [ -75.007439, 40.09104 ], [ -75.007479, 40.09101 ], [ -75.00768, 40.090869 ], [ -75.007829, 40.09076 ], [ -75.007959, 40.09066 ], [ -75.008199, 40.090529 ], [ -75.00853, 40.090439 ], [ -75.00889, 40.090359 ], [ -75.009179, 40.09037 ], [ -75.009229, 40.09037 ], [ -75.00957, 40.09039 ], [ -75.009629, 40.09039 ], [ -75.010039, 40.09056 ], [ -75.01011, 40.09058 ], [ -75.010359, 40.09067 ], [ -75.01056, 40.09082 ], [ -75.010839, 40.091069 ], [ -75.011159, 40.091349 ], [ -75.01142, 40.09154 ], [ -75.011749, 40.091789 ], [ -75.0119, 40.091889 ], [ -75.011969, 40.091949 ], [ -75.01213, 40.0919 ], [ -75.01258, 40.09157 ], [ -75.013099, 40.09119 ], [ -75.013689, 40.090869 ], [ -75.013909, 40.09082 ], [ -75.01407, 40.090779 ], [ -75.014259, 40.09084 ], [ -75.01448, 40.090989 ], [ -75.014629, 40.09113 ], [ -75.01473, 40.09101 ], [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ], [ -75.014039, 40.09065 ], [ -75.01407, 40.090779 ], [ -75.01384, 40.090709 ], [ -75.01362, 40.09076 ], [ -75.01348, 40.09083 ], [ -75.013179, 40.090989 ], [ -75.01294, 40.091149 ], [ -75.01249, 40.091499 ], [ -75.01203, 40.09182 ], [ -75.011969, 40.091949 ], [ -75.012149, 40.092119 ], [ -75.01294, 40.092769 ], [ -75.012999, 40.09282 ], [ -75.013049, 40.092869 ], [ -75.013549, 40.093309 ], [ -75.01365, 40.093389 ], [ -75.01385, 40.09356 ], [ -75.014229, 40.093869 ], [ -75.014399, 40.09401 ], [ -75.01461, 40.09417 ], [ -75.01506, 40.09455 ], [ -75.01518, 40.094649 ], [ -75.01533, 40.094769 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309410", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309411", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.998169, 40.101609 ], [ -74.999329, 40.10084 ], [ -74.99963, 40.10063 ], [ -75.00034, 40.100149 ], [ -75.000629, 40.09995 ], [ -75.0021, 40.09895 ], [ -75.00246, 40.098709 ], [ -75.00272, 40.098529 ], [ -75.00321, 40.09821 ], [ -75.003289, 40.09815 ], [ -75.003729, 40.09784 ], [ -75.00421, 40.09751 ], [ -75.00434, 40.09742 ], [ -75.0044, 40.097379 ], [ -75.00458, 40.097259 ], [ -75.0052, 40.096899 ], [ -75.0053, 40.096809 ], [ -75.00539, 40.09668 ], [ -75.005409, 40.09649 ], [ -75.005399, 40.096389 ], [ -75.00534, 40.096279 ], [ -75.00521, 40.09616 ], [ -75.005049, 40.096019 ], [ -75.00422, 40.095389 ], [ -75.00399, 40.095189 ], [ -75.003509, 40.094769 ], [ -75.00282, 40.09417 ], [ -75.00386, 40.09347 ], [ -75.00456, 40.093 ], [ -75.005799, 40.092159 ], [ -75.007439, 40.09104 ], [ -75.007479, 40.09101 ], [ -75.00768, 40.090869 ], [ -75.007829, 40.09076 ], [ -75.007959, 40.09066 ], [ -75.008199, 40.090529 ], [ -75.00853, 40.090439 ], [ -75.00889, 40.090359 ], [ -75.009179, 40.09037 ], [ -75.009229, 40.09037 ], [ -75.00957, 40.09039 ], [ -75.009629, 40.09039 ], [ -75.010039, 40.09056 ], [ -75.01011, 40.09058 ], [ -75.010359, 40.09067 ], [ -75.01056, 40.09082 ], [ -75.010839, 40.091069 ], [ -75.011159, 40.091349 ], [ -75.01142, 40.09154 ], [ -75.011749, 40.091789 ], [ -75.0119, 40.091889 ], [ -75.011969, 40.091949 ], [ -75.012149, 40.092119 ], [ -75.01294, 40.092769 ], [ -75.012999, 40.09282 ], [ -75.013049, 40.092869 ], [ -75.013549, 40.093309 ], [ -75.01365, 40.093389 ], [ -75.01385, 40.09356 ], [ -75.014229, 40.093869 ], [ -75.014399, 40.09401 ], [ -75.01461, 40.09417 ], [ -75.01506, 40.09455 ], [ -75.01518, 40.094649 ], [ -75.01533, 40.094769 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309412", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.01473, 40.09091 ], [ -75.014169, 40.090539 ], [ -75.014039, 40.09065 ], [ -75.01407, 40.090779 ], [ -75.01384, 40.090709 ], [ -75.01362, 40.09076 ], [ -75.01348, 40.09083 ], [ -75.013179, 40.090989 ], [ -75.01294, 40.091149 ], [ -75.01249, 40.091499 ], [ -75.01203, 40.09182 ], [ -75.011969, 40.091949 ], [ -75.012149, 40.092119 ], [ -75.01294, 40.092769 ], [ -75.012999, 40.09282 ], [ -75.013049, 40.092869 ], [ -75.013549, 40.093309 ], [ -75.01365, 40.093389 ], [ -75.01385, 40.09356 ], [ -75.014229, 40.093869 ], [ -75.014399, 40.09401 ], [ -75.01461, 40.09417 ], [ -75.01506, 40.09455 ], [ -75.01518, 40.094649 ], [ -75.01533, 40.094769 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309413", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.982959, 40.117779 ], [ -74.983359, 40.11747 ], [ -74.98499, 40.116279 ], [ -74.98513, 40.116169 ], [ -74.9859, 40.115649 ], [ -74.9873, 40.11469 ], [ -74.987939, 40.114259 ], [ -74.987799, 40.11415 ], [ -74.98765, 40.114019 ], [ -74.987579, 40.11396 ], [ -74.98739, 40.11379 ], [ -74.98729, 40.113659 ], [ -74.98725, 40.11361 ], [ -74.987079, 40.113299 ], [ -74.986989, 40.11296 ], [ -74.98698, 40.112759 ], [ -74.986959, 40.11235 ], [ -74.986959, 40.11228 ], [ -74.986949, 40.11207 ], [ -74.98692, 40.111509 ], [ -74.986899, 40.11111 ], [ -74.98685, 40.110229 ], [ -74.98683, 40.10991 ], [ -74.986819, 40.10963 ], [ -74.98679, 40.108869 ], [ -74.986779, 40.108719 ], [ -74.98676, 40.1082 ], [ -74.986729, 40.107609 ], [ -74.98667, 40.107269 ], [ -74.98665, 40.10721 ], [ -74.98661, 40.10706 ], [ -74.986539, 40.10688 ], [ -74.98648, 40.106739 ], [ -74.986329, 40.106439 ], [ -74.98607, 40.106069 ], [ -74.98576, 40.105739 ], [ -74.985189, 40.10525 ], [ -74.984969, 40.10507 ], [ -74.984829, 40.104939 ], [ -74.984739, 40.10486 ], [ -74.98463, 40.10477 ], [ -74.98458, 40.104729 ], [ -74.984199, 40.104399 ], [ -74.98414, 40.10435 ], [ -74.984069, 40.104289 ], [ -74.983579, 40.103859 ], [ -74.983389, 40.1037 ], [ -74.98266, 40.10418 ], [ -74.982499, 40.10427 ], [ -74.982229, 40.10442 ], [ -74.98199, 40.10453 ], [ -74.981859, 40.10461 ], [ -74.981819, 40.10463 ], [ -74.98063, 40.10513 ], [ -74.980199, 40.105359 ], [ -74.97991, 40.10552 ], [ -74.97964, 40.1057 ], [ -74.97928, 40.10594 ], [ -74.978889, 40.106249 ], [ -74.978499, 40.106549 ], [ -74.9778, 40.107099 ], [ -74.97856, 40.10766 ], [ -74.97869, 40.10776 ], [ -74.9796, 40.108429 ], [ -74.980289, 40.10895 ], [ -74.980429, 40.10902 ], [ -74.980699, 40.10919 ], [ -74.981, 40.109339 ], [ -74.98131, 40.10945 ], [ -74.981409, 40.10948 ], [ -74.98162, 40.10954 ], [ -74.981949, 40.109609 ], [ -74.982049, 40.109619 ], [ -74.982279, 40.10964 ], [ -74.98311, 40.10965 ], [ -74.98387, 40.10965 ], [ -74.98478, 40.10964 ], [ -74.98495, 40.10964 ], [ -74.9854, 40.10964 ], [ -74.98657, 40.10963 ], [ -74.986819, 40.10963 ], [ -74.98683, 40.10991 ], [ -74.98685, 40.110229 ], [ -74.986899, 40.11111 ], [ -74.98692, 40.111509 ], [ -74.986949, 40.11207 ], [ -74.986959, 40.11228 ], [ -74.986959, 40.11235 ], [ -74.98698, 40.112759 ], [ -74.986989, 40.11296 ], [ -74.987079, 40.113299 ], [ -74.98725, 40.11361 ], [ -74.98729, 40.113659 ], [ -74.98739, 40.11379 ], [ -74.987579, 40.11396 ], [ -74.98765, 40.114019 ], [ -74.987799, 40.11415 ], [ -74.987939, 40.114259 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309414", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.98468, 40.13654 ], [ -74.9849, 40.136529 ], [ -74.98521, 40.13684 ], [ -74.98532, 40.136949 ], [ -74.985369, 40.137049 ], [ -74.98544, 40.13718 ], [ -74.98544, 40.137399 ], [ -74.985339, 40.137689 ], [ -74.98517, 40.137859 ], [ -74.98481, 40.137669 ], [ -74.984619, 40.13756 ], [ -74.98351, 40.136939 ], [ -74.98311, 40.136699 ], [ -74.9828, 40.136519 ], [ -74.982319, 40.136249 ], [ -74.981959, 40.136049 ], [ -74.981689, 40.135899 ], [ -74.981599, 40.13585 ], [ -74.981459, 40.13576 ], [ -74.98126, 40.13564 ], [ -74.981139, 40.13557 ], [ -74.980869, 40.135419 ], [ -74.98064, 40.13529 ], [ -74.980559, 40.13519 ], [ -74.9805, 40.13513 ], [ -74.98046, 40.13511 ], [ -74.98036, 40.13505 ], [ -74.98018, 40.13495 ], [ -74.979529, 40.13458 ], [ -74.979429, 40.134519 ], [ -74.979129, 40.134339 ], [ -74.978899, 40.134189 ], [ -74.97865, 40.13405 ], [ -74.978399, 40.133899 ], [ -74.97812, 40.133729 ], [ -74.97789, 40.13359 ], [ -74.97743, 40.13334 ], [ -74.977279, 40.133259 ], [ -74.97698, 40.133089 ], [ -74.9764, 40.132749 ], [ -74.976289, 40.13269 ], [ -74.97586, 40.132439 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309415", "route_id": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.953569, 40.138 ], [ -74.95368, 40.13793 ], [ -74.95372, 40.137759 ], [ -74.95377, 40.13757 ], [ -74.953699, 40.13744 ], [ -74.953599, 40.137299 ], [ -74.953509, 40.13717 ], [ -74.95331, 40.137249 ], [ -74.953149, 40.137319 ], [ -74.95299, 40.13739 ], [ -74.95287, 40.137429 ], [ -74.95272, 40.137489 ], [ -74.952389, 40.137 ], [ -74.952159, 40.136669 ], [ -74.953429, 40.13628 ], [ -74.954419, 40.135989 ], [ -74.95466, 40.13594 ], [ -74.9548, 40.13591 ], [ -74.95511, 40.13585 ], [ -74.955499, 40.135779 ], [ -74.955859, 40.135699 ], [ -74.95625, 40.135599 ], [ -74.956359, 40.13564 ], [ -74.956449, 40.135679 ], [ -74.95652, 40.135709 ], [ -74.956589, 40.13575 ], [ -74.956659, 40.135799 ], [ -74.95678, 40.1361 ], [ -74.95691, 40.13638 ], [ -74.957039, 40.136619 ], [ -74.957119, 40.13675 ], [ -74.957219, 40.1369 ], [ -74.95742, 40.137129 ], [ -74.957529, 40.13727 ], [ -74.957829, 40.137589 ], [ -74.958159, 40.137879 ], [ -74.958279, 40.13798 ], [ -74.95835, 40.138039 ], [ -74.958789, 40.13836 ], [ -74.9589, 40.13843 ], [ -74.95967, 40.13888 ], [ -74.959999, 40.13907 ], [ -74.96019, 40.13918 ], [ -74.96029, 40.13924 ], [ -74.96046, 40.13933 ], [ -74.961069, 40.1397 ], [ -74.96114, 40.139739 ], [ -74.96146, 40.13991 ], [ -74.961619, 40.139849 ], [ -74.962059, 40.13936 ], [ -74.96255, 40.138839 ], [ -74.962959, 40.138409 ], [ -74.963229, 40.138129 ], [ -74.9638, 40.137519 ], [ -74.964459, 40.13683 ], [ -74.96492, 40.13636 ], [ -74.965979, 40.136979 ], [ -74.966739, 40.13745 ], [ -74.967059, 40.137609 ], [ -74.967429, 40.137689 ], [ -74.967819, 40.13763 ], [ -74.9682, 40.137419 ], [ -74.96821, 40.137409 ], [ -74.96857, 40.1371 ], [ -74.968769, 40.13693 ], [ -74.96915, 40.136789 ], [ -74.96952, 40.136779 ], [ -74.96991, 40.13692 ], [ -74.97001, 40.136979 ], [ -74.970349, 40.137219 ], [ -74.97069, 40.13692 ], [ -74.97099, 40.13665 ], [ -74.971649, 40.136049 ], [ -74.971969, 40.13574 ], [ -74.97231, 40.135429 ], [ -74.972459, 40.13529 ], [ -74.972739, 40.13503 ], [ -74.9732, 40.1346 ], [ -74.973459, 40.134349 ], [ -74.97389, 40.13396 ], [ -74.97419, 40.13369 ], [ -74.97452, 40.133379 ], [ -74.974679, 40.13323 ], [ -74.974889, 40.13304 ], [ -74.97506, 40.13287 ], [ -74.975159, 40.13277 ], [ -74.975259, 40.13267 ], [ -74.97533, 40.13261 ], [ -74.975519, 40.1324 ], [ -74.975609, 40.132299 ], [ -74.97568, 40.132199 ], [ -74.97572, 40.132119 ], [ -74.975749, 40.131999 ], [ -74.975749, 40.13196 ], [ -74.97576, 40.131819 ], [ -74.97573, 40.13153 ], [ -74.97572, 40.13144 ], [ -74.97572, 40.13132 ], [ -74.97573, 40.13109 ], [ -74.975799, 40.130559 ], [ -74.97587, 40.129959 ], [ -74.975969, 40.129129 ], [ -74.976009, 40.128849 ], [ -74.97608, 40.128249 ], [ -74.97623, 40.12712 ], [ -74.976329, 40.12638 ], [ -74.97641, 40.125799 ], [ -74.976429, 40.1256 ], [ -74.976599, 40.124289 ], [ -74.976649, 40.123839 ], [ -74.97676, 40.12313 ], [ -74.976999, 40.122549 ], [ -74.97729, 40.122019 ], [ -74.97747, 40.12178 ], [ -74.97766, 40.12154 ], [ -74.977779, 40.12146 ], [ -74.977809, 40.12144 ], [ -74.977949, 40.12134 ], [ -74.97803, 40.121289 ], [ -74.978359, 40.121049 ], [ -74.978579, 40.1209 ], [ -74.978799, 40.12074 ], [ -74.978989, 40.12061 ], [ -74.979219, 40.12045 ], [ -74.979569, 40.120219 ], [ -74.979709, 40.120119 ], [ -74.97986, 40.12001 ], [ -74.98017, 40.1198 ], [ -74.980519, 40.11956 ], [ -74.980749, 40.119399 ], [ -74.981049, 40.11919 ], [ -74.98208, 40.118439 ], [ -74.98256, 40.11809 ], [ -74.982759, 40.11794 ], [ -74.98306, 40.11785 ], [ -74.98514, 40.1164 ], [ -74.9864, 40.115549 ], [ -74.98755, 40.11476 ], [ -74.988079, 40.114389 ], [ -74.99039, 40.112759 ], [ -74.990549, 40.112669 ], [ -74.99071, 40.112569 ], [ -74.990999, 40.11237 ], [ -74.991949, 40.11173 ], [ -74.9936, 40.110599 ], [ -74.99394, 40.11036 ], [ -74.99503, 40.109609 ], [ -74.996139, 40.10884 ], [ -74.99696, 40.1083 ], [ -74.99714, 40.10819 ], [ -74.997749, 40.10776 ], [ -74.99867, 40.10711 ], [ -74.999199, 40.106729 ], [ -74.99945, 40.106559 ], [ -74.99999, 40.106179 ], [ -75.000909, 40.105549 ], [ -75.001309, 40.105269 ], [ -75.00178, 40.104939 ], [ -75.00236, 40.104549 ], [ -75.002699, 40.10432 ], [ -75.00295, 40.10414 ], [ -75.003289, 40.10391 ], [ -75.00339, 40.103839 ], [ -75.003559, 40.10373 ], [ -75.00371, 40.10362 ], [ -75.00377, 40.103579 ], [ -75.004279, 40.103219 ], [ -75.004459, 40.1031 ], [ -75.004729, 40.10292 ], [ -75.00493, 40.102779 ], [ -75.005089, 40.102669 ], [ -75.00533, 40.102499 ], [ -75.005439, 40.10244 ], [ -75.00565, 40.10229 ], [ -75.005889, 40.102109 ], [ -75.00614, 40.101939 ], [ -75.00641, 40.101749 ], [ -75.00785, 40.100759 ], [ -75.008609, 40.100239 ], [ -75.008949, 40.1 ], [ -75.00898, 40.099979 ], [ -75.00926, 40.099789 ], [ -75.009539, 40.099599 ], [ -75.00971, 40.09948 ], [ -75.010029, 40.099259 ], [ -75.01023, 40.09912 ], [ -75.010349, 40.09904 ], [ -75.01037, 40.09902 ], [ -75.011339, 40.098359 ], [ -75.011739, 40.098079 ], [ -75.01223, 40.09775 ], [ -75.01231, 40.09769 ], [ -75.01241, 40.097619 ], [ -75.013089, 40.09713 ], [ -75.013679, 40.096639 ], [ -75.01379, 40.096549 ], [ -75.01389, 40.096469 ], [ -75.014169, 40.09622 ], [ -75.014399, 40.096009 ], [ -75.01469, 40.095729 ], [ -75.01493, 40.095489 ], [ -75.015489, 40.09491 ], [ -75.015659, 40.09473 ], [ -75.015939, 40.09445 ], [ -75.016059, 40.094319 ], [ -75.01654, 40.09383 ], [ -75.017189, 40.093149 ], [ -75.017559, 40.092749 ], [ -75.019669, 40.09058 ], [ -75.020249, 40.089979 ], [ -75.02064, 40.08957 ], [ -75.021069, 40.08913 ], [ -75.021829, 40.088339 ], [ -75.02248, 40.08767 ], [ -75.02346, 40.086649 ], [ -75.02365, 40.086459 ], [ -75.023939, 40.08616 ], [ -75.024, 40.08609 ], [ -75.02474, 40.08533 ], [ -75.02522, 40.08483 ], [ -75.025919, 40.0841 ], [ -75.026279, 40.08372 ], [ -75.026369, 40.08363 ], [ -75.026409, 40.083579 ], [ -75.026689, 40.08329 ], [ -75.027089, 40.082889 ], [ -75.02762, 40.082349 ], [ -75.027769, 40.08219 ], [ -75.02842, 40.081519 ], [ -75.028849, 40.081059 ], [ -75.02896, 40.08095 ], [ -75.029529, 40.080359 ], [ -75.02964, 40.08024 ], [ -75.030059, 40.079809 ], [ -75.03022, 40.079639 ], [ -75.030819, 40.079019 ], [ -75.03147, 40.07834 ], [ -75.03174, 40.07807 ], [ -75.031809, 40.07799 ], [ -75.03239, 40.07741 ], [ -75.03251, 40.077279 ], [ -75.03301, 40.076769 ], [ -75.0335, 40.07626 ], [ -75.03378, 40.07597 ], [ -75.034119, 40.07561 ], [ -75.034259, 40.07546 ], [ -75.03459, 40.075129 ], [ -75.03495, 40.074759 ], [ -75.035099, 40.074599 ], [ -75.035229, 40.07447 ], [ -75.03544, 40.07426 ], [ -75.03553, 40.074159 ], [ -75.035769, 40.0739 ], [ -75.03594, 40.07372 ], [ -75.036629, 40.073 ], [ -75.03706, 40.07256 ], [ -75.037569, 40.07204 ], [ -75.03831, 40.071279 ], [ -75.03896, 40.07059 ], [ -75.03904, 40.0705 ], [ -75.039289, 40.070199 ], [ -75.03957, 40.06985 ], [ -75.039779, 40.069559 ], [ -75.039909, 40.069359 ], [ -75.04007, 40.069099 ], [ -75.040269, 40.068739 ], [ -75.040539, 40.06814 ], [ -75.0408, 40.067569 ], [ -75.04106, 40.066959 ], [ -75.041359, 40.066309 ], [ -75.041449, 40.0661 ], [ -75.041529, 40.06589 ], [ -75.0417, 40.065489 ], [ -75.04191, 40.06502 ], [ -75.04214, 40.06455 ], [ -75.0422, 40.0644 ], [ -75.042339, 40.06411 ], [ -75.04246, 40.06384 ], [ -75.04269, 40.063349 ], [ -75.04283, 40.06302 ], [ -75.043079, 40.06247 ], [ -75.043429, 40.061699 ], [ -75.04376, 40.06095 ], [ -75.04408, 40.06026 ], [ -75.04418, 40.060029 ], [ -75.044339, 40.05968 ], [ -75.044379, 40.0596 ], [ -75.04444, 40.0595 ], [ -75.044519, 40.059379 ], [ -75.044609, 40.05926 ], [ -75.044699, 40.05915 ], [ -75.045139, 40.05871 ], [ -75.04533, 40.05852 ], [ -75.04587, 40.057959 ], [ -75.04647, 40.05736 ], [ -75.04656, 40.05727 ], [ -75.046659, 40.05717 ], [ -75.046979, 40.056849 ], [ -75.047559, 40.05627 ], [ -75.047979, 40.05585 ], [ -75.04809, 40.05574 ], [ -75.048289, 40.05554 ], [ -75.048459, 40.05537 ], [ -75.04875, 40.055069 ], [ -75.04885, 40.054979 ], [ -75.049329, 40.0545 ], [ -75.049499, 40.054329 ], [ -75.04957, 40.054259 ], [ -75.04961, 40.05422 ], [ -75.049769, 40.054059 ], [ -75.04992, 40.05392 ], [ -75.050449, 40.053369 ], [ -75.05064, 40.053149 ], [ -75.050819, 40.052909 ], [ -75.05092, 40.05275 ], [ -75.050999, 40.052619 ], [ -75.05105, 40.052519 ], [ -75.051119, 40.052379 ], [ -75.051259, 40.05206 ], [ -75.05133, 40.051809 ], [ -75.051389, 40.051559 ], [ -75.051399, 40.05149 ], [ -75.051429, 40.05131 ], [ -75.051449, 40.051019 ], [ -75.051489, 40.05044 ], [ -75.0515, 40.05036 ], [ -75.05151, 40.05025 ], [ -75.051519, 40.050099 ], [ -75.051529, 40.04989 ], [ -75.051539, 40.04971 ], [ -75.05159, 40.04909 ], [ -75.051619, 40.04873 ], [ -75.051669, 40.04836 ], [ -75.051699, 40.04816 ], [ -75.051749, 40.047949 ], [ -75.051809, 40.047759 ], [ -75.051879, 40.047589 ], [ -75.05196, 40.047429 ], [ -75.052059, 40.04726 ], [ -75.052159, 40.0471 ], [ -75.05222, 40.04702 ], [ -75.052289, 40.04692 ], [ -75.052389, 40.046799 ], [ -75.05245, 40.04673 ], [ -75.052619, 40.04656 ], [ -75.052919, 40.04628 ], [ -75.05322, 40.046 ], [ -75.05376, 40.045509 ], [ -75.05403, 40.045239 ], [ -75.054489, 40.044799 ], [ -75.054629, 40.04466 ], [ -75.054669, 40.044619 ], [ -75.054729, 40.04457 ], [ -75.054989, 40.044329 ], [ -75.055129, 40.0442 ], [ -75.05546, 40.043889 ], [ -75.05595, 40.043439 ], [ -75.05605, 40.043349 ], [ -75.05646, 40.04298 ], [ -75.05658, 40.04286 ], [ -75.056659, 40.04279 ], [ -75.05677, 40.04268 ], [ -75.057099, 40.042379 ], [ -75.05739, 40.042109 ], [ -75.057459, 40.04204 ], [ -75.05749, 40.042009 ], [ -75.05775, 40.04177 ], [ -75.05811, 40.04144 ], [ -75.05862, 40.04096 ], [ -75.059039, 40.040569 ], [ -75.059679, 40.039959 ], [ -75.060069, 40.039599 ], [ -75.06014, 40.03954 ], [ -75.060269, 40.039409 ], [ -75.06078, 40.038949 ], [ -75.060929, 40.0388 ], [ -75.061559, 40.03821 ], [ -75.061889, 40.0379 ], [ -75.06209, 40.03773 ], [ -75.062289, 40.03758 ], [ -75.062429, 40.03749 ], [ -75.062519, 40.037439 ], [ -75.06279, 40.03729 ], [ -75.062869, 40.037249 ], [ -75.06308, 40.037149 ], [ -75.06338, 40.03703 ], [ -75.063669, 40.03694 ], [ -75.06438, 40.03676 ], [ -75.064489, 40.03674 ], [ -75.06542, 40.036539 ], [ -75.06645, 40.03629 ], [ -75.066969, 40.036169 ], [ -75.067179, 40.03612 ], [ -75.06794, 40.03595 ], [ -75.068999, 40.035699 ], [ -75.069429, 40.035599 ], [ -75.069749, 40.035529 ], [ -75.06982, 40.035509 ], [ -75.07, 40.03547 ], [ -75.070159, 40.035439 ], [ -75.070349, 40.0355 ], [ -75.070529, 40.03559 ], [ -75.07067, 40.035449 ], [ -75.070789, 40.03529 ], [ -75.0709, 40.03513 ], [ -75.071139, 40.03475 ], [ -75.071229, 40.0346 ], [ -75.071329, 40.034449 ], [ -75.071469, 40.03424 ], [ -75.071689, 40.033839 ], [ -75.071869, 40.03352 ], [ -75.07206, 40.033179 ], [ -75.07207, 40.03316 ], [ -75.07211, 40.033089 ], [ -75.072189, 40.032929 ], [ -75.07225, 40.032829 ], [ -75.07229, 40.032749 ], [ -75.072359, 40.032559 ], [ -75.07269, 40.03197 ], [ -75.072899, 40.03162 ], [ -75.07307, 40.031309 ], [ -75.07325, 40.030939 ], [ -75.073529, 40.03037 ], [ -75.073569, 40.030229 ], [ -75.073619, 40.0301 ], [ -75.073759, 40.029779 ], [ -75.07383, 40.02962 ], [ -75.07391, 40.029409 ], [ -75.07401, 40.029159 ], [ -75.074199, 40.028699 ], [ -75.07432, 40.02846 ], [ -75.074439, 40.02827 ], [ -75.075149, 40.0275 ], [ -75.07557, 40.02704 ], [ -75.0763, 40.026169 ], [ -75.076419, 40.025999 ], [ -75.076509, 40.025819 ], [ -75.076599, 40.02552 ], [ -75.076639, 40.02531 ], [ -75.076692, 40.025041 ], [ -75.076799, 40.024997 ], [ -75.076941, 40.024908 ], [ -75.077107, 40.024774 ], [ -75.077238, 40.024614 ], [ -75.07731, 40.024436 ], [ -75.07738, 40.024109 ], [ -75.077369, 40.02359 ], [ -75.077439, 40.023129 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309418", "route_id": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.144784, 40.039076 ], [ -75.144696, 40.039054 ], [ -75.144629, 40.039038 ], [ -75.143569, 40.038822 ], [ -75.14296, 40.038682 ], [ -75.142573, 40.038592 ], [ -75.142181, 40.038506 ], [ -75.141809, 40.038424 ], [ -75.141425, 40.038337 ], [ -75.141182, 40.038284 ], [ -75.141036, 40.038247 ], [ -75.140628, 40.038154 ], [ -75.140248, 40.03807 ], [ -75.139895, 40.037991 ], [ -75.139489, 40.037901 ], [ -75.139068, 40.037804 ], [ -75.138696, 40.037718 ], [ -75.138359, 40.037638 ], [ -75.137935, 40.037547 ], [ -75.136584, 40.03723 ], [ -75.136507, 40.037211 ], [ -75.136436, 40.037195 ], [ -75.136367, 40.037184 ], [ -75.136265, 40.037169 ], [ -75.135997, 40.037132 ], [ -75.135328, 40.03705 ], [ -75.134761, 40.036972 ], [ -75.134129, 40.036896 ], [ -75.13331, 40.036802 ], [ -75.132479, 40.036694 ], [ -75.131521, 40.03657 ], [ -75.130507, 40.036438 ], [ -75.129498, 40.03631 ], [ -75.128638, 40.036204 ], [ -75.12765, 40.036076 ], [ -75.126522, 40.03593 ], [ -75.125384, 40.035782 ], [ -75.124849, 40.035714 ], [ -75.123879, 40.035593 ], [ -75.121415, 40.035278 ], [ -75.120257, 40.035142 ], [ -75.120106, 40.035123 ], [ -75.119916, 40.035098 ], [ -75.119745, 40.035074 ], [ -75.119542, 40.035047 ], [ -75.118134, 40.034863 ], [ -75.117555, 40.034794 ], [ -75.116834, 40.034696 ], [ -75.116151, 40.034614 ], [ -75.115695, 40.034561 ], [ -75.115471, 40.034533 ], [ -75.115388, 40.034524 ], [ -75.115072, 40.034483 ], [ -75.114954, 40.034462 ], [ -75.114918, 40.034448 ], [ -75.114875, 40.034423 ], [ -75.114845, 40.034391 ], [ -75.114814, 40.03435 ], [ -75.114421, 40.033874 ], [ -75.113486, 40.03273 ], [ -75.112882, 40.031996 ], [ -75.112203, 40.031196 ], [ -75.112157, 40.031127 ], [ -75.112113, 40.031054 ], [ -75.112059, 40.030941 ], [ -75.112012, 40.030817 ], [ -75.111938, 40.030826 ], [ -75.111829, 40.030846 ], [ -75.111749, 40.03084 ], [ -75.111659, 40.030868 ], [ -75.111123, 40.031054 ], [ -75.11, 40.031428 ], [ -75.109056, 40.03176 ], [ -75.108449, 40.031962 ], [ -75.108376, 40.031986 ], [ -75.108, 40.032131 ], [ -75.107925, 40.03216 ], [ -75.107856, 40.0322 ], [ -75.107767, 40.032263 ], [ -75.107677, 40.032343 ], [ -75.107579, 40.032438 ], [ -75.107244, 40.032778 ], [ -75.106912, 40.033121 ], [ -75.105944, 40.034105 ], [ -75.104723, 40.035329 ], [ -75.104061, 40.035987 ], [ -75.103192, 40.036781 ], [ -75.102353, 40.037574 ], [ -75.102132, 40.037782 ], [ -75.10188, 40.038014 ], [ -75.101576, 40.038289 ], [ -75.101334, 40.038503 ], [ -75.101154, 40.03866 ], [ -75.100939, 40.038844 ], [ -75.100914, 40.038865 ], [ -75.100726, 40.039029 ], [ -75.100479, 40.039231 ], [ -75.100274, 40.039404 ], [ -75.10004, 40.039605 ], [ -75.099814, 40.039801 ], [ -75.099589, 40.039984 ], [ -75.099346, 40.040196 ], [ -75.099088, 40.040409 ], [ -75.098868, 40.040593 ], [ -75.098655, 40.040768 ], [ -75.09844, 40.040954 ], [ -75.098233, 40.041128 ], [ -75.097955, 40.041367 ], [ -75.096582, 40.042524 ], [ -75.096532, 40.042565 ], [ -75.096488, 40.042601 ], [ -75.0964, 40.042685 ], [ -75.096129, 40.042969 ], [ -75.095946, 40.043161 ], [ -75.095385, 40.043746 ], [ -75.094197, 40.044998 ], [ -75.093032, 40.046234 ], [ -75.092193, 40.047134 ], [ -75.09187, 40.047488 ], [ -75.091616, 40.047343 ], [ -75.091493, 40.047274 ], [ -75.091042, 40.047018 ], [ -75.090645, 40.046803 ], [ -75.090068, 40.046482 ], [ -75.08943, 40.046132 ], [ -75.089081, 40.045935 ], [ -75.088992, 40.045885 ], [ -75.088762, 40.045758 ], [ -75.088312, 40.045505 ], [ -75.087623, 40.045126 ], [ -75.087094, 40.044834 ], [ -75.086736, 40.044637 ], [ -75.086576, 40.044549 ], [ -75.085774, 40.044107 ], [ -75.085533, 40.04397 ], [ -75.085265, 40.043819 ], [ -75.085196, 40.043808 ], [ -75.08513, 40.04379 ], [ -75.085078, 40.043834 ], [ -75.084957, 40.043864 ], [ -75.084424, 40.044289 ], [ -75.083755, 40.044858 ], [ -75.083052, 40.045411 ], [ -75.082334, 40.045997 ], [ -75.080365, 40.044882 ], [ -75.080002, 40.044686 ], [ -75.078591, 40.043886 ], [ -75.076675, 40.042843 ], [ -75.076571, 40.042781 ], [ -75.075018, 40.041937 ], [ -75.074818, 40.041818 ], [ -75.074529, 40.041657 ], [ -75.074216, 40.041485 ], [ -75.073937, 40.041314 ], [ -75.073646, 40.041152 ], [ -75.073338, 40.04098 ], [ -75.072998, 40.040783 ], [ -75.072674, 40.040599 ], [ -75.072394, 40.040437 ], [ -75.072102, 40.040278 ], [ -75.07182, 40.040124 ], [ -75.071531, 40.039969 ], [ -75.07122, 40.039784 ], [ -75.070905, 40.039607 ], [ -75.070615, 40.039439 ], [ -75.070324, 40.039283 ], [ -75.070028, 40.039125 ], [ -75.069746, 40.038959 ], [ -75.069431, 40.038779 ], [ -75.069104, 40.038593 ], [ -75.068975, 40.038522 ], [ -75.068784, 40.038424 ], [ -75.068466, 40.038238 ], [ -75.068039, 40.037996 ], [ -75.06772, 40.038308 ], [ -75.067444, 40.038577 ], [ -75.067174, 40.038841 ], [ -75.067078, 40.038934 ], [ -75.066797, 40.039211 ], [ -75.066544, 40.039479 ], [ -75.066462, 40.039561 ], [ -75.065983, 40.040037 ], [ -75.06558, 40.040439 ], [ -75.065539, 40.040363 ], [ -75.065508, 40.040299 ], [ -75.065478, 40.0402 ], [ -75.065507, 40.040094 ], [ -75.065426, 40.039808 ], [ -75.065231, 40.039122 ], [ -75.065136, 40.038781 ], [ -75.065088, 40.038616 ], [ -75.064962, 40.038199 ], [ -75.06483, 40.037808 ], [ -75.064775, 40.037638 ], [ -75.064743, 40.037527 ], [ -75.064653, 40.037211 ], [ -75.06463, 40.03714 ], [ -75.064505, 40.03673 ], [ -75.06447, 40.036611 ], [ -75.06437, 40.036308 ], [ -75.064331, 40.036187 ], [ -75.064253, 40.035877 ], [ -75.06424, 40.035816 ], [ -75.064225, 40.035751 ], [ -75.064179, 40.035548 ], [ -75.064084, 40.035095 ], [ -75.064002, 40.034721 ], [ -75.063901, 40.034251 ], [ -75.063795, 40.033761 ], [ -75.063762, 40.033623 ], [ -75.063729, 40.033476 ], [ -75.063654, 40.033134 ], [ -75.063568, 40.032741 ], [ -75.063436, 40.032112 ], [ -75.063378, 40.031839 ], [ -75.063326, 40.031586 ], [ -75.063312, 40.03152 ], [ -75.063189, 40.030957 ], [ -75.063142, 40.030746 ], [ -75.063037, 40.030248 ], [ -75.062983, 40.029986 ], [ -75.062952, 40.029832 ], [ -75.062869, 40.029449 ], [ -75.062859, 40.029388 ], [ -75.063219, 40.028999 ], [ -75.063388, 40.028822 ], [ -75.063581, 40.028621 ], [ -75.064014, 40.028163 ], [ -75.064625, 40.027512 ], [ -75.065022, 40.027094 ], [ -75.065076, 40.027085 ], [ -75.065246, 40.027061 ], [ -75.065424, 40.027035 ], [ -75.065521, 40.027019 ], [ -75.066046, 40.026939 ], [ -75.066276, 40.026904 ], [ -75.066679, 40.026843 ], [ -75.067127, 40.02677 ], [ -75.067181, 40.026756 ], [ -75.06721, 40.026748 ], [ -75.067303, 40.02673 ], [ -75.067331, 40.026723 ], [ -75.067979, 40.026581 ], [ -75.068378, 40.026495 ], [ -75.068803, 40.0264 ], [ -75.069441, 40.02626 ], [ -75.06987, 40.026165 ], [ -75.072045, 40.025672 ], [ -75.072507, 40.025567 ], [ -75.07325, 40.025398 ], [ -75.073379, 40.025371 ], [ -75.073849, 40.025788 ], [ -75.074165, 40.026052 ], [ -75.074983, 40.026686 ], [ -75.075205, 40.026877 ], [ -75.075324, 40.026975 ], [ -75.075401, 40.027017 ], [ -75.075454, 40.027038 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309614", "route_id": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984252, 40.089961 ], [ -74.984275, 40.08998 ], [ -74.984292, 40.089996 ], [ -74.984673, 40.090305 ], [ -74.98481, 40.090413 ], [ -74.985191, 40.090733 ], [ -74.986434, 40.091757 ], [ -74.987409, 40.09256 ], [ -74.988488, 40.093453 ], [ -74.988645, 40.093583 ], [ -74.98912, 40.093976 ], [ -74.989438, 40.094248 ], [ -74.989691, 40.094463 ], [ -74.990287, 40.094964 ], [ -74.990744, 40.095358 ], [ -74.990974, 40.095553 ], [ -74.991252, 40.095789 ], [ -74.991586, 40.096045 ], [ -74.991864, 40.096268 ], [ -74.99205, 40.096416 ], [ -74.992421, 40.096713 ], [ -74.993226, 40.097349 ], [ -74.993803, 40.097818 ], [ -74.994683, 40.098524 ], [ -74.994857, 40.098664 ], [ -74.994954, 40.098749 ], [ -74.995449, 40.099181 ], [ -74.996202, 40.099835 ], [ -74.996841, 40.100398 ], [ -74.997091, 40.100643 ], [ -74.997413, 40.100953 ], [ -74.997706, 40.101217 ], [ -74.997858, 40.101351 ], [ -74.998001, 40.101485 ], [ -74.998145, 40.101614 ], [ -74.998223, 40.101689 ], [ -74.998299, 40.101771 ], [ -74.998387, 40.10187 ], [ -74.998459, 40.101963 ], [ -74.998571, 40.102112 ], [ -74.998672, 40.102242 ], [ -74.998762, 40.102342 ], [ -74.998828, 40.10241 ], [ -74.998896, 40.10248 ], [ -74.998984, 40.102557 ], [ -74.999073, 40.102627 ], [ -74.999183, 40.102716 ], [ -74.99941, 40.1029 ], [ -74.9998, 40.103218 ], [ -74.999882, 40.103285 ], [ -75.000975, 40.104189 ], [ -75.001298, 40.104473 ], [ -75.001398, 40.104552 ], [ -75.001517, 40.104664 ], [ -75.001655, 40.104791 ], [ -75.001802, 40.104926 ], [ -75.002387, 40.104526 ], [ -75.002451, 40.104482 ], [ -75.002505, 40.104445 ], [ -75.003076, 40.104051 ], [ -75.003389, 40.103837 ], [ -75.003676, 40.103637 ], [ -75.004536, 40.103045 ], [ -75.004788, 40.10287 ], [ -75.005121, 40.102641 ], [ -75.005888, 40.102111 ], [ -75.006108, 40.101959 ], [ -75.00638, 40.101768 ], [ -75.0068, 40.102217 ], [ -75.008, 40.101383 ], [ -75.00876, 40.100966 ], [ -75.010017, 40.100488 ], [ -75.01015, 40.099956 ], [ -75.011309, 40.099543 ], [ -75.011485, 40.099481 ], [ -75.011865, 40.099349 ], [ -75.012354, 40.099181 ], [ -75.012836, 40.099014 ], [ -75.013294, 40.098856 ], [ -75.01402, 40.098604 ], [ -75.01423, 40.098531 ], [ -75.014932, 40.098281 ], [ -75.015127, 40.098212 ], [ -75.015615, 40.098044 ], [ -75.01605, 40.097896 ], [ -75.016436, 40.09776 ], [ -75.016648, 40.097684 ], [ -75.017122, 40.097517 ], [ -75.017387, 40.097426 ], [ -75.01759, 40.097352 ], [ -75.018134, 40.097155 ], [ -75.018314, 40.097294 ], [ -75.018517, 40.097464 ], [ -75.018616, 40.097548 ], [ -75.018808, 40.097713 ], [ -75.01914, 40.097986 ], [ -75.019611, 40.098378 ], [ -75.020643, 40.099239 ], [ -75.021304, 40.099798 ], [ -75.02141, 40.099885 ], [ -75.021594, 40.100038 ], [ -75.021684, 40.10011 ], [ -75.02176, 40.100162 ], [ -75.021857, 40.100224 ], [ -75.02197, 40.100279 ], [ -75.022191, 40.10037 ], [ -75.022353, 40.100421 ], [ -75.022838, 40.100541 ], [ -75.023325, 40.100663 ], [ -75.02362, 40.100741 ], [ -75.023856, 40.100811 ], [ -75.02403, 40.100849 ], [ -75.024273, 40.100905 ], [ -75.024551, 40.100974 ], [ -75.025224, 40.101143 ], [ -75.025284, 40.101158 ], [ -75.025418, 40.101196 ], [ -75.025615, 40.101242 ], [ -75.025793, 40.10129 ], [ -75.026327, 40.101423 ], [ -75.026332, 40.101424 ], [ -75.026819, 40.101545 ], [ -75.026875, 40.101564 ], [ -75.026983, 40.101602 ], [ -75.027226, 40.101693 ], [ -75.027361, 40.101751 ], [ -75.0275, 40.101833 ], [ -75.02783, 40.102021 ], [ -75.027953, 40.102092 ], [ -75.028268, 40.102285 ], [ -75.028371, 40.102349 ], [ -75.028714, 40.102562 ], [ -75.028832, 40.102637 ], [ -75.028877, 40.102664 ], [ -75.029364, 40.102968 ], [ -75.029483, 40.103043 ], [ -75.029763, 40.103221 ], [ -75.029907, 40.103313 ], [ -75.03038, 40.103605 ], [ -75.030701, 40.103803 ], [ -75.03101, 40.103994 ], [ -75.031024, 40.104003 ], [ -75.031264, 40.104152 ], [ -75.031728, 40.104442 ], [ -75.031852, 40.10452 ], [ -75.032106, 40.104683 ], [ -75.032273, 40.104791 ], [ -75.032483, 40.104922 ], [ -75.032726, 40.105073 ], [ -75.032816, 40.105138 ], [ -75.032902, 40.1052 ], [ -75.032968, 40.105167 ], [ -75.033035, 40.105136 ], [ -75.034027, 40.104656 ], [ -75.034433, 40.104465 ], [ -75.034975, 40.104203 ], [ -75.036999, 40.103238 ], [ -75.038584, 40.102481 ], [ -75.039859, 40.101876 ], [ -75.040538, 40.101551 ], [ -75.041285, 40.101194 ], [ -75.042654, 40.100541 ], [ -75.043212, 40.100272 ], [ -75.043517, 40.100131 ], [ -75.044792, 40.099517 ], [ -75.045563, 40.099156 ], [ -75.046422, 40.09874 ], [ -75.046654, 40.098628 ], [ -75.046681, 40.098614 ], [ -75.046816, 40.098559 ], [ -75.046955, 40.098487 ], [ -75.047084, 40.098409 ], [ -75.047144, 40.098366 ], [ -75.047206, 40.098312 ], [ -75.047282, 40.098248 ], [ -75.047345, 40.098191 ], [ -75.047478, 40.098059 ], [ -75.047618, 40.097919 ], [ -75.047861, 40.097679 ], [ -75.04845, 40.097111 ], [ -75.049336, 40.096236 ], [ -75.050313, 40.09528 ], [ -75.050371, 40.095223 ], [ -75.05044, 40.095157 ], [ -75.050789, 40.09482 ], [ -75.050912, 40.094699 ], [ -75.051035, 40.094584 ], [ -75.051518, 40.094107 ], [ -75.051756, 40.093877 ], [ -75.051915, 40.09372 ], [ -75.052027, 40.093613 ], [ -75.052315, 40.093359 ], [ -75.052525, 40.093172 ], [ -75.052698, 40.093019 ], [ -75.052807, 40.09292 ], [ -75.052861, 40.092871 ], [ -75.053045, 40.092706 ], [ -75.053253, 40.092526 ], [ -75.053589, 40.092231 ], [ -75.053716, 40.092113 ], [ -75.053902, 40.091949 ], [ -75.054022, 40.091857 ], [ -75.054122, 40.091788 ], [ -75.0542, 40.091738 ], [ -75.05442, 40.091598 ], [ -75.054716, 40.091415 ], [ -75.055247, 40.091077 ], [ -75.055392, 40.090983 ], [ -75.055712, 40.090776 ], [ -75.056235, 40.090436 ], [ -75.056422, 40.090315 ], [ -75.056617, 40.090174 ], [ -75.05668, 40.090123 ], [ -75.056736, 40.090069 ], [ -75.056801, 40.090001 ], [ -75.056885, 40.089917 ], [ -75.056908, 40.089844 ], [ -75.057057, 40.089665 ], [ -75.057174, 40.089495 ], [ -75.057244, 40.0894 ], [ -75.057317, 40.089284 ], [ -75.05741, 40.089136 ], [ -75.057461, 40.089056 ], [ -75.057586, 40.088854 ], [ -75.058573, 40.087275 ], [ -75.058706, 40.087083 ], [ -75.058804, 40.086956 ], [ -75.058938, 40.086814 ], [ -75.05909, 40.086681 ], [ -75.059229, 40.086571 ], [ -75.059454, 40.086411 ], [ -75.059701, 40.086248 ], [ -75.060067, 40.086006 ], [ -75.060277, 40.085861 ], [ -75.061684, 40.084892 ], [ -75.062424, 40.084385 ], [ -75.063613, 40.083544 ], [ -75.063954, 40.08331 ], [ -75.064211, 40.08313 ], [ -75.064326, 40.08305 ], [ -75.06519, 40.08246 ], [ -75.065949, 40.081945 ], [ -75.067095, 40.081157 ], [ -75.06789, 40.080638 ], [ -75.068044, 40.080538 ], [ -75.068134, 40.08047 ], [ -75.06824, 40.080391 ], [ -75.068317, 40.080326 ], [ -75.068367, 40.080281 ], [ -75.068417, 40.080228 ], [ -75.068485, 40.080149 ], [ -75.068749, 40.079887 ], [ -75.06921, 40.079432 ], [ -75.069254, 40.07939 ], [ -75.069315, 40.079356 ], [ -75.069786, 40.078896 ], [ -75.069793, 40.07889 ], [ -75.069913, 40.078776 ], [ -75.070397, 40.078305 ], [ -75.070721, 40.077968 ], [ -75.071054, 40.077681 ], [ -75.071641, 40.077071 ], [ -75.072243, 40.076466 ], [ -75.072888, 40.075874 ], [ -75.073224, 40.075541 ], [ -75.073518, 40.075249 ], [ -75.073627, 40.075145 ], [ -75.074183, 40.074621 ], [ -75.074767, 40.074031 ], [ -75.075314, 40.073483 ], [ -75.075597, 40.073218 ], [ -75.075913, 40.072912 ], [ -75.076081, 40.072742 ], [ -75.07654, 40.07229 ], [ -75.076655, 40.072176 ], [ -75.077214, 40.071633 ], [ -75.077794, 40.071071 ], [ -75.077816, 40.071048 ], [ -75.077865, 40.070997 ], [ -75.077883, 40.070978 ], [ -75.078463, 40.070428 ], [ -75.079092, 40.069828 ], [ -75.079721, 40.069231 ], [ -75.080322, 40.068604 ], [ -75.080326, 40.0686 ], [ -75.080496, 40.068453 ], [ -75.080554, 40.068402 ], [ -75.080618, 40.068343 ], [ -75.080931, 40.068052 ], [ -75.08095, 40.068031 ], [ -75.080999, 40.067979 ], [ -75.081587, 40.067358 ], [ -75.081597, 40.067348 ], [ -75.082157, 40.066813 ], [ -75.082216, 40.066756 ], [ -75.082593, 40.06638 ], [ -75.082693, 40.066281 ], [ -75.082813, 40.066163 ], [ -75.083302, 40.065684 ], [ -75.08334, 40.065601 ], [ -75.083383, 40.065559 ], [ -75.083428, 40.065526 ], [ -75.083482, 40.065501 ], [ -75.083557, 40.065478 ], [ -75.083542, 40.065404 ], [ -75.083534, 40.065342 ], [ -75.083529, 40.06529 ], [ -75.083528, 40.065247 ], [ -75.083523, 40.065073 ], [ -75.083499, 40.064038 ], [ -75.083482, 40.063741 ], [ -75.08348, 40.06328 ], [ -75.083486, 40.062079 ], [ -75.083486, 40.061946 ], [ -75.083469, 40.061758 ], [ -75.083466, 40.061665 ], [ -75.083465, 40.061586 ], [ -75.083472, 40.06145 ], [ -75.083509, 40.061271 ], [ -75.083098, 40.061025 ], [ -75.082726, 40.060801 ], [ -75.082281, 40.060548 ], [ -75.081885, 40.060318 ], [ -75.081401, 40.060037 ], [ -75.080913, 40.059752 ], [ -75.080508, 40.059523 ], [ -75.080113, 40.059294 ], [ -75.079627, 40.059013 ], [ -75.078743, 40.058501 ], [ -75.078049, 40.058102 ], [ -75.077756, 40.05793 ], [ -75.077165, 40.05759 ], [ -75.076749, 40.057351 ], [ -75.07753, 40.056517 ], [ -75.078398, 40.055586 ], [ -75.078616, 40.055349 ], [ -75.078915, 40.055031 ], [ -75.079201, 40.054719 ], [ -75.079501, 40.054415 ], [ -75.079559, 40.054355 ], [ -75.079788, 40.054117 ], [ -75.08012, 40.053757 ], [ -75.080412, 40.053455 ], [ -75.080683, 40.053173 ], [ -75.081023, 40.05281 ], [ -75.081344, 40.052467 ], [ -75.081605, 40.052184 ], [ -75.08187, 40.051902 ], [ -75.082141, 40.0516 ], [ -75.082456, 40.051249 ], [ -75.082793, 40.050917 ], [ -75.083047, 40.050652 ], [ -75.083334, 40.050351 ], [ -75.08362, 40.05005 ], [ -75.08391, 40.049744 ], [ -75.084505, 40.049111 ], [ -75.084809, 40.048798 ], [ -75.085095, 40.048487 ], [ -75.08538, 40.048184 ], [ -75.085696, 40.047853 ], [ -75.086981, 40.048584 ], [ -75.087038, 40.048451 ], [ -75.08713, 40.048224 ], [ -75.08764, 40.047028 ], [ -75.087932, 40.046343 ], [ -75.087964, 40.04627 ], [ -75.088141, 40.045863 ], [ -75.088251, 40.045627 ], [ -75.088312, 40.045505 ], [ -75.088579, 40.045001 ], [ -75.088696, 40.044781 ], [ -75.089011, 40.044287 ], [ -75.088968, 40.044164 ], [ -75.088995, 40.044054 ], [ -75.088948, 40.043934 ], [ -75.088915, 40.043847 ], [ -75.08889, 40.043789 ], [ -75.088871, 40.043727 ], [ -75.088835, 40.043623 ], [ -75.088766, 40.043345 ], [ -75.088697, 40.043264 ], [ -75.088635, 40.042975 ], [ -75.08856, 40.042656 ], [ -75.088484, 40.042325 ], [ -75.088448, 40.042166 ], [ -75.088346, 40.041716 ], [ -75.088214, 40.041187 ], [ -75.0882, 40.041067 ], [ -75.088177, 40.040896 ], [ -75.088171, 40.040782 ], [ -75.08817, 40.04073 ], [ -75.088169, 40.040673 ], [ -75.088185, 40.040555 ], [ -75.088355, 40.039888 ], [ -75.088569, 40.039049 ], [ -75.088663, 40.038674 ], [ -75.0887, 40.038416 ], [ -75.0887, 40.038374 ], [ -75.088702, 40.038312 ], [ -75.088702, 40.038219 ], [ -75.088695, 40.03815 ], [ -75.088683, 40.038053 ], [ -75.08867, 40.037984 ], [ -75.088585, 40.037746 ], [ -75.0881, 40.036614 ], [ -75.087959, 40.036283 ], [ -75.087856, 40.036077 ], [ -75.0876, 40.03561 ], [ -75.087319, 40.035115 ], [ -75.087171, 40.034853 ], [ -75.087144, 40.034811 ], [ -75.087116, 40.034785 ], [ -75.087075, 40.034751 ], [ -75.087024, 40.034711 ], [ -75.08679, 40.034541 ], [ -75.085805, 40.033862 ], [ -75.085319, 40.033522 ], [ -75.08528, 40.033493 ], [ -75.085233, 40.033446 ], [ -75.085169, 40.033365 ], [ -75.085064, 40.033192 ], [ -75.085048, 40.033165 ], [ -75.084971, 40.033037 ], [ -75.084915, 40.032919 ], [ -75.084879, 40.032813 ], [ -75.084861, 40.032716 ], [ -75.084797, 40.032289 ], [ -75.084901, 40.032271 ], [ -75.085, 40.032246 ], [ -75.085081, 40.032218 ], [ -75.085157, 40.032177 ], [ -75.085236, 40.032123 ], [ -75.085276, 40.032091 ], [ -75.085321, 40.032039 ], [ -75.085338, 40.032015 ], [ -75.085368, 40.031969 ], [ -75.085396, 40.031909 ], [ -75.085416, 40.03181 ], [ -75.085421, 40.031729 ], [ -75.085398, 40.031638 ], [ -75.085365, 40.031568 ], [ -75.085327, 40.031521 ], [ -75.085276, 40.031461 ], [ -75.085236, 40.031425 ], [ -75.085201, 40.031396 ], [ -75.085144, 40.031351 ], [ -75.085067, 40.0313 ], [ -75.085021, 40.031282 ], [ -75.084944, 40.031257 ], [ -75.084837, 40.03124 ], [ -75.084755, 40.03124 ], [ -75.084681, 40.031244 ], [ -75.084616, 40.031253 ], [ -75.084537, 40.031275 ], [ -75.084507, 40.031286 ], [ -75.08446, 40.031304 ], [ -75.084375, 40.031337 ], [ -75.084268, 40.031394 ], [ -75.084156, 40.031469 ], [ -75.083676, 40.031151 ], [ -75.08334, 40.030989 ], [ -75.08263, 40.030594 ], [ -75.080837, 40.029581 ], [ -75.08026, 40.029255 ], [ -75.07995, 40.029078 ], [ -75.079664, 40.028915 ], [ -75.079065, 40.028574 ], [ -75.078482, 40.028241 ], [ -75.077863, 40.027887 ], [ -75.077293, 40.027561 ], [ -75.077114, 40.027485 ], [ -75.076803, 40.027383 ], [ -75.076701, 40.027358 ], [ -75.076121, 40.027215 ], [ -75.075602, 40.027077 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.076447, 40.025805 ], [ -75.076509, 40.025668 ], [ -75.07653, 40.025612 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076582, 40.025358 ], [ -75.076622, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076675, 40.024892 ], [ -75.076861, 40.024827 ], [ -75.077033, 40.02472 ], [ -75.077212, 40.024553 ], [ -75.077295, 40.024363 ], [ -75.077407, 40.023452 ], [ -75.077426, 40.02329 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309615", "route_id": "20" }, "geometry": { "type": "LineString", "coordinates": [ [ -74.988576, 40.084845 ], [ -74.988553, 40.084861 ], [ -74.988464, 40.084925 ], [ -74.988304, 40.085037 ], [ -74.988226, 40.0851 ], [ -74.98803, 40.085259 ], [ -74.98726, 40.085893 ], [ -74.987161, 40.085981 ], [ -74.987072, 40.086059 ], [ -74.987047, 40.086082 ], [ -74.987002, 40.086119 ], [ -74.986896, 40.086236 ], [ -74.986659, 40.086524 ], [ -74.9866, 40.086602 ], [ -74.986279, 40.087061 ], [ -74.986065, 40.087379 ], [ -74.985937, 40.087559 ], [ -74.985821, 40.087742 ], [ -74.985748, 40.087874 ], [ -74.985687, 40.087987 ], [ -74.985595, 40.088159 ], [ -74.985495, 40.088339 ], [ -74.985368, 40.088569 ], [ -74.985261, 40.088761 ], [ -74.985208, 40.088865 ], [ -74.985152, 40.088957 ], [ -74.985083, 40.089062 ], [ -74.985038, 40.089126 ], [ -74.984997, 40.089182 ], [ -74.984954, 40.089239 ], [ -74.984898, 40.089299 ], [ -74.984828, 40.089379 ], [ -74.984751, 40.089462 ], [ -74.984695, 40.08952 ], [ -74.984642, 40.089568 ], [ -74.984543, 40.089652 ], [ -74.984205, 40.089929 ], [ -74.984034, 40.09007 ], [ -74.983822, 40.090271 ], [ -74.983577, 40.090519 ], [ -74.983069, 40.091066 ], [ -74.98294, 40.091201 ], [ -74.982871, 40.09128 ], [ -74.982662, 40.091488 ], [ -74.982633, 40.091516 ], [ -74.982481, 40.091659 ], [ -74.982385, 40.091744 ], [ -74.982295, 40.091828 ], [ -74.982134, 40.091966 ], [ -74.981855, 40.092183 ], [ -74.981535, 40.092442 ], [ -74.981383, 40.092559 ], [ -74.980593, 40.093191 ], [ -74.98051, 40.093255 ], [ -74.98015, 40.093539 ], [ -74.97997, 40.093682 ], [ -74.979861, 40.093768 ], [ -74.979773, 40.093835 ], [ -74.979672, 40.093907 ], [ -74.979576, 40.093978 ], [ -74.979496, 40.094044 ], [ -74.979316, 40.094184 ], [ -74.979101, 40.094341 ], [ -74.978225, 40.094972 ], [ -74.977487, 40.095506 ], [ -74.977198, 40.095702 ], [ -74.977015, 40.095827 ], [ -74.976878, 40.095914 ], [ -74.97679, 40.09596 ], [ -74.976685, 40.096008 ], [ -74.976449, 40.096112 ], [ -74.976149, 40.096243 ], [ -74.975783, 40.096404 ], [ -74.975811, 40.096446 ], [ -74.975837, 40.096486 ], [ -74.976023, 40.096782 ], [ -74.976051, 40.096841 ], [ -74.976074, 40.096897 ], [ -74.976089, 40.096956 ], [ -74.976103, 40.09702 ], [ -74.976109, 40.097082 ], [ -74.976113, 40.09715 ], [ -74.976108, 40.097217 ], [ -74.976098, 40.097305 ], [ -74.976103, 40.097507 ], [ -74.976008, 40.097767 ], [ -74.975973, 40.097828 ], [ -74.975876, 40.097992 ], [ -74.975653, 40.098237 ], [ -74.975417, 40.098456 ], [ -74.975282, 40.098547 ], [ -74.974755, 40.098903 ], [ -74.974117, 40.099354 ], [ -74.97404, 40.099408 ], [ -74.973559, 40.099696 ], [ -74.973406, 40.099776 ], [ -74.97267, 40.100176 ], [ -74.971908, 40.100483 ], [ -74.971325, 40.100668 ], [ -74.971116, 40.100719 ], [ -74.970855, 40.100784 ], [ -74.970385, 40.100865 ], [ -74.97003, 40.100902 ], [ -74.969849, 40.100921 ], [ -74.968938, 40.100936 ], [ -74.968401, 40.100912 ], [ -74.967537, 40.100814 ], [ -74.966663, 40.100578 ], [ -74.966223, 40.100437 ], [ -74.965773, 40.100228 ], [ -74.965437, 40.099995 ], [ -74.965314, 40.099879 ], [ -74.965207, 40.099779 ], [ -74.964996, 40.099523 ], [ -74.964897, 40.099343 ], [ -74.964792, 40.099067 ], [ -74.964775, 40.098977 ], [ -74.964739, 40.098802 ], [ -74.964709, 40.097797 ], [ -74.9647, 40.097297 ], [ -74.964687, 40.096197 ], [ -74.964686, 40.095886 ], [ -74.9647, 40.095779 ], [ -74.964743, 40.095624 ], [ -74.964955, 40.095327 ], [ -74.96461, 40.095104 ], [ -74.964214, 40.094822 ], [ -74.963973, 40.094654 ], [ -74.963593, 40.094398 ], [ -74.963129, 40.094083 ], [ -74.962923, 40.093941 ], [ -74.962169, 40.093424 ], [ -74.962519, 40.093219 ], [ -74.96282, 40.093064 ], [ -74.963244, 40.092856 ], [ -74.963675, 40.092659 ], [ -74.964212, 40.092411 ], [ -74.964401, 40.09232 ], [ -74.964608, 40.092227 ], [ -74.964777, 40.092146 ], [ -74.964824, 40.092124 ], [ -74.965176, 40.091947 ], [ -74.965518, 40.091758 ], [ -74.965662, 40.09167 ], [ -74.965699, 40.091646 ], [ -74.965744, 40.091617 ], [ -74.965708, 40.091577 ], [ -74.965674, 40.091538 ], [ -74.9656, 40.091457 ], [ -74.96535, 40.091215 ], [ -74.965245, 40.09112 ], [ -74.965155, 40.091048 ], [ -74.965087, 40.090987 ], [ -74.965027, 40.090925 ], [ -74.964974, 40.090863 ], [ -74.964916, 40.090779 ], [ -74.964901, 40.090758 ], [ -74.964857, 40.090675 ], [ -74.964846, 40.090657 ], [ -74.964805, 40.090545 ], [ -74.964764, 40.090401 ], [ -74.964737, 40.090253 ], [ -74.964726, 40.090105 ], [ -74.96473, 40.089954 ], [ -74.964747, 40.089811 ], [ -74.964779, 40.089694 ], [ -74.964818, 40.089599 ], [ -74.964878, 40.089495 ], [ -74.96495, 40.089394 ], [ -74.965035, 40.089286 ], [ -74.965131, 40.089161 ], [ -74.96528, 40.08896 ], [ -74.965469, 40.088685 ], [ -74.965611, 40.08846 ], [ -74.965682, 40.088325 ], [ -74.965727, 40.088212 ], [ -74.965763, 40.088111 ], [ -74.965795, 40.088007 ], [ -74.965811, 40.087907 ], [ -74.965826, 40.087804 ], [ -74.965837, 40.087683 ], [ -74.96584, 40.087665 ], [ -74.965842, 40.087446 ], [ -74.965831, 40.087227 ], [ -74.965805, 40.08701 ], [ -74.965767, 40.086791 ], [ -74.965715, 40.086575 ], [ -74.965668, 40.086386 ], [ -74.965469, 40.085667 ], [ -74.965446, 40.08556 ], [ -74.965425, 40.08547 ], [ -74.965407, 40.085367 ], [ -74.965398, 40.085274 ], [ -74.965398, 40.085186 ], [ -74.965398, 40.085068 ], [ -74.965408, 40.084951 ], [ -74.965424, 40.084849 ], [ -74.965361, 40.084849 ], [ -74.96529, 40.084844 ], [ -74.964463, 40.084776 ], [ -74.964475, 40.085063 ], [ -74.964481, 40.085327 ], [ -74.964486, 40.085504 ], [ -74.96452, 40.08584 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "309616", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.064517, 40.009026 ], [ -75.064869, 40.008915 ], [ -75.064957, 40.00919 ], [ -75.064053, 40.009432 ], [ -75.064119, 40.00959 ], [ -75.064529, 40.009464 ], [ -75.065126, 40.009275 ], [ -75.065663, 40.009115 ], [ -75.065884, 40.009041 ], [ -75.06602, 40.009003 ], [ -75.06613, 40.008987 ], [ -75.068165, 40.008714 ], [ -75.068418, 40.008691 ], [ -75.068845, 40.008654 ], [ -75.068868, 40.008753 ], [ -75.068897, 40.008838 ], [ -75.068912, 40.008891 ], [ -75.06894, 40.00897 ], [ -75.068976, 40.009084 ], [ -75.06904, 40.009283 ], [ -75.069285, 40.010078 ], [ -75.069324, 40.010221 ], [ -75.069357, 40.010412 ], [ -75.069418, 40.010497 ], [ -75.069448, 40.010595 ], [ -75.069473, 40.010669 ], [ -75.06952, 40.010798 ], [ -75.06966, 40.011171 ], [ -75.069803, 40.011516 ], [ -75.069865, 40.01166 ], [ -75.069929, 40.011834 ], [ -75.069999, 40.012021 ], [ -75.070433, 40.013176 ], [ -75.070881, 40.014347 ], [ -75.070978, 40.014596 ], [ -75.071067, 40.014841 ], [ -75.071227, 40.015277 ], [ -75.071304, 40.015465 ], [ -75.071463, 40.015924 ], [ -75.071655, 40.016428 ], [ -75.071852, 40.016945 ], [ -75.072083, 40.017542 ], [ -75.072181, 40.017812 ], [ -75.072278, 40.018082 ], [ -75.07239, 40.018369 ], [ -75.072502, 40.018643 ], [ -75.072544, 40.01875 ], [ -75.072555, 40.018778 ], [ -75.072592, 40.018848 ], [ -75.072643, 40.018912 ], [ -75.072676, 40.018943 ], [ -75.072785, 40.019043 ], [ -75.072918, 40.019161 ], [ -75.073105, 40.019327 ], [ -75.073148, 40.019366 ], [ -75.073186, 40.019408 ], [ -75.073214, 40.019442 ], [ -75.073376, 40.019639 ], [ -75.073634, 40.019946 ], [ -75.073811, 40.020156 ], [ -75.07386, 40.020213 ], [ -75.07409, 40.020491 ], [ -75.074304, 40.020739 ], [ -75.074432, 40.02089 ], [ -75.07448, 40.020945 ], [ -75.074593, 40.021082 ], [ -75.074691, 40.021198 ], [ -75.074859, 40.021386 ], [ -75.074998, 40.021525 ], [ -75.07533, 40.021837 ], [ -75.075698, 40.022175 ], [ -75.076058, 40.022521 ], [ -75.076836, 40.023246 ], [ -75.07685, 40.023261 ], [ -75.076522, 40.023478 ], [ -75.075993, 40.023835 ], [ -75.075729, 40.024015 ], [ -75.075682, 40.024044 ], [ -75.075644, 40.024066 ], [ -75.075527, 40.024135 ], [ -75.075189, 40.024339 ], [ -75.07421, 40.024927 ], [ -75.0739, 40.025112 ], [ -75.07367, 40.025241 ], [ -75.073563, 40.025293 ], [ -75.073482, 40.02533 ], [ -75.073379, 40.025371 ], [ -75.073849, 40.025788 ], [ -75.074165, 40.026052 ], [ -75.074983, 40.026686 ], [ -75.075205, 40.026877 ], [ -75.075324, 40.026975 ], [ -75.075401, 40.027017 ], [ -75.075454, 40.027038 ], [ -75.075516, 40.027058 ], [ -75.075892, 40.026609 ], [ -75.076195, 40.02625 ], [ -75.076295, 40.026098 ], [ -75.076377, 40.025954 ], [ -75.076405, 40.025897 ], [ -75.07651, 40.025667 ], [ -75.076529, 40.025611 ], [ -75.076555, 40.025507 ], [ -75.076566, 40.025439 ], [ -75.076623, 40.025151 ], [ -75.076657, 40.024997 ], [ -75.076736, 40.024539 ], [ -75.076776, 40.024262 ], [ -75.076794, 40.024107 ], [ -75.076915, 40.023795 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310202", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.403528, 39.98665 ], [ -75.404557, 39.986571 ], [ -75.406258, 39.986447 ], [ -75.407155, 39.986377 ], [ -75.408112, 39.986305 ], [ -75.408701, 39.986266 ], [ -75.410542, 39.986114 ], [ -75.412112, 39.985979 ], [ -75.413424, 39.98587 ], [ -75.41393, 39.985831 ], [ -75.414183, 39.985811 ], [ -75.414813, 39.985758 ], [ -75.414986, 39.985746 ], [ -75.41521, 39.985729 ], [ -75.415388, 39.985713 ], [ -75.415551, 39.985696 ], [ -75.415736, 39.985675 ], [ -75.415917, 39.985647 ], [ -75.416112, 39.98561 ], [ -75.416229, 39.985586 ], [ -75.41644, 39.985527 ], [ -75.416641, 39.985462 ], [ -75.41684, 39.985386 ], [ -75.417035, 39.985301 ], [ -75.41717, 39.985236 ], [ -75.418326, 39.984688 ], [ -75.418444, 39.984629 ], [ -75.421035, 39.983371 ], [ -75.421312, 39.983236 ], [ -75.422523, 39.982642 ], [ -75.423223, 39.982303 ], [ -75.423446, 39.982195 ], [ -75.423827, 39.982009 ], [ -75.424193, 39.981831 ], [ -75.424438, 39.981711 ], [ -75.425063, 39.98141 ], [ -75.424976, 39.981319 ], [ -75.424442, 39.98076 ], [ -75.42412, 39.980456 ], [ -75.423945, 39.980301 ], [ -75.423892, 39.980253 ], [ -75.423048, 39.979651 ], [ -75.422773, 39.979479 ], [ -75.422574, 39.979391 ], [ -75.422387, 39.979324 ], [ -75.422281, 39.979313 ], [ -75.422176, 39.979301 ], [ -75.421865, 39.979296 ], [ -75.421681, 39.979321 ], [ -75.421454, 39.979369 ], [ -75.421022, 39.979549 ], [ -75.420268, 39.979917 ], [ -75.420003, 39.980025 ], [ -75.419791, 39.980075 ], [ -75.419501, 39.980081 ], [ -75.419169, 39.980044 ], [ -75.418934, 39.979963 ], [ -75.418702, 39.979856 ], [ -75.41859, 39.979769 ], [ -75.41841, 39.979552 ], [ -75.418309, 39.979259 ], [ -75.418179, 39.978615 ], [ -75.41808, 39.978047 ], [ -75.418005, 39.977719 ], [ -75.417842, 39.977436 ], [ -75.417744, 39.977329 ], [ -75.417603, 39.977242 ], [ -75.417315, 39.977126 ], [ -75.415951, 39.976779 ], [ -75.415733, 39.976748 ], [ -75.415618, 39.976752 ], [ -75.415543, 39.976765 ], [ -75.415431, 39.976787 ], [ -75.41534, 39.976811 ], [ -75.415242, 39.976849 ], [ -75.415132, 39.976906 ], [ -75.415019, 39.97697 ], [ -75.414896, 39.97705 ], [ -75.414138, 39.977551 ], [ -75.413979, 39.977644 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310205", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.258284, 39.962026 ], [ -75.258969, 39.961928 ], [ -75.259029, 39.961819 ], [ -75.259126, 39.961827 ], [ -75.259928, 39.961882 ], [ -75.260103, 39.961895 ], [ -75.260198, 39.961903 ], [ -75.260939, 39.961971 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.403528, 39.98665 ], [ -75.404557, 39.986571 ], [ -75.406258, 39.986447 ], [ -75.407155, 39.986377 ], [ -75.408112, 39.986305 ], [ -75.408701, 39.986266 ], [ -75.410542, 39.986114 ], [ -75.412112, 39.985979 ], [ -75.413424, 39.98587 ], [ -75.41393, 39.985831 ], [ -75.414183, 39.985811 ], [ -75.414813, 39.985758 ], [ -75.414986, 39.985746 ], [ -75.41521, 39.985729 ], [ -75.415388, 39.985713 ], [ -75.415551, 39.985696 ], [ -75.415736, 39.985675 ], [ -75.415917, 39.985647 ], [ -75.416112, 39.98561 ], [ -75.416229, 39.985586 ], [ -75.41644, 39.985527 ], [ -75.416641, 39.985462 ], [ -75.41684, 39.985386 ], [ -75.417035, 39.985301 ], [ -75.41717, 39.985236 ], [ -75.418326, 39.984688 ], [ -75.418444, 39.984629 ], [ -75.421035, 39.983371 ], [ -75.421312, 39.983236 ], [ -75.422523, 39.982642 ], [ -75.423223, 39.982303 ], [ -75.423446, 39.982195 ], [ -75.423827, 39.982009 ], [ -75.424193, 39.981831 ], [ -75.424438, 39.981711 ], [ -75.425063, 39.98141 ], [ -75.425241, 39.98132 ], [ -75.426015, 39.980934 ], [ -75.426302, 39.980793 ], [ -75.426766, 39.980568 ], [ -75.427927, 39.980017 ], [ -75.428116, 39.979927 ], [ -75.428435, 39.979783 ], [ -75.428884, 39.9796 ], [ -75.430002, 39.979147 ], [ -75.430703, 39.978863 ], [ -75.430881, 39.978791 ], [ -75.43144, 39.978573 ], [ -75.431934, 39.978381 ], [ -75.432791, 39.978027 ], [ -75.433424, 39.97777 ], [ -75.433447, 39.977761 ], [ -75.434568, 39.977303 ], [ -75.434708, 39.977246 ], [ -75.434817, 39.977202 ], [ -75.43507, 39.977108 ], [ -75.435274, 39.977019 ], [ -75.435445, 39.976946 ], [ -75.436523, 39.976509 ], [ -75.436848, 39.976378 ], [ -75.437049, 39.976296 ], [ -75.43717, 39.976245 ], [ -75.437446, 39.976136 ], [ -75.437606, 39.976354 ], [ -75.437743, 39.976549 ], [ -75.437835, 39.976678 ], [ -75.437895, 39.976777 ], [ -75.437949, 39.976876 ], [ -75.437986, 39.976957 ], [ -75.438024, 39.97705 ], [ -75.438064, 39.97716 ], [ -75.438101, 39.977272 ], [ -75.438132, 39.977377 ], [ -75.438166, 39.977492 ], [ -75.438206, 39.977613 ], [ -75.438248, 39.977696 ], [ -75.438304, 39.97777 ], [ -75.438353, 39.977813 ], [ -75.438416, 39.977852 ], [ -75.43849, 39.977889 ], [ -75.438557, 39.977914 ], [ -75.43862, 39.977927 ], [ -75.438712, 39.977937 ], [ -75.438791, 39.977934 ], [ -75.438872, 39.97792 ], [ -75.438952, 39.977897 ], [ -75.43902, 39.977869 ], [ -75.439152, 39.977809 ], [ -75.439669, 39.977571 ], [ -75.440358, 39.97726 ], [ -75.440429, 39.977255 ], [ -75.440574, 39.977216 ], [ -75.441195, 39.976927 ], [ -75.441419, 39.976762 ], [ -75.441308, 39.976621 ], [ -75.441191, 39.976469 ], [ -75.44109, 39.976316 ], [ -75.441023, 39.976192 ], [ -75.440981, 39.976081 ], [ -75.440953, 39.975953 ], [ -75.440925, 39.975778 ], [ -75.440818, 39.975201 ], [ -75.441161, 39.975165 ], [ -75.441467, 39.975139 ], [ -75.441834, 39.975116 ], [ -75.442211, 39.975097 ], [ -75.44294, 39.975065 ], [ -75.444597, 39.974986 ], [ -75.445475, 39.974951 ], [ -75.446072, 39.974917 ], [ -75.446542, 39.974897 ], [ -75.447001, 39.974878 ], [ -75.447904, 39.974843 ], [ -75.448383, 39.974819 ], [ -75.448608, 39.974809 ], [ -75.448978, 39.974795 ], [ -75.449395, 39.97477 ], [ -75.449531, 39.974762 ], [ -75.450105, 39.974725 ], [ -75.450294, 39.974709 ], [ -75.450802, 39.974647 ], [ -75.451104, 39.97461 ], [ -75.451552, 39.974519 ], [ -75.451797, 39.974478 ], [ -75.451985, 39.974447 ], [ -75.452249, 39.974402 ], [ -75.452323, 39.97439 ], [ -75.452995, 39.974277 ], [ -75.453532, 39.974185 ], [ -75.453758, 39.974148 ], [ -75.453977, 39.974112 ], [ -75.45479, 39.973983 ], [ -75.456332, 39.973707 ], [ -75.457616, 39.973478 ], [ -75.458319, 39.97336 ], [ -75.45886, 39.973268 ], [ -75.459555, 39.973154 ], [ -75.46063, 39.972978 ], [ -75.461075, 39.972913 ], [ -75.461418, 39.972851 ], [ -75.46146, 39.972846 ], [ -75.461845, 39.972767 ], [ -75.462161, 39.972695 ], [ -75.462245, 39.972677 ], [ -75.462707, 39.97257 ], [ -75.46304, 39.972484 ], [ -75.463274, 39.97242 ], [ -75.463507, 39.972355 ], [ -75.4637, 39.9723 ], [ -75.463918, 39.972238 ], [ -75.464113, 39.972183 ], [ -75.464264, 39.972138 ], [ -75.464488, 39.972071 ], [ -75.46467, 39.972017 ], [ -75.465361, 39.971807 ], [ -75.465865, 39.971657 ], [ -75.466094, 39.971585 ], [ -75.466272, 39.971534 ], [ -75.466388, 39.9715 ], [ -75.466534, 39.971463 ], [ -75.466707, 39.971416 ], [ -75.466861, 39.971381 ], [ -75.467069, 39.971332 ], [ -75.467429, 39.97125 ], [ -75.467728, 39.971197 ], [ -75.468116, 39.971131 ], [ -75.470235, 39.970791 ], [ -75.470914, 39.97067 ], [ -75.471052, 39.970641 ], [ -75.47117, 39.970617 ], [ -75.471286, 39.970588 ], [ -75.47146, 39.970546 ], [ -75.471633, 39.970506 ], [ -75.471786, 39.970465 ], [ -75.471933, 39.970427 ], [ -75.472082, 39.970386 ], [ -75.47225, 39.970335 ], [ -75.472394, 39.970292 ], [ -75.472554, 39.970241 ], [ -75.472702, 39.970197 ], [ -75.472828, 39.970157 ], [ -75.472978, 39.970103 ], [ -75.473255, 39.970006 ], [ -75.473829, 39.969809 ], [ -75.474005, 39.969748 ], [ -75.474125, 39.969707 ], [ -75.474217, 39.969676 ], [ -75.474468, 39.969592 ], [ -75.474689, 39.969519 ], [ -75.474888, 39.969452 ], [ -75.475888, 39.969118 ], [ -75.477231, 39.968664 ], [ -75.478573, 39.968205 ], [ -75.479227, 39.967974 ], [ -75.479912, 39.967742 ], [ -75.48055, 39.967531 ], [ -75.481259, 39.967296 ], [ -75.481909, 39.967085 ], [ -75.482745, 39.966809 ], [ -75.482835, 39.96678 ], [ -75.483027, 39.966716 ], [ -75.483857, 39.966439 ], [ -75.484684, 39.966156 ], [ -75.485507, 39.965869 ], [ -75.485891, 39.965737 ], [ -75.486143, 39.965649 ], [ -75.486511, 39.965531 ], [ -75.486824, 39.965435 ], [ -75.487234, 39.965325 ], [ -75.4876, 39.96524 ], [ -75.487904, 39.965181 ], [ -75.488126, 39.965143 ], [ -75.488258, 39.965122 ], [ -75.488562, 39.965086 ], [ -75.488723, 39.965064 ], [ -75.488946, 39.965041 ], [ -75.489376, 39.965005 ], [ -75.48952, 39.964997 ], [ -75.489785, 39.964985 ], [ -75.489958, 39.964977 ], [ -75.490309, 39.964967 ], [ -75.491145, 39.964932 ], [ -75.491886, 39.964901 ], [ -75.492504, 39.964884 ], [ -75.492866, 39.964875 ], [ -75.494118, 39.964846 ], [ -75.494537, 39.964844 ], [ -75.494684, 39.964847 ], [ -75.49488, 39.964853 ], [ -75.495393, 39.964877 ], [ -75.495618, 39.964884 ], [ -75.496369, 39.964918 ], [ -75.496706, 39.964934 ], [ -75.496853, 39.964942 ], [ -75.498635, 39.965014 ], [ -75.49887, 39.965023 ], [ -75.499653, 39.965055 ], [ -75.500108, 39.965078 ], [ -75.500693, 39.965102 ], [ -75.501215, 39.965123 ], [ -75.501607, 39.965142 ], [ -75.502082, 39.965163 ], [ -75.502616, 39.965188 ], [ -75.503244, 39.965213 ], [ -75.503506, 39.965225 ], [ -75.503734, 39.965238 ], [ -75.503988, 39.96525 ], [ -75.504273, 39.965269 ], [ -75.504556, 39.965287 ], [ -75.505239, 39.965334 ], [ -75.505904, 39.965385 ], [ -75.506129, 39.965402 ], [ -75.506592, 39.965438 ], [ -75.506703, 39.965446 ], [ -75.507308, 39.965491 ], [ -75.508222, 39.965554 ], [ -75.508404, 39.965571 ], [ -75.508757, 39.965593 ], [ -75.508873, 39.965598 ], [ -75.510497, 39.965708 ], [ -75.510751, 39.965726 ], [ -75.511001, 39.965745 ], [ -75.511181, 39.965753 ], [ -75.512463, 39.965836 ], [ -75.513089, 39.965877 ], [ -75.513787, 39.965923 ], [ -75.514799, 39.965999 ], [ -75.516144, 39.966086 ], [ -75.516678, 39.966136 ], [ -75.517369, 39.966189 ], [ -75.518836, 39.966288 ], [ -75.519476, 39.966332 ], [ -75.519949, 39.966364 ], [ -75.520498, 39.966404 ], [ -75.520881, 39.966438 ], [ -75.521493, 39.966494 ], [ -75.521605, 39.966504 ], [ -75.521614, 39.966505 ], [ -75.522277, 39.966546 ], [ -75.523052, 39.966592 ], [ -75.523642, 39.966636 ], [ -75.524324, 39.966679 ], [ -75.524644, 39.966701 ], [ -75.525112, 39.966733 ], [ -75.525633, 39.966766 ], [ -75.526411, 39.966816 ], [ -75.526845, 39.966834 ], [ -75.526881, 39.966834 ], [ -75.527101, 39.966836 ], [ -75.527382, 39.966834 ], [ -75.527819, 39.966823 ], [ -75.528257, 39.966799 ], [ -75.528564, 39.966774 ], [ -75.528744, 39.96676 ], [ -75.529519, 39.966699 ], [ -75.530085, 39.966665 ], [ -75.530684, 39.966628 ], [ -75.531236, 39.966594 ], [ -75.533537, 39.966417 ], [ -75.533756, 39.966401 ], [ -75.534359, 39.966355 ], [ -75.534453, 39.966348 ], [ -75.535755, 39.966237 ], [ -75.536408, 39.966187 ], [ -75.536615, 39.96617 ], [ -75.537758, 39.966091 ], [ -75.538467, 39.966044 ], [ -75.540315, 39.965902 ], [ -75.54086, 39.965863 ], [ -75.541405, 39.965827 ], [ -75.542302, 39.965768 ], [ -75.54272, 39.96574 ], [ -75.542927, 39.965727 ], [ -75.543979, 39.965658 ], [ -75.54419, 39.96565 ], [ -75.544419, 39.965639 ], [ -75.544516, 39.965639 ], [ -75.544583, 39.965641 ], [ -75.544716, 39.965646 ], [ -75.544865, 39.965644 ], [ -75.545, 39.965649 ], [ -75.545124, 39.965651 ], [ -75.545261, 39.965657 ], [ -75.545407, 39.965667 ], [ -75.545532, 39.965681 ], [ -75.545673, 39.965699 ], [ -75.545842, 39.965724 ], [ -75.546061, 39.965753 ], [ -75.546088, 39.965756 ], [ -75.54627, 39.965787 ], [ -75.546413, 39.965816 ], [ -75.5466, 39.965849 ], [ -75.547697, 39.966107 ], [ -75.547733, 39.966114 ], [ -75.54838, 39.966272 ], [ -75.549168, 39.966453 ], [ -75.549792, 39.966597 ], [ -75.550069, 39.96666 ], [ -75.551116, 39.966906 ], [ -75.553167, 39.967369 ], [ -75.55352, 39.96745 ], [ -75.553698, 39.967486 ], [ -75.554091, 39.967568 ], [ -75.554518, 39.967675 ], [ -75.555251, 39.967839 ], [ -75.555981, 39.968005 ], [ -75.557693, 39.968392 ], [ -75.55816, 39.968498 ], [ -75.558533, 39.968582 ], [ -75.560811, 39.969086 ], [ -75.561539, 39.969246 ], [ -75.562435, 39.969451 ], [ -75.562628, 39.969489 ], [ -75.563223, 39.969607 ], [ -75.563347, 39.969628 ], [ -75.563696, 39.969685 ], [ -75.564054, 39.969727 ], [ -75.564528, 39.969767 ], [ -75.56497, 39.969787 ], [ -75.565193, 39.969797 ], [ -75.565535, 39.969789 ], [ -75.565817, 39.969778 ], [ -75.566073, 39.969761 ], [ -75.56631, 39.969747 ], [ -75.566575, 39.969721 ], [ -75.566811, 39.969695 ], [ -75.566911, 39.96968 ], [ -75.567072, 39.969657 ], [ -75.567343, 39.969609 ], [ -75.567616, 39.969563 ], [ -75.567681, 39.969553 ], [ -75.568064, 39.969493 ], [ -75.568956, 39.969361 ], [ -75.569657, 39.96926 ], [ -75.571356, 39.969013 ], [ -75.572378, 39.968862 ], [ -75.57248, 39.968846 ], [ -75.572586, 39.96883 ], [ -75.5733, 39.96872 ], [ -75.573593, 39.968675 ], [ -75.574047, 39.968606 ], [ -75.574542, 39.96853 ], [ -75.574709, 39.968504 ], [ -75.574909, 39.968474 ], [ -75.575899, 39.968323 ], [ -75.576951, 39.968165 ], [ -75.577266, 39.968118 ], [ -75.577808, 39.968037 ], [ -75.577882, 39.968026 ], [ -75.578231, 39.967976 ], [ -75.578427, 39.967942 ], [ -75.578521, 39.967929 ], [ -75.578637, 39.967912 ], [ -75.578816, 39.967886 ], [ -75.57898, 39.967867 ], [ -75.579067, 39.967855 ], [ -75.579162, 39.967842 ], [ -75.57954, 39.967791 ], [ -75.579617, 39.967777 ], [ -75.579832, 39.967802 ], [ -75.579968, 39.967799 ], [ -75.580052, 39.967808 ], [ -75.580131, 39.967828 ], [ -75.580212, 39.967861 ], [ -75.580289, 39.967909 ], [ -75.58037, 39.967974 ], [ -75.580456, 39.968064 ], [ -75.580539, 39.968168 ], [ -75.580558, 39.968195 ], [ -75.580643, 39.968277 ], [ -75.580683, 39.96832 ], [ -75.580722, 39.968362 ], [ -75.580751, 39.96839 ], [ -75.580805, 39.96843 ], [ -75.580878, 39.96848 ], [ -75.581002, 39.968548 ], [ -75.581263, 39.968671 ], [ -75.581612, 39.968845 ], [ -75.581801, 39.968945 ], [ -75.581876, 39.96899 ], [ -75.581985, 39.969071 ], [ -75.582077, 39.969151 ], [ -75.582158, 39.969243 ], [ -75.582227, 39.969347 ], [ -75.582285, 39.969471 ], [ -75.582363, 39.969664 ], [ -75.582473, 39.969947 ], [ -75.582522, 39.970068 ], [ -75.582611, 39.970272 ], [ -75.582743, 39.970476 ], [ -75.582867, 39.970833 ], [ -75.582898, 39.97092 ], [ -75.582912, 39.970963 ], [ -75.582938, 39.971025 ], [ -75.582978, 39.971134 ], [ -75.583084, 39.971439 ], [ -75.583112, 39.971685 ], [ -75.583137, 39.97179 ], [ -75.583152, 39.971903 ], [ -75.58315, 39.971973 ], [ -75.583141, 39.972018 ], [ -75.583131, 39.972048 ], [ -75.583103, 39.972113 ], [ -75.58306, 39.972173 ], [ -75.583002, 39.972225 ], [ -75.582937, 39.972271 ], [ -75.58286, 39.972305 ], [ -75.582773, 39.972335 ], [ -75.582683, 39.972353 ], [ -75.582589, 39.972359 ], [ -75.582494, 39.972353 ], [ -75.5824, 39.972336 ], [ -75.582312, 39.972305 ], [ -75.582246, 39.972269 ], [ -75.582162, 39.972207 ], [ -75.582096, 39.972153 ], [ -75.582042, 39.972094 ], [ -75.581994, 39.972035 ], [ -75.581963, 39.971976 ], [ -75.581948, 39.971919 ], [ -75.581949, 39.971865 ], [ -75.581966, 39.971815 ], [ -75.581997, 39.97177 ], [ -75.582022, 39.971745 ], [ -75.58209, 39.971682 ], [ -75.582461, 39.971452 ], [ -75.582904, 39.971179 ], [ -75.582978, 39.971134 ], [ -75.583023, 39.971109 ], [ -75.58307, 39.971081 ], [ -75.583107, 39.971053 ], [ -75.583407, 39.970867 ], [ -75.583624, 39.970741 ], [ -75.583739, 39.970673 ], [ -75.584032, 39.970496 ], [ -75.584103, 39.970451 ], [ -75.584516, 39.970196 ], [ -75.584668, 39.970103 ], [ -75.585284, 39.969727 ], [ -75.585495, 39.969597 ], [ -75.585671, 39.969488 ], [ -75.585887, 39.969356 ], [ -75.586311, 39.969103 ], [ -75.586579, 39.96895 ], [ -75.586841, 39.968809 ], [ -75.587038, 39.968703 ], [ -75.587059, 39.968693 ], [ -75.587195, 39.968624 ], [ -75.587242, 39.968603 ], [ -75.587428, 39.96852 ], [ -75.587679, 39.96841 ], [ -75.588268, 39.968157 ], [ -75.588451, 39.968075 ], [ -75.589184, 39.967745 ], [ -75.589404, 39.967649 ], [ -75.589671, 39.967521 ], [ -75.589978, 39.967376 ], [ -75.590293, 39.967226 ], [ -75.590563, 39.967099 ], [ -75.59116, 39.966828 ], [ -75.591453, 39.966694 ], [ -75.591738, 39.966569 ], [ -75.592162, 39.96638 ], [ -75.592339, 39.966299 ], [ -75.592525, 39.966212 ], [ -75.593066, 39.965944 ], [ -75.594088, 39.965469 ], [ -75.594504, 39.965284 ], [ -75.595344, 39.964912 ], [ -75.595613, 39.964794 ], [ -75.596666, 39.964327 ], [ -75.597918, 39.963766 ], [ -75.598579, 39.963466 ], [ -75.599113, 39.963224 ], [ -75.600044, 39.9628 ], [ -75.60042, 39.962627 ], [ -75.600876, 39.962424 ], [ -75.601311, 39.962227 ], [ -75.601695, 39.96206 ], [ -75.602103, 39.961884 ], [ -75.602282, 39.961793 ], [ -75.602419, 39.961714 ], [ -75.602809, 39.962202 ], [ -75.602963, 39.962381 ], [ -75.603214, 39.962677 ], [ -75.603499, 39.962551 ], [ -75.604768, 39.962024 ], [ -75.605035, 39.961912 ], [ -75.6055, 39.961695 ], [ -75.605548, 39.961642 ], [ -75.605603, 39.961594 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.604304, 39.959604 ], [ -75.604232, 39.959537 ], [ -75.604137, 39.959452 ], [ -75.603472, 39.958805 ], [ -75.603177, 39.958489 ], [ -75.602751, 39.958082 ], [ -75.602276, 39.95764 ], [ -75.601914, 39.957298 ], [ -75.60131, 39.956752 ], [ -75.601193, 39.956648 ], [ -75.600991, 39.956467 ], [ -75.600267, 39.955799 ], [ -75.599814, 39.955394 ], [ -75.599333, 39.954966 ], [ -75.599414, 39.954917 ], [ -75.599476, 39.954883 ], [ -75.599879, 39.954686 ], [ -75.601276, 39.954073 ], [ -75.600626, 39.953321 ], [ -75.600111, 39.952737 ], [ -75.599948, 39.952549 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310207", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.403528, 39.98665 ], [ -75.404557, 39.986571 ], [ -75.406258, 39.986447 ], [ -75.407155, 39.986377 ], [ -75.408112, 39.986305 ], [ -75.408701, 39.986266 ], [ -75.410542, 39.986114 ], [ -75.412112, 39.985979 ], [ -75.413424, 39.98587 ], [ -75.41393, 39.985831 ], [ -75.414183, 39.985811 ], [ -75.414813, 39.985758 ], [ -75.414986, 39.985746 ], [ -75.41521, 39.985729 ], [ -75.415388, 39.985713 ], [ -75.415551, 39.985696 ], [ -75.415736, 39.985675 ], [ -75.415917, 39.985647 ], [ -75.416112, 39.98561 ], [ -75.416229, 39.985586 ], [ -75.41644, 39.985527 ], [ -75.416641, 39.985462 ], [ -75.41684, 39.985386 ], [ -75.417035, 39.985301 ], [ -75.41717, 39.985236 ], [ -75.418326, 39.984688 ], [ -75.418444, 39.984629 ], [ -75.421035, 39.983371 ], [ -75.421312, 39.983236 ], [ -75.422523, 39.982642 ], [ -75.423223, 39.982303 ], [ -75.423446, 39.982195 ], [ -75.423827, 39.982009 ], [ -75.424193, 39.981831 ], [ -75.424438, 39.981711 ], [ -75.425063, 39.98141 ], [ -75.425241, 39.98132 ], [ -75.426015, 39.980934 ], [ -75.426302, 39.980793 ], [ -75.426766, 39.980568 ], [ -75.427927, 39.980017 ], [ -75.428116, 39.979927 ], [ -75.428435, 39.979783 ], [ -75.428884, 39.9796 ], [ -75.430002, 39.979147 ], [ -75.430703, 39.978863 ], [ -75.430881, 39.978791 ], [ -75.43144, 39.978573 ], [ -75.431934, 39.978381 ], [ -75.432791, 39.978027 ], [ -75.433424, 39.97777 ], [ -75.433447, 39.977761 ], [ -75.434568, 39.977303 ], [ -75.434708, 39.977246 ], [ -75.434817, 39.977202 ], [ -75.43507, 39.977108 ], [ -75.435274, 39.977019 ], [ -75.435445, 39.976946 ], [ -75.436523, 39.976509 ], [ -75.436848, 39.976378 ], [ -75.437049, 39.976296 ], [ -75.43717, 39.976245 ], [ -75.437446, 39.976136 ], [ -75.437606, 39.976354 ], [ -75.437743, 39.976549 ], [ -75.437835, 39.976678 ], [ -75.437895, 39.976777 ], [ -75.437949, 39.976876 ], [ -75.437986, 39.976957 ], [ -75.438024, 39.97705 ], [ -75.438064, 39.97716 ], [ -75.438101, 39.977272 ], [ -75.438132, 39.977377 ], [ -75.438166, 39.977492 ], [ -75.438206, 39.977613 ], [ -75.438248, 39.977696 ], [ -75.438304, 39.97777 ], [ -75.438353, 39.977813 ], [ -75.438416, 39.977852 ], [ -75.43849, 39.977889 ], [ -75.438557, 39.977914 ], [ -75.43862, 39.977927 ], [ -75.438712, 39.977937 ], [ -75.438791, 39.977934 ], [ -75.438872, 39.97792 ], [ -75.438952, 39.977897 ], [ -75.43902, 39.977869 ], [ -75.439152, 39.977809 ], [ -75.439669, 39.977571 ], [ -75.440358, 39.97726 ], [ -75.440429, 39.977255 ], [ -75.440574, 39.977216 ], [ -75.441195, 39.976927 ], [ -75.441419, 39.976762 ], [ -75.441308, 39.976621 ], [ -75.441191, 39.976469 ], [ -75.44109, 39.976316 ], [ -75.441023, 39.976192 ], [ -75.440981, 39.976081 ], [ -75.440953, 39.975953 ], [ -75.440925, 39.975778 ], [ -75.440818, 39.975201 ], [ -75.441161, 39.975165 ], [ -75.441467, 39.975139 ], [ -75.441834, 39.975116 ], [ -75.442211, 39.975097 ], [ -75.44294, 39.975065 ], [ -75.444597, 39.974986 ], [ -75.445475, 39.974951 ], [ -75.446072, 39.974917 ], [ -75.446542, 39.974897 ], [ -75.447001, 39.974878 ], [ -75.447904, 39.974843 ], [ -75.448383, 39.974819 ], [ -75.448608, 39.974809 ], [ -75.448978, 39.974795 ], [ -75.449395, 39.97477 ], [ -75.449531, 39.974762 ], [ -75.450105, 39.974725 ], [ -75.450294, 39.974709 ], [ -75.450802, 39.974647 ], [ -75.451104, 39.97461 ], [ -75.451552, 39.974519 ], [ -75.451797, 39.974478 ], [ -75.451985, 39.974447 ], [ -75.452249, 39.974402 ], [ -75.452323, 39.97439 ], [ -75.452995, 39.974277 ], [ -75.453532, 39.974185 ], [ -75.453758, 39.974148 ], [ -75.453977, 39.974112 ], [ -75.45479, 39.973983 ], [ -75.456332, 39.973707 ], [ -75.457616, 39.973478 ], [ -75.458319, 39.97336 ], [ -75.45886, 39.973268 ], [ -75.459555, 39.973154 ], [ -75.46063, 39.972978 ], [ -75.461075, 39.972913 ], [ -75.461418, 39.972851 ], [ -75.46146, 39.972846 ], [ -75.461845, 39.972767 ], [ -75.462161, 39.972695 ], [ -75.462245, 39.972677 ], [ -75.462707, 39.97257 ], [ -75.46304, 39.972484 ], [ -75.463274, 39.97242 ], [ -75.463507, 39.972355 ], [ -75.4637, 39.9723 ], [ -75.463918, 39.972238 ], [ -75.464113, 39.972183 ], [ -75.464264, 39.972138 ], [ -75.464488, 39.972071 ], [ -75.46467, 39.972017 ], [ -75.465361, 39.971807 ], [ -75.465865, 39.971657 ], [ -75.466094, 39.971585 ], [ -75.466272, 39.971534 ], [ -75.466388, 39.9715 ], [ -75.466534, 39.971463 ], [ -75.466707, 39.971416 ], [ -75.466861, 39.971381 ], [ -75.467069, 39.971332 ], [ -75.467429, 39.97125 ], [ -75.467728, 39.971197 ], [ -75.468116, 39.971131 ], [ -75.470235, 39.970791 ], [ -75.470914, 39.97067 ], [ -75.471052, 39.970641 ], [ -75.47117, 39.970617 ], [ -75.471286, 39.970588 ], [ -75.47146, 39.970546 ], [ -75.471633, 39.970506 ], [ -75.471786, 39.970465 ], [ -75.471933, 39.970427 ], [ -75.472082, 39.970386 ], [ -75.47225, 39.970335 ], [ -75.472394, 39.970292 ], [ -75.472554, 39.970241 ], [ -75.472702, 39.970197 ], [ -75.472828, 39.970157 ], [ -75.472978, 39.970103 ], [ -75.473255, 39.970006 ], [ -75.473829, 39.969809 ], [ -75.474005, 39.969748 ], [ -75.474125, 39.969707 ], [ -75.474217, 39.969676 ], [ -75.474468, 39.969592 ], [ -75.474689, 39.969519 ], [ -75.474888, 39.969452 ], [ -75.475888, 39.969118 ], [ -75.477231, 39.968664 ], [ -75.478573, 39.968205 ], [ -75.479227, 39.967974 ], [ -75.479912, 39.967742 ], [ -75.48055, 39.967531 ], [ -75.481259, 39.967296 ], [ -75.481909, 39.967085 ], [ -75.482745, 39.966809 ], [ -75.482835, 39.96678 ], [ -75.483027, 39.966716 ], [ -75.483857, 39.966439 ], [ -75.484684, 39.966156 ], [ -75.485507, 39.965869 ], [ -75.485891, 39.965737 ], [ -75.486143, 39.965649 ], [ -75.486511, 39.965531 ], [ -75.486824, 39.965435 ], [ -75.487234, 39.965325 ], [ -75.4876, 39.96524 ], [ -75.487904, 39.965181 ], [ -75.488126, 39.965143 ], [ -75.488258, 39.965122 ], [ -75.488562, 39.965086 ], [ -75.488723, 39.965064 ], [ -75.488946, 39.965041 ], [ -75.489376, 39.965005 ], [ -75.48952, 39.964997 ], [ -75.489785, 39.964985 ], [ -75.489958, 39.964977 ], [ -75.490309, 39.964967 ], [ -75.491145, 39.964932 ], [ -75.491886, 39.964901 ], [ -75.492504, 39.964884 ], [ -75.492866, 39.964875 ], [ -75.494118, 39.964846 ], [ -75.494537, 39.964844 ], [ -75.494684, 39.964847 ], [ -75.49488, 39.964853 ], [ -75.495393, 39.964877 ], [ -75.495618, 39.964884 ], [ -75.496369, 39.964918 ], [ -75.496706, 39.964934 ], [ -75.496853, 39.964942 ], [ -75.498635, 39.965014 ], [ -75.49887, 39.965023 ], [ -75.499653, 39.965055 ], [ -75.500108, 39.965078 ], [ -75.500693, 39.965102 ], [ -75.501215, 39.965123 ], [ -75.501607, 39.965142 ], [ -75.502082, 39.965163 ], [ -75.502616, 39.965188 ], [ -75.503244, 39.965213 ], [ -75.503506, 39.965225 ], [ -75.503734, 39.965238 ], [ -75.503988, 39.96525 ], [ -75.504273, 39.965269 ], [ -75.504556, 39.965287 ], [ -75.505239, 39.965334 ], [ -75.505904, 39.965385 ], [ -75.506129, 39.965402 ], [ -75.506592, 39.965438 ], [ -75.506703, 39.965446 ], [ -75.507308, 39.965491 ], [ -75.508222, 39.965554 ], [ -75.508404, 39.965571 ], [ -75.508757, 39.965593 ], [ -75.508873, 39.965598 ], [ -75.510497, 39.965708 ], [ -75.510751, 39.965726 ], [ -75.511001, 39.965745 ], [ -75.511181, 39.965753 ], [ -75.512463, 39.965836 ], [ -75.513089, 39.965877 ], [ -75.513787, 39.965923 ], [ -75.514799, 39.965999 ], [ -75.516144, 39.966086 ], [ -75.516678, 39.966136 ], [ -75.517369, 39.966189 ], [ -75.518836, 39.966288 ], [ -75.519476, 39.966332 ], [ -75.519949, 39.966364 ], [ -75.520498, 39.966404 ], [ -75.520881, 39.966438 ], [ -75.521493, 39.966494 ], [ -75.521605, 39.966504 ], [ -75.521614, 39.966505 ], [ -75.522277, 39.966546 ], [ -75.523052, 39.966592 ], [ -75.523642, 39.966636 ], [ -75.524324, 39.966679 ], [ -75.524644, 39.966701 ], [ -75.525112, 39.966733 ], [ -75.525633, 39.966766 ], [ -75.526411, 39.966816 ], [ -75.526845, 39.966834 ], [ -75.526881, 39.966834 ], [ -75.527101, 39.966836 ], [ -75.527382, 39.966834 ], [ -75.527819, 39.966823 ], [ -75.528257, 39.966799 ], [ -75.528564, 39.966774 ], [ -75.528744, 39.96676 ], [ -75.529519, 39.966699 ], [ -75.530085, 39.966665 ], [ -75.530684, 39.966628 ], [ -75.531236, 39.966594 ], [ -75.533537, 39.966417 ], [ -75.533756, 39.966401 ], [ -75.534359, 39.966355 ], [ -75.534453, 39.966348 ], [ -75.535755, 39.966237 ], [ -75.536408, 39.966187 ], [ -75.536615, 39.96617 ], [ -75.537758, 39.966091 ], [ -75.538467, 39.966044 ], [ -75.540315, 39.965902 ], [ -75.54086, 39.965863 ], [ -75.541405, 39.965827 ], [ -75.542302, 39.965768 ], [ -75.54272, 39.96574 ], [ -75.542927, 39.965727 ], [ -75.543979, 39.965658 ], [ -75.54419, 39.96565 ], [ -75.544419, 39.965639 ], [ -75.544516, 39.965639 ], [ -75.544583, 39.965641 ], [ -75.544716, 39.965646 ], [ -75.544865, 39.965644 ], [ -75.545, 39.965649 ], [ -75.545124, 39.965651 ], [ -75.545261, 39.965657 ], [ -75.545407, 39.965667 ], [ -75.545532, 39.965681 ], [ -75.545673, 39.965699 ], [ -75.545842, 39.965724 ], [ -75.546061, 39.965753 ], [ -75.546088, 39.965756 ], [ -75.54627, 39.965787 ], [ -75.546413, 39.965816 ], [ -75.5466, 39.965849 ], [ -75.547697, 39.966107 ], [ -75.547733, 39.966114 ], [ -75.54838, 39.966272 ], [ -75.549168, 39.966453 ], [ -75.549792, 39.966597 ], [ -75.550069, 39.96666 ], [ -75.551116, 39.966906 ], [ -75.553167, 39.967369 ], [ -75.55352, 39.96745 ], [ -75.553698, 39.967486 ], [ -75.554091, 39.967568 ], [ -75.554518, 39.967675 ], [ -75.555251, 39.967839 ], [ -75.555981, 39.968005 ], [ -75.557693, 39.968392 ], [ -75.55816, 39.968498 ], [ -75.558533, 39.968582 ], [ -75.560811, 39.969086 ], [ -75.561539, 39.969246 ], [ -75.562435, 39.969451 ], [ -75.562628, 39.969489 ], [ -75.563223, 39.969607 ], [ -75.563347, 39.969628 ], [ -75.563696, 39.969685 ], [ -75.564054, 39.969727 ], [ -75.564528, 39.969767 ], [ -75.56497, 39.969787 ], [ -75.565193, 39.969797 ], [ -75.565535, 39.969789 ], [ -75.565817, 39.969778 ], [ -75.566073, 39.969761 ], [ -75.56631, 39.969747 ], [ -75.566575, 39.969721 ], [ -75.566811, 39.969695 ], [ -75.566911, 39.96968 ], [ -75.567072, 39.969657 ], [ -75.567343, 39.969609 ], [ -75.567616, 39.969563 ], [ -75.567681, 39.969553 ], [ -75.568064, 39.969493 ], [ -75.568956, 39.969361 ], [ -75.569657, 39.96926 ], [ -75.571356, 39.969013 ], [ -75.572378, 39.968862 ], [ -75.57248, 39.968846 ], [ -75.572586, 39.96883 ], [ -75.5733, 39.96872 ], [ -75.573593, 39.968675 ], [ -75.574047, 39.968606 ], [ -75.574542, 39.96853 ], [ -75.574709, 39.968504 ], [ -75.574909, 39.968474 ], [ -75.575899, 39.968323 ], [ -75.576951, 39.968165 ], [ -75.577266, 39.968118 ], [ -75.577808, 39.968037 ], [ -75.577882, 39.968026 ], [ -75.578231, 39.967976 ], [ -75.578427, 39.967942 ], [ -75.578521, 39.967929 ], [ -75.578637, 39.967912 ], [ -75.578816, 39.967886 ], [ -75.57898, 39.967867 ], [ -75.579067, 39.967855 ], [ -75.579162, 39.967842 ], [ -75.57954, 39.967791 ], [ -75.579617, 39.967777 ], [ -75.579832, 39.967802 ], [ -75.579968, 39.967799 ], [ -75.580052, 39.967808 ], [ -75.580131, 39.967828 ], [ -75.580212, 39.967861 ], [ -75.580289, 39.967909 ], [ -75.58037, 39.967974 ], [ -75.580456, 39.968064 ], [ -75.580539, 39.968168 ], [ -75.580558, 39.968195 ], [ -75.580643, 39.968277 ], [ -75.580683, 39.96832 ], [ -75.580722, 39.968362 ], [ -75.580751, 39.96839 ], [ -75.580805, 39.96843 ], [ -75.580878, 39.96848 ], [ -75.581002, 39.968548 ], [ -75.581263, 39.968671 ], [ -75.581612, 39.968845 ], [ -75.581801, 39.968945 ], [ -75.581876, 39.96899 ], [ -75.581985, 39.969071 ], [ -75.582077, 39.969151 ], [ -75.582158, 39.969243 ], [ -75.582227, 39.969347 ], [ -75.582285, 39.969471 ], [ -75.582363, 39.969664 ], [ -75.582473, 39.969947 ], [ -75.582522, 39.970068 ], [ -75.582611, 39.970272 ], [ -75.582743, 39.970476 ], [ -75.582867, 39.970833 ], [ -75.582898, 39.97092 ], [ -75.582912, 39.970963 ], [ -75.582938, 39.971025 ], [ -75.582978, 39.971134 ], [ -75.583084, 39.971439 ], [ -75.583112, 39.971685 ], [ -75.583137, 39.97179 ], [ -75.583152, 39.971903 ], [ -75.58315, 39.971973 ], [ -75.583141, 39.972018 ], [ -75.583131, 39.972048 ], [ -75.583103, 39.972113 ], [ -75.58306, 39.972173 ], [ -75.583002, 39.972225 ], [ -75.582937, 39.972271 ], [ -75.58286, 39.972305 ], [ -75.582773, 39.972335 ], [ -75.582683, 39.972353 ], [ -75.582589, 39.972359 ], [ -75.582494, 39.972353 ], [ -75.5824, 39.972336 ], [ -75.582312, 39.972305 ], [ -75.582246, 39.972269 ], [ -75.582162, 39.972207 ], [ -75.582096, 39.972153 ], [ -75.582042, 39.972094 ], [ -75.581994, 39.972035 ], [ -75.581963, 39.971976 ], [ -75.581948, 39.971919 ], [ -75.581949, 39.971865 ], [ -75.581966, 39.971815 ], [ -75.581997, 39.97177 ], [ -75.582022, 39.971745 ], [ -75.58209, 39.971682 ], [ -75.582461, 39.971452 ], [ -75.582904, 39.971179 ], [ -75.582978, 39.971134 ], [ -75.583023, 39.971109 ], [ -75.58307, 39.971081 ], [ -75.583107, 39.971053 ], [ -75.583407, 39.970867 ], [ -75.583624, 39.970741 ], [ -75.583739, 39.970673 ], [ -75.584032, 39.970496 ], [ -75.584103, 39.970451 ], [ -75.584516, 39.970196 ], [ -75.584668, 39.970103 ], [ -75.585284, 39.969727 ], [ -75.585495, 39.969597 ], [ -75.585671, 39.969488 ], [ -75.585887, 39.969356 ], [ -75.586311, 39.969103 ], [ -75.586579, 39.96895 ], [ -75.586841, 39.968809 ], [ -75.587038, 39.968703 ], [ -75.587059, 39.968693 ], [ -75.587195, 39.968624 ], [ -75.587242, 39.968603 ], [ -75.587428, 39.96852 ], [ -75.587679, 39.96841 ], [ -75.588268, 39.968157 ], [ -75.588451, 39.968075 ], [ -75.589184, 39.967745 ], [ -75.589404, 39.967649 ], [ -75.589671, 39.967521 ], [ -75.589978, 39.967376 ], [ -75.590293, 39.967226 ], [ -75.590563, 39.967099 ], [ -75.59116, 39.966828 ], [ -75.591453, 39.966694 ], [ -75.591738, 39.966569 ], [ -75.592162, 39.96638 ], [ -75.592339, 39.966299 ], [ -75.592525, 39.966212 ], [ -75.593066, 39.965944 ], [ -75.594088, 39.965469 ], [ -75.594504, 39.965284 ], [ -75.595344, 39.964912 ], [ -75.595613, 39.964794 ], [ -75.596666, 39.964327 ], [ -75.597918, 39.963766 ], [ -75.598579, 39.963466 ], [ -75.599113, 39.963224 ], [ -75.600044, 39.9628 ], [ -75.60042, 39.962627 ], [ -75.600876, 39.962424 ], [ -75.601311, 39.962227 ], [ -75.601695, 39.96206 ], [ -75.602103, 39.961884 ], [ -75.602282, 39.961793 ], [ -75.602419, 39.961714 ], [ -75.602809, 39.962202 ], [ -75.602963, 39.962381 ], [ -75.603214, 39.962677 ], [ -75.603499, 39.962551 ], [ -75.604768, 39.962024 ], [ -75.605035, 39.961912 ], [ -75.6055, 39.961695 ], [ -75.605548, 39.961642 ], [ -75.605603, 39.961594 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.604304, 39.959604 ], [ -75.604232, 39.959537 ], [ -75.604137, 39.959452 ], [ -75.603472, 39.958805 ], [ -75.603177, 39.958489 ], [ -75.602751, 39.958082 ], [ -75.602276, 39.95764 ], [ -75.601914, 39.957298 ], [ -75.60131, 39.956752 ], [ -75.601193, 39.956648 ], [ -75.600991, 39.956467 ], [ -75.600267, 39.955799 ], [ -75.599814, 39.955394 ], [ -75.599333, 39.954966 ], [ -75.599414, 39.954917 ], [ -75.599476, 39.954883 ], [ -75.599879, 39.954686 ], [ -75.601276, 39.954073 ], [ -75.600626, 39.953321 ], [ -75.600111, 39.952737 ], [ -75.599948, 39.952549 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310208", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.403528, 39.98665 ], [ -75.404557, 39.986571 ], [ -75.406258, 39.986447 ], [ -75.407155, 39.986377 ], [ -75.408112, 39.986305 ], [ -75.408701, 39.986266 ], [ -75.410542, 39.986114 ], [ -75.412112, 39.985979 ], [ -75.413424, 39.98587 ], [ -75.41393, 39.985831 ], [ -75.414183, 39.985811 ], [ -75.414813, 39.985758 ], [ -75.414986, 39.985746 ], [ -75.41521, 39.985729 ], [ -75.415388, 39.985713 ], [ -75.415551, 39.985696 ], [ -75.415736, 39.985675 ], [ -75.415917, 39.985647 ], [ -75.416112, 39.98561 ], [ -75.416229, 39.985586 ], [ -75.41644, 39.985527 ], [ -75.416641, 39.985462 ], [ -75.41684, 39.985386 ], [ -75.417035, 39.985301 ], [ -75.41717, 39.985236 ], [ -75.418326, 39.984688 ], [ -75.418444, 39.984629 ], [ -75.421035, 39.983371 ], [ -75.421312, 39.983236 ], [ -75.422523, 39.982642 ], [ -75.423223, 39.982303 ], [ -75.423446, 39.982195 ], [ -75.423827, 39.982009 ], [ -75.424193, 39.981831 ], [ -75.424438, 39.981711 ], [ -75.425063, 39.98141 ], [ -75.425241, 39.98132 ], [ -75.426015, 39.980934 ], [ -75.426302, 39.980793 ], [ -75.426766, 39.980568 ], [ -75.427927, 39.980017 ], [ -75.428116, 39.979927 ], [ -75.428435, 39.979783 ], [ -75.428884, 39.9796 ], [ -75.430002, 39.979147 ], [ -75.430703, 39.978863 ], [ -75.430881, 39.978791 ], [ -75.43144, 39.978573 ], [ -75.431934, 39.978381 ], [ -75.432791, 39.978027 ], [ -75.433424, 39.97777 ], [ -75.433447, 39.977761 ], [ -75.434568, 39.977303 ], [ -75.434708, 39.977246 ], [ -75.434817, 39.977202 ], [ -75.43507, 39.977108 ], [ -75.435274, 39.977019 ], [ -75.435445, 39.976946 ], [ -75.436523, 39.976509 ], [ -75.436848, 39.976378 ], [ -75.437049, 39.976296 ], [ -75.43717, 39.976245 ], [ -75.437446, 39.976136 ], [ -75.437742, 39.976016 ], [ -75.438141, 39.975859 ], [ -75.438593, 39.975696 ], [ -75.438955, 39.975577 ], [ -75.439279, 39.975484 ], [ -75.439582, 39.975411 ], [ -75.439928, 39.975336 ], [ -75.44022, 39.975283 ], [ -75.440294, 39.975272 ], [ -75.440592, 39.975231 ], [ -75.440818, 39.975201 ], [ -75.441161, 39.975165 ], [ -75.441467, 39.975139 ], [ -75.441834, 39.975116 ], [ -75.442211, 39.975097 ], [ -75.44294, 39.975065 ], [ -75.444597, 39.974986 ], [ -75.445475, 39.974951 ], [ -75.446072, 39.974917 ], [ -75.446542, 39.974897 ], [ -75.447001, 39.974878 ], [ -75.447904, 39.974843 ], [ -75.448383, 39.974819 ], [ -75.448608, 39.974809 ], [ -75.448978, 39.974795 ], [ -75.449395, 39.97477 ], [ -75.449531, 39.974762 ], [ -75.450105, 39.974725 ], [ -75.450294, 39.974709 ], [ -75.450802, 39.974647 ], [ -75.451104, 39.97461 ], [ -75.451552, 39.974519 ], [ -75.451797, 39.974478 ], [ -75.451985, 39.974447 ], [ -75.452249, 39.974402 ], [ -75.452323, 39.97439 ], [ -75.452995, 39.974277 ], [ -75.453532, 39.974185 ], [ -75.453758, 39.974148 ], [ -75.453977, 39.974112 ], [ -75.45479, 39.973983 ], [ -75.456332, 39.973707 ], [ -75.457616, 39.973478 ], [ -75.458319, 39.97336 ], [ -75.45886, 39.973268 ], [ -75.459555, 39.973154 ], [ -75.46063, 39.972978 ], [ -75.461075, 39.972913 ], [ -75.461418, 39.972851 ], [ -75.46146, 39.972846 ], [ -75.461845, 39.972767 ], [ -75.462161, 39.972695 ], [ -75.462245, 39.972677 ], [ -75.462707, 39.97257 ], [ -75.46304, 39.972484 ], [ -75.463274, 39.97242 ], [ -75.463507, 39.972355 ], [ -75.4637, 39.9723 ], [ -75.463918, 39.972238 ], [ -75.464113, 39.972183 ], [ -75.464264, 39.972138 ], [ -75.464488, 39.972071 ], [ -75.46467, 39.972017 ], [ -75.465361, 39.971807 ], [ -75.465865, 39.971657 ], [ -75.466094, 39.971585 ], [ -75.466272, 39.971534 ], [ -75.466388, 39.9715 ], [ -75.466534, 39.971463 ], [ -75.466707, 39.971416 ], [ -75.466861, 39.971381 ], [ -75.467069, 39.971332 ], [ -75.467429, 39.97125 ], [ -75.467728, 39.971197 ], [ -75.468116, 39.971131 ], [ -75.470235, 39.970791 ], [ -75.470914, 39.97067 ], [ -75.471052, 39.970641 ], [ -75.47117, 39.970617 ], [ -75.471286, 39.970588 ], [ -75.47146, 39.970546 ], [ -75.471633, 39.970506 ], [ -75.471786, 39.970465 ], [ -75.471933, 39.970427 ], [ -75.472082, 39.970386 ], [ -75.47225, 39.970335 ], [ -75.472394, 39.970292 ], [ -75.472554, 39.970241 ], [ -75.472702, 39.970197 ], [ -75.472828, 39.970157 ], [ -75.472978, 39.970103 ], [ -75.473255, 39.970006 ], [ -75.473829, 39.969809 ], [ -75.474005, 39.969748 ], [ -75.474125, 39.969707 ], [ -75.474217, 39.969676 ], [ -75.474468, 39.969592 ], [ -75.474689, 39.969519 ], [ -75.474888, 39.969452 ], [ -75.475888, 39.969118 ], [ -75.477231, 39.968664 ], [ -75.478573, 39.968205 ], [ -75.479227, 39.967974 ], [ -75.479912, 39.967742 ], [ -75.48055, 39.967531 ], [ -75.481259, 39.967296 ], [ -75.481909, 39.967085 ], [ -75.482745, 39.966809 ], [ -75.482835, 39.96678 ], [ -75.483027, 39.966716 ], [ -75.483857, 39.966439 ], [ -75.484684, 39.966156 ], [ -75.485507, 39.965869 ], [ -75.485891, 39.965737 ], [ -75.486143, 39.965649 ], [ -75.486511, 39.965531 ], [ -75.486824, 39.965435 ], [ -75.487234, 39.965325 ], [ -75.4876, 39.96524 ], [ -75.487904, 39.965181 ], [ -75.488126, 39.965143 ], [ -75.488258, 39.965122 ], [ -75.488562, 39.965086 ], [ -75.488723, 39.965064 ], [ -75.488946, 39.965041 ], [ -75.489376, 39.965005 ], [ -75.48952, 39.964997 ], [ -75.489785, 39.964985 ], [ -75.489958, 39.964977 ], [ -75.490309, 39.964967 ], [ -75.491145, 39.964932 ], [ -75.491886, 39.964901 ], [ -75.492504, 39.964884 ], [ -75.492866, 39.964875 ], [ -75.494118, 39.964846 ], [ -75.494537, 39.964844 ], [ -75.494684, 39.964847 ], [ -75.49488, 39.964853 ], [ -75.495393, 39.964877 ], [ -75.495618, 39.964884 ], [ -75.496369, 39.964918 ], [ -75.496706, 39.964934 ], [ -75.496853, 39.964942 ], [ -75.498635, 39.965014 ], [ -75.49887, 39.965023 ], [ -75.499653, 39.965055 ], [ -75.500108, 39.965078 ], [ -75.500693, 39.965102 ], [ -75.501215, 39.965123 ], [ -75.501607, 39.965142 ], [ -75.502082, 39.965163 ], [ -75.502616, 39.965188 ], [ -75.503244, 39.965213 ], [ -75.503506, 39.965225 ], [ -75.503734, 39.965238 ], [ -75.503988, 39.96525 ], [ -75.504273, 39.965269 ], [ -75.504556, 39.965287 ], [ -75.505239, 39.965334 ], [ -75.505904, 39.965385 ], [ -75.506129, 39.965402 ], [ -75.506592, 39.965438 ], [ -75.506703, 39.965446 ], [ -75.507308, 39.965491 ], [ -75.508222, 39.965554 ], [ -75.508404, 39.965571 ], [ -75.508757, 39.965593 ], [ -75.508873, 39.965598 ], [ -75.510497, 39.965708 ], [ -75.510751, 39.965726 ], [ -75.511001, 39.965745 ], [ -75.511181, 39.965753 ], [ -75.512463, 39.965836 ], [ -75.513089, 39.965877 ], [ -75.513787, 39.965923 ], [ -75.514799, 39.965999 ], [ -75.516144, 39.966086 ], [ -75.516678, 39.966136 ], [ -75.517369, 39.966189 ], [ -75.518836, 39.966288 ], [ -75.519476, 39.966332 ], [ -75.519949, 39.966364 ], [ -75.520498, 39.966404 ], [ -75.520881, 39.966438 ], [ -75.521493, 39.966494 ], [ -75.521605, 39.966504 ], [ -75.521614, 39.966505 ], [ -75.522277, 39.966546 ], [ -75.523052, 39.966592 ], [ -75.523642, 39.966636 ], [ -75.524324, 39.966679 ], [ -75.524644, 39.966701 ], [ -75.525112, 39.966733 ], [ -75.525633, 39.966766 ], [ -75.526411, 39.966816 ], [ -75.526845, 39.966834 ], [ -75.526881, 39.966834 ], [ -75.527101, 39.966836 ], [ -75.527382, 39.966834 ], [ -75.527819, 39.966823 ], [ -75.528257, 39.966799 ], [ -75.528564, 39.966774 ], [ -75.528744, 39.96676 ], [ -75.529519, 39.966699 ], [ -75.530085, 39.966665 ], [ -75.530684, 39.966628 ], [ -75.531236, 39.966594 ], [ -75.533537, 39.966417 ], [ -75.533756, 39.966401 ], [ -75.534359, 39.966355 ], [ -75.534453, 39.966348 ], [ -75.535755, 39.966237 ], [ -75.536408, 39.966187 ], [ -75.536615, 39.96617 ], [ -75.537758, 39.966091 ], [ -75.538467, 39.966044 ], [ -75.540315, 39.965902 ], [ -75.54086, 39.965863 ], [ -75.541405, 39.965827 ], [ -75.542302, 39.965768 ], [ -75.54272, 39.96574 ], [ -75.542927, 39.965727 ], [ -75.543979, 39.965658 ], [ -75.54419, 39.96565 ], [ -75.544419, 39.965639 ], [ -75.544516, 39.965639 ], [ -75.544583, 39.965641 ], [ -75.544716, 39.965646 ], [ -75.544865, 39.965644 ], [ -75.545, 39.965649 ], [ -75.545124, 39.965651 ], [ -75.545261, 39.965657 ], [ -75.545407, 39.965667 ], [ -75.545532, 39.965681 ], [ -75.545673, 39.965699 ], [ -75.545842, 39.965724 ], [ -75.546061, 39.965753 ], [ -75.546088, 39.965756 ], [ -75.54627, 39.965787 ], [ -75.546413, 39.965816 ], [ -75.5466, 39.965849 ], [ -75.547697, 39.966107 ], [ -75.547733, 39.966114 ], [ -75.54838, 39.966272 ], [ -75.549168, 39.966453 ], [ -75.549792, 39.966597 ], [ -75.550069, 39.96666 ], [ -75.551116, 39.966906 ], [ -75.553167, 39.967369 ], [ -75.55352, 39.96745 ], [ -75.553698, 39.967486 ], [ -75.554091, 39.967568 ], [ -75.554518, 39.967675 ], [ -75.555251, 39.967839 ], [ -75.555981, 39.968005 ], [ -75.557693, 39.968392 ], [ -75.55816, 39.968498 ], [ -75.558533, 39.968582 ], [ -75.560811, 39.969086 ], [ -75.561539, 39.969246 ], [ -75.562435, 39.969451 ], [ -75.562628, 39.969489 ], [ -75.563223, 39.969607 ], [ -75.563347, 39.969628 ], [ -75.563696, 39.969685 ], [ -75.564054, 39.969727 ], [ -75.564528, 39.969767 ], [ -75.56497, 39.969787 ], [ -75.565193, 39.969797 ], [ -75.565535, 39.969789 ], [ -75.565817, 39.969778 ], [ -75.566073, 39.969761 ], [ -75.56631, 39.969747 ], [ -75.566575, 39.969721 ], [ -75.566811, 39.969695 ], [ -75.566911, 39.96968 ], [ -75.567072, 39.969657 ], [ -75.567343, 39.969609 ], [ -75.567616, 39.969563 ], [ -75.567681, 39.969553 ], [ -75.568064, 39.969493 ], [ -75.568956, 39.969361 ], [ -75.569657, 39.96926 ], [ -75.571356, 39.969013 ], [ -75.572378, 39.968862 ], [ -75.57248, 39.968846 ], [ -75.572586, 39.96883 ], [ -75.5733, 39.96872 ], [ -75.573593, 39.968675 ], [ -75.574047, 39.968606 ], [ -75.574542, 39.96853 ], [ -75.574709, 39.968504 ], [ -75.574909, 39.968474 ], [ -75.575899, 39.968323 ], [ -75.576951, 39.968165 ], [ -75.577266, 39.968118 ], [ -75.577808, 39.968037 ], [ -75.577882, 39.968026 ], [ -75.578231, 39.967976 ], [ -75.578427, 39.967942 ], [ -75.578521, 39.967929 ], [ -75.578637, 39.967912 ], [ -75.578816, 39.967886 ], [ -75.57898, 39.967867 ], [ -75.579067, 39.967855 ], [ -75.579162, 39.967842 ], [ -75.57954, 39.967791 ], [ -75.579617, 39.967777 ], [ -75.579832, 39.967802 ], [ -75.579968, 39.967799 ], [ -75.580052, 39.967808 ], [ -75.580131, 39.967828 ], [ -75.580212, 39.967861 ], [ -75.580289, 39.967909 ], [ -75.58037, 39.967974 ], [ -75.580456, 39.968064 ], [ -75.580539, 39.968168 ], [ -75.580558, 39.968195 ], [ -75.580643, 39.968277 ], [ -75.580683, 39.96832 ], [ -75.580722, 39.968362 ], [ -75.580751, 39.96839 ], [ -75.580805, 39.96843 ], [ -75.580878, 39.96848 ], [ -75.581002, 39.968548 ], [ -75.581263, 39.968671 ], [ -75.581612, 39.968845 ], [ -75.581801, 39.968945 ], [ -75.581876, 39.96899 ], [ -75.581985, 39.969071 ], [ -75.582077, 39.969151 ], [ -75.582158, 39.969243 ], [ -75.582227, 39.969347 ], [ -75.582285, 39.969471 ], [ -75.582363, 39.969664 ], [ -75.582473, 39.969947 ], [ -75.582522, 39.970068 ], [ -75.582611, 39.970272 ], [ -75.582743, 39.970476 ], [ -75.582867, 39.970833 ], [ -75.582898, 39.97092 ], [ -75.582912, 39.970963 ], [ -75.582938, 39.971025 ], [ -75.582978, 39.971134 ], [ -75.583084, 39.971439 ], [ -75.583112, 39.971685 ], [ -75.583137, 39.97179 ], [ -75.583152, 39.971903 ], [ -75.58315, 39.971973 ], [ -75.583141, 39.972018 ], [ -75.583131, 39.972048 ], [ -75.583103, 39.972113 ], [ -75.58306, 39.972173 ], [ -75.583002, 39.972225 ], [ -75.582937, 39.972271 ], [ -75.58286, 39.972305 ], [ -75.582773, 39.972335 ], [ -75.582683, 39.972353 ], [ -75.582589, 39.972359 ], [ -75.582494, 39.972353 ], [ -75.5824, 39.972336 ], [ -75.582312, 39.972305 ], [ -75.582246, 39.972269 ], [ -75.582162, 39.972207 ], [ -75.582096, 39.972153 ], [ -75.582042, 39.972094 ], [ -75.581994, 39.972035 ], [ -75.581963, 39.971976 ], [ -75.581948, 39.971919 ], [ -75.581949, 39.971865 ], [ -75.581966, 39.971815 ], [ -75.581997, 39.97177 ], [ -75.582022, 39.971745 ], [ -75.58209, 39.971682 ], [ -75.582461, 39.971452 ], [ -75.582904, 39.971179 ], [ -75.582978, 39.971134 ], [ -75.583023, 39.971109 ], [ -75.58307, 39.971081 ], [ -75.583107, 39.971053 ], [ -75.583407, 39.970867 ], [ -75.583624, 39.970741 ], [ -75.583739, 39.970673 ], [ -75.584032, 39.970496 ], [ -75.584103, 39.970451 ], [ -75.584516, 39.970196 ], [ -75.584668, 39.970103 ], [ -75.585284, 39.969727 ], [ -75.585495, 39.969597 ], [ -75.585671, 39.969488 ], [ -75.585887, 39.969356 ], [ -75.586311, 39.969103 ], [ -75.586579, 39.96895 ], [ -75.586841, 39.968809 ], [ -75.587038, 39.968703 ], [ -75.587059, 39.968693 ], [ -75.587195, 39.968624 ], [ -75.587242, 39.968603 ], [ -75.587428, 39.96852 ], [ -75.587679, 39.96841 ], [ -75.588268, 39.968157 ], [ -75.588451, 39.968075 ], [ -75.589184, 39.967745 ], [ -75.589404, 39.967649 ], [ -75.589671, 39.967521 ], [ -75.589978, 39.967376 ], [ -75.590293, 39.967226 ], [ -75.590563, 39.967099 ], [ -75.59116, 39.966828 ], [ -75.591453, 39.966694 ], [ -75.591738, 39.966569 ], [ -75.592162, 39.96638 ], [ -75.592339, 39.966299 ], [ -75.592525, 39.966212 ], [ -75.593066, 39.965944 ], [ -75.594088, 39.965469 ], [ -75.594504, 39.965284 ], [ -75.595344, 39.964912 ], [ -75.595613, 39.964794 ], [ -75.596666, 39.964327 ], [ -75.597918, 39.963766 ], [ -75.598579, 39.963466 ], [ -75.599113, 39.963224 ], [ -75.600044, 39.9628 ], [ -75.60042, 39.962627 ], [ -75.600876, 39.962424 ], [ -75.601311, 39.962227 ], [ -75.601695, 39.96206 ], [ -75.602103, 39.961884 ], [ -75.602282, 39.961793 ], [ -75.602419, 39.961714 ], [ -75.602809, 39.962202 ], [ -75.602963, 39.962381 ], [ -75.603214, 39.962677 ], [ -75.603499, 39.962551 ], [ -75.604768, 39.962024 ], [ -75.605035, 39.961912 ], [ -75.6055, 39.961695 ], [ -75.605548, 39.961642 ], [ -75.605603, 39.961594 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.604304, 39.959604 ], [ -75.604232, 39.959537 ], [ -75.604137, 39.959452 ], [ -75.603472, 39.958805 ], [ -75.603177, 39.958489 ], [ -75.602751, 39.958082 ], [ -75.602276, 39.95764 ], [ -75.601914, 39.957298 ], [ -75.60131, 39.956752 ], [ -75.601193, 39.956648 ], [ -75.600991, 39.956467 ], [ -75.600267, 39.955799 ], [ -75.599814, 39.955394 ], [ -75.599333, 39.954966 ], [ -75.599414, 39.954917 ], [ -75.599476, 39.954883 ], [ -75.599879, 39.954686 ], [ -75.601276, 39.954073 ], [ -75.600626, 39.953321 ], [ -75.600111, 39.952737 ], [ -75.599948, 39.952549 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310209", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.400915, 39.987117 ], [ -75.401085, 39.987339 ], [ -75.400767, 39.987483 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310210", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270427, 39.964105 ], [ -75.271172, 39.964248 ], [ -75.271982, 39.964392 ], [ -75.272785, 39.964538 ], [ -75.273567, 39.964687 ], [ -75.273918, 39.964752 ], [ -75.274335, 39.96483 ], [ -75.275504, 39.965039 ], [ -75.275782, 39.965092 ], [ -75.276395, 39.965207 ], [ -75.277553, 39.965398 ], [ -75.277976, 39.965481 ], [ -75.278647, 39.965613 ], [ -75.279106, 39.965695 ], [ -75.279204, 39.965712 ], [ -75.279461, 39.965762 ], [ -75.27972, 39.965811 ], [ -75.280239, 39.965911 ], [ -75.281026, 39.966058 ], [ -75.281279, 39.966106 ], [ -75.281764, 39.966198 ], [ -75.281932, 39.966238 ], [ -75.282279, 39.966304 ], [ -75.282505, 39.966348 ], [ -75.283954, 39.966619 ], [ -75.284402, 39.966703 ], [ -75.284814, 39.966781 ], [ -75.286495, 39.96709 ], [ -75.287363, 39.967262 ], [ -75.287968, 39.967377 ], [ -75.288401, 39.967458 ], [ -75.288612, 39.967498 ], [ -75.289017, 39.967575 ], [ -75.290049, 39.96777 ], [ -75.290281, 39.967813 ], [ -75.290561, 39.967866 ], [ -75.2911, 39.967968 ], [ -75.292126, 39.968159 ], [ -75.29258, 39.968249 ], [ -75.293295, 39.968382 ], [ -75.294302, 39.968571 ], [ -75.294397, 39.968592 ], [ -75.29529, 39.968761 ], [ -75.295516, 39.968806 ], [ -75.295929, 39.968885 ], [ -75.296379, 39.96897 ], [ -75.296972, 39.969091 ], [ -75.29717, 39.969114 ], [ -75.298976, 39.969476 ], [ -75.299133, 39.969507 ], [ -75.299258, 39.969538 ], [ -75.299939, 39.96966 ], [ -75.301479, 39.969984 ], [ -75.301698, 39.970028 ], [ -75.302341, 39.970158 ], [ -75.302652, 39.970217 ], [ -75.302962, 39.970276 ], [ -75.303234, 39.970327 ], [ -75.303488, 39.970369 ], [ -75.303569, 39.970383 ], [ -75.304097, 39.970472 ], [ -75.304729, 39.970583 ], [ -75.3055, 39.970706 ], [ -75.305908, 39.970771 ], [ -75.307569, 39.971052 ], [ -75.308584, 39.971236 ], [ -75.309877, 39.971454 ], [ -75.310614, 39.971589 ], [ -75.310868, 39.971635 ], [ -75.311184, 39.971688 ], [ -75.311324, 39.971716 ], [ -75.311777, 39.971793 ], [ -75.31228, 39.971874 ], [ -75.31271, 39.971945 ], [ -75.313263, 39.972035 ], [ -75.313673, 39.972105 ], [ -75.314022, 39.972166 ], [ -75.314185, 39.972193 ], [ -75.314517, 39.972256 ], [ -75.314858, 39.972311 ], [ -75.315151, 39.972359 ], [ -75.317174, 39.972732 ], [ -75.3175, 39.972784 ], [ -75.31867, 39.97297 ], [ -75.318966, 39.97302 ], [ -75.31962, 39.97313 ], [ -75.320122, 39.973223 ], [ -75.320287, 39.973254 ], [ -75.32054, 39.9733 ], [ -75.321136, 39.973403 ], [ -75.321468, 39.973462 ], [ -75.322071, 39.973568 ], [ -75.322906, 39.973711 ], [ -75.323512, 39.973814 ], [ -75.323914, 39.973887 ], [ -75.324904, 39.974056 ], [ -75.325729, 39.974202 ], [ -75.325966, 39.974247 ], [ -75.326433, 39.974345 ], [ -75.326796, 39.974405 ], [ -75.327069, 39.974468 ], [ -75.327219, 39.974502 ], [ -75.327642, 39.974613 ], [ -75.327907, 39.974691 ], [ -75.328218, 39.974792 ], [ -75.328501, 39.974889 ], [ -75.328735, 39.974976 ], [ -75.32905, 39.975103 ], [ -75.329375, 39.975238 ], [ -75.330094, 39.975538 ], [ -75.33084, 39.975851 ], [ -75.330984, 39.975909 ], [ -75.331156, 39.975978 ], [ -75.331362, 39.97606 ], [ -75.331531, 39.976126 ], [ -75.33178, 39.976223 ], [ -75.332039, 39.97632 ], [ -75.332262, 39.976399 ], [ -75.332443, 39.976458 ], [ -75.332606, 39.97651 ], [ -75.332815, 39.97658 ], [ -75.333018, 39.976645 ], [ -75.333195, 39.976695 ], [ -75.333404, 39.976749 ], [ -75.333598, 39.976796 ], [ -75.333754, 39.97683 ], [ -75.333987, 39.976876 ], [ -75.334406, 39.97696 ], [ -75.335203, 39.977129 ], [ -75.335987, 39.977292 ], [ -75.336007, 39.977295 ], [ -75.336277, 39.977354 ], [ -75.336643, 39.977435 ], [ -75.336897, 39.977488 ], [ -75.33702, 39.977518 ], [ -75.337409, 39.977654 ], [ -75.338451, 39.977872 ], [ -75.339044, 39.978012 ], [ -75.339287, 39.978069 ], [ -75.340235, 39.978283 ], [ -75.340436, 39.978328 ], [ -75.340533, 39.978349 ], [ -75.340665, 39.978376 ], [ -75.340798, 39.978408 ], [ -75.341416, 39.978535 ], [ -75.341999, 39.978659 ], [ -75.342619, 39.978802 ], [ -75.34334, 39.978971 ], [ -75.343724, 39.979057 ], [ -75.344224, 39.97918 ], [ -75.344577, 39.979259 ], [ -75.345312, 39.979423 ], [ -75.345767, 39.979529 ], [ -75.345923, 39.979565 ], [ -75.346533, 39.979704 ], [ -75.34676, 39.979752 ], [ -75.346982, 39.979797 ], [ -75.347279, 39.979856 ], [ -75.347561, 39.979909 ], [ -75.348663, 39.980076 ], [ -75.349502, 39.980194 ], [ -75.349837, 39.980243 ], [ -75.350377, 39.980319 ], [ -75.351288, 39.980446 ], [ -75.352689, 39.980663 ], [ -75.353163, 39.980734 ], [ -75.353315, 39.980757 ], [ -75.353586, 39.980799 ], [ -75.354554, 39.980951 ], [ -75.35537, 39.981083 ], [ -75.356124, 39.981201 ], [ -75.356276, 39.981224 ], [ -75.356921, 39.981325 ], [ -75.358087, 39.981508 ], [ -75.358531, 39.981581 ], [ -75.358722, 39.981607 ], [ -75.358813, 39.981618 ], [ -75.359297, 39.981685 ], [ -75.360401, 39.981846 ], [ -75.360588, 39.981874 ], [ -75.361088, 39.981944 ], [ -75.361527, 39.982011 ], [ -75.362, 39.982076 ], [ -75.362337, 39.982122 ], [ -75.363128, 39.982234 ], [ -75.3637, 39.982318 ], [ -75.364252, 39.982391 ], [ -75.364894, 39.982476 ], [ -75.366303, 39.982679 ], [ -75.367156, 39.982792 ], [ -75.367504, 39.982839 ], [ -75.367823, 39.982884 ], [ -75.368703, 39.983008 ], [ -75.369197, 39.983075 ], [ -75.369925, 39.983173 ], [ -75.371123, 39.983337 ], [ -75.372346, 39.983508 ], [ -75.373098, 39.983613 ], [ -75.37333, 39.983646 ], [ -75.373593, 39.983683 ], [ -75.373973, 39.983746 ], [ -75.374091, 39.983762 ], [ -75.374765, 39.98385 ], [ -75.375, 39.983878 ], [ -75.375203, 39.983903 ], [ -75.37538, 39.983923 ], [ -75.375582, 39.983943 ], [ -75.375819, 39.983965 ], [ -75.376202, 39.98399 ], [ -75.376503, 39.984007 ], [ -75.376531, 39.984009 ], [ -75.376875, 39.984027 ], [ -75.376994, 39.984032 ], [ -75.377462, 39.98405 ], [ -75.377701, 39.984057 ], [ -75.378186, 39.984072 ], [ -75.378507, 39.984078 ], [ -75.379224, 39.984097 ], [ -75.380333, 39.984153 ], [ -75.381976, 39.984201 ], [ -75.382098, 39.984206 ], [ -75.382595, 39.98422 ], [ -75.383141, 39.984238 ], [ -75.383509, 39.984255 ], [ -75.384053, 39.984273 ], [ -75.384445, 39.984294 ], [ -75.384897, 39.984319 ], [ -75.38559, 39.984369 ], [ -75.386046, 39.9844 ], [ -75.386636, 39.984438 ], [ -75.387273, 39.984482 ], [ -75.387459, 39.984496 ], [ -75.387686, 39.984514 ], [ -75.388258, 39.984567 ], [ -75.388753, 39.984625 ], [ -75.389256, 39.98468 ], [ -75.389899, 39.984761 ], [ -75.390931, 39.984885 ], [ -75.391556, 39.984966 ], [ -75.391703, 39.984989 ], [ -75.391871, 39.985015 ], [ -75.391914, 39.985022 ], [ -75.392096, 39.985053 ], [ -75.392185, 39.985071 ], [ -75.392485, 39.985126 ], [ -75.392684, 39.985183 ], [ -75.392991, 39.985257 ], [ -75.393332, 39.985341 ], [ -75.393734, 39.985441 ], [ -75.395149, 39.985792 ], [ -75.395504, 39.985883 ], [ -75.396171, 39.986053 ], [ -75.397791, 39.986455 ], [ -75.398417, 39.986604 ], [ -75.398606, 39.986647 ], [ -75.39875, 39.986678 ], [ -75.39911, 39.986756 ], [ -75.399295, 39.986779 ], [ -75.399594, 39.986816 ], [ -75.399896, 39.986841 ], [ -75.400014, 39.986844 ], [ -75.400176, 39.986852 ], [ -75.400511, 39.986855 ], [ -75.400713, 39.986855 ], [ -75.40087, 39.986844 ], [ -75.401256, 39.98682 ], [ -75.401508, 39.986806 ], [ -75.401902, 39.986776 ], [ -75.402628, 39.98672 ], [ -75.402616, 39.986611 ], [ -75.402585, 39.9865 ], [ -75.402568, 39.986459 ], [ -75.402532, 39.986404 ], [ -75.402472, 39.98635 ], [ -75.402363, 39.986278 ], [ -75.402301, 39.98623 ], [ -75.402267, 39.986185 ], [ -75.402241, 39.986131 ], [ -75.402228, 39.986061 ], [ -75.40223, 39.986017 ], [ -75.402247, 39.985971 ], [ -75.40227, 39.985929 ], [ -75.40245, 39.985752 ], [ -75.402785, 39.985431 ], [ -75.40294, 39.985282 ], [ -75.40314, 39.985115 ], [ -75.403536, 39.984756 ], [ -75.403717, 39.984586 ], [ -75.403779, 39.984517 ], [ -75.403832, 39.984459 ], [ -75.403881, 39.984397 ], [ -75.403916, 39.984342 ], [ -75.403956, 39.98428 ], [ -75.404069, 39.984097 ], [ -75.404187, 39.983895 ], [ -75.404702, 39.982993 ], [ -75.405022, 39.982526 ], [ -75.405172, 39.98224 ], [ -75.405304, 39.981991 ], [ -75.405365, 39.981891 ], [ -75.405417, 39.981823 ], [ -75.405467, 39.981767 ], [ -75.405545, 39.981694 ], [ -75.405637, 39.981612 ], [ -75.406004, 39.981325 ], [ -75.406742, 39.980767 ], [ -75.406877, 39.980675 ], [ -75.407076, 39.980525 ], [ -75.40741, 39.980284 ], [ -75.407656, 39.980109 ], [ -75.408152, 39.979765 ], [ -75.408553, 39.979498 ], [ -75.409208, 39.979068 ], [ -75.409734, 39.978722 ], [ -75.410152, 39.978445 ], [ -75.4105, 39.978221 ], [ -75.410738, 39.978055 ], [ -75.410932, 39.977906 ], [ -75.411166, 39.977703 ], [ -75.411451, 39.977454 ], [ -75.411622, 39.977317 ], [ -75.411971, 39.977042 ], [ -75.412241, 39.977284 ], [ -75.412566, 39.977565 ], [ -75.412689, 39.977647 ], [ -75.412797, 39.977703 ], [ -75.412904, 39.977744 ], [ -75.413022, 39.977773 ], [ -75.413133, 39.977793 ], [ -75.413271, 39.977809 ], [ -75.413412, 39.977809 ], [ -75.413536, 39.9778 ], [ -75.413639, 39.977781 ], [ -75.413732, 39.977757 ], [ -75.413833, 39.977717 ], [ -75.413979, 39.977644 ], [ -75.414138, 39.977551 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310211", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.599947, 39.952548 ], [ -75.599869, 39.95246 ], [ -75.598496, 39.950912 ], [ -75.598421, 39.950822 ], [ -75.598237, 39.950904 ], [ -75.59715, 39.951398 ], [ -75.596623, 39.951636 ], [ -75.596029, 39.951905 ], [ -75.596094, 39.951979 ], [ -75.596201, 39.952082 ], [ -75.596273, 39.952149 ], [ -75.596346, 39.95222 ], [ -75.596441, 39.952304 ], [ -75.596554, 39.952409 ], [ -75.596836, 39.952667 ], [ -75.597217, 39.95301 ], [ -75.597445, 39.953226 ], [ -75.59762, 39.953385 ], [ -75.597757, 39.953511 ], [ -75.597901, 39.953651 ], [ -75.598047, 39.953787 ], [ -75.598558, 39.954251 ], [ -75.599177, 39.954822 ], [ -75.599333, 39.954966 ], [ -75.599814, 39.955394 ], [ -75.600267, 39.955799 ], [ -75.600991, 39.956467 ], [ -75.601193, 39.956648 ], [ -75.60131, 39.956752 ], [ -75.601914, 39.957298 ], [ -75.602276, 39.95764 ], [ -75.602751, 39.958082 ], [ -75.603177, 39.958489 ], [ -75.603472, 39.958805 ], [ -75.604137, 39.959452 ], [ -75.604232, 39.959537 ], [ -75.604304, 39.959604 ], [ -75.604427, 39.959723 ], [ -75.604488, 39.959776 ], [ -75.604614, 39.959889 ], [ -75.604767, 39.960059 ], [ -75.604798, 39.960093 ], [ -75.604868, 39.960165 ], [ -75.604901, 39.960196 ], [ -75.605077, 39.960361 ], [ -75.605153, 39.960429 ], [ -75.605213, 39.960481 ], [ -75.605274, 39.960547 ], [ -75.605644, 39.960983 ], [ -75.605807, 39.961185 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.60383, 39.960007 ], [ -75.603537, 39.960137 ], [ -75.603262, 39.96026 ], [ -75.602038, 39.960816 ], [ -75.601723, 39.96096 ], [ -75.60098, 39.961293 ], [ -75.60045, 39.961521 ], [ -75.599806, 39.961804 ], [ -75.598996, 39.962157 ], [ -75.598477, 39.962385 ], [ -75.597979, 39.962599 ], [ -75.597362, 39.962872 ], [ -75.596561, 39.963227 ], [ -75.59604, 39.963457 ], [ -75.595858, 39.963539 ], [ -75.59535, 39.963766 ], [ -75.59517, 39.963844 ], [ -75.594661, 39.964068 ], [ -75.593767, 39.964462 ], [ -75.593114, 39.964755 ], [ -75.5924, 39.965068 ], [ -75.592366, 39.965084 ], [ -75.591749, 39.965361 ], [ -75.591414, 39.965516 ], [ -75.591231, 39.965654 ], [ -75.591152, 39.965714 ], [ -75.5911, 39.965759 ], [ -75.591047, 39.965813 ], [ -75.591008, 39.965857 ], [ -75.59098, 39.965893 ], [ -75.590944, 39.965945 ], [ -75.590923, 39.965987 ], [ -75.590903, 39.966048 ], [ -75.590887, 39.966114 ], [ -75.590879, 39.966163 ], [ -75.590867, 39.966237 ], [ -75.590845, 39.966417 ], [ -75.590813, 39.966564 ], [ -75.590797, 39.966625 ], [ -75.590767, 39.966694 ], [ -75.590732, 39.966766 ], [ -75.590666, 39.966859 ], [ -75.590615, 39.966913 ], [ -75.590553, 39.96697 ], [ -75.590487, 39.967022 ], [ -75.590413, 39.967068 ], [ -75.590344, 39.967107 ], [ -75.589913, 39.9673 ], [ -75.58913, 39.96767 ], [ -75.588378, 39.968 ], [ -75.588218, 39.96807 ], [ -75.587623, 39.96833 ], [ -75.587346, 39.968447 ], [ -75.587081, 39.968573 ], [ -75.586749, 39.968741 ], [ -75.586676, 39.968781 ], [ -75.586426, 39.968919 ], [ -75.586244, 39.969018 ], [ -75.585427, 39.96953 ], [ -75.584994, 39.969792 ], [ -75.584589, 39.97003 ], [ -75.584498, 39.970084 ], [ -75.584361, 39.970165 ], [ -75.584014, 39.970372 ], [ -75.583941, 39.970417 ], [ -75.584032, 39.970496 ], [ -75.584153, 39.970617 ], [ -75.584243, 39.970707 ], [ -75.584404, 39.970883 ], [ -75.584425, 39.970908 ], [ -75.584453, 39.970946 ], [ -75.584471, 39.97098 ], [ -75.584493, 39.971021 ], [ -75.584516, 39.971091 ], [ -75.584522, 39.971164 ], [ -75.58451, 39.971239 ], [ -75.584481, 39.971322 ], [ -75.584431, 39.971416 ], [ -75.584368, 39.971511 ], [ -75.584302, 39.971585 ], [ -75.584234, 39.971647 ], [ -75.584159, 39.971696 ], [ -75.584083, 39.971731 ], [ -75.584003, 39.971755 ], [ -75.583923, 39.971764 ], [ -75.583835, 39.971765 ], [ -75.583747, 39.971761 ], [ -75.58366, 39.971748 ], [ -75.583573, 39.971717 ], [ -75.583492, 39.971679 ], [ -75.583422, 39.97163 ], [ -75.583359, 39.971571 ], [ -75.583302, 39.971486 ], [ -75.583231, 39.97135 ], [ -75.583169, 39.971198 ], [ -75.583107, 39.971053 ], [ -75.58306, 39.970946 ], [ -75.583029, 39.970875 ], [ -75.582957, 39.970763 ], [ -75.582875, 39.970489 ], [ -75.582584, 39.96965 ], [ -75.581918, 39.967759 ], [ -75.581875, 39.967644 ], [ -75.581859, 39.967506 ], [ -75.581855, 39.96748 ], [ -75.581827, 39.967387 ], [ -75.581812, 39.967345 ], [ -75.581791, 39.967292 ], [ -75.581767, 39.967209 ], [ -75.581702, 39.96698 ], [ -75.581691, 39.96689 ], [ -75.581696, 39.966809 ], [ -75.581709, 39.966733 ], [ -75.581735, 39.966664 ], [ -75.581773, 39.966605 ], [ -75.581796, 39.966578 ], [ -75.581823, 39.96655 ], [ -75.581886, 39.966502 ], [ -75.581961, 39.966462 ], [ -75.582047, 39.966434 ], [ -75.58214, 39.966418 ], [ -75.58224, 39.966409 ], [ -75.582336, 39.966412 ], [ -75.582427, 39.966429 ], [ -75.582509, 39.966457 ], [ -75.582586, 39.966496 ], [ -75.582653, 39.966544 ], [ -75.582713, 39.966601 ], [ -75.582757, 39.966663 ], [ -75.582787, 39.966733 ], [ -75.582797, 39.966784 ], [ -75.582797, 39.966833 ], [ -75.582792, 39.966892 ], [ -75.582771, 39.966955 ], [ -75.582737, 39.967017 ], [ -75.5827, 39.967065 ], [ -75.582658, 39.967107 ], [ -75.582608, 39.967151 ], [ -75.58254, 39.967188 ], [ -75.582465, 39.967222 ], [ -75.582408, 39.967242 ], [ -75.582342, 39.967259 ], [ -75.581812, 39.967345 ], [ -75.581761, 39.967356 ], [ -75.581717, 39.967365 ], [ -75.581656, 39.967376 ], [ -75.581277, 39.96745 ], [ -75.581212, 39.967458 ], [ -75.581153, 39.967465 ], [ -75.581087, 39.967473 ], [ -75.580826, 39.967504 ], [ -75.580238, 39.96758 ], [ -75.580103, 39.967599 ], [ -75.580077, 39.967603 ], [ -75.579565, 39.967675 ], [ -75.579522, 39.967681 ], [ -75.57914, 39.967727 ], [ -75.578902, 39.967756 ], [ -75.578623, 39.967796 ], [ -75.578499, 39.967813 ], [ -75.578373, 39.967836 ], [ -75.578211, 39.96786 ], [ -75.577849, 39.967915 ], [ -75.577647, 39.967946 ], [ -75.577233, 39.968008 ], [ -75.576877, 39.968064 ], [ -75.57587, 39.968216 ], [ -75.574938, 39.968357 ], [ -75.57445, 39.96843 ], [ -75.573242, 39.968612 ], [ -75.57234, 39.968753 ], [ -75.571896, 39.968818 ], [ -75.571304, 39.968897 ], [ -75.570324, 39.969051 ], [ -75.569546, 39.969159 ], [ -75.568874, 39.969262 ], [ -75.568747, 39.969279 ], [ -75.568589, 39.969302 ], [ -75.568041, 39.969383 ], [ -75.56759, 39.969453 ], [ -75.567355, 39.969491 ], [ -75.567279, 39.969505 ], [ -75.567064, 39.969539 ], [ -75.566901, 39.969561 ], [ -75.566831, 39.96957 ], [ -75.566619, 39.969601 ], [ -75.566403, 39.969625 ], [ -75.566384, 39.969626 ], [ -75.566152, 39.969645 ], [ -75.565936, 39.969659 ], [ -75.565761, 39.969668 ], [ -75.56519, 39.969677 ], [ -75.564943, 39.969677 ], [ -75.564712, 39.969665 ], [ -75.564698, 39.969664 ], [ -75.564532, 39.969653 ], [ -75.564306, 39.96964 ], [ -75.564075, 39.96962 ], [ -75.563835, 39.969594 ], [ -75.563611, 39.969564 ], [ -75.563381, 39.969528 ], [ -75.563249, 39.969499 ], [ -75.562514, 39.96935 ], [ -75.561653, 39.969156 ], [ -75.560227, 39.968841 ], [ -75.558584, 39.968475 ], [ -75.558208, 39.968385 ], [ -75.55581, 39.967852 ], [ -75.555658, 39.967816 ], [ -75.555398, 39.967756 ], [ -75.554385, 39.967518 ], [ -75.553947, 39.967421 ], [ -75.55321, 39.967257 ], [ -75.552867, 39.967178 ], [ -75.552602, 39.967119 ], [ -75.551975, 39.966981 ], [ -75.551161, 39.9668 ], [ -75.550362, 39.966615 ], [ -75.550186, 39.966573 ], [ -75.549916, 39.966508 ], [ -75.549833, 39.966494 ], [ -75.548332, 39.966151 ], [ -75.548026, 39.96609 ], [ -75.547102, 39.965885 ], [ -75.546747, 39.965807 ], [ -75.546549, 39.965762 ], [ -75.546357, 39.96572 ], [ -75.546172, 39.965686 ], [ -75.545902, 39.965638 ], [ -75.545683, 39.965606 ], [ -75.545538, 39.965588 ], [ -75.545375, 39.965575 ], [ -75.545187, 39.965559 ], [ -75.545006, 39.965548 ], [ -75.544791, 39.96554 ], [ -75.544441, 39.965539 ], [ -75.544189, 39.965537 ], [ -75.542715, 39.965629 ], [ -75.542591, 39.965635 ], [ -75.542293, 39.965649 ], [ -75.541564, 39.9657 ], [ -75.540097, 39.965802 ], [ -75.539176, 39.965872 ], [ -75.538561, 39.965919 ], [ -75.538435, 39.965928 ], [ -75.53802, 39.965958 ], [ -75.535687, 39.966131 ], [ -75.53527, 39.966167 ], [ -75.534988, 39.96619 ], [ -75.534444, 39.966235 ], [ -75.534345, 39.966243 ], [ -75.532938, 39.966356 ], [ -75.531257, 39.966477 ], [ -75.530604, 39.966521 ], [ -75.530313, 39.966541 ], [ -75.530104, 39.966555 ], [ -75.529567, 39.966592 ], [ -75.528669, 39.966657 ], [ -75.528432, 39.966675 ], [ -75.528348, 39.966682 ], [ -75.527923, 39.966705 ], [ -75.527114, 39.966729 ], [ -75.526885, 39.966727 ], [ -75.526822, 39.966726 ], [ -75.526511, 39.966713 ], [ -75.525494, 39.966651 ], [ -75.524344, 39.966575 ], [ -75.524149, 39.966562 ], [ -75.523468, 39.966508 ], [ -75.522846, 39.966468 ], [ -75.522257, 39.966422 ], [ -75.521643, 39.966373 ], [ -75.521385, 39.966358 ], [ -75.521311, 39.966352 ], [ -75.521029, 39.966328 ], [ -75.52051, 39.966293 ], [ -75.519898, 39.966249 ], [ -75.51907, 39.966195 ], [ -75.518031, 39.966124 ], [ -75.517906, 39.966116 ], [ -75.517871, 39.966114 ], [ -75.517392, 39.966079 ], [ -75.5168, 39.966032 ], [ -75.516185, 39.965983 ], [ -75.515413, 39.965931 ], [ -75.514802, 39.965891 ], [ -75.513826, 39.965816 ], [ -75.513106, 39.965768 ], [ -75.511427, 39.965657 ], [ -75.511172, 39.965637 ], [ -75.511012, 39.965629 ], [ -75.510706, 39.96561 ], [ -75.509289, 39.965517 ], [ -75.508875, 39.965489 ], [ -75.508766, 39.965482 ], [ -75.50847, 39.965458 ], [ -75.508383, 39.965451 ], [ -75.508089, 39.96543 ], [ -75.507331, 39.965378 ], [ -75.507024, 39.965356 ], [ -75.506703, 39.965333 ], [ -75.506599, 39.965326 ], [ -75.505882, 39.965275 ], [ -75.505327, 39.965233 ], [ -75.504626, 39.965185 ], [ -75.50416, 39.965154 ], [ -75.503672, 39.965126 ], [ -75.502654, 39.965075 ], [ -75.501635, 39.96503 ], [ -75.501384, 39.965019 ], [ -75.500678, 39.964988 ], [ -75.500416, 39.964977 ], [ -75.500138, 39.964966 ], [ -75.499658, 39.964946 ], [ -75.499149, 39.964923 ], [ -75.49761, 39.964858 ], [ -75.496859, 39.964822 ], [ -75.496603, 39.964811 ], [ -75.494906, 39.964742 ], [ -75.494436, 39.964732 ], [ -75.494098, 39.964734 ], [ -75.493293, 39.964751 ], [ -75.492493, 39.964771 ], [ -75.491925, 39.964791 ], [ -75.491481, 39.964808 ], [ -75.491137, 39.964821 ], [ -75.490477, 39.964845 ], [ -75.489809, 39.964871 ], [ -75.489604, 39.96488 ], [ -75.489593, 39.96488 ], [ -75.489328, 39.964895 ], [ -75.489132, 39.964909 ], [ -75.488982, 39.964923 ], [ -75.488789, 39.964943 ], [ -75.488666, 39.964957 ], [ -75.48856, 39.964971 ], [ -75.488475, 39.96498 ], [ -75.48838, 39.964993 ], [ -75.488125, 39.965029 ], [ -75.48803, 39.965047 ], [ -75.487648, 39.965118 ], [ -75.487293, 39.965198 ], [ -75.487112, 39.965243 ], [ -75.486991, 39.965273 ], [ -75.486936, 39.965288 ], [ -75.486586, 39.965388 ], [ -75.486239, 39.965497 ], [ -75.485974, 39.965587 ], [ -75.485821, 39.965637 ], [ -75.483027, 39.966603 ], [ -75.482755, 39.966698 ], [ -75.48266, 39.966733 ], [ -75.481858, 39.96698 ], [ -75.48109, 39.967231 ], [ -75.480473, 39.96744 ], [ -75.479537, 39.967755 ], [ -75.479236, 39.967858 ], [ -75.47894, 39.96796 ], [ -75.478223, 39.968211 ], [ -75.476784, 39.968699 ], [ -75.476063, 39.968938 ], [ -75.475653, 39.969076 ], [ -75.47482, 39.969356 ], [ -75.474379, 39.969501 ], [ -75.473953, 39.969643 ], [ -75.473879, 39.969668 ], [ -75.473478, 39.969808 ], [ -75.472923, 39.97 ], [ -75.472757, 39.970051 ], [ -75.472642, 39.970087 ], [ -75.472451, 39.970152 ], [ -75.472251, 39.970214 ], [ -75.472061, 39.970272 ], [ -75.471907, 39.970315 ], [ -75.471758, 39.970352 ], [ -75.471559, 39.970409 ], [ -75.471395, 39.97045 ], [ -75.471259, 39.970479 ], [ -75.47106, 39.970521 ], [ -75.470813, 39.970577 ], [ -75.470507, 39.970634 ], [ -75.469839, 39.970749 ], [ -75.469068, 39.97087 ], [ -75.468852, 39.970904 ], [ -75.468002, 39.971044 ], [ -75.467754, 39.971086 ], [ -75.467376, 39.971152 ], [ -75.467066, 39.971222 ], [ -75.46692, 39.971256 ], [ -75.466464, 39.971371 ], [ -75.466011, 39.971498 ], [ -75.465345, 39.971698 ], [ -75.463847, 39.972147 ], [ -75.463552, 39.972229 ], [ -75.462971, 39.972386 ], [ -75.462707, 39.972453 ], [ -75.462366, 39.972536 ], [ -75.462159, 39.972586 ], [ -75.461851, 39.972654 ], [ -75.46158, 39.972703 ], [ -75.4615, 39.972718 ], [ -75.461433, 39.972732 ], [ -75.461171, 39.972778 ], [ -75.460605, 39.972868 ], [ -75.460078, 39.972957 ], [ -75.459479, 39.973051 ], [ -75.459283, 39.973085 ], [ -75.458813, 39.973164 ], [ -75.457582, 39.973379 ], [ -75.456432, 39.973572 ], [ -75.455125, 39.973813 ], [ -75.454736, 39.973879 ], [ -75.454366, 39.973937 ], [ -75.453947, 39.974002 ], [ -75.453807, 39.974025 ], [ -75.453227, 39.974126 ], [ -75.452952, 39.974174 ], [ -75.452306, 39.974284 ], [ -75.451769, 39.97437 ], [ -75.451501, 39.974412 ], [ -75.451371, 39.974438 ], [ -75.451067, 39.974499 ], [ -75.450823, 39.974528 ], [ -75.450778, 39.974533 ], [ -75.450414, 39.974578 ], [ -75.450161, 39.974602 ], [ -75.449861, 39.974627 ], [ -75.449511, 39.974651 ], [ -75.449208, 39.974669 ], [ -75.448953, 39.974681 ], [ -75.447923, 39.974734 ], [ -75.447536, 39.97475 ], [ -75.446994, 39.974771 ], [ -75.446058, 39.974816 ], [ -75.442933, 39.974951 ], [ -75.44219, 39.97499 ], [ -75.4419, 39.975009 ], [ -75.441446, 39.975037 ], [ -75.441307, 39.975041 ], [ -75.440981, 39.975066 ], [ -75.440792, 39.975083 ], [ -75.44058, 39.97511 ], [ -75.440393, 39.975135 ], [ -75.440204, 39.975167 ], [ -75.440032, 39.975198 ], [ -75.439858, 39.975232 ], [ -75.439652, 39.975275 ], [ -75.439428, 39.975328 ], [ -75.439219, 39.975384 ], [ -75.439043, 39.975429 ], [ -75.438853, 39.975484 ], [ -75.438594, 39.97557 ], [ -75.438336, 39.975663 ], [ -75.438282, 39.975684 ], [ -75.438076, 39.97576 ], [ -75.437682, 39.975915 ], [ -75.437375, 39.976036 ], [ -75.437131, 39.976133 ], [ -75.436465, 39.9764 ], [ -75.435857, 39.976647 ], [ -75.435735, 39.976697 ], [ -75.435333, 39.976864 ], [ -75.435189, 39.976925 ], [ -75.434981, 39.977011 ], [ -75.434728, 39.977111 ], [ -75.434502, 39.977211 ], [ -75.43337, 39.977668 ], [ -75.43336, 39.977672 ], [ -75.432718, 39.97793 ], [ -75.43198, 39.978237 ], [ -75.42996, 39.979036 ], [ -75.428349, 39.97969 ], [ -75.42746, 39.980101 ], [ -75.426692, 39.980475 ], [ -75.425904, 39.980866 ], [ -75.425831, 39.9809 ], [ -75.425626, 39.981001 ], [ -75.424976, 39.981319 ], [ -75.424303, 39.981646 ], [ -75.423751, 39.981913 ], [ -75.423054, 39.982246 ], [ -75.422424, 39.982564 ], [ -75.421629, 39.982945 ], [ -75.421215, 39.983148 ], [ -75.419491, 39.98399 ], [ -75.418353, 39.984544 ], [ -75.417346, 39.985028 ], [ -75.417099, 39.985144 ], [ -75.416934, 39.985217 ], [ -75.416787, 39.985278 ], [ -75.416651, 39.985326 ], [ -75.416558, 39.985357 ], [ -75.416406, 39.985403 ], [ -75.416158, 39.985468 ], [ -75.416119, 39.985475 ], [ -75.415976, 39.985506 ], [ -75.415883, 39.985524 ], [ -75.415842, 39.985531 ], [ -75.415652, 39.985558 ], [ -75.415388, 39.985585 ], [ -75.415266, 39.985594 ], [ -75.414794, 39.98563 ], [ -75.413561, 39.985741 ], [ -75.412712, 39.985816 ], [ -75.412135, 39.985864 ], [ -75.410518, 39.986007 ], [ -75.410034, 39.986053 ], [ -75.409213, 39.98611 ], [ -75.408701, 39.986145 ], [ -75.408114, 39.986197 ], [ -75.40763, 39.986233 ], [ -75.406224, 39.98634 ], [ -75.405127, 39.986414 ], [ -75.404511, 39.986467 ], [ -75.403506, 39.986543 ], [ -75.40329, 39.986562 ], [ -75.403122, 39.986576 ], [ -75.402768, 39.986601 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310212", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.599947, 39.952548 ], [ -75.599869, 39.95246 ], [ -75.598496, 39.950912 ], [ -75.598421, 39.950822 ], [ -75.598237, 39.950904 ], [ -75.59715, 39.951398 ], [ -75.596623, 39.951636 ], [ -75.596029, 39.951905 ], [ -75.596094, 39.951979 ], [ -75.596201, 39.952082 ], [ -75.596273, 39.952149 ], [ -75.596346, 39.95222 ], [ -75.596441, 39.952304 ], [ -75.596554, 39.952409 ], [ -75.596836, 39.952667 ], [ -75.597217, 39.95301 ], [ -75.597445, 39.953226 ], [ -75.59762, 39.953385 ], [ -75.597757, 39.953511 ], [ -75.597901, 39.953651 ], [ -75.598047, 39.953787 ], [ -75.598558, 39.954251 ], [ -75.599177, 39.954822 ], [ -75.599333, 39.954966 ], [ -75.599814, 39.955394 ], [ -75.600267, 39.955799 ], [ -75.600991, 39.956467 ], [ -75.601193, 39.956648 ], [ -75.60131, 39.956752 ], [ -75.601914, 39.957298 ], [ -75.602276, 39.95764 ], [ -75.602751, 39.958082 ], [ -75.603177, 39.958489 ], [ -75.603472, 39.958805 ], [ -75.604137, 39.959452 ], [ -75.604232, 39.959537 ], [ -75.604304, 39.959604 ], [ -75.604427, 39.959723 ], [ -75.604488, 39.959776 ], [ -75.604614, 39.959889 ], [ -75.604767, 39.960059 ], [ -75.604798, 39.960093 ], [ -75.604868, 39.960165 ], [ -75.604901, 39.960196 ], [ -75.605077, 39.960361 ], [ -75.605153, 39.960429 ], [ -75.605213, 39.960481 ], [ -75.605274, 39.960547 ], [ -75.605644, 39.960983 ], [ -75.605807, 39.961185 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.60383, 39.960007 ], [ -75.603537, 39.960137 ], [ -75.603262, 39.96026 ], [ -75.602038, 39.960816 ], [ -75.601723, 39.96096 ], [ -75.60098, 39.961293 ], [ -75.60045, 39.961521 ], [ -75.599806, 39.961804 ], [ -75.598996, 39.962157 ], [ -75.598477, 39.962385 ], [ -75.597979, 39.962599 ], [ -75.597362, 39.962872 ], [ -75.596561, 39.963227 ], [ -75.59604, 39.963457 ], [ -75.595858, 39.963539 ], [ -75.59535, 39.963766 ], [ -75.59517, 39.963844 ], [ -75.594661, 39.964068 ], [ -75.593767, 39.964462 ], [ -75.593114, 39.964755 ], [ -75.5924, 39.965068 ], [ -75.592366, 39.965084 ], [ -75.591749, 39.965361 ], [ -75.591414, 39.965516 ], [ -75.591231, 39.965654 ], [ -75.591152, 39.965714 ], [ -75.5911, 39.965759 ], [ -75.591047, 39.965813 ], [ -75.591008, 39.965857 ], [ -75.59098, 39.965893 ], [ -75.590944, 39.965945 ], [ -75.590923, 39.965987 ], [ -75.590903, 39.966048 ], [ -75.590887, 39.966114 ], [ -75.590879, 39.966163 ], [ -75.590867, 39.966237 ], [ -75.590845, 39.966417 ], [ -75.590813, 39.966564 ], [ -75.590797, 39.966625 ], [ -75.590767, 39.966694 ], [ -75.590732, 39.966766 ], [ -75.590666, 39.966859 ], [ -75.590615, 39.966913 ], [ -75.590553, 39.96697 ], [ -75.590487, 39.967022 ], [ -75.590413, 39.967068 ], [ -75.590344, 39.967107 ], [ -75.589913, 39.9673 ], [ -75.58913, 39.96767 ], [ -75.588378, 39.968 ], [ -75.588218, 39.96807 ], [ -75.587623, 39.96833 ], [ -75.587346, 39.968447 ], [ -75.587081, 39.968573 ], [ -75.586749, 39.968741 ], [ -75.586676, 39.968781 ], [ -75.586426, 39.968919 ], [ -75.586244, 39.969018 ], [ -75.585427, 39.96953 ], [ -75.584994, 39.969792 ], [ -75.584589, 39.97003 ], [ -75.584498, 39.970084 ], [ -75.584361, 39.970165 ], [ -75.584014, 39.970372 ], [ -75.583941, 39.970417 ], [ -75.584032, 39.970496 ], [ -75.584153, 39.970617 ], [ -75.584243, 39.970707 ], [ -75.584404, 39.970883 ], [ -75.584425, 39.970908 ], [ -75.584453, 39.970946 ], [ -75.584471, 39.97098 ], [ -75.584493, 39.971021 ], [ -75.584516, 39.971091 ], [ -75.584522, 39.971164 ], [ -75.58451, 39.971239 ], [ -75.584481, 39.971322 ], [ -75.584431, 39.971416 ], [ -75.584368, 39.971511 ], [ -75.584302, 39.971585 ], [ -75.584234, 39.971647 ], [ -75.584159, 39.971696 ], [ -75.584083, 39.971731 ], [ -75.584003, 39.971755 ], [ -75.583923, 39.971764 ], [ -75.583835, 39.971765 ], [ -75.583747, 39.971761 ], [ -75.58366, 39.971748 ], [ -75.583573, 39.971717 ], [ -75.583492, 39.971679 ], [ -75.583422, 39.97163 ], [ -75.583359, 39.971571 ], [ -75.583302, 39.971486 ], [ -75.583231, 39.97135 ], [ -75.583169, 39.971198 ], [ -75.583107, 39.971053 ], [ -75.58306, 39.970946 ], [ -75.583029, 39.970875 ], [ -75.582957, 39.970763 ], [ -75.582875, 39.970489 ], [ -75.582584, 39.96965 ], [ -75.581918, 39.967759 ], [ -75.581875, 39.967644 ], [ -75.581859, 39.967506 ], [ -75.581855, 39.96748 ], [ -75.581827, 39.967387 ], [ -75.581812, 39.967345 ], [ -75.581791, 39.967292 ], [ -75.581767, 39.967209 ], [ -75.581702, 39.96698 ], [ -75.581691, 39.96689 ], [ -75.581696, 39.966809 ], [ -75.581709, 39.966733 ], [ -75.581735, 39.966664 ], [ -75.581773, 39.966605 ], [ -75.581796, 39.966578 ], [ -75.581823, 39.96655 ], [ -75.581886, 39.966502 ], [ -75.581961, 39.966462 ], [ -75.582047, 39.966434 ], [ -75.58214, 39.966418 ], [ -75.58224, 39.966409 ], [ -75.582336, 39.966412 ], [ -75.582427, 39.966429 ], [ -75.582509, 39.966457 ], [ -75.582586, 39.966496 ], [ -75.582653, 39.966544 ], [ -75.582713, 39.966601 ], [ -75.582757, 39.966663 ], [ -75.582787, 39.966733 ], [ -75.582797, 39.966784 ], [ -75.582797, 39.966833 ], [ -75.582792, 39.966892 ], [ -75.582771, 39.966955 ], [ -75.582737, 39.967017 ], [ -75.5827, 39.967065 ], [ -75.582658, 39.967107 ], [ -75.582608, 39.967151 ], [ -75.58254, 39.967188 ], [ -75.582465, 39.967222 ], [ -75.582408, 39.967242 ], [ -75.582342, 39.967259 ], [ -75.581812, 39.967345 ], [ -75.581761, 39.967356 ], [ -75.581717, 39.967365 ], [ -75.581656, 39.967376 ], [ -75.581277, 39.96745 ], [ -75.581212, 39.967458 ], [ -75.581153, 39.967465 ], [ -75.581087, 39.967473 ], [ -75.580826, 39.967504 ], [ -75.580238, 39.96758 ], [ -75.580103, 39.967599 ], [ -75.580077, 39.967603 ], [ -75.579565, 39.967675 ], [ -75.579522, 39.967681 ], [ -75.57914, 39.967727 ], [ -75.578902, 39.967756 ], [ -75.578623, 39.967796 ], [ -75.578499, 39.967813 ], [ -75.578373, 39.967836 ], [ -75.578211, 39.96786 ], [ -75.577849, 39.967915 ], [ -75.577647, 39.967946 ], [ -75.577233, 39.968008 ], [ -75.576877, 39.968064 ], [ -75.57587, 39.968216 ], [ -75.574938, 39.968357 ], [ -75.57445, 39.96843 ], [ -75.573242, 39.968612 ], [ -75.57234, 39.968753 ], [ -75.571896, 39.968818 ], [ -75.571304, 39.968897 ], [ -75.570324, 39.969051 ], [ -75.569546, 39.969159 ], [ -75.568874, 39.969262 ], [ -75.568747, 39.969279 ], [ -75.568589, 39.969302 ], [ -75.568041, 39.969383 ], [ -75.56759, 39.969453 ], [ -75.567355, 39.969491 ], [ -75.567279, 39.969505 ], [ -75.567064, 39.969539 ], [ -75.566901, 39.969561 ], [ -75.566831, 39.96957 ], [ -75.566619, 39.969601 ], [ -75.566403, 39.969625 ], [ -75.566384, 39.969626 ], [ -75.566152, 39.969645 ], [ -75.565936, 39.969659 ], [ -75.565761, 39.969668 ], [ -75.56519, 39.969677 ], [ -75.564943, 39.969677 ], [ -75.564712, 39.969665 ], [ -75.564698, 39.969664 ], [ -75.564532, 39.969653 ], [ -75.564306, 39.96964 ], [ -75.564075, 39.96962 ], [ -75.563835, 39.969594 ], [ -75.563611, 39.969564 ], [ -75.563381, 39.969528 ], [ -75.563249, 39.969499 ], [ -75.562514, 39.96935 ], [ -75.561653, 39.969156 ], [ -75.560227, 39.968841 ], [ -75.558584, 39.968475 ], [ -75.558208, 39.968385 ], [ -75.55581, 39.967852 ], [ -75.555658, 39.967816 ], [ -75.555398, 39.967756 ], [ -75.554385, 39.967518 ], [ -75.553947, 39.967421 ], [ -75.55321, 39.967257 ], [ -75.552867, 39.967178 ], [ -75.552602, 39.967119 ], [ -75.551975, 39.966981 ], [ -75.551161, 39.9668 ], [ -75.550362, 39.966615 ], [ -75.550186, 39.966573 ], [ -75.549916, 39.966508 ], [ -75.549833, 39.966494 ], [ -75.548332, 39.966151 ], [ -75.548026, 39.96609 ], [ -75.547102, 39.965885 ], [ -75.546747, 39.965807 ], [ -75.546549, 39.965762 ], [ -75.546357, 39.96572 ], [ -75.546172, 39.965686 ], [ -75.545902, 39.965638 ], [ -75.545683, 39.965606 ], [ -75.545538, 39.965588 ], [ -75.545375, 39.965575 ], [ -75.545187, 39.965559 ], [ -75.545006, 39.965548 ], [ -75.544791, 39.96554 ], [ -75.544441, 39.965539 ], [ -75.544189, 39.965537 ], [ -75.542715, 39.965629 ], [ -75.542591, 39.965635 ], [ -75.542293, 39.965649 ], [ -75.541564, 39.9657 ], [ -75.540097, 39.965802 ], [ -75.539176, 39.965872 ], [ -75.538561, 39.965919 ], [ -75.538435, 39.965928 ], [ -75.53802, 39.965958 ], [ -75.535687, 39.966131 ], [ -75.53527, 39.966167 ], [ -75.534988, 39.96619 ], [ -75.534444, 39.966235 ], [ -75.534345, 39.966243 ], [ -75.532938, 39.966356 ], [ -75.531257, 39.966477 ], [ -75.530604, 39.966521 ], [ -75.530313, 39.966541 ], [ -75.530104, 39.966555 ], [ -75.529567, 39.966592 ], [ -75.528669, 39.966657 ], [ -75.528432, 39.966675 ], [ -75.528348, 39.966682 ], [ -75.527923, 39.966705 ], [ -75.527114, 39.966729 ], [ -75.526885, 39.966727 ], [ -75.526822, 39.966726 ], [ -75.526511, 39.966713 ], [ -75.525494, 39.966651 ], [ -75.524344, 39.966575 ], [ -75.524149, 39.966562 ], [ -75.523468, 39.966508 ], [ -75.522846, 39.966468 ], [ -75.522257, 39.966422 ], [ -75.521643, 39.966373 ], [ -75.521385, 39.966358 ], [ -75.521311, 39.966352 ], [ -75.521029, 39.966328 ], [ -75.52051, 39.966293 ], [ -75.519898, 39.966249 ], [ -75.51907, 39.966195 ], [ -75.518031, 39.966124 ], [ -75.517906, 39.966116 ], [ -75.517871, 39.966114 ], [ -75.517392, 39.966079 ], [ -75.5168, 39.966032 ], [ -75.516185, 39.965983 ], [ -75.515413, 39.965931 ], [ -75.514802, 39.965891 ], [ -75.513826, 39.965816 ], [ -75.513106, 39.965768 ], [ -75.511427, 39.965657 ], [ -75.511172, 39.965637 ], [ -75.511012, 39.965629 ], [ -75.510706, 39.96561 ], [ -75.509289, 39.965517 ], [ -75.508875, 39.965489 ], [ -75.508766, 39.965482 ], [ -75.50847, 39.965458 ], [ -75.508383, 39.965451 ], [ -75.508089, 39.96543 ], [ -75.507331, 39.965378 ], [ -75.507024, 39.965356 ], [ -75.506703, 39.965333 ], [ -75.506599, 39.965326 ], [ -75.505882, 39.965275 ], [ -75.505327, 39.965233 ], [ -75.504626, 39.965185 ], [ -75.50416, 39.965154 ], [ -75.503672, 39.965126 ], [ -75.502654, 39.965075 ], [ -75.501635, 39.96503 ], [ -75.501384, 39.965019 ], [ -75.500678, 39.964988 ], [ -75.500416, 39.964977 ], [ -75.500138, 39.964966 ], [ -75.499658, 39.964946 ], [ -75.499149, 39.964923 ], [ -75.49761, 39.964858 ], [ -75.496859, 39.964822 ], [ -75.496603, 39.964811 ], [ -75.494906, 39.964742 ], [ -75.494436, 39.964732 ], [ -75.494098, 39.964734 ], [ -75.493293, 39.964751 ], [ -75.492493, 39.964771 ], [ -75.491925, 39.964791 ], [ -75.491481, 39.964808 ], [ -75.491137, 39.964821 ], [ -75.490477, 39.964845 ], [ -75.489809, 39.964871 ], [ -75.489604, 39.96488 ], [ -75.489593, 39.96488 ], [ -75.489328, 39.964895 ], [ -75.489132, 39.964909 ], [ -75.488982, 39.964923 ], [ -75.488789, 39.964943 ], [ -75.488666, 39.964957 ], [ -75.48856, 39.964971 ], [ -75.488475, 39.96498 ], [ -75.48838, 39.964993 ], [ -75.488125, 39.965029 ], [ -75.48803, 39.965047 ], [ -75.487648, 39.965118 ], [ -75.487293, 39.965198 ], [ -75.487112, 39.965243 ], [ -75.486991, 39.965273 ], [ -75.486936, 39.965288 ], [ -75.486586, 39.965388 ], [ -75.486239, 39.965497 ], [ -75.485974, 39.965587 ], [ -75.485821, 39.965637 ], [ -75.483027, 39.966603 ], [ -75.482755, 39.966698 ], [ -75.48266, 39.966733 ], [ -75.481858, 39.96698 ], [ -75.48109, 39.967231 ], [ -75.480473, 39.96744 ], [ -75.479537, 39.967755 ], [ -75.479236, 39.967858 ], [ -75.47894, 39.96796 ], [ -75.478223, 39.968211 ], [ -75.476784, 39.968699 ], [ -75.476063, 39.968938 ], [ -75.475653, 39.969076 ], [ -75.47482, 39.969356 ], [ -75.474379, 39.969501 ], [ -75.473953, 39.969643 ], [ -75.473879, 39.969668 ], [ -75.473478, 39.969808 ], [ -75.472923, 39.97 ], [ -75.472757, 39.970051 ], [ -75.472642, 39.970087 ], [ -75.472451, 39.970152 ], [ -75.472251, 39.970214 ], [ -75.472061, 39.970272 ], [ -75.471907, 39.970315 ], [ -75.471758, 39.970352 ], [ -75.471559, 39.970409 ], [ -75.471395, 39.97045 ], [ -75.471259, 39.970479 ], [ -75.47106, 39.970521 ], [ -75.470813, 39.970577 ], [ -75.470507, 39.970634 ], [ -75.469839, 39.970749 ], [ -75.469068, 39.97087 ], [ -75.468852, 39.970904 ], [ -75.468002, 39.971044 ], [ -75.467754, 39.971086 ], [ -75.467376, 39.971152 ], [ -75.467066, 39.971222 ], [ -75.46692, 39.971256 ], [ -75.466464, 39.971371 ], [ -75.466011, 39.971498 ], [ -75.465345, 39.971698 ], [ -75.463847, 39.972147 ], [ -75.463552, 39.972229 ], [ -75.462971, 39.972386 ], [ -75.462707, 39.972453 ], [ -75.462366, 39.972536 ], [ -75.462159, 39.972586 ], [ -75.461851, 39.972654 ], [ -75.46158, 39.972703 ], [ -75.4615, 39.972718 ], [ -75.461433, 39.972732 ], [ -75.461171, 39.972778 ], [ -75.460605, 39.972868 ], [ -75.460078, 39.972957 ], [ -75.459479, 39.973051 ], [ -75.459283, 39.973085 ], [ -75.458813, 39.973164 ], [ -75.457582, 39.973379 ], [ -75.456432, 39.973572 ], [ -75.455125, 39.973813 ], [ -75.454736, 39.973879 ], [ -75.454366, 39.973937 ], [ -75.453947, 39.974002 ], [ -75.453807, 39.974025 ], [ -75.453227, 39.974126 ], [ -75.452952, 39.974174 ], [ -75.452306, 39.974284 ], [ -75.451769, 39.97437 ], [ -75.451501, 39.974412 ], [ -75.451371, 39.974438 ], [ -75.451067, 39.974499 ], [ -75.450823, 39.974528 ], [ -75.450778, 39.974533 ], [ -75.450414, 39.974578 ], [ -75.450161, 39.974602 ], [ -75.449861, 39.974627 ], [ -75.449511, 39.974651 ], [ -75.449208, 39.974669 ], [ -75.448953, 39.974681 ], [ -75.447923, 39.974734 ], [ -75.447536, 39.97475 ], [ -75.446994, 39.974771 ], [ -75.446058, 39.974816 ], [ -75.442933, 39.974951 ], [ -75.44219, 39.97499 ], [ -75.4419, 39.975009 ], [ -75.441446, 39.975037 ], [ -75.441307, 39.975041 ], [ -75.440981, 39.975066 ], [ -75.440792, 39.975083 ], [ -75.440818, 39.975201 ], [ -75.440925, 39.975778 ], [ -75.440953, 39.975953 ], [ -75.440981, 39.976081 ], [ -75.441023, 39.976192 ], [ -75.44109, 39.976316 ], [ -75.441191, 39.976469 ], [ -75.441308, 39.976621 ], [ -75.441419, 39.976762 ], [ -75.441195, 39.976927 ], [ -75.440574, 39.977216 ], [ -75.440429, 39.977255 ], [ -75.440358, 39.97726 ], [ -75.439669, 39.977571 ], [ -75.439152, 39.977809 ], [ -75.43902, 39.977869 ], [ -75.438952, 39.977897 ], [ -75.438872, 39.97792 ], [ -75.438791, 39.977934 ], [ -75.438712, 39.977937 ], [ -75.43862, 39.977927 ], [ -75.438557, 39.977914 ], [ -75.43849, 39.977889 ], [ -75.438416, 39.977852 ], [ -75.438353, 39.977813 ], [ -75.438304, 39.97777 ], [ -75.438248, 39.977696 ], [ -75.438206, 39.977613 ], [ -75.438166, 39.977492 ], [ -75.438132, 39.977377 ], [ -75.438101, 39.977272 ], [ -75.438064, 39.97716 ], [ -75.438024, 39.97705 ], [ -75.437986, 39.976957 ], [ -75.437949, 39.976876 ], [ -75.437895, 39.976777 ], [ -75.437835, 39.976678 ], [ -75.437743, 39.976549 ], [ -75.437606, 39.976354 ], [ -75.437446, 39.976136 ], [ -75.437375, 39.976036 ], [ -75.437131, 39.976133 ], [ -75.436465, 39.9764 ], [ -75.435857, 39.976647 ], [ -75.435735, 39.976697 ], [ -75.435333, 39.976864 ], [ -75.435189, 39.976925 ], [ -75.434981, 39.977011 ], [ -75.434728, 39.977111 ], [ -75.434502, 39.977211 ], [ -75.43337, 39.977668 ], [ -75.43336, 39.977672 ], [ -75.432718, 39.97793 ], [ -75.43198, 39.978237 ], [ -75.42996, 39.979036 ], [ -75.428349, 39.97969 ], [ -75.42746, 39.980101 ], [ -75.426692, 39.980475 ], [ -75.425904, 39.980866 ], [ -75.425831, 39.9809 ], [ -75.425626, 39.981001 ], [ -75.424976, 39.981319 ], [ -75.424303, 39.981646 ], [ -75.423751, 39.981913 ], [ -75.423054, 39.982246 ], [ -75.422424, 39.982564 ], [ -75.421629, 39.982945 ], [ -75.421215, 39.983148 ], [ -75.419491, 39.98399 ], [ -75.418353, 39.984544 ], [ -75.417346, 39.985028 ], [ -75.417099, 39.985144 ], [ -75.416934, 39.985217 ], [ -75.416787, 39.985278 ], [ -75.416651, 39.985326 ], [ -75.416558, 39.985357 ], [ -75.416406, 39.985403 ], [ -75.416158, 39.985468 ], [ -75.416119, 39.985475 ], [ -75.415976, 39.985506 ], [ -75.415883, 39.985524 ], [ -75.415842, 39.985531 ], [ -75.415652, 39.985558 ], [ -75.415388, 39.985585 ], [ -75.415266, 39.985594 ], [ -75.414794, 39.98563 ], [ -75.413561, 39.985741 ], [ -75.412712, 39.985816 ], [ -75.412135, 39.985864 ], [ -75.410518, 39.986007 ], [ -75.410034, 39.986053 ], [ -75.409213, 39.98611 ], [ -75.408701, 39.986145 ], [ -75.408114, 39.986197 ], [ -75.40763, 39.986233 ], [ -75.406224, 39.98634 ], [ -75.405127, 39.986414 ], [ -75.404511, 39.986467 ], [ -75.403506, 39.986543 ], [ -75.40329, 39.986562 ], [ -75.403122, 39.986576 ], [ -75.402768, 39.986601 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.262072, 39.961859 ], [ -75.261921, 39.961833 ], [ -75.261766, 39.961816 ], [ -75.261596, 39.961807 ], [ -75.261386, 39.961798 ], [ -75.261062, 39.961815 ], [ -75.260925, 39.961818 ], [ -75.259587, 39.96175 ], [ -75.259124, 39.961726 ], [ -75.259023, 39.961722 ], [ -75.258872, 39.961725 ], [ -75.258812, 39.961728 ], [ -75.258716, 39.961773 ], [ -75.258601, 39.961778 ], [ -75.258369, 39.961803 ], [ -75.258003, 39.961866 ], [ -75.25771, 39.961915 ], [ -75.257207, 39.961991 ], [ -75.257304, 39.962069 ], [ -75.257481, 39.962123 ], [ -75.258284, 39.962026 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310213", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.400767, 39.987483 ], [ -75.400137, 39.987773 ], [ -75.400007, 39.987826 ], [ -75.399887, 39.987869 ], [ -75.399746, 39.987908 ], [ -75.399599, 39.987942 ], [ -75.399379, 39.98798 ], [ -75.39911, 39.98802 ], [ -75.39909, 39.987955 ], [ -75.399035, 39.987894 ], [ -75.399, 39.987874 ], [ -75.398916, 39.98785 ], [ -75.398851, 39.987851 ], [ -75.398811, 39.987863 ], [ -75.398822, 39.987763 ], [ -75.398828, 39.987687 ], [ -75.39884, 39.987612 ], [ -75.398851, 39.987547 ], [ -75.398868, 39.987477 ], [ -75.39889, 39.987393 ], [ -75.398919, 39.987299 ], [ -75.398947, 39.987215 ], [ -75.398992, 39.987085 ], [ -75.39911, 39.986756 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310214", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.414138, 39.977551 ], [ -75.414896, 39.97705 ], [ -75.415019, 39.97697 ], [ -75.415132, 39.976906 ], [ -75.415242, 39.976849 ], [ -75.41534, 39.976811 ], [ -75.415431, 39.976787 ], [ -75.415543, 39.976765 ], [ -75.415618, 39.976752 ], [ -75.415733, 39.976748 ], [ -75.415951, 39.976779 ], [ -75.417315, 39.977126 ], [ -75.417603, 39.977242 ], [ -75.417744, 39.977329 ], [ -75.417842, 39.977436 ], [ -75.418005, 39.977719 ], [ -75.41808, 39.978047 ], [ -75.418179, 39.978615 ], [ -75.418309, 39.979259 ], [ -75.41841, 39.979552 ], [ -75.41859, 39.979769 ], [ -75.418702, 39.979856 ], [ -75.418934, 39.979963 ], [ -75.419169, 39.980044 ], [ -75.419501, 39.980081 ], [ -75.419791, 39.980075 ], [ -75.420003, 39.980025 ], [ -75.420268, 39.979917 ], [ -75.421022, 39.979549 ], [ -75.421454, 39.979369 ], [ -75.421681, 39.979321 ], [ -75.421865, 39.979296 ], [ -75.422176, 39.979301 ], [ -75.422281, 39.979313 ], [ -75.422387, 39.979324 ], [ -75.422574, 39.979391 ], [ -75.422773, 39.979479 ], [ -75.423048, 39.979651 ], [ -75.423892, 39.980253 ], [ -75.423945, 39.980301 ], [ -75.42412, 39.980456 ], [ -75.424442, 39.98076 ], [ -75.424976, 39.981319 ], [ -75.424303, 39.981646 ], [ -75.423751, 39.981913 ], [ -75.423054, 39.982246 ], [ -75.422424, 39.982564 ], [ -75.421629, 39.982945 ], [ -75.421215, 39.983148 ], [ -75.419491, 39.98399 ], [ -75.418353, 39.984544 ], [ -75.417346, 39.985028 ], [ -75.417099, 39.985144 ], [ -75.416934, 39.985217 ], [ -75.416787, 39.985278 ], [ -75.416651, 39.985326 ], [ -75.416558, 39.985357 ], [ -75.416406, 39.985403 ], [ -75.416158, 39.985468 ], [ -75.416119, 39.985475 ], [ -75.415976, 39.985506 ], [ -75.415883, 39.985524 ], [ -75.415842, 39.985531 ], [ -75.415652, 39.985558 ], [ -75.415388, 39.985585 ], [ -75.415266, 39.985594 ], [ -75.414794, 39.98563 ], [ -75.413561, 39.985741 ], [ -75.412712, 39.985816 ], [ -75.412135, 39.985864 ], [ -75.410518, 39.986007 ], [ -75.410034, 39.986053 ], [ -75.409213, 39.98611 ], [ -75.408701, 39.986145 ], [ -75.408114, 39.986197 ], [ -75.40763, 39.986233 ], [ -75.406224, 39.98634 ], [ -75.405127, 39.986414 ], [ -75.404511, 39.986467 ], [ -75.403506, 39.986543 ], [ -75.40329, 39.986562 ], [ -75.403122, 39.986576 ], [ -75.402768, 39.986601 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310215", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.413979, 39.977644 ], [ -75.413833, 39.977717 ], [ -75.413732, 39.977757 ], [ -75.413639, 39.977781 ], [ -75.413536, 39.9778 ], [ -75.413412, 39.977809 ], [ -75.413271, 39.977809 ], [ -75.413133, 39.977793 ], [ -75.413022, 39.977773 ], [ -75.412904, 39.977744 ], [ -75.412797, 39.977703 ], [ -75.412689, 39.977647 ], [ -75.412566, 39.977565 ], [ -75.412241, 39.977284 ], [ -75.411971, 39.977042 ], [ -75.411622, 39.977317 ], [ -75.411451, 39.977454 ], [ -75.411166, 39.977703 ], [ -75.410932, 39.977906 ], [ -75.410738, 39.978055 ], [ -75.4105, 39.978221 ], [ -75.410152, 39.978445 ], [ -75.409734, 39.978722 ], [ -75.409208, 39.979068 ], [ -75.408553, 39.979498 ], [ -75.408152, 39.979765 ], [ -75.407656, 39.980109 ], [ -75.40741, 39.980284 ], [ -75.407076, 39.980525 ], [ -75.406877, 39.980675 ], [ -75.406742, 39.980767 ], [ -75.406004, 39.981325 ], [ -75.405637, 39.981612 ], [ -75.405545, 39.981694 ], [ -75.405467, 39.981767 ], [ -75.405417, 39.981823 ], [ -75.405365, 39.981891 ], [ -75.405304, 39.981991 ], [ -75.405172, 39.98224 ], [ -75.405022, 39.982526 ], [ -75.404702, 39.982993 ], [ -75.404187, 39.983895 ], [ -75.404069, 39.984097 ], [ -75.403956, 39.98428 ], [ -75.403916, 39.984342 ], [ -75.403881, 39.984397 ], [ -75.403832, 39.984459 ], [ -75.403779, 39.984517 ], [ -75.403717, 39.984586 ], [ -75.403536, 39.984756 ], [ -75.40314, 39.985115 ], [ -75.40294, 39.985282 ], [ -75.402785, 39.985431 ], [ -75.40245, 39.985752 ], [ -75.40227, 39.985929 ], [ -75.402247, 39.985971 ], [ -75.40223, 39.986017 ], [ -75.402228, 39.986061 ], [ -75.402241, 39.986131 ], [ -75.402267, 39.986185 ], [ -75.402301, 39.98623 ], [ -75.402363, 39.986278 ], [ -75.402472, 39.98635 ], [ -75.402532, 39.986404 ], [ -75.402568, 39.986459 ], [ -75.402585, 39.9865 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310216", "route_id": "104" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.599947, 39.952548 ], [ -75.599869, 39.95246 ], [ -75.598496, 39.950912 ], [ -75.598421, 39.950822 ], [ -75.598237, 39.950904 ], [ -75.59715, 39.951398 ], [ -75.596623, 39.951636 ], [ -75.596029, 39.951905 ], [ -75.596094, 39.951979 ], [ -75.596201, 39.952082 ], [ -75.596273, 39.952149 ], [ -75.596346, 39.95222 ], [ -75.596441, 39.952304 ], [ -75.596554, 39.952409 ], [ -75.596836, 39.952667 ], [ -75.597217, 39.95301 ], [ -75.597445, 39.953226 ], [ -75.59762, 39.953385 ], [ -75.597757, 39.953511 ], [ -75.597901, 39.953651 ], [ -75.598047, 39.953787 ], [ -75.598558, 39.954251 ], [ -75.599177, 39.954822 ], [ -75.599333, 39.954966 ], [ -75.599814, 39.955394 ], [ -75.600267, 39.955799 ], [ -75.600991, 39.956467 ], [ -75.601193, 39.956648 ], [ -75.60131, 39.956752 ], [ -75.601914, 39.957298 ], [ -75.602276, 39.95764 ], [ -75.602751, 39.958082 ], [ -75.603177, 39.958489 ], [ -75.603472, 39.958805 ], [ -75.604137, 39.959452 ], [ -75.604232, 39.959537 ], [ -75.604304, 39.959604 ], [ -75.604427, 39.959723 ], [ -75.604488, 39.959776 ], [ -75.604614, 39.959889 ], [ -75.604767, 39.960059 ], [ -75.604798, 39.960093 ], [ -75.604868, 39.960165 ], [ -75.604901, 39.960196 ], [ -75.605077, 39.960361 ], [ -75.605153, 39.960429 ], [ -75.605213, 39.960481 ], [ -75.605274, 39.960547 ], [ -75.605644, 39.960983 ], [ -75.605807, 39.961185 ], [ -75.605997, 39.96142 ], [ -75.606299, 39.961278 ], [ -75.606468, 39.961197 ], [ -75.606685, 39.961101 ], [ -75.606727, 39.961081 ], [ -75.606923, 39.960991 ], [ -75.607162, 39.960892 ], [ -75.607353, 39.960814 ], [ -75.607719, 39.960665 ], [ -75.608475, 39.960336 ], [ -75.609867, 39.959728 ], [ -75.609509, 39.959268 ], [ -75.609274, 39.958946 ], [ -75.609132, 39.958762 ], [ -75.608822, 39.958355 ], [ -75.608804, 39.958328 ], [ -75.608496, 39.957859 ], [ -75.608022, 39.958043 ], [ -75.607823, 39.957743 ], [ -75.607329, 39.957951 ], [ -75.607514, 39.95826 ], [ -75.607368, 39.958326 ], [ -75.6073, 39.958355 ], [ -75.607213, 39.958396 ], [ -75.607146, 39.958431 ], [ -75.607059, 39.958478 ], [ -75.606962, 39.958532 ], [ -75.606854, 39.958588 ], [ -75.60676, 39.958632 ], [ -75.606421, 39.95879 ], [ -75.606282, 39.958856 ], [ -75.60624, 39.958877 ], [ -75.606113, 39.958942 ], [ -75.605691, 39.959129 ], [ -75.605352, 39.959288 ], [ -75.60519, 39.959365 ], [ -75.604924, 39.959495 ], [ -75.604692, 39.959605 ], [ -75.604677, 39.959613 ], [ -75.604427, 39.959723 ], [ -75.60383, 39.960007 ], [ -75.603537, 39.960137 ], [ -75.603262, 39.96026 ], [ -75.602038, 39.960816 ], [ -75.601723, 39.96096 ], [ -75.60098, 39.961293 ], [ -75.60045, 39.961521 ], [ -75.599806, 39.961804 ], [ -75.598996, 39.962157 ], [ -75.598477, 39.962385 ], [ -75.597979, 39.962599 ], [ -75.597362, 39.962872 ], [ -75.596561, 39.963227 ], [ -75.59604, 39.963457 ], [ -75.595858, 39.963539 ], [ -75.59535, 39.963766 ], [ -75.59517, 39.963844 ], [ -75.594661, 39.964068 ], [ -75.593767, 39.964462 ], [ -75.593114, 39.964755 ], [ -75.5924, 39.965068 ], [ -75.592366, 39.965084 ], [ -75.591749, 39.965361 ], [ -75.591414, 39.965516 ], [ -75.591231, 39.965654 ], [ -75.591152, 39.965714 ], [ -75.5911, 39.965759 ], [ -75.591047, 39.965813 ], [ -75.591008, 39.965857 ], [ -75.59098, 39.965893 ], [ -75.590944, 39.965945 ], [ -75.590923, 39.965987 ], [ -75.590903, 39.966048 ], [ -75.590887, 39.966114 ], [ -75.590879, 39.966163 ], [ -75.590867, 39.966237 ], [ -75.590845, 39.966417 ], [ -75.590813, 39.966564 ], [ -75.590797, 39.966625 ], [ -75.590767, 39.966694 ], [ -75.590732, 39.966766 ], [ -75.590666, 39.966859 ], [ -75.590615, 39.966913 ], [ -75.590553, 39.96697 ], [ -75.590487, 39.967022 ], [ -75.590413, 39.967068 ], [ -75.590344, 39.967107 ], [ -75.589913, 39.9673 ], [ -75.58913, 39.96767 ], [ -75.588378, 39.968 ], [ -75.588218, 39.96807 ], [ -75.587623, 39.96833 ], [ -75.587346, 39.968447 ], [ -75.587081, 39.968573 ], [ -75.586749, 39.968741 ], [ -75.586676, 39.968781 ], [ -75.586426, 39.968919 ], [ -75.586244, 39.969018 ], [ -75.585427, 39.96953 ], [ -75.584994, 39.969792 ], [ -75.584589, 39.97003 ], [ -75.584498, 39.970084 ], [ -75.584361, 39.970165 ], [ -75.584014, 39.970372 ], [ -75.583941, 39.970417 ], [ -75.584032, 39.970496 ], [ -75.584153, 39.970617 ], [ -75.584243, 39.970707 ], [ -75.584404, 39.970883 ], [ -75.584425, 39.970908 ], [ -75.584453, 39.970946 ], [ -75.584471, 39.97098 ], [ -75.584493, 39.971021 ], [ -75.584516, 39.971091 ], [ -75.584522, 39.971164 ], [ -75.58451, 39.971239 ], [ -75.584481, 39.971322 ], [ -75.584431, 39.971416 ], [ -75.584368, 39.971511 ], [ -75.584302, 39.971585 ], [ -75.584234, 39.971647 ], [ -75.584159, 39.971696 ], [ -75.584083, 39.971731 ], [ -75.584003, 39.971755 ], [ -75.583923, 39.971764 ], [ -75.583835, 39.971765 ], [ -75.583747, 39.971761 ], [ -75.58366, 39.971748 ], [ -75.583573, 39.971717 ], [ -75.583492, 39.971679 ], [ -75.583422, 39.97163 ], [ -75.583359, 39.971571 ], [ -75.583302, 39.971486 ], [ -75.583231, 39.97135 ], [ -75.583169, 39.971198 ], [ -75.583107, 39.971053 ], [ -75.58306, 39.970946 ], [ -75.583029, 39.970875 ], [ -75.582957, 39.970763 ], [ -75.582875, 39.970489 ], [ -75.582584, 39.96965 ], [ -75.581918, 39.967759 ], [ -75.581875, 39.967644 ], [ -75.581859, 39.967506 ], [ -75.581855, 39.96748 ], [ -75.581827, 39.967387 ], [ -75.581812, 39.967345 ], [ -75.581791, 39.967292 ], [ -75.581767, 39.967209 ], [ -75.581702, 39.96698 ], [ -75.581691, 39.96689 ], [ -75.581696, 39.966809 ], [ -75.581709, 39.966733 ], [ -75.581735, 39.966664 ], [ -75.581773, 39.966605 ], [ -75.581796, 39.966578 ], [ -75.581823, 39.96655 ], [ -75.581886, 39.966502 ], [ -75.581961, 39.966462 ], [ -75.582047, 39.966434 ], [ -75.58214, 39.966418 ], [ -75.58224, 39.966409 ], [ -75.582336, 39.966412 ], [ -75.582427, 39.966429 ], [ -75.582509, 39.966457 ], [ -75.582586, 39.966496 ], [ -75.582653, 39.966544 ], [ -75.582713, 39.966601 ], [ -75.582757, 39.966663 ], [ -75.582787, 39.966733 ], [ -75.582797, 39.966784 ], [ -75.582797, 39.966833 ], [ -75.582792, 39.966892 ], [ -75.582771, 39.966955 ], [ -75.582737, 39.967017 ], [ -75.5827, 39.967065 ], [ -75.582658, 39.967107 ], [ -75.582608, 39.967151 ], [ -75.58254, 39.967188 ], [ -75.582465, 39.967222 ], [ -75.582408, 39.967242 ], [ -75.582342, 39.967259 ], [ -75.581812, 39.967345 ], [ -75.581761, 39.967356 ], [ -75.581717, 39.967365 ], [ -75.581656, 39.967376 ], [ -75.581277, 39.96745 ], [ -75.581212, 39.967458 ], [ -75.581153, 39.967465 ], [ -75.581087, 39.967473 ], [ -75.580826, 39.967504 ], [ -75.580238, 39.96758 ], [ -75.580103, 39.967599 ], [ -75.580077, 39.967603 ], [ -75.579565, 39.967675 ], [ -75.579522, 39.967681 ], [ -75.57914, 39.967727 ], [ -75.578902, 39.967756 ], [ -75.578623, 39.967796 ], [ -75.578499, 39.967813 ], [ -75.578373, 39.967836 ], [ -75.578211, 39.96786 ], [ -75.577849, 39.967915 ], [ -75.577647, 39.967946 ], [ -75.577233, 39.968008 ], [ -75.576877, 39.968064 ], [ -75.57587, 39.968216 ], [ -75.574938, 39.968357 ], [ -75.57445, 39.96843 ], [ -75.573242, 39.968612 ], [ -75.57234, 39.968753 ], [ -75.571896, 39.968818 ], [ -75.571304, 39.968897 ], [ -75.570324, 39.969051 ], [ -75.569546, 39.969159 ], [ -75.568874, 39.969262 ], [ -75.568747, 39.969279 ], [ -75.568589, 39.969302 ], [ -75.568041, 39.969383 ], [ -75.56759, 39.969453 ], [ -75.567355, 39.969491 ], [ -75.567279, 39.969505 ], [ -75.567064, 39.969539 ], [ -75.566901, 39.969561 ], [ -75.566831, 39.96957 ], [ -75.566619, 39.969601 ], [ -75.566403, 39.969625 ], [ -75.566384, 39.969626 ], [ -75.566152, 39.969645 ], [ -75.565936, 39.969659 ], [ -75.565761, 39.969668 ], [ -75.56519, 39.969677 ], [ -75.564943, 39.969677 ], [ -75.564712, 39.969665 ], [ -75.564698, 39.969664 ], [ -75.564532, 39.969653 ], [ -75.564306, 39.96964 ], [ -75.564075, 39.96962 ], [ -75.563835, 39.969594 ], [ -75.563611, 39.969564 ], [ -75.563381, 39.969528 ], [ -75.563249, 39.969499 ], [ -75.562514, 39.96935 ], [ -75.561653, 39.969156 ], [ -75.560227, 39.968841 ], [ -75.558584, 39.968475 ], [ -75.558208, 39.968385 ], [ -75.55581, 39.967852 ], [ -75.555658, 39.967816 ], [ -75.555398, 39.967756 ], [ -75.554385, 39.967518 ], [ -75.553947, 39.967421 ], [ -75.55321, 39.967257 ], [ -75.552867, 39.967178 ], [ -75.552602, 39.967119 ], [ -75.551975, 39.966981 ], [ -75.551161, 39.9668 ], [ -75.550362, 39.966615 ], [ -75.550186, 39.966573 ], [ -75.549916, 39.966508 ], [ -75.549833, 39.966494 ], [ -75.548332, 39.966151 ], [ -75.548026, 39.96609 ], [ -75.547102, 39.965885 ], [ -75.546747, 39.965807 ], [ -75.546549, 39.965762 ], [ -75.546357, 39.96572 ], [ -75.546172, 39.965686 ], [ -75.545902, 39.965638 ], [ -75.545683, 39.965606 ], [ -75.545538, 39.965588 ], [ -75.545375, 39.965575 ], [ -75.545187, 39.965559 ], [ -75.545006, 39.965548 ], [ -75.544791, 39.96554 ], [ -75.544441, 39.965539 ], [ -75.544189, 39.965537 ], [ -75.542715, 39.965629 ], [ -75.542591, 39.965635 ], [ -75.542293, 39.965649 ], [ -75.541564, 39.9657 ], [ -75.540097, 39.965802 ], [ -75.539176, 39.965872 ], [ -75.538561, 39.965919 ], [ -75.538435, 39.965928 ], [ -75.53802, 39.965958 ], [ -75.535687, 39.966131 ], [ -75.53527, 39.966167 ], [ -75.534988, 39.96619 ], [ -75.534444, 39.966235 ], [ -75.534345, 39.966243 ], [ -75.532938, 39.966356 ], [ -75.531257, 39.966477 ], [ -75.530604, 39.966521 ], [ -75.530313, 39.966541 ], [ -75.530104, 39.966555 ], [ -75.529567, 39.966592 ], [ -75.528669, 39.966657 ], [ -75.528432, 39.966675 ], [ -75.528348, 39.966682 ], [ -75.527923, 39.966705 ], [ -75.527114, 39.966729 ], [ -75.526885, 39.966727 ], [ -75.526822, 39.966726 ], [ -75.526511, 39.966713 ], [ -75.525494, 39.966651 ], [ -75.524344, 39.966575 ], [ -75.524149, 39.966562 ], [ -75.523468, 39.966508 ], [ -75.522846, 39.966468 ], [ -75.522257, 39.966422 ], [ -75.521643, 39.966373 ], [ -75.521385, 39.966358 ], [ -75.521311, 39.966352 ], [ -75.521029, 39.966328 ], [ -75.52051, 39.966293 ], [ -75.519898, 39.966249 ], [ -75.51907, 39.966195 ], [ -75.518031, 39.966124 ], [ -75.517906, 39.966116 ], [ -75.517871, 39.966114 ], [ -75.517392, 39.966079 ], [ -75.5168, 39.966032 ], [ -75.516185, 39.965983 ], [ -75.515413, 39.965931 ], [ -75.514802, 39.965891 ], [ -75.513826, 39.965816 ], [ -75.513106, 39.965768 ], [ -75.511427, 39.965657 ], [ -75.511172, 39.965637 ], [ -75.511012, 39.965629 ], [ -75.510706, 39.96561 ], [ -75.509289, 39.965517 ], [ -75.508875, 39.965489 ], [ -75.508766, 39.965482 ], [ -75.50847, 39.965458 ], [ -75.508383, 39.965451 ], [ -75.508089, 39.96543 ], [ -75.507331, 39.965378 ], [ -75.507024, 39.965356 ], [ -75.506703, 39.965333 ], [ -75.506599, 39.965326 ], [ -75.505882, 39.965275 ], [ -75.505327, 39.965233 ], [ -75.504626, 39.965185 ], [ -75.50416, 39.965154 ], [ -75.503672, 39.965126 ], [ -75.502654, 39.965075 ], [ -75.501635, 39.96503 ], [ -75.501384, 39.965019 ], [ -75.500678, 39.964988 ], [ -75.500416, 39.964977 ], [ -75.500138, 39.964966 ], [ -75.499658, 39.964946 ], [ -75.499149, 39.964923 ], [ -75.49761, 39.964858 ], [ -75.496859, 39.964822 ], [ -75.496603, 39.964811 ], [ -75.494906, 39.964742 ], [ -75.494436, 39.964732 ], [ -75.494098, 39.964734 ], [ -75.493293, 39.964751 ], [ -75.492493, 39.964771 ], [ -75.491925, 39.964791 ], [ -75.491481, 39.964808 ], [ -75.491137, 39.964821 ], [ -75.490477, 39.964845 ], [ -75.489809, 39.964871 ], [ -75.489604, 39.96488 ], [ -75.489593, 39.96488 ], [ -75.489328, 39.964895 ], [ -75.489132, 39.964909 ], [ -75.488982, 39.964923 ], [ -75.488789, 39.964943 ], [ -75.488666, 39.964957 ], [ -75.48856, 39.964971 ], [ -75.488475, 39.96498 ], [ -75.48838, 39.964993 ], [ -75.488125, 39.965029 ], [ -75.48803, 39.965047 ], [ -75.487648, 39.965118 ], [ -75.487293, 39.965198 ], [ -75.487112, 39.965243 ], [ -75.486991, 39.965273 ], [ -75.486936, 39.965288 ], [ -75.486586, 39.965388 ], [ -75.486239, 39.965497 ], [ -75.485974, 39.965587 ], [ -75.485821, 39.965637 ], [ -75.483027, 39.966603 ], [ -75.482755, 39.966698 ], [ -75.48266, 39.966733 ], [ -75.481858, 39.96698 ], [ -75.48109, 39.967231 ], [ -75.480473, 39.96744 ], [ -75.479537, 39.967755 ], [ -75.479236, 39.967858 ], [ -75.47894, 39.96796 ], [ -75.478223, 39.968211 ], [ -75.476784, 39.968699 ], [ -75.476063, 39.968938 ], [ -75.475653, 39.969076 ], [ -75.47482, 39.969356 ], [ -75.474379, 39.969501 ], [ -75.473953, 39.969643 ], [ -75.473879, 39.969668 ], [ -75.473478, 39.969808 ], [ -75.472923, 39.97 ], [ -75.472757, 39.970051 ], [ -75.472642, 39.970087 ], [ -75.472451, 39.970152 ], [ -75.472251, 39.970214 ], [ -75.472061, 39.970272 ], [ -75.471907, 39.970315 ], [ -75.471758, 39.970352 ], [ -75.471559, 39.970409 ], [ -75.471395, 39.97045 ], [ -75.471259, 39.970479 ], [ -75.47106, 39.970521 ], [ -75.470813, 39.970577 ], [ -75.470507, 39.970634 ], [ -75.469839, 39.970749 ], [ -75.469068, 39.97087 ], [ -75.468852, 39.970904 ], [ -75.468002, 39.971044 ], [ -75.467754, 39.971086 ], [ -75.467376, 39.971152 ], [ -75.467066, 39.971222 ], [ -75.46692, 39.971256 ], [ -75.466464, 39.971371 ], [ -75.466011, 39.971498 ], [ -75.465345, 39.971698 ], [ -75.463847, 39.972147 ], [ -75.463552, 39.972229 ], [ -75.462971, 39.972386 ], [ -75.462707, 39.972453 ], [ -75.462366, 39.972536 ], [ -75.462159, 39.972586 ], [ -75.461851, 39.972654 ], [ -75.46158, 39.972703 ], [ -75.4615, 39.972718 ], [ -75.461433, 39.972732 ], [ -75.461171, 39.972778 ], [ -75.460605, 39.972868 ], [ -75.460078, 39.972957 ], [ -75.459479, 39.973051 ], [ -75.459283, 39.973085 ], [ -75.458813, 39.973164 ], [ -75.457582, 39.973379 ], [ -75.456432, 39.973572 ], [ -75.455125, 39.973813 ], [ -75.454736, 39.973879 ], [ -75.454366, 39.973937 ], [ -75.453947, 39.974002 ], [ -75.453807, 39.974025 ], [ -75.453227, 39.974126 ], [ -75.452952, 39.974174 ], [ -75.452306, 39.974284 ], [ -75.451769, 39.97437 ], [ -75.451501, 39.974412 ], [ -75.451371, 39.974438 ], [ -75.451067, 39.974499 ], [ -75.450823, 39.974528 ], [ -75.450778, 39.974533 ], [ -75.450414, 39.974578 ], [ -75.450161, 39.974602 ], [ -75.449861, 39.974627 ], [ -75.449511, 39.974651 ], [ -75.449208, 39.974669 ], [ -75.448953, 39.974681 ], [ -75.447923, 39.974734 ], [ -75.447536, 39.97475 ], [ -75.446994, 39.974771 ], [ -75.446058, 39.974816 ], [ -75.442933, 39.974951 ], [ -75.44219, 39.97499 ], [ -75.4419, 39.975009 ], [ -75.441446, 39.975037 ], [ -75.441307, 39.975041 ], [ -75.440981, 39.975066 ], [ -75.440792, 39.975083 ], [ -75.440818, 39.975201 ], [ -75.440925, 39.975778 ], [ -75.440953, 39.975953 ], [ -75.440981, 39.976081 ], [ -75.441023, 39.976192 ], [ -75.44109, 39.976316 ], [ -75.441191, 39.976469 ], [ -75.441308, 39.976621 ], [ -75.441419, 39.976762 ], [ -75.441195, 39.976927 ], [ -75.440574, 39.977216 ], [ -75.440429, 39.977255 ], [ -75.440358, 39.97726 ], [ -75.439669, 39.977571 ], [ -75.439152, 39.977809 ], [ -75.43902, 39.977869 ], [ -75.438952, 39.977897 ], [ -75.438872, 39.97792 ], [ -75.438791, 39.977934 ], [ -75.438712, 39.977937 ], [ -75.43862, 39.977927 ], [ -75.438557, 39.977914 ], [ -75.43849, 39.977889 ], [ -75.438416, 39.977852 ], [ -75.438353, 39.977813 ], [ -75.438304, 39.97777 ], [ -75.438248, 39.977696 ], [ -75.438206, 39.977613 ], [ -75.438166, 39.977492 ], [ -75.438132, 39.977377 ], [ -75.438101, 39.977272 ], [ -75.438064, 39.97716 ], [ -75.438024, 39.97705 ], [ -75.437986, 39.976957 ], [ -75.437949, 39.976876 ], [ -75.437895, 39.976777 ], [ -75.437835, 39.976678 ], [ -75.437743, 39.976549 ], [ -75.437606, 39.976354 ], [ -75.437446, 39.976136 ], [ -75.437375, 39.976036 ], [ -75.437131, 39.976133 ], [ -75.436465, 39.9764 ], [ -75.435857, 39.976647 ], [ -75.435735, 39.976697 ], [ -75.435333, 39.976864 ], [ -75.435189, 39.976925 ], [ -75.434981, 39.977011 ], [ -75.434728, 39.977111 ], [ -75.434502, 39.977211 ], [ -75.43337, 39.977668 ], [ -75.43336, 39.977672 ], [ -75.432718, 39.97793 ], [ -75.43198, 39.978237 ], [ -75.42996, 39.979036 ], [ -75.428349, 39.97969 ], [ -75.42746, 39.980101 ], [ -75.426692, 39.980475 ], [ -75.425904, 39.980866 ], [ -75.425831, 39.9809 ], [ -75.425626, 39.981001 ], [ -75.424976, 39.981319 ], [ -75.424303, 39.981646 ], [ -75.423751, 39.981913 ], [ -75.423054, 39.982246 ], [ -75.422424, 39.982564 ], [ -75.421629, 39.982945 ], [ -75.421215, 39.983148 ], [ -75.419491, 39.98399 ], [ -75.418353, 39.984544 ], [ -75.417346, 39.985028 ], [ -75.417099, 39.985144 ], [ -75.416934, 39.985217 ], [ -75.416787, 39.985278 ], [ -75.416651, 39.985326 ], [ -75.416558, 39.985357 ], [ -75.416406, 39.985403 ], [ -75.416158, 39.985468 ], [ -75.416119, 39.985475 ], [ -75.415976, 39.985506 ], [ -75.415883, 39.985524 ], [ -75.415842, 39.985531 ], [ -75.415652, 39.985558 ], [ -75.415388, 39.985585 ], [ -75.415266, 39.985594 ], [ -75.414794, 39.98563 ], [ -75.413561, 39.985741 ], [ -75.412712, 39.985816 ], [ -75.412135, 39.985864 ], [ -75.410518, 39.986007 ], [ -75.410034, 39.986053 ], [ -75.409213, 39.98611 ], [ -75.408701, 39.986145 ], [ -75.408114, 39.986197 ], [ -75.40763, 39.986233 ], [ -75.406224, 39.98634 ], [ -75.405127, 39.986414 ], [ -75.404511, 39.986467 ], [ -75.403506, 39.986543 ], [ -75.40329, 39.986562 ], [ -75.403122, 39.986576 ], [ -75.402768, 39.986601 ], [ -75.402616, 39.986611 ], [ -75.401778, 39.986675 ], [ -75.401513, 39.986697 ], [ -75.401243, 39.986708 ], [ -75.400787, 39.986726 ], [ -75.400623, 39.986732 ], [ -75.4003, 39.986726 ], [ -75.400208, 39.986723 ], [ -75.400097, 39.986712 ], [ -75.399755, 39.986681 ], [ -75.399725, 39.986678 ], [ -75.399485, 39.986647 ], [ -75.399379, 39.986633 ], [ -75.399177, 39.986599 ], [ -75.398652, 39.986491 ], [ -75.398517, 39.986463 ], [ -75.397849, 39.986301 ], [ -75.396746, 39.986024 ], [ -75.396224, 39.985892 ], [ -75.395243, 39.985655 ], [ -75.393335, 39.98518 ], [ -75.393232, 39.985155 ], [ -75.393041, 39.985109 ], [ -75.392569, 39.984991 ], [ -75.39244, 39.984958 ], [ -75.391987, 39.984881 ], [ -75.391621, 39.984818 ], [ -75.390428, 39.98467 ], [ -75.389941, 39.984609 ], [ -75.389571, 39.984561 ], [ -75.389256, 39.984522 ], [ -75.388538, 39.98444 ], [ -75.387684, 39.984356 ], [ -75.387155, 39.984305 ], [ -75.386663, 39.984265 ], [ -75.386202, 39.984229 ], [ -75.385523, 39.984179 ], [ -75.384971, 39.98414 ], [ -75.383766, 39.9841 ], [ -75.383185, 39.984075 ], [ -75.382599, 39.984055 ], [ -75.381992, 39.984034 ], [ -75.380357, 39.983978 ], [ -75.37926, 39.983939 ], [ -75.378897, 39.983926 ], [ -75.378644, 39.983917 ], [ -75.378202, 39.983903 ], [ -75.376781, 39.983854 ], [ -75.37637, 39.983832 ], [ -75.375959, 39.983799 ], [ -75.375667, 39.983773 ], [ -75.375413, 39.983751 ], [ -75.375002, 39.983709 ], [ -75.374727, 39.983678 ], [ -75.374543, 39.983653 ], [ -75.374285, 39.983619 ], [ -75.374115, 39.98359 ], [ -75.373941, 39.983567 ], [ -75.373545, 39.983512 ], [ -75.373153, 39.983459 ], [ -75.372615, 39.983385 ], [ -75.372408, 39.983357 ], [ -75.371143, 39.983177 ], [ -75.370565, 39.983101 ], [ -75.369956, 39.983019 ], [ -75.369779, 39.982994 ], [ -75.368746, 39.982839 ], [ -75.367874, 39.982718 ], [ -75.367556, 39.982671 ], [ -75.367196, 39.982627 ], [ -75.366363, 39.982503 ], [ -75.365535, 39.982392 ], [ -75.364882, 39.982305 ], [ -75.363728, 39.98213 ], [ -75.362374, 39.981952 ], [ -75.361578, 39.98184 ], [ -75.36112, 39.981767 ], [ -75.360596, 39.981688 ], [ -75.359923, 39.981594 ], [ -75.359805, 39.981577 ], [ -75.359337, 39.981511 ], [ -75.358595, 39.981398 ], [ -75.358159, 39.981331 ], [ -75.35756, 39.981237 ], [ -75.356881, 39.98113 ], [ -75.356544, 39.981076 ], [ -75.355404, 39.980892 ], [ -75.354616, 39.980765 ], [ -75.354271, 39.980713 ], [ -75.353664, 39.980619 ], [ -75.352719, 39.980473 ], [ -75.352576, 39.98045 ], [ -75.351379, 39.980264 ], [ -75.350423, 39.980131 ], [ -75.350102, 39.980089 ], [ -75.34953, 39.980013 ], [ -75.348682, 39.979889 ], [ -75.347614, 39.979726 ], [ -75.347377, 39.979687 ], [ -75.347168, 39.979647 ], [ -75.346941, 39.979603 ], [ -75.346597, 39.97953 ], [ -75.345722, 39.979324 ], [ -75.345355, 39.979239 ], [ -75.344054, 39.978944 ], [ -75.343507, 39.97884 ], [ -75.343206, 39.978776 ], [ -75.343156, 39.978764 ], [ -75.342856, 39.978694 ], [ -75.342418, 39.978595 ], [ -75.342079, 39.978522 ], [ -75.341583, 39.978406 ], [ -75.341313, 39.978348 ], [ -75.340784, 39.978232 ], [ -75.340605, 39.97819 ], [ -75.34052, 39.97817 ], [ -75.340324, 39.978125 ], [ -75.34001, 39.978049 ], [ -75.339367, 39.977903 ], [ -75.338479, 39.977726 ], [ -75.337654, 39.977543 ], [ -75.337463, 39.977501 ], [ -75.337085, 39.97736 ], [ -75.336956, 39.977326 ], [ -75.336401, 39.977211 ], [ -75.336266, 39.977182 ], [ -75.335996, 39.977123 ], [ -75.335574, 39.977036 ], [ -75.334925, 39.976896 ], [ -75.334465, 39.976804 ], [ -75.334243, 39.976752 ], [ -75.33391, 39.976687 ], [ -75.333693, 39.976642 ], [ -75.333438, 39.976583 ], [ -75.333156, 39.976507 ], [ -75.332876, 39.976427 ], [ -75.3326, 39.976337 ], [ -75.332521, 39.97631 ], [ -75.332313, 39.97624 ], [ -75.332123, 39.976172 ], [ -75.331897, 39.976096 ], [ -75.331432, 39.975919 ], [ -75.330947, 39.975724 ], [ -75.33057, 39.975567 ], [ -75.330418, 39.975502 ], [ -75.329794, 39.97524 ], [ -75.329, 39.974914 ], [ -75.328656, 39.974779 ], [ -75.328272, 39.974647 ], [ -75.327991, 39.974556 ], [ -75.327869, 39.97452 ], [ -75.327704, 39.97447 ], [ -75.327249, 39.974343 ], [ -75.326991, 39.974288 ], [ -75.326415, 39.974168 ], [ -75.326292, 39.974146 ], [ -75.325865, 39.97407 ], [ -75.325741, 39.974067 ], [ -75.324963, 39.973918 ], [ -75.323521, 39.973651 ], [ -75.323235, 39.973606 ], [ -75.323048, 39.973577 ], [ -75.322909, 39.973555 ], [ -75.322138, 39.973426 ], [ -75.321933, 39.973386 ], [ -75.320877, 39.973189 ], [ -75.320675, 39.973158 ], [ -75.320409, 39.973116 ], [ -75.320238, 39.973091 ], [ -75.3202, 39.973085 ], [ -75.319643, 39.972985 ], [ -75.318558, 39.972797 ], [ -75.317915, 39.972687 ], [ -75.317542, 39.972623 ], [ -75.317082, 39.972536 ], [ -75.316302, 39.972407 ], [ -75.315603, 39.972285 ], [ -75.315233, 39.972213 ], [ -75.314719, 39.972123 ], [ -75.314463, 39.97208 ], [ -75.314067, 39.972015 ], [ -75.313554, 39.971939 ], [ -75.313166, 39.971863 ], [ -75.312686, 39.971785 ], [ -75.312315, 39.971725 ], [ -75.311956, 39.971667 ], [ -75.311812, 39.971644 ], [ -75.311247, 39.971543 ], [ -75.310868, 39.971474 ], [ -75.310476, 39.971404 ], [ -75.309964, 39.971311 ], [ -75.308616, 39.971073 ], [ -75.307611, 39.970908 ], [ -75.306356, 39.970695 ], [ -75.305939, 39.970624 ], [ -75.305275, 39.970515 ], [ -75.304767, 39.970431 ], [ -75.304144, 39.970321 ], [ -75.302866, 39.970101 ], [ -75.302709, 39.970071 ], [ -75.302405, 39.970013 ], [ -75.301507, 39.969832 ], [ -75.301082, 39.969744 ], [ -75.300666, 39.969657 ], [ -75.30042, 39.969606 ], [ -75.300283, 39.969577 ], [ -75.299966, 39.969511 ], [ -75.298749, 39.969266 ], [ -75.298547, 39.969224 ], [ -75.298307, 39.969173 ], [ -75.297749, 39.969063 ], [ -75.296939, 39.968903 ], [ -75.296849, 39.968886 ], [ -75.296765, 39.968872 ], [ -75.296424, 39.968816 ], [ -75.29581, 39.968698 ], [ -75.295672, 39.968671 ], [ -75.29556, 39.968649 ], [ -75.295279, 39.968596 ], [ -75.295099, 39.968561 ], [ -75.294632, 39.968461 ], [ -75.294581, 39.968452 ], [ -75.292637, 39.96809 ], [ -75.292161, 39.968001 ], [ -75.291806, 39.967934 ], [ -75.291555, 39.967886 ], [ -75.291147, 39.96781 ], [ -75.290086, 39.967608 ], [ -75.289602, 39.967514 ], [ -75.289051, 39.967406 ], [ -75.288043, 39.967217 ], [ -75.287447, 39.967105 ], [ -75.286645, 39.966952 ], [ -75.285272, 39.966699 ], [ -75.284868, 39.966625 ], [ -75.284014, 39.966463 ], [ -75.282495, 39.966178 ], [ -75.282315, 39.966141 ], [ -75.281993, 39.966075 ], [ -75.281346, 39.965954 ], [ -75.280724, 39.965837 ], [ -75.280293, 39.965757 ], [ -75.279791, 39.965662 ], [ -75.279559, 39.965618 ], [ -75.279273, 39.965564 ], [ -75.279187, 39.965548 ], [ -75.278709, 39.965458 ], [ -75.277656, 39.965263 ], [ -75.27696, 39.965138 ], [ -75.276504, 39.965057 ], [ -75.275412, 39.96487 ], [ -75.274731, 39.964748 ], [ -75.274365, 39.964683 ], [ -75.273611, 39.964544 ], [ -75.272832, 39.964397 ], [ -75.272433, 39.964328 ], [ -75.27202, 39.964256 ], [ -75.271593, 39.964179 ], [ -75.271216, 39.964112 ], [ -75.271026, 39.964078 ], [ -75.270759, 39.96403 ], [ -75.270409, 39.963968 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310257", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270219, 39.963935 ], [ -75.270696, 39.96355 ], [ -75.270958, 39.963364 ], [ -75.271329, 39.963097 ], [ -75.271586, 39.96292 ], [ -75.272037, 39.962595 ], [ -75.272549, 39.96223 ], [ -75.273, 39.961932 ], [ -75.273055, 39.961901 ], [ -75.27318, 39.961825 ], [ -75.273305, 39.961765 ], [ -75.273429, 39.961717 ], [ -75.273553, 39.961681 ], [ -75.273673, 39.961658 ], [ -75.273704, 39.961655 ], [ -75.274134, 39.961596 ], [ -75.27451, 39.961557 ], [ -75.275472, 39.961436 ], [ -75.275798, 39.961397 ], [ -75.276369, 39.961335 ], [ -75.277384, 39.961217 ], [ -75.277752, 39.961172 ], [ -75.278241, 39.961112 ], [ -75.278438, 39.961092 ], [ -75.279905, 39.960924 ], [ -75.280441, 39.960857 ], [ -75.280851, 39.960814 ], [ -75.281936, 39.960682 ], [ -75.282237, 39.960626 ], [ -75.283006, 39.960466 ], [ -75.283859, 39.960286 ], [ -75.2843, 39.96019 ], [ -75.284517, 39.960142 ], [ -75.285343, 39.959964 ], [ -75.28582, 39.959894 ], [ -75.286109, 39.959851 ], [ -75.286244, 39.959814 ], [ -75.286402, 39.959767 ], [ -75.28693, 39.959593 ], [ -75.287179, 39.959516 ], [ -75.287708, 39.959334 ], [ -75.287923, 39.959745 ], [ -75.287986, 39.959864 ], [ -75.288205, 39.960275 ], [ -75.288362, 39.960571 ], [ -75.288417, 39.960674 ], [ -75.288495, 39.960815 ], [ -75.288611, 39.960998 ], [ -75.288669, 39.961074 ], [ -75.288937, 39.961405 ], [ -75.289157, 39.961677 ], [ -75.289279, 39.961825 ], [ -75.289374, 39.961929 ], [ -75.289549, 39.96212 ], [ -75.289632, 39.962205 ], [ -75.289745, 39.962334 ], [ -75.28987, 39.962467 ], [ -75.290123, 39.962719 ], [ -75.290343, 39.962903 ], [ -75.290692, 39.963201 ], [ -75.290987, 39.963463 ], [ -75.291232, 39.963677 ], [ -75.291609, 39.964009 ], [ -75.291913, 39.964279 ], [ -75.292658, 39.964938 ], [ -75.292806, 39.965064 ], [ -75.293156, 39.965377 ], [ -75.293304, 39.965512 ], [ -75.293463, 39.965649 ], [ -75.29403, 39.966165 ], [ -75.294552, 39.966628 ], [ -75.295085, 39.967132 ], [ -75.29535, 39.967397 ], [ -75.29551, 39.967565 ], [ -75.295631, 39.967678 ], [ -75.295752, 39.967802 ], [ -75.295825, 39.967878 ], [ -75.296114, 39.967743 ], [ -75.296613, 39.96751 ], [ -75.297311, 39.967183 ], [ -75.2976, 39.967057 ], [ -75.298194, 39.966778 ], [ -75.298608, 39.966605 ], [ -75.298892, 39.966477 ], [ -75.299253, 39.966314 ], [ -75.300046, 39.965953 ], [ -75.300191, 39.965886 ], [ -75.300562, 39.965717 ], [ -75.300952, 39.965537 ], [ -75.301093, 39.965478 ], [ -75.301675, 39.96523 ], [ -75.30224, 39.964974 ], [ -75.302431, 39.964887 ], [ -75.302557, 39.964832 ], [ -75.302943, 39.964662 ], [ -75.303161, 39.964566 ], [ -75.303763, 39.964292 ], [ -75.303893, 39.964233 ], [ -75.304144, 39.964121 ], [ -75.304453, 39.963982 ], [ -75.304626, 39.963904 ], [ -75.305837, 39.96337 ], [ -75.306901, 39.962902 ], [ -75.307578, 39.962604 ], [ -75.307772, 39.962516 ], [ -75.308324, 39.962264 ], [ -75.308501, 39.962185 ], [ -75.309078, 39.961932 ], [ -75.309382, 39.961794 ], [ -75.309666, 39.961664 ], [ -75.309831, 39.961589 ], [ -75.310069, 39.961484 ], [ -75.310583, 39.961262 ], [ -75.311071, 39.961045 ], [ -75.311421, 39.960892 ], [ -75.31154, 39.96084 ], [ -75.311816, 39.960715 ], [ -75.31204, 39.960612 ], [ -75.312292, 39.960496 ], [ -75.313082, 39.960149 ], [ -75.313194, 39.960096 ], [ -75.31351, 39.959959 ], [ -75.313773, 39.959845 ], [ -75.31392, 39.959781 ], [ -75.314171, 39.959672 ], [ -75.314422, 39.959564 ], [ -75.314681, 39.959452 ], [ -75.315043, 39.959295 ], [ -75.315606, 39.959041 ], [ -75.316159, 39.95879 ], [ -75.317006, 39.95841 ], [ -75.317324, 39.958279 ], [ -75.317805, 39.958086 ], [ -75.318043, 39.957982 ], [ -75.318601, 39.957741 ], [ -75.319254, 39.957459 ], [ -75.319351, 39.957457 ], [ -75.319435, 39.957428 ], [ -75.319823, 39.957256 ], [ -75.320104, 39.957122 ], [ -75.320194, 39.957077 ], [ -75.320385, 39.956972 ], [ -75.320408, 39.956962 ], [ -75.320703, 39.956793 ], [ -75.320912, 39.956651 ], [ -75.321094, 39.956527 ], [ -75.32123, 39.956429 ], [ -75.321438, 39.956264 ], [ -75.321632, 39.956093 ], [ -75.321737, 39.955997 ], [ -75.321814, 39.955913 ], [ -75.321831, 39.955838 ], [ -75.321989, 39.95567 ], [ -75.322257, 39.955366 ], [ -75.322388, 39.955186 ], [ -75.322561, 39.954927 ], [ -75.32271, 39.954671 ], [ -75.322727, 39.95464 ], [ -75.322795, 39.954513 ], [ -75.322863, 39.954357 ], [ -75.32296, 39.954122 ], [ -75.323043, 39.953887 ], [ -75.323081, 39.953758 ], [ -75.323095, 39.953706 ], [ -75.323193, 39.953296 ], [ -75.323319, 39.952725 ], [ -75.323354, 39.95256 ], [ -75.323404, 39.952337 ], [ -75.323529, 39.951744 ], [ -75.32358, 39.951502 ], [ -75.323732, 39.950812 ], [ -75.323908, 39.950058 ], [ -75.324004, 39.949633 ], [ -75.324126, 39.949087 ], [ -75.324139, 39.949011 ], [ -75.32426, 39.948502 ], [ -75.324339, 39.948212 ], [ -75.324401, 39.948032 ], [ -75.324491, 39.947821 ], [ -75.324596, 39.947602 ], [ -75.324711, 39.947362 ], [ -75.324792, 39.947306 ], [ -75.324844, 39.947236 ], [ -75.325034, 39.946954 ], [ -75.325233, 39.946697 ], [ -75.325435, 39.946438 ], [ -75.32557, 39.946294 ], [ -75.325634, 39.946228 ], [ -75.325727, 39.946135 ], [ -75.325898, 39.945982 ], [ -75.326222, 39.945722 ], [ -75.326416, 39.945567 ], [ -75.326506, 39.945508 ], [ -75.32667, 39.945401 ], [ -75.326893, 39.94526 ], [ -75.327154, 39.945111 ], [ -75.327236, 39.945063 ], [ -75.327468, 39.944922 ], [ -75.327556, 39.944871 ], [ -75.327961, 39.944645 ], [ -75.328143, 39.944548 ], [ -75.328657, 39.944272 ], [ -75.328907, 39.944146 ], [ -75.329706, 39.943722 ], [ -75.330023, 39.943557 ], [ -75.330421, 39.943374 ], [ -75.330911, 39.943161 ], [ -75.331172, 39.943055 ], [ -75.331426, 39.942955 ], [ -75.331664, 39.942872 ], [ -75.332065, 39.942737 ], [ -75.332242, 39.942679 ], [ -75.332321, 39.942653 ], [ -75.332578, 39.942578 ], [ -75.332805, 39.942519 ], [ -75.333122, 39.942434 ], [ -75.333379, 39.942375 ], [ -75.334504, 39.942129 ], [ -75.335306, 39.941949 ], [ -75.335561, 39.941891 ], [ -75.335926, 39.941809 ], [ -75.337082, 39.941554 ], [ -75.337183, 39.941531 ], [ -75.337541, 39.941451 ], [ -75.338343, 39.941271 ], [ -75.338498, 39.941238 ], [ -75.338796, 39.941176 ], [ -75.339257, 39.941081 ], [ -75.340229, 39.940867 ], [ -75.341783, 39.940521 ], [ -75.342405, 39.940376 ], [ -75.343041, 39.940224 ], [ -75.343323, 39.940157 ], [ -75.343424, 39.940131 ], [ -75.343854, 39.940023 ], [ -75.343895, 39.940013 ], [ -75.344267, 39.939921 ], [ -75.344644, 39.939826 ], [ -75.344996, 39.939727 ], [ -75.34521, 39.939668 ], [ -75.345748, 39.93953 ], [ -75.346381, 39.939355 ], [ -75.346777, 39.939251 ], [ -75.347235, 39.939133 ], [ -75.347462, 39.939079 ], [ -75.347892, 39.939026 ], [ -75.347963, 39.939014 ], [ -75.348025, 39.939004 ], [ -75.348102, 39.938987 ], [ -75.34942, 39.938672 ], [ -75.349503, 39.938652 ], [ -75.349768, 39.938589 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.351203, 39.937856 ], [ -75.351137, 39.937849 ], [ -75.351084, 39.93783 ], [ -75.351047, 39.937801 ], [ -75.351024, 39.937766 ], [ -75.35101, 39.93772 ], [ -75.351012, 39.93766 ], [ -75.351012, 39.937591 ], [ -75.351162, 39.937312 ], [ -75.351338, 39.936979 ], [ -75.351407, 39.936816 ], [ -75.351558, 39.936464 ], [ -75.351627, 39.936288 ], [ -75.351795, 39.93586 ], [ -75.352048, 39.935123 ], [ -75.352162, 39.934788 ], [ -75.352248, 39.934515 ], [ -75.352325, 39.934266 ], [ -75.352428, 39.933904 ], [ -75.352475, 39.933626 ], [ -75.352487, 39.933465 ], [ -75.35251, 39.933173 ], [ -75.352509, 39.933051 ], [ -75.352503, 39.93293 ], [ -75.352491, 39.932791 ], [ -75.352451, 39.932562 ], [ -75.352415, 39.93241 ], [ -75.352359, 39.932234 ], [ -75.352313, 39.932069 ], [ -75.352269, 39.931924 ], [ -75.352238, 39.93185 ], [ -75.352138, 39.931776 ], [ -75.35211, 39.931715 ], [ -75.352025, 39.931525 ], [ -75.351558, 39.930468 ], [ -75.351248, 39.929803 ], [ -75.350918, 39.929049 ], [ -75.350772, 39.928737 ], [ -75.350521, 39.928162 ], [ -75.350116, 39.927409 ], [ -75.349797, 39.92685 ], [ -75.349738, 39.926753 ], [ -75.349545, 39.926436 ], [ -75.349071, 39.925656 ], [ -75.348941, 39.925408 ], [ -75.348908, 39.925343 ], [ -75.3488, 39.92511 ], [ -75.348614, 39.924634 ], [ -75.348534, 39.924381 ], [ -75.348464, 39.924116 ], [ -75.348407, 39.923837 ], [ -75.348355, 39.923501 ], [ -75.348303, 39.923106 ], [ -75.34828, 39.922923 ], [ -75.348277, 39.92252 ], [ -75.348293, 39.922349 ], [ -75.348319, 39.922129 ], [ -75.348412, 39.920881 ], [ -75.348444, 39.920514 ], [ -75.348498, 39.919882 ], [ -75.348608, 39.918554 ], [ -75.34862, 39.918427 ], [ -75.348633, 39.918256 ], [ -75.348649, 39.918042 ], [ -75.348693, 39.917984 ], [ -75.348699, 39.917925 ], [ -75.34877, 39.916957 ], [ -75.348787, 39.9167 ], [ -75.348841, 39.916118 ], [ -75.348869, 39.916095 ], [ -75.348907, 39.916076 ], [ -75.349018, 39.916022 ], [ -75.349099, 39.915987 ], [ -75.349553, 39.915983 ], [ -75.349633, 39.915076 ], [ -75.34964, 39.914989 ], [ -75.34964, 39.914747 ], [ -75.349629, 39.914663 ], [ -75.349661, 39.914353 ], [ -75.349708, 39.91423 ], [ -75.349741, 39.914179 ], [ -75.349823, 39.914124 ], [ -75.349912, 39.914089 ], [ -75.350005, 39.914068 ], [ -75.350122, 39.914055 ], [ -75.350248, 39.914055 ], [ -75.35036, 39.914059 ], [ -75.350522, 39.914049 ], [ -75.350721, 39.914038 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310258", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270219, 39.963935 ], [ -75.270696, 39.96355 ], [ -75.270958, 39.963364 ], [ -75.271329, 39.963097 ], [ -75.271586, 39.96292 ], [ -75.272037, 39.962595 ], [ -75.272549, 39.96223 ], [ -75.273, 39.961932 ], [ -75.273055, 39.961901 ], [ -75.27318, 39.961825 ], [ -75.273305, 39.961765 ], [ -75.273429, 39.961717 ], [ -75.273553, 39.961681 ], [ -75.273673, 39.961658 ], [ -75.273704, 39.961655 ], [ -75.274134, 39.961596 ], [ -75.27451, 39.961557 ], [ -75.275472, 39.961436 ], [ -75.275798, 39.961397 ], [ -75.276369, 39.961335 ], [ -75.277384, 39.961217 ], [ -75.277752, 39.961172 ], [ -75.278241, 39.961112 ], [ -75.278438, 39.961092 ], [ -75.279905, 39.960924 ], [ -75.280441, 39.960857 ], [ -75.280851, 39.960814 ], [ -75.281936, 39.960682 ], [ -75.282237, 39.960626 ], [ -75.283006, 39.960466 ], [ -75.283859, 39.960286 ], [ -75.2843, 39.96019 ], [ -75.284517, 39.960142 ], [ -75.285343, 39.959964 ], [ -75.28582, 39.959894 ], [ -75.286109, 39.959851 ], [ -75.286244, 39.959814 ], [ -75.286402, 39.959767 ], [ -75.28693, 39.959593 ], [ -75.287179, 39.959516 ], [ -75.287708, 39.959334 ], [ -75.287923, 39.959745 ], [ -75.287986, 39.959864 ], [ -75.288205, 39.960275 ], [ -75.288362, 39.960571 ], [ -75.288417, 39.960674 ], [ -75.288495, 39.960815 ], [ -75.288611, 39.960998 ], [ -75.288669, 39.961074 ], [ -75.288937, 39.961405 ], [ -75.289157, 39.961677 ], [ -75.289279, 39.961825 ], [ -75.289374, 39.961929 ], [ -75.289549, 39.96212 ], [ -75.289632, 39.962205 ], [ -75.289745, 39.962334 ], [ -75.28987, 39.962467 ], [ -75.290123, 39.962719 ], [ -75.290343, 39.962903 ], [ -75.290692, 39.963201 ], [ -75.290987, 39.963463 ], [ -75.291232, 39.963677 ], [ -75.291609, 39.964009 ], [ -75.291913, 39.964279 ], [ -75.292658, 39.964938 ], [ -75.292806, 39.965064 ], [ -75.293156, 39.965377 ], [ -75.293304, 39.965512 ], [ -75.293463, 39.965649 ], [ -75.29403, 39.966165 ], [ -75.294552, 39.966628 ], [ -75.295085, 39.967132 ], [ -75.29535, 39.967397 ], [ -75.29551, 39.967565 ], [ -75.295631, 39.967678 ], [ -75.295752, 39.967802 ], [ -75.295825, 39.967878 ], [ -75.296114, 39.967743 ], [ -75.296613, 39.96751 ], [ -75.297311, 39.967183 ], [ -75.2976, 39.967057 ], [ -75.298194, 39.966778 ], [ -75.298608, 39.966605 ], [ -75.298892, 39.966477 ], [ -75.299253, 39.966314 ], [ -75.300046, 39.965953 ], [ -75.300191, 39.965886 ], [ -75.300562, 39.965717 ], [ -75.300952, 39.965537 ], [ -75.301093, 39.965478 ], [ -75.301675, 39.96523 ], [ -75.30224, 39.964974 ], [ -75.302431, 39.964887 ], [ -75.302557, 39.964832 ], [ -75.302943, 39.964662 ], [ -75.303161, 39.964566 ], [ -75.303763, 39.964292 ], [ -75.303893, 39.964233 ], [ -75.304144, 39.964121 ], [ -75.304453, 39.963982 ], [ -75.304626, 39.963904 ], [ -75.305837, 39.96337 ], [ -75.306901, 39.962902 ], [ -75.307578, 39.962604 ], [ -75.307772, 39.962516 ], [ -75.308324, 39.962264 ], [ -75.308501, 39.962185 ], [ -75.309078, 39.961932 ], [ -75.309382, 39.961794 ], [ -75.309666, 39.961664 ], [ -75.309831, 39.961589 ], [ -75.310069, 39.961484 ], [ -75.310583, 39.961262 ], [ -75.311071, 39.961045 ], [ -75.311421, 39.960892 ], [ -75.31154, 39.96084 ], [ -75.311816, 39.960715 ], [ -75.31204, 39.960612 ], [ -75.312292, 39.960496 ], [ -75.313082, 39.960149 ], [ -75.313194, 39.960096 ], [ -75.31351, 39.959959 ], [ -75.313773, 39.959845 ], [ -75.31392, 39.959781 ], [ -75.314171, 39.959672 ], [ -75.314422, 39.959564 ], [ -75.314681, 39.959452 ], [ -75.315043, 39.959295 ], [ -75.315606, 39.959041 ], [ -75.316159, 39.95879 ], [ -75.317006, 39.95841 ], [ -75.317324, 39.958279 ], [ -75.317805, 39.958086 ], [ -75.318043, 39.957982 ], [ -75.318601, 39.957741 ], [ -75.319254, 39.957459 ], [ -75.319351, 39.957457 ], [ -75.319435, 39.957428 ], [ -75.319823, 39.957256 ], [ -75.320104, 39.957122 ], [ -75.320194, 39.957077 ], [ -75.320385, 39.956972 ], [ -75.320408, 39.956962 ], [ -75.320703, 39.956793 ], [ -75.320912, 39.956651 ], [ -75.321094, 39.956527 ], [ -75.32123, 39.956429 ], [ -75.321438, 39.956264 ], [ -75.321632, 39.956093 ], [ -75.321737, 39.955997 ], [ -75.321814, 39.955913 ], [ -75.321831, 39.955838 ], [ -75.321989, 39.95567 ], [ -75.322257, 39.955366 ], [ -75.322388, 39.955186 ], [ -75.322561, 39.954927 ], [ -75.322634, 39.954952 ], [ -75.322848, 39.955034 ], [ -75.323032, 39.955093 ], [ -75.323202, 39.955127 ], [ -75.323325, 39.95514 ], [ -75.323528, 39.955131 ], [ -75.323762, 39.955048 ], [ -75.323867, 39.95498 ], [ -75.323956, 39.954907 ], [ -75.324019, 39.95484 ], [ -75.324083, 39.954754 ], [ -75.32412, 39.954675 ], [ -75.324237, 39.954128 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310259", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270219, 39.963935 ], [ -75.270696, 39.96355 ], [ -75.270958, 39.963364 ], [ -75.271329, 39.963097 ], [ -75.271586, 39.96292 ], [ -75.272037, 39.962595 ], [ -75.272549, 39.96223 ], [ -75.273, 39.961932 ], [ -75.273055, 39.961901 ], [ -75.27318, 39.961825 ], [ -75.273305, 39.961765 ], [ -75.273429, 39.961717 ], [ -75.273553, 39.961681 ], [ -75.273673, 39.961658 ], [ -75.273704, 39.961655 ], [ -75.274134, 39.961596 ], [ -75.27451, 39.961557 ], [ -75.275472, 39.961436 ], [ -75.275798, 39.961397 ], [ -75.276369, 39.961335 ], [ -75.277384, 39.961217 ], [ -75.277752, 39.961172 ], [ -75.278241, 39.961112 ], [ -75.278438, 39.961092 ], [ -75.279905, 39.960924 ], [ -75.280441, 39.960857 ], [ -75.280851, 39.960814 ], [ -75.281936, 39.960682 ], [ -75.282237, 39.960626 ], [ -75.283006, 39.960466 ], [ -75.283859, 39.960286 ], [ -75.2843, 39.96019 ], [ -75.284517, 39.960142 ], [ -75.285343, 39.959964 ], [ -75.28582, 39.959894 ], [ -75.286109, 39.959851 ], [ -75.286244, 39.959814 ], [ -75.286402, 39.959767 ], [ -75.28693, 39.959593 ], [ -75.287179, 39.959516 ], [ -75.287708, 39.959334 ], [ -75.287923, 39.959745 ], [ -75.287986, 39.959864 ], [ -75.288205, 39.960275 ], [ -75.288362, 39.960571 ], [ -75.288417, 39.960674 ], [ -75.288495, 39.960815 ], [ -75.288611, 39.960998 ], [ -75.288669, 39.961074 ], [ -75.288937, 39.961405 ], [ -75.289157, 39.961677 ], [ -75.289279, 39.961825 ], [ -75.289374, 39.961929 ], [ -75.289549, 39.96212 ], [ -75.289632, 39.962205 ], [ -75.289745, 39.962334 ], [ -75.28987, 39.962467 ], [ -75.290123, 39.962719 ], [ -75.290343, 39.962903 ], [ -75.290692, 39.963201 ], [ -75.290987, 39.963463 ], [ -75.291232, 39.963677 ], [ -75.291609, 39.964009 ], [ -75.291913, 39.964279 ], [ -75.292658, 39.964938 ], [ -75.292806, 39.965064 ], [ -75.293156, 39.965377 ], [ -75.293304, 39.965512 ], [ -75.293463, 39.965649 ], [ -75.29403, 39.966165 ], [ -75.294552, 39.966628 ], [ -75.295085, 39.967132 ], [ -75.29535, 39.967397 ], [ -75.29551, 39.967565 ], [ -75.295631, 39.967678 ], [ -75.295752, 39.967802 ], [ -75.295825, 39.967878 ], [ -75.296114, 39.967743 ], [ -75.296613, 39.96751 ], [ -75.297311, 39.967183 ], [ -75.2976, 39.967057 ], [ -75.298194, 39.966778 ], [ -75.298608, 39.966605 ], [ -75.298892, 39.966477 ], [ -75.299253, 39.966314 ], [ -75.300046, 39.965953 ], [ -75.300191, 39.965886 ], [ -75.300562, 39.965717 ], [ -75.300952, 39.965537 ], [ -75.301093, 39.965478 ], [ -75.301675, 39.96523 ], [ -75.30224, 39.964974 ], [ -75.302431, 39.964887 ], [ -75.302557, 39.964832 ], [ -75.302943, 39.964662 ], [ -75.303161, 39.964566 ], [ -75.303763, 39.964292 ], [ -75.303893, 39.964233 ], [ -75.304144, 39.964121 ], [ -75.304453, 39.963982 ], [ -75.304626, 39.963904 ], [ -75.305837, 39.96337 ], [ -75.306901, 39.962902 ], [ -75.307578, 39.962604 ], [ -75.307772, 39.962516 ], [ -75.308324, 39.962264 ], [ -75.308501, 39.962185 ], [ -75.309078, 39.961932 ], [ -75.309382, 39.961794 ], [ -75.309666, 39.961664 ], [ -75.309831, 39.961589 ], [ -75.310069, 39.961484 ], [ -75.310583, 39.961262 ], [ -75.311071, 39.961045 ], [ -75.311421, 39.960892 ], [ -75.31154, 39.96084 ], [ -75.311816, 39.960715 ], [ -75.31204, 39.960612 ], [ -75.312292, 39.960496 ], [ -75.313082, 39.960149 ], [ -75.313194, 39.960096 ], [ -75.31351, 39.959959 ], [ -75.313773, 39.959845 ], [ -75.31392, 39.959781 ], [ -75.314171, 39.959672 ], [ -75.314422, 39.959564 ], [ -75.314681, 39.959452 ], [ -75.315043, 39.959295 ], [ -75.315606, 39.959041 ], [ -75.316159, 39.95879 ], [ -75.317006, 39.95841 ], [ -75.317324, 39.958279 ], [ -75.317805, 39.958086 ], [ -75.318043, 39.957982 ], [ -75.318601, 39.957741 ], [ -75.319254, 39.957459 ], [ -75.319351, 39.957457 ], [ -75.319435, 39.957428 ], [ -75.319823, 39.957256 ], [ -75.320104, 39.957122 ], [ -75.320194, 39.957077 ], [ -75.320385, 39.956972 ], [ -75.320408, 39.956962 ], [ -75.320703, 39.956793 ], [ -75.320912, 39.956651 ], [ -75.321094, 39.956527 ], [ -75.32123, 39.956429 ], [ -75.321438, 39.956264 ], [ -75.321632, 39.956093 ], [ -75.321737, 39.955997 ], [ -75.321814, 39.955913 ], [ -75.321831, 39.955838 ], [ -75.321989, 39.95567 ], [ -75.322257, 39.955366 ], [ -75.322388, 39.955186 ], [ -75.322561, 39.954927 ], [ -75.32271, 39.954671 ], [ -75.322727, 39.95464 ], [ -75.322795, 39.954513 ], [ -75.322863, 39.954357 ], [ -75.32296, 39.954122 ], [ -75.323043, 39.953887 ], [ -75.323081, 39.953758 ], [ -75.323095, 39.953706 ], [ -75.323193, 39.953296 ], [ -75.323319, 39.952725 ], [ -75.323354, 39.95256 ], [ -75.323404, 39.952337 ], [ -75.323529, 39.951744 ], [ -75.32358, 39.951502 ], [ -75.323732, 39.950812 ], [ -75.323908, 39.950058 ], [ -75.324004, 39.949633 ], [ -75.324126, 39.949087 ], [ -75.324139, 39.949011 ], [ -75.32426, 39.948502 ], [ -75.324339, 39.948212 ], [ -75.324401, 39.948032 ], [ -75.324491, 39.947821 ], [ -75.324596, 39.947602 ], [ -75.324711, 39.947362 ], [ -75.324792, 39.947306 ], [ -75.324844, 39.947236 ], [ -75.325034, 39.946954 ], [ -75.325233, 39.946697 ], [ -75.325435, 39.946438 ], [ -75.32557, 39.946294 ], [ -75.325634, 39.946228 ], [ -75.325727, 39.946135 ], [ -75.325898, 39.945982 ], [ -75.326222, 39.945722 ], [ -75.326416, 39.945567 ], [ -75.326506, 39.945508 ], [ -75.32667, 39.945401 ], [ -75.326893, 39.94526 ], [ -75.327154, 39.945111 ], [ -75.327236, 39.945063 ], [ -75.327468, 39.944922 ], [ -75.327556, 39.944871 ], [ -75.327961, 39.944645 ], [ -75.328143, 39.944548 ], [ -75.328657, 39.944272 ], [ -75.328907, 39.944146 ], [ -75.329706, 39.943722 ], [ -75.330023, 39.943557 ], [ -75.330421, 39.943374 ], [ -75.330911, 39.943161 ], [ -75.331172, 39.943055 ], [ -75.331426, 39.942955 ], [ -75.331664, 39.942872 ], [ -75.332065, 39.942737 ], [ -75.332242, 39.942679 ], [ -75.332321, 39.942653 ], [ -75.332578, 39.942578 ], [ -75.332805, 39.942519 ], [ -75.333122, 39.942434 ], [ -75.333379, 39.942375 ], [ -75.334504, 39.942129 ], [ -75.335306, 39.941949 ], [ -75.335561, 39.941891 ], [ -75.335926, 39.941809 ], [ -75.337082, 39.941554 ], [ -75.337183, 39.941531 ], [ -75.337541, 39.941451 ], [ -75.338343, 39.941271 ], [ -75.338498, 39.941238 ], [ -75.338796, 39.941176 ], [ -75.339257, 39.941081 ], [ -75.340229, 39.940867 ], [ -75.341783, 39.940521 ], [ -75.342405, 39.940376 ], [ -75.343041, 39.940224 ], [ -75.343323, 39.940157 ], [ -75.343424, 39.940131 ], [ -75.343854, 39.940023 ], [ -75.343895, 39.940013 ], [ -75.344267, 39.939921 ], [ -75.344408, 39.939932 ], [ -75.34455, 39.939949 ], [ -75.344647, 39.939977 ], [ -75.344736, 39.940013 ], [ -75.344771, 39.940031 ], [ -75.344873, 39.940093 ], [ -75.345033, 39.940282 ], [ -75.345115, 39.940374 ], [ -75.345299, 39.940581 ], [ -75.345573, 39.940912 ], [ -75.345903, 39.941305 ], [ -75.34615, 39.9416 ], [ -75.346317, 39.941817 ], [ -75.346655, 39.942218 ], [ -75.346848, 39.942431 ], [ -75.347036, 39.94262 ], [ -75.347109, 39.942724 ], [ -75.347177, 39.942831 ], [ -75.347209, 39.942903 ], [ -75.347503, 39.943481 ], [ -75.34808, 39.944637 ], [ -75.348306, 39.945088 ], [ -75.348079, 39.94516 ], [ -75.347869, 39.945241 ], [ -75.347665, 39.945332 ], [ -75.34749, 39.94542 ], [ -75.347357, 39.945508 ], [ -75.347196, 39.945614 ], [ -75.346721, 39.945964 ], [ -75.34635, 39.946238 ], [ -75.346774, 39.94657 ], [ -75.346936, 39.946699 ], [ -75.347229, 39.946935 ], [ -75.347277, 39.947233 ], [ -75.34712, 39.947519 ], [ -75.347101, 39.94788 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310260", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270219, 39.963935 ], [ -75.270696, 39.96355 ], [ -75.270958, 39.963364 ], [ -75.271329, 39.963097 ], [ -75.271586, 39.96292 ], [ -75.272037, 39.962595 ], [ -75.272549, 39.96223 ], [ -75.273, 39.961932 ], [ -75.273055, 39.961901 ], [ -75.27318, 39.961825 ], [ -75.273305, 39.961765 ], [ -75.273429, 39.961717 ], [ -75.273553, 39.961681 ], [ -75.273673, 39.961658 ], [ -75.273704, 39.961655 ], [ -75.274134, 39.961596 ], [ -75.27451, 39.961557 ], [ -75.275472, 39.961436 ], [ -75.275798, 39.961397 ], [ -75.276369, 39.961335 ], [ -75.277384, 39.961217 ], [ -75.277752, 39.961172 ], [ -75.278241, 39.961112 ], [ -75.278438, 39.961092 ], [ -75.279905, 39.960924 ], [ -75.280441, 39.960857 ], [ -75.280851, 39.960814 ], [ -75.281936, 39.960682 ], [ -75.282237, 39.960626 ], [ -75.283006, 39.960466 ], [ -75.283859, 39.960286 ], [ -75.2843, 39.96019 ], [ -75.284517, 39.960142 ], [ -75.285343, 39.959964 ], [ -75.28582, 39.959894 ], [ -75.286109, 39.959851 ], [ -75.286244, 39.959814 ], [ -75.286402, 39.959767 ], [ -75.28693, 39.959593 ], [ -75.287179, 39.959516 ], [ -75.287708, 39.959334 ], [ -75.287923, 39.959745 ], [ -75.287986, 39.959864 ], [ -75.288205, 39.960275 ], [ -75.288362, 39.960571 ], [ -75.288417, 39.960674 ], [ -75.288495, 39.960815 ], [ -75.288611, 39.960998 ], [ -75.288669, 39.961074 ], [ -75.288937, 39.961405 ], [ -75.289157, 39.961677 ], [ -75.289279, 39.961825 ], [ -75.289374, 39.961929 ], [ -75.289549, 39.96212 ], [ -75.289632, 39.962205 ], [ -75.289745, 39.962334 ], [ -75.28987, 39.962467 ], [ -75.290123, 39.962719 ], [ -75.290343, 39.962903 ], [ -75.290692, 39.963201 ], [ -75.290987, 39.963463 ], [ -75.291232, 39.963677 ], [ -75.291609, 39.964009 ], [ -75.291913, 39.964279 ], [ -75.292658, 39.964938 ], [ -75.292806, 39.965064 ], [ -75.293156, 39.965377 ], [ -75.293304, 39.965512 ], [ -75.293463, 39.965649 ], [ -75.29403, 39.966165 ], [ -75.294552, 39.966628 ], [ -75.295085, 39.967132 ], [ -75.29535, 39.967397 ], [ -75.29551, 39.967565 ], [ -75.295631, 39.967678 ], [ -75.295752, 39.967802 ], [ -75.295825, 39.967878 ], [ -75.296114, 39.967743 ], [ -75.296613, 39.96751 ], [ -75.297311, 39.967183 ], [ -75.2976, 39.967057 ], [ -75.298194, 39.966778 ], [ -75.298608, 39.966605 ], [ -75.298892, 39.966477 ], [ -75.299253, 39.966314 ], [ -75.300046, 39.965953 ], [ -75.300191, 39.965886 ], [ -75.300562, 39.965717 ], [ -75.300952, 39.965537 ], [ -75.301093, 39.965478 ], [ -75.301675, 39.96523 ], [ -75.30224, 39.964974 ], [ -75.302431, 39.964887 ], [ -75.302557, 39.964832 ], [ -75.302943, 39.964662 ], [ -75.303161, 39.964566 ], [ -75.303763, 39.964292 ], [ -75.303893, 39.964233 ], [ -75.304144, 39.964121 ], [ -75.304453, 39.963982 ], [ -75.304626, 39.963904 ], [ -75.305837, 39.96337 ], [ -75.306901, 39.962902 ], [ -75.307578, 39.962604 ], [ -75.307772, 39.962516 ], [ -75.308324, 39.962264 ], [ -75.308501, 39.962185 ], [ -75.309078, 39.961932 ], [ -75.309382, 39.961794 ], [ -75.309666, 39.961664 ], [ -75.309831, 39.961589 ], [ -75.310069, 39.961484 ], [ -75.310583, 39.961262 ], [ -75.311071, 39.961045 ], [ -75.311421, 39.960892 ], [ -75.31154, 39.96084 ], [ -75.311816, 39.960715 ], [ -75.31204, 39.960612 ], [ -75.312292, 39.960496 ], [ -75.313082, 39.960149 ], [ -75.313194, 39.960096 ], [ -75.31351, 39.959959 ], [ -75.313773, 39.959845 ], [ -75.31392, 39.959781 ], [ -75.314171, 39.959672 ], [ -75.314422, 39.959564 ], [ -75.314681, 39.959452 ], [ -75.315043, 39.959295 ], [ -75.315606, 39.959041 ], [ -75.316159, 39.95879 ], [ -75.317006, 39.95841 ], [ -75.317324, 39.958279 ], [ -75.317805, 39.958086 ], [ -75.318043, 39.957982 ], [ -75.318601, 39.957741 ], [ -75.319254, 39.957459 ], [ -75.319351, 39.957457 ], [ -75.319435, 39.957428 ], [ -75.319823, 39.957256 ], [ -75.320104, 39.957122 ], [ -75.320194, 39.957077 ], [ -75.320385, 39.956972 ], [ -75.320408, 39.956962 ], [ -75.320703, 39.956793 ], [ -75.320912, 39.956651 ], [ -75.321094, 39.956527 ], [ -75.32123, 39.956429 ], [ -75.321438, 39.956264 ], [ -75.321632, 39.956093 ], [ -75.321737, 39.955997 ], [ -75.321814, 39.955913 ], [ -75.321831, 39.955838 ], [ -75.321989, 39.95567 ], [ -75.322257, 39.955366 ], [ -75.322388, 39.955186 ], [ -75.322561, 39.954927 ], [ -75.32271, 39.954671 ], [ -75.322727, 39.95464 ], [ -75.322795, 39.954513 ], [ -75.322863, 39.954357 ], [ -75.32296, 39.954122 ], [ -75.323043, 39.953887 ], [ -75.323081, 39.953758 ], [ -75.323095, 39.953706 ], [ -75.323193, 39.953296 ], [ -75.323319, 39.952725 ], [ -75.323354, 39.95256 ], [ -75.323404, 39.952337 ], [ -75.323529, 39.951744 ], [ -75.32358, 39.951502 ], [ -75.323732, 39.950812 ], [ -75.323908, 39.950058 ], [ -75.324004, 39.949633 ], [ -75.324126, 39.949087 ], [ -75.324139, 39.949011 ], [ -75.32426, 39.948502 ], [ -75.324339, 39.948212 ], [ -75.324401, 39.948032 ], [ -75.324491, 39.947821 ], [ -75.324596, 39.947602 ], [ -75.324711, 39.947362 ], [ -75.324792, 39.947306 ], [ -75.324844, 39.947236 ], [ -75.325034, 39.946954 ], [ -75.325233, 39.946697 ], [ -75.325435, 39.946438 ], [ -75.32557, 39.946294 ], [ -75.325634, 39.946228 ], [ -75.325727, 39.946135 ], [ -75.325898, 39.945982 ], [ -75.326222, 39.945722 ], [ -75.326416, 39.945567 ], [ -75.326506, 39.945508 ], [ -75.32667, 39.945401 ], [ -75.326893, 39.94526 ], [ -75.327154, 39.945111 ], [ -75.327236, 39.945063 ], [ -75.327468, 39.944922 ], [ -75.327556, 39.944871 ], [ -75.327961, 39.944645 ], [ -75.328143, 39.944548 ], [ -75.328657, 39.944272 ], [ -75.328907, 39.944146 ], [ -75.329706, 39.943722 ], [ -75.330023, 39.943557 ], [ -75.330421, 39.943374 ], [ -75.330911, 39.943161 ], [ -75.331172, 39.943055 ], [ -75.331426, 39.942955 ], [ -75.331664, 39.942872 ], [ -75.332065, 39.942737 ], [ -75.332242, 39.942679 ], [ -75.332321, 39.942653 ], [ -75.332578, 39.942578 ], [ -75.332805, 39.942519 ], [ -75.333122, 39.942434 ], [ -75.333379, 39.942375 ], [ -75.334504, 39.942129 ], [ -75.335306, 39.941949 ], [ -75.335561, 39.941891 ], [ -75.335926, 39.941809 ], [ -75.337082, 39.941554 ], [ -75.337183, 39.941531 ], [ -75.337541, 39.941451 ], [ -75.338343, 39.941271 ], [ -75.338498, 39.941238 ], [ -75.338796, 39.941176 ], [ -75.339257, 39.941081 ], [ -75.340229, 39.940867 ], [ -75.341783, 39.940521 ], [ -75.342405, 39.940376 ], [ -75.343041, 39.940224 ], [ -75.343323, 39.940157 ], [ -75.343424, 39.940131 ], [ -75.343854, 39.940023 ], [ -75.343895, 39.940013 ], [ -75.344267, 39.939921 ], [ -75.344644, 39.939826 ], [ -75.344996, 39.939727 ], [ -75.34521, 39.939668 ], [ -75.345748, 39.93953 ], [ -75.346381, 39.939355 ], [ -75.346777, 39.939251 ], [ -75.347235, 39.939133 ], [ -75.347462, 39.939079 ], [ -75.347892, 39.939026 ], [ -75.347963, 39.939014 ], [ -75.348025, 39.939004 ], [ -75.348102, 39.938987 ], [ -75.34942, 39.938672 ], [ -75.349503, 39.938652 ], [ -75.349768, 39.938589 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.351203, 39.937856 ], [ -75.351137, 39.937849 ], [ -75.351084, 39.93783 ], [ -75.351047, 39.937801 ], [ -75.351024, 39.937766 ], [ -75.35101, 39.93772 ], [ -75.351012, 39.93766 ], [ -75.351012, 39.937591 ], [ -75.351162, 39.937312 ], [ -75.351338, 39.936979 ], [ -75.351407, 39.936816 ], [ -75.351558, 39.936464 ], [ -75.351627, 39.936288 ], [ -75.351795, 39.93586 ], [ -75.352048, 39.935123 ], [ -75.352162, 39.934788 ], [ -75.352248, 39.934515 ], [ -75.352325, 39.934266 ], [ -75.352428, 39.933904 ], [ -75.352475, 39.933626 ], [ -75.352487, 39.933465 ], [ -75.35251, 39.933173 ], [ -75.352509, 39.933051 ], [ -75.352503, 39.93293 ], [ -75.352491, 39.932791 ], [ -75.352451, 39.932562 ], [ -75.352415, 39.93241 ], [ -75.352359, 39.932234 ], [ -75.352313, 39.932069 ], [ -75.352269, 39.931924 ], [ -75.352238, 39.93185 ], [ -75.352138, 39.931776 ], [ -75.35211, 39.931715 ], [ -75.352025, 39.931525 ], [ -75.351558, 39.930468 ], [ -75.351248, 39.929803 ], [ -75.350918, 39.929049 ], [ -75.350772, 39.928737 ], [ -75.350521, 39.928162 ], [ -75.350116, 39.927409 ], [ -75.349797, 39.92685 ], [ -75.349738, 39.926753 ], [ -75.349545, 39.926436 ], [ -75.349071, 39.925656 ], [ -75.348941, 39.925408 ], [ -75.348908, 39.925343 ], [ -75.3488, 39.92511 ], [ -75.348614, 39.924634 ], [ -75.348534, 39.924381 ], [ -75.348464, 39.924116 ], [ -75.348407, 39.923837 ], [ -75.348355, 39.923501 ], [ -75.348303, 39.923106 ], [ -75.34828, 39.922923 ], [ -75.348277, 39.92252 ], [ -75.348293, 39.922349 ], [ -75.348319, 39.922129 ], [ -75.348412, 39.920881 ], [ -75.348444, 39.920514 ], [ -75.348498, 39.919882 ], [ -75.348608, 39.918554 ], [ -75.34862, 39.918427 ], [ -75.348633, 39.918256 ], [ -75.348649, 39.918042 ], [ -75.348693, 39.917984 ], [ -75.348699, 39.917925 ], [ -75.34877, 39.916957 ], [ -75.348787, 39.9167 ], [ -75.348841, 39.916118 ], [ -75.348869, 39.916095 ], [ -75.348907, 39.916076 ], [ -75.349018, 39.916022 ], [ -75.349099, 39.915987 ], [ -75.349553, 39.915983 ], [ -75.349633, 39.915076 ], [ -75.34964, 39.914989 ], [ -75.34964, 39.914747 ], [ -75.349629, 39.914663 ], [ -75.349661, 39.914353 ], [ -75.349708, 39.91423 ], [ -75.349741, 39.914179 ], [ -75.349823, 39.914124 ], [ -75.349912, 39.914089 ], [ -75.350005, 39.914068 ], [ -75.350122, 39.914055 ], [ -75.350248, 39.914055 ], [ -75.35036, 39.914059 ], [ -75.350522, 39.914049 ], [ -75.350721, 39.914038 ], [ -75.351306, 39.914002 ], [ -75.35149, 39.913981 ], [ -75.351593, 39.913978 ], [ -75.352138, 39.913965 ], [ -75.352341, 39.913962 ], [ -75.35247, 39.913953 ], [ -75.352401, 39.913872 ], [ -75.352274, 39.913744 ], [ -75.352246, 39.913703 ], [ -75.352235, 39.91366 ], [ -75.35224, 39.913613 ], [ -75.352257, 39.913568 ], [ -75.352288, 39.913526 ], [ -75.352336, 39.913492 ], [ -75.352397, 39.913466 ], [ -75.352518, 39.913427 ], [ -75.353254, 39.913488 ], [ -75.353586, 39.913495 ], [ -75.353777, 39.913486 ], [ -75.353892, 39.913483 ], [ -75.354513, 39.913374 ], [ -75.35519, 39.913291 ], [ -75.356366, 39.913129 ], [ -75.356417, 39.913123 ], [ -75.357534, 39.912996 ], [ -75.357821, 39.91296 ], [ -75.358032, 39.912935 ], [ -75.358234, 39.912915 ], [ -75.358441, 39.912898 ], [ -75.358668, 39.912886 ], [ -75.359, 39.91288 ], [ -75.359172, 39.912878 ], [ -75.359796, 39.912904 ], [ -75.360424, 39.912921 ], [ -75.361044, 39.912929 ], [ -75.361376, 39.912934 ], [ -75.361708, 39.912953 ], [ -75.362105, 39.912969 ], [ -75.362308, 39.912987 ], [ -75.362822, 39.913013 ], [ -75.363091, 39.913028 ], [ -75.36337, 39.913056 ], [ -75.363804, 39.913084 ], [ -75.364171, 39.913111 ], [ -75.364452, 39.913134 ], [ -75.365377, 39.913213 ], [ -75.365509, 39.913169 ], [ -75.36578, 39.913198 ], [ -75.366075, 39.913236 ], [ -75.366942, 39.91334 ], [ -75.370162, 39.913688 ], [ -75.371817, 39.913909 ], [ -75.372039, 39.91394 ], [ -75.372385, 39.91399 ], [ -75.372681, 39.914027 ], [ -75.373293, 39.914105 ], [ -75.373498, 39.914131 ], [ -75.375523, 39.914429 ], [ -75.376198, 39.914536 ], [ -75.377079, 39.914687 ], [ -75.377307, 39.914725 ], [ -75.377644, 39.914783 ], [ -75.377913, 39.91484 ], [ -75.378001, 39.914858 ], [ -75.378138, 39.914888 ], [ -75.378301, 39.914929 ], [ -75.378669, 39.915029 ], [ -75.378757, 39.915056 ], [ -75.378877, 39.91509 ], [ -75.379207, 39.915183 ], [ -75.379325, 39.915217 ], [ -75.379723, 39.915324 ], [ -75.37982, 39.915351 ], [ -75.379941, 39.915386 ], [ -75.380247, 39.915465 ], [ -75.380445, 39.915518 ], [ -75.380601, 39.915558 ], [ -75.380735, 39.915593 ], [ -75.380884, 39.915623 ], [ -75.381013, 39.915642 ], [ -75.381327, 39.915685 ], [ -75.38206, 39.915785 ], [ -75.382331, 39.915822 ], [ -75.382657, 39.915866 ], [ -75.383152, 39.915932 ], [ -75.384299, 39.91608 ], [ -75.384773, 39.916146 ], [ -75.385909, 39.916304 ], [ -75.386318, 39.916362 ], [ -75.386971, 39.916456 ], [ -75.387875, 39.916577 ], [ -75.388275, 39.91664 ], [ -75.388776, 39.91672 ], [ -75.389701, 39.916855 ], [ -75.390196, 39.916923 ], [ -75.390509, 39.916967 ], [ -75.391292, 39.917072 ], [ -75.392265, 39.917197 ], [ -75.392759, 39.917264 ], [ -75.393275, 39.917335 ], [ -75.395223, 39.917607 ], [ -75.39611, 39.917731 ], [ -75.396611, 39.917795 ], [ -75.396822, 39.917826 ], [ -75.396862, 39.917854 ], [ -75.397037, 39.917888 ], [ -75.397283, 39.917916 ], [ -75.397373, 39.917925 ], [ -75.397449, 39.917926 ], [ -75.397515, 39.917925 ], [ -75.397609, 39.917916 ], [ -75.397692, 39.917904 ], [ -75.397725, 39.917896 ], [ -75.397803, 39.917879 ], [ -75.397934, 39.91784 ], [ -75.398039, 39.9178 ], [ -75.39813, 39.917756 ], [ -75.399153, 39.917164 ], [ -75.399311, 39.91708 ], [ -75.399468, 39.917004 ], [ -75.399611, 39.916948 ], [ -75.399761, 39.9169 ], [ -75.399841, 39.916878 ], [ -75.400003, 39.916841 ], [ -75.400173, 39.916821 ], [ -75.400352, 39.916807 ], [ -75.400461, 39.916807 ], [ -75.400753, 39.916818 ], [ -75.401714, 39.916861 ], [ -75.402714, 39.916917 ], [ -75.403408, 39.91695 ], [ -75.403931, 39.916981 ], [ -75.404112, 39.91699 ], [ -75.404327, 39.917001 ], [ -75.404516, 39.917005 ], [ -75.404737, 39.91701 ], [ -75.405031, 39.917027 ], [ -75.405172, 39.917035 ], [ -75.405399, 39.917048 ], [ -75.405925, 39.917075 ], [ -75.406444, 39.917105 ], [ -75.407724, 39.917185 ], [ -75.408245, 39.917215 ], [ -75.408476, 39.917228 ], [ -75.408805, 39.917243 ], [ -75.409011, 39.917246 ], [ -75.409216, 39.917249 ], [ -75.409419, 39.917246 ], [ -75.409655, 39.917238 ], [ -75.409893, 39.91723 ], [ -75.410113, 39.917217 ], [ -75.410381, 39.917201 ], [ -75.410592, 39.917179 ], [ -75.410826, 39.917153 ], [ -75.411088, 39.917121 ], [ -75.412363, 39.91693 ], [ -75.413384, 39.916785 ], [ -75.415039, 39.916562 ], [ -75.415495, 39.916499 ], [ -75.416891, 39.916305 ], [ -75.417561, 39.916213 ], [ -75.417699, 39.916196 ], [ -75.418252, 39.916117 ], [ -75.418807, 39.916035 ], [ -75.418966, 39.916011 ], [ -75.419854, 39.915883 ], [ -75.420667, 39.915755 ], [ -75.421182, 39.915687 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422868, 39.915448 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424409, 39.915237 ], [ -75.424543, 39.915217 ], [ -75.424587, 39.915209 ], [ -75.424724, 39.915188 ], [ -75.425151, 39.91513 ], [ -75.42528, 39.91511 ], [ -75.426328, 39.91495 ], [ -75.42678, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.439737, 39.912925 ], [ -75.439745, 39.913033 ], [ -75.439776, 39.91352 ], [ -75.439838, 39.91403 ], [ -75.439895, 39.914339 ], [ -75.439928, 39.91457 ], [ -75.439966, 39.914757 ], [ -75.440039, 39.915273 ], [ -75.440219, 39.916371 ], [ -75.440269, 39.916647 ], [ -75.440298, 39.916825 ], [ -75.440323, 39.916975 ], [ -75.440338, 39.917138 ], [ -75.440352, 39.91731 ], [ -75.440446, 39.917632 ], [ -75.440564, 39.917702 ], [ -75.440651, 39.91775 ], [ -75.44072, 39.917794 ], [ -75.440877, 39.917897 ], [ -75.441047, 39.918016 ], [ -75.441116, 39.918068 ], [ -75.441131, 39.918101 ], [ -75.441639, 39.9185 ], [ -75.441752, 39.91858 ], [ -75.441811, 39.918622 ], [ -75.441937, 39.918709 ], [ -75.442039, 39.918786 ], [ -75.44218, 39.918911 ], [ -75.442207, 39.918932 ], [ -75.442223, 39.918952 ], [ -75.442235, 39.918965 ], [ -75.442332, 39.919071 ], [ -75.442455, 39.919205 ], [ -75.442552, 39.919321 ], [ -75.442717, 39.919545 ], [ -75.442805, 39.919675 ], [ -75.442872, 39.9198 ], [ -75.442939, 39.919955 ], [ -75.442999, 39.920148 ], [ -75.443047, 39.920341 ], [ -75.443054, 39.920387 ], [ -75.443079, 39.920536 ], [ -75.443089, 39.92069 ], [ -75.443092, 39.920728 ], [ -75.443097, 39.920781 ], [ -75.443126, 39.920821 ], [ -75.443129, 39.921338 ], [ -75.443146, 39.921943 ], [ -75.443157, 39.92209 ], [ -75.443174, 39.9223 ], [ -75.443231, 39.922632 ], [ -75.443294, 39.922965 ], [ -75.443378, 39.923269 ], [ -75.443522, 39.923696 ], [ -75.443823, 39.924586 ], [ -75.443967, 39.924985 ], [ -75.443958, 39.925029 ], [ -75.444135, 39.925535 ], [ -75.444296, 39.925976 ], [ -75.444524, 39.926539 ], [ -75.444569, 39.926668 ], [ -75.444738, 39.927092 ], [ -75.444857, 39.92741 ], [ -75.445242, 39.928352 ], [ -75.445619, 39.929305 ], [ -75.44568, 39.929272 ], [ -75.447053, 39.928679 ], [ -75.447305, 39.928655 ], [ -75.447415, 39.928594 ], [ -75.447401, 39.928489 ], [ -75.447305, 39.928437 ], [ -75.447235, 39.928441 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310261", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.259733, 39.96219 ], [ -75.259749, 39.962292 ], [ -75.259832, 39.962367 ], [ -75.259939, 39.962414 ], [ -75.26012, 39.962429 ], [ -75.260303, 39.962396 ], [ -75.260613, 39.962274 ], [ -75.260814, 39.962209 ], [ -75.260975, 39.962139 ], [ -75.261133, 39.962103 ], [ -75.261204, 39.962082 ], [ -75.261314, 39.96206 ], [ -75.261527, 39.962028 ], [ -75.261793, 39.962075 ], [ -75.26193, 39.9621 ], [ -75.262126, 39.962146 ], [ -75.262282, 39.962192 ], [ -75.262608, 39.962315 ], [ -75.262815, 39.962402 ], [ -75.26289, 39.962431 ], [ -75.263378, 39.962624 ], [ -75.26362, 39.962723 ], [ -75.263888, 39.96283 ], [ -75.26408, 39.962897 ], [ -75.264309, 39.962962 ], [ -75.264786, 39.963069 ], [ -75.265198, 39.963145 ], [ -75.265334, 39.963169 ], [ -75.265832, 39.96326 ], [ -75.266275, 39.963333 ], [ -75.266618, 39.963398 ], [ -75.267057, 39.963482 ], [ -75.267639, 39.963588 ], [ -75.267918, 39.963639 ], [ -75.268685, 39.963777 ], [ -75.268836, 39.963805 ], [ -75.269011, 39.963837 ], [ -75.269436, 39.963916 ], [ -75.270072, 39.964034 ], [ -75.270219, 39.963935 ], [ -75.270696, 39.96355 ], [ -75.270958, 39.963364 ], [ -75.271329, 39.963097 ], [ -75.271586, 39.96292 ], [ -75.272037, 39.962595 ], [ -75.272549, 39.96223 ], [ -75.273, 39.961932 ], [ -75.273055, 39.961901 ], [ -75.27318, 39.961825 ], [ -75.273305, 39.961765 ], [ -75.273429, 39.961717 ], [ -75.273553, 39.961681 ], [ -75.273673, 39.961658 ], [ -75.273704, 39.961655 ], [ -75.274134, 39.961596 ], [ -75.27451, 39.961557 ], [ -75.275472, 39.961436 ], [ -75.275798, 39.961397 ], [ -75.276369, 39.961335 ], [ -75.277384, 39.961217 ], [ -75.277752, 39.961172 ], [ -75.278241, 39.961112 ], [ -75.278438, 39.961092 ], [ -75.279905, 39.960924 ], [ -75.280441, 39.960857 ], [ -75.280851, 39.960814 ], [ -75.281936, 39.960682 ], [ -75.282237, 39.960626 ], [ -75.283006, 39.960466 ], [ -75.283859, 39.960286 ], [ -75.2843, 39.96019 ], [ -75.284517, 39.960142 ], [ -75.285343, 39.959964 ], [ -75.28582, 39.959894 ], [ -75.286109, 39.959851 ], [ -75.286244, 39.959814 ], [ -75.286402, 39.959767 ], [ -75.28693, 39.959593 ], [ -75.287179, 39.959516 ], [ -75.287708, 39.959334 ], [ -75.287923, 39.959745 ], [ -75.287986, 39.959864 ], [ -75.288205, 39.960275 ], [ -75.288362, 39.960571 ], [ -75.288417, 39.960674 ], [ -75.288495, 39.960815 ], [ -75.288611, 39.960998 ], [ -75.288669, 39.961074 ], [ -75.288937, 39.961405 ], [ -75.289157, 39.961677 ], [ -75.289279, 39.961825 ], [ -75.289374, 39.961929 ], [ -75.289549, 39.96212 ], [ -75.289632, 39.962205 ], [ -75.289745, 39.962334 ], [ -75.28987, 39.962467 ], [ -75.290123, 39.962719 ], [ -75.290343, 39.962903 ], [ -75.290692, 39.963201 ], [ -75.290987, 39.963463 ], [ -75.291232, 39.963677 ], [ -75.291609, 39.964009 ], [ -75.291913, 39.964279 ], [ -75.292658, 39.964938 ], [ -75.292806, 39.965064 ], [ -75.293156, 39.965377 ], [ -75.293304, 39.965512 ], [ -75.293463, 39.965649 ], [ -75.29403, 39.966165 ], [ -75.294552, 39.966628 ], [ -75.295085, 39.967132 ], [ -75.29535, 39.967397 ], [ -75.29551, 39.967565 ], [ -75.295631, 39.967678 ], [ -75.295752, 39.967802 ], [ -75.295825, 39.967878 ], [ -75.296114, 39.967743 ], [ -75.296613, 39.96751 ], [ -75.297311, 39.967183 ], [ -75.2976, 39.967057 ], [ -75.298194, 39.966778 ], [ -75.298608, 39.966605 ], [ -75.298892, 39.966477 ], [ -75.299253, 39.966314 ], [ -75.300046, 39.965953 ], [ -75.300191, 39.965886 ], [ -75.300562, 39.965717 ], [ -75.300952, 39.965537 ], [ -75.301093, 39.965478 ], [ -75.301675, 39.96523 ], [ -75.30224, 39.964974 ], [ -75.302431, 39.964887 ], [ -75.302557, 39.964832 ], [ -75.302943, 39.964662 ], [ -75.303161, 39.964566 ], [ -75.303763, 39.964292 ], [ -75.303893, 39.964233 ], [ -75.304144, 39.964121 ], [ -75.304453, 39.963982 ], [ -75.304626, 39.963904 ], [ -75.305837, 39.96337 ], [ -75.306901, 39.962902 ], [ -75.307578, 39.962604 ], [ -75.307772, 39.962516 ], [ -75.308324, 39.962264 ], [ -75.308501, 39.962185 ], [ -75.309078, 39.961932 ], [ -75.309382, 39.961794 ], [ -75.309666, 39.961664 ], [ -75.309831, 39.961589 ], [ -75.310069, 39.961484 ], [ -75.310583, 39.961262 ], [ -75.311071, 39.961045 ], [ -75.311421, 39.960892 ], [ -75.31154, 39.96084 ], [ -75.311816, 39.960715 ], [ -75.31204, 39.960612 ], [ -75.312292, 39.960496 ], [ -75.313082, 39.960149 ], [ -75.313194, 39.960096 ], [ -75.31351, 39.959959 ], [ -75.313773, 39.959845 ], [ -75.31392, 39.959781 ], [ -75.314171, 39.959672 ], [ -75.314422, 39.959564 ], [ -75.314681, 39.959452 ], [ -75.315043, 39.959295 ], [ -75.315606, 39.959041 ], [ -75.316159, 39.95879 ], [ -75.317006, 39.95841 ], [ -75.317324, 39.958279 ], [ -75.317805, 39.958086 ], [ -75.318043, 39.957982 ], [ -75.318601, 39.957741 ], [ -75.319254, 39.957459 ], [ -75.319351, 39.957457 ], [ -75.319435, 39.957428 ], [ -75.319823, 39.957256 ], [ -75.320104, 39.957122 ], [ -75.320194, 39.957077 ], [ -75.320385, 39.956972 ], [ -75.320408, 39.956962 ], [ -75.320703, 39.956793 ], [ -75.320912, 39.956651 ], [ -75.321094, 39.956527 ], [ -75.32123, 39.956429 ], [ -75.321438, 39.956264 ], [ -75.321632, 39.956093 ], [ -75.321737, 39.955997 ], [ -75.321814, 39.955913 ], [ -75.321831, 39.955838 ], [ -75.321989, 39.95567 ], [ -75.322257, 39.955366 ], [ -75.322388, 39.955186 ], [ -75.322561, 39.954927 ], [ -75.32271, 39.954671 ], [ -75.322727, 39.95464 ], [ -75.322795, 39.954513 ], [ -75.322863, 39.954357 ], [ -75.32296, 39.954122 ], [ -75.323043, 39.953887 ], [ -75.323081, 39.953758 ], [ -75.323095, 39.953706 ], [ -75.323193, 39.953296 ], [ -75.323319, 39.952725 ], [ -75.323354, 39.95256 ], [ -75.323404, 39.952337 ], [ -75.323529, 39.951744 ], [ -75.32358, 39.951502 ], [ -75.323732, 39.950812 ], [ -75.323908, 39.950058 ], [ -75.324004, 39.949633 ], [ -75.324126, 39.949087 ], [ -75.324139, 39.949011 ], [ -75.32426, 39.948502 ], [ -75.324339, 39.948212 ], [ -75.324401, 39.948032 ], [ -75.324491, 39.947821 ], [ -75.324596, 39.947602 ], [ -75.324711, 39.947362 ], [ -75.324792, 39.947306 ], [ -75.324844, 39.947236 ], [ -75.325034, 39.946954 ], [ -75.325233, 39.946697 ], [ -75.325435, 39.946438 ], [ -75.32557, 39.946294 ], [ -75.325634, 39.946228 ], [ -75.325727, 39.946135 ], [ -75.325898, 39.945982 ], [ -75.326222, 39.945722 ], [ -75.326416, 39.945567 ], [ -75.326506, 39.945508 ], [ -75.32667, 39.945401 ], [ -75.326893, 39.94526 ], [ -75.327154, 39.945111 ], [ -75.327236, 39.945063 ], [ -75.327468, 39.944922 ], [ -75.327556, 39.944871 ], [ -75.327961, 39.944645 ], [ -75.328143, 39.944548 ], [ -75.328657, 39.944272 ], [ -75.328907, 39.944146 ], [ -75.329706, 39.943722 ], [ -75.330023, 39.943557 ], [ -75.330421, 39.943374 ], [ -75.330911, 39.943161 ], [ -75.331172, 39.943055 ], [ -75.331426, 39.942955 ], [ -75.331664, 39.942872 ], [ -75.332065, 39.942737 ], [ -75.332242, 39.942679 ], [ -75.332321, 39.942653 ], [ -75.332578, 39.942578 ], [ -75.332805, 39.942519 ], [ -75.333122, 39.942434 ], [ -75.333379, 39.942375 ], [ -75.334504, 39.942129 ], [ -75.335306, 39.941949 ], [ -75.335561, 39.941891 ], [ -75.335926, 39.941809 ], [ -75.337082, 39.941554 ], [ -75.337183, 39.941531 ], [ -75.337541, 39.941451 ], [ -75.338343, 39.941271 ], [ -75.338498, 39.941238 ], [ -75.338796, 39.941176 ], [ -75.339257, 39.941081 ], [ -75.340229, 39.940867 ], [ -75.341783, 39.940521 ], [ -75.342405, 39.940376 ], [ -75.343041, 39.940224 ], [ -75.343323, 39.940157 ], [ -75.343424, 39.940131 ], [ -75.343854, 39.940023 ], [ -75.343895, 39.940013 ], [ -75.344267, 39.939921 ], [ -75.344644, 39.939826 ], [ -75.344996, 39.939727 ], [ -75.34521, 39.939668 ], [ -75.345748, 39.93953 ], [ -75.346381, 39.939355 ], [ -75.346777, 39.939251 ], [ -75.347235, 39.939133 ], [ -75.347462, 39.939079 ], [ -75.347892, 39.939026 ], [ -75.347963, 39.939014 ], [ -75.348025, 39.939004 ], [ -75.348102, 39.938987 ], [ -75.34942, 39.938672 ], [ -75.349503, 39.938652 ], [ -75.349768, 39.938589 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.351203, 39.937856 ], [ -75.351137, 39.937849 ], [ -75.351084, 39.93783 ], [ -75.351047, 39.937801 ], [ -75.351024, 39.937766 ], [ -75.35101, 39.93772 ], [ -75.351012, 39.93766 ], [ -75.351012, 39.937591 ], [ -75.351162, 39.937312 ], [ -75.351338, 39.936979 ], [ -75.351407, 39.936816 ], [ -75.351558, 39.936464 ], [ -75.351627, 39.936288 ], [ -75.351795, 39.93586 ], [ -75.352048, 39.935123 ], [ -75.352162, 39.934788 ], [ -75.352248, 39.934515 ], [ -75.352325, 39.934266 ], [ -75.352428, 39.933904 ], [ -75.352475, 39.933626 ], [ -75.352487, 39.933465 ], [ -75.35251, 39.933173 ], [ -75.352509, 39.933051 ], [ -75.352503, 39.93293 ], [ -75.352491, 39.932791 ], [ -75.352451, 39.932562 ], [ -75.352415, 39.93241 ], [ -75.352359, 39.932234 ], [ -75.352313, 39.932069 ], [ -75.352269, 39.931924 ], [ -75.352238, 39.93185 ], [ -75.352138, 39.931776 ], [ -75.35211, 39.931715 ], [ -75.352025, 39.931525 ], [ -75.351558, 39.930468 ], [ -75.351248, 39.929803 ], [ -75.350918, 39.929049 ], [ -75.350772, 39.928737 ], [ -75.350521, 39.928162 ], [ -75.350116, 39.927409 ], [ -75.349797, 39.92685 ], [ -75.349738, 39.926753 ], [ -75.349545, 39.926436 ], [ -75.349071, 39.925656 ], [ -75.348941, 39.925408 ], [ -75.348908, 39.925343 ], [ -75.3488, 39.92511 ], [ -75.348614, 39.924634 ], [ -75.348534, 39.924381 ], [ -75.348464, 39.924116 ], [ -75.348407, 39.923837 ], [ -75.348355, 39.923501 ], [ -75.348303, 39.923106 ], [ -75.34828, 39.922923 ], [ -75.348277, 39.92252 ], [ -75.348293, 39.922349 ], [ -75.348319, 39.922129 ], [ -75.348412, 39.920881 ], [ -75.348444, 39.920514 ], [ -75.348498, 39.919882 ], [ -75.348608, 39.918554 ], [ -75.34862, 39.918427 ], [ -75.348633, 39.918256 ], [ -75.348649, 39.918042 ], [ -75.348693, 39.917984 ], [ -75.348699, 39.917925 ], [ -75.34877, 39.916957 ], [ -75.348787, 39.9167 ], [ -75.348841, 39.916118 ], [ -75.348869, 39.916095 ], [ -75.348907, 39.916076 ], [ -75.349018, 39.916022 ], [ -75.349099, 39.915987 ], [ -75.349553, 39.915983 ], [ -75.349633, 39.915076 ], [ -75.34964, 39.914989 ], [ -75.34964, 39.914747 ], [ -75.349629, 39.914663 ], [ -75.349661, 39.914353 ], [ -75.349708, 39.91423 ], [ -75.349741, 39.914179 ], [ -75.349823, 39.914124 ], [ -75.349912, 39.914089 ], [ -75.350005, 39.914068 ], [ -75.350122, 39.914055 ], [ -75.350248, 39.914055 ], [ -75.35036, 39.914059 ], [ -75.350522, 39.914049 ], [ -75.350721, 39.914038 ], [ -75.351306, 39.914002 ], [ -75.35149, 39.913981 ], [ -75.351593, 39.913978 ], [ -75.352138, 39.913965 ], [ -75.352341, 39.913962 ], [ -75.35247, 39.913953 ], [ -75.352401, 39.913872 ], [ -75.352274, 39.913744 ], [ -75.352246, 39.913703 ], [ -75.352235, 39.91366 ], [ -75.35224, 39.913613 ], [ -75.352257, 39.913568 ], [ -75.352288, 39.913526 ], [ -75.352336, 39.913492 ], [ -75.352397, 39.913466 ], [ -75.352518, 39.913427 ], [ -75.353254, 39.913488 ], [ -75.353586, 39.913495 ], [ -75.353777, 39.913486 ], [ -75.353892, 39.913483 ], [ -75.354513, 39.913374 ], [ -75.35519, 39.913291 ], [ -75.356366, 39.913129 ], [ -75.356417, 39.913123 ], [ -75.357534, 39.912996 ], [ -75.357821, 39.91296 ], [ -75.358032, 39.912935 ], [ -75.358234, 39.912915 ], [ -75.358441, 39.912898 ], [ -75.358668, 39.912886 ], [ -75.359, 39.91288 ], [ -75.359172, 39.912878 ], [ -75.359796, 39.912904 ], [ -75.360424, 39.912921 ], [ -75.361044, 39.912929 ], [ -75.361376, 39.912934 ], [ -75.361708, 39.912953 ], [ -75.362105, 39.912969 ], [ -75.362308, 39.912987 ], [ -75.362822, 39.913013 ], [ -75.363091, 39.913028 ], [ -75.36337, 39.913056 ], [ -75.363804, 39.913084 ], [ -75.364171, 39.913111 ], [ -75.364452, 39.913134 ], [ -75.365377, 39.913213 ], [ -75.365509, 39.913169 ], [ -75.36578, 39.913198 ], [ -75.366075, 39.913236 ], [ -75.366942, 39.91334 ], [ -75.370162, 39.913688 ], [ -75.371817, 39.913909 ], [ -75.372039, 39.91394 ], [ -75.372385, 39.91399 ], [ -75.372681, 39.914027 ], [ -75.373293, 39.914105 ], [ -75.373498, 39.914131 ], [ -75.375523, 39.914429 ], [ -75.376198, 39.914536 ], [ -75.377079, 39.914687 ], [ -75.377307, 39.914725 ], [ -75.377644, 39.914783 ], [ -75.377913, 39.91484 ], [ -75.378001, 39.914858 ], [ -75.378138, 39.914888 ], [ -75.378301, 39.914929 ], [ -75.378669, 39.915029 ], [ -75.378757, 39.915056 ], [ -75.378877, 39.91509 ], [ -75.379207, 39.915183 ], [ -75.379325, 39.915217 ], [ -75.379723, 39.915324 ], [ -75.37982, 39.915351 ], [ -75.379941, 39.915386 ], [ -75.380247, 39.915465 ], [ -75.380445, 39.915518 ], [ -75.380601, 39.915558 ], [ -75.380735, 39.915593 ], [ -75.380884, 39.915623 ], [ -75.381013, 39.915642 ], [ -75.381327, 39.915685 ], [ -75.38206, 39.915785 ], [ -75.382331, 39.915822 ], [ -75.382657, 39.915866 ], [ -75.383152, 39.915932 ], [ -75.384299, 39.91608 ], [ -75.384773, 39.916146 ], [ -75.385909, 39.916304 ], [ -75.386318, 39.916362 ], [ -75.386971, 39.916456 ], [ -75.387875, 39.916577 ], [ -75.388275, 39.91664 ], [ -75.388776, 39.91672 ], [ -75.389701, 39.916855 ], [ -75.390196, 39.916923 ], [ -75.390509, 39.916967 ], [ -75.391292, 39.917072 ], [ -75.392265, 39.917197 ], [ -75.392759, 39.917264 ], [ -75.393275, 39.917335 ], [ -75.395223, 39.917607 ], [ -75.39611, 39.917731 ], [ -75.396611, 39.917795 ], [ -75.396822, 39.917826 ], [ -75.396862, 39.917854 ], [ -75.397037, 39.917888 ], [ -75.397283, 39.917916 ], [ -75.397373, 39.917925 ], [ -75.397449, 39.917926 ], [ -75.397515, 39.917925 ], [ -75.397609, 39.917916 ], [ -75.397692, 39.917904 ], [ -75.397725, 39.917896 ], [ -75.397803, 39.917879 ], [ -75.397934, 39.91784 ], [ -75.398039, 39.9178 ], [ -75.39813, 39.917756 ], [ -75.399153, 39.917164 ], [ -75.399311, 39.91708 ], [ -75.399468, 39.917004 ], [ -75.399611, 39.916948 ], [ -75.399761, 39.9169 ], [ -75.399841, 39.916878 ], [ -75.400003, 39.916841 ], [ -75.400173, 39.916821 ], [ -75.400352, 39.916807 ], [ -75.400461, 39.916807 ], [ -75.400753, 39.916818 ], [ -75.401714, 39.916861 ], [ -75.402714, 39.916917 ], [ -75.403408, 39.91695 ], [ -75.403931, 39.916981 ], [ -75.404112, 39.91699 ], [ -75.404327, 39.917001 ], [ -75.404516, 39.917005 ], [ -75.404521, 39.91691 ], [ -75.404507, 39.916734 ], [ -75.404502, 39.916599 ], [ -75.404497, 39.916512 ], [ -75.404504, 39.91641 ], [ -75.404513, 39.916311 ], [ -75.404524, 39.91621 ], [ -75.404536, 39.916118 ], [ -75.404551, 39.916019 ], [ -75.404564, 39.915931 ], [ -75.404584, 39.915814 ], [ -75.404596, 39.915749 ], [ -75.404608, 39.915687 ], [ -75.404631, 39.915611 ], [ -75.404659, 39.915545 ], [ -75.404693, 39.915475 ], [ -75.4048, 39.915296 ], [ -75.404838, 39.915261 ], [ -75.404977, 39.915138 ], [ -75.405204, 39.91495 ], [ -75.405514, 39.914705 ], [ -75.405732, 39.914504 ], [ -75.406233, 39.913925 ], [ -75.406573, 39.913502 ], [ -75.406983, 39.913055 ], [ -75.407183, 39.912758 ], [ -75.407309, 39.91249 ], [ -75.407452, 39.912245 ], [ -75.407584, 39.912108 ], [ -75.407682, 39.912006 ], [ -75.408149, 39.911629 ], [ -75.408262, 39.911528 ], [ -75.408424, 39.911349 ], [ -75.408839, 39.910685 ], [ -75.408921, 39.910567 ], [ -75.408998, 39.910482 ], [ -75.40912, 39.91037 ], [ -75.409651, 39.910022 ], [ -75.40985, 39.910411 ], [ -75.409991, 39.910701 ], [ -75.410202, 39.911177 ], [ -75.410446, 39.91174 ], [ -75.410484, 39.911823 ], [ -75.411095, 39.912847 ], [ -75.411188, 39.913008 ], [ -75.411238, 39.913124 ], [ -75.411267, 39.913223 ], [ -75.411279, 39.913341 ], [ -75.411267, 39.913408 ], [ -75.411231, 39.913474 ], [ -75.41117, 39.91352 ], [ -75.410838, 39.913685 ], [ -75.410611, 39.913807 ], [ -75.410315, 39.914027 ], [ -75.410153, 39.914181 ], [ -75.410088, 39.914285 ], [ -75.410057, 39.914376 ], [ -75.410038, 39.9145 ], [ -75.410034, 39.91465 ], [ -75.410052, 39.914829 ], [ -75.410095, 39.914956 ], [ -75.410226, 39.915168 ], [ -75.410356, 39.915321 ], [ -75.410477, 39.915417 ], [ -75.410756, 39.915566 ], [ -75.410961, 39.915651 ], [ -75.41108, 39.915678 ], [ -75.411223, 39.915682 ], [ -75.411373, 39.91567 ], [ -75.413144, 39.91524 ], [ -75.413645, 39.915152 ], [ -75.415174, 39.914988 ], [ -75.415368, 39.91494 ], [ -75.415536, 39.91487 ], [ -75.415542, 39.914944 ], [ -75.415542, 39.915 ], [ -75.415533, 39.915285 ], [ -75.415497, 39.915777 ], [ -75.415487, 39.91592 ], [ -75.41548, 39.916095 ], [ -75.415486, 39.916337 ], [ -75.415489, 39.916416 ], [ -75.415495, 39.916499 ], [ -75.416891, 39.916305 ], [ -75.417561, 39.916213 ], [ -75.417699, 39.916196 ], [ -75.418252, 39.916117 ], [ -75.418807, 39.916035 ], [ -75.418966, 39.916011 ], [ -75.419854, 39.915883 ], [ -75.420667, 39.915755 ], [ -75.421182, 39.915687 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422868, 39.915448 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424409, 39.915237 ], [ -75.424543, 39.915217 ], [ -75.424587, 39.915209 ], [ -75.424724, 39.915188 ], [ -75.425151, 39.91513 ], [ -75.42528, 39.91511 ], [ -75.426328, 39.91495 ], [ -75.42678, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.439737, 39.912925 ], [ -75.439745, 39.913033 ], [ -75.439776, 39.91352 ], [ -75.439838, 39.91403 ], [ -75.439895, 39.914339 ], [ -75.439928, 39.91457 ], [ -75.439966, 39.914757 ], [ -75.440039, 39.915273 ], [ -75.440219, 39.916371 ], [ -75.440269, 39.916647 ], [ -75.440298, 39.916825 ], [ -75.440323, 39.916975 ], [ -75.440338, 39.917138 ], [ -75.440352, 39.91731 ], [ -75.440446, 39.917632 ], [ -75.440564, 39.917702 ], [ -75.440651, 39.91775 ], [ -75.44072, 39.917794 ], [ -75.440877, 39.917897 ], [ -75.441047, 39.918016 ], [ -75.441116, 39.918068 ], [ -75.441131, 39.918101 ], [ -75.441639, 39.9185 ], [ -75.441752, 39.91858 ], [ -75.441811, 39.918622 ], [ -75.441937, 39.918709 ], [ -75.442039, 39.918786 ], [ -75.44218, 39.918911 ], [ -75.442207, 39.918932 ], [ -75.442223, 39.918952 ], [ -75.442235, 39.918965 ], [ -75.442332, 39.919071 ], [ -75.442455, 39.919205 ], [ -75.442552, 39.919321 ], [ -75.442717, 39.919545 ], [ -75.442805, 39.919675 ], [ -75.442872, 39.9198 ], [ -75.442939, 39.919955 ], [ -75.442999, 39.920148 ], [ -75.443047, 39.920341 ], [ -75.443054, 39.920387 ], [ -75.443079, 39.920536 ], [ -75.443089, 39.92069 ], [ -75.443092, 39.920728 ], [ -75.443097, 39.920781 ], [ -75.443126, 39.920821 ], [ -75.443129, 39.921338 ], [ -75.443146, 39.921943 ], [ -75.443157, 39.92209 ], [ -75.443174, 39.9223 ], [ -75.443231, 39.922632 ], [ -75.443294, 39.922965 ], [ -75.443378, 39.923269 ], [ -75.443522, 39.923696 ], [ -75.443823, 39.924586 ], [ -75.443967, 39.924985 ], [ -75.443958, 39.925029 ], [ -75.444135, 39.925535 ], [ -75.444296, 39.925976 ], [ -75.444524, 39.926539 ], [ -75.444569, 39.926668 ], [ -75.444738, 39.927092 ], [ -75.444857, 39.92741 ], [ -75.445242, 39.928352 ], [ -75.445619, 39.929305 ], [ -75.44568, 39.929272 ], [ -75.447053, 39.928679 ], [ -75.447305, 39.928655 ], [ -75.447415, 39.928594 ], [ -75.447401, 39.928489 ], [ -75.447305, 39.928437 ], [ -75.447235, 39.928441 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310262", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.447235, 39.928441 ], [ -75.447167, 39.928446 ], [ -75.44701, 39.928627 ], [ -75.44623, 39.928955 ], [ -75.445959, 39.929084 ], [ -75.44568, 39.929272 ], [ -75.445591, 39.929067 ], [ -75.44549, 39.92883 ], [ -75.445386, 39.928587 ], [ -75.44532, 39.928411 ], [ -75.445302, 39.928351 ], [ -75.445259, 39.928214 ], [ -75.4452, 39.928047 ], [ -75.445136, 39.927886 ], [ -75.444905, 39.927329 ], [ -75.444798, 39.927051 ], [ -75.444738, 39.926912 ], [ -75.444677, 39.926748 ], [ -75.444571, 39.926429 ], [ -75.444423, 39.926098 ], [ -75.444358, 39.925944 ], [ -75.444154, 39.925385 ], [ -75.44405, 39.925111 ], [ -75.444006, 39.925016 ], [ -75.443967, 39.924985 ], [ -75.443823, 39.924586 ], [ -75.443522, 39.923696 ], [ -75.443378, 39.923269 ], [ -75.443294, 39.922965 ], [ -75.443231, 39.922632 ], [ -75.443174, 39.9223 ], [ -75.443157, 39.92209 ], [ -75.443146, 39.921943 ], [ -75.443129, 39.921338 ], [ -75.443126, 39.920821 ], [ -75.443153, 39.92078 ], [ -75.443152, 39.920742 ], [ -75.443149, 39.920684 ], [ -75.443136, 39.920526 ], [ -75.443126, 39.920415 ], [ -75.443097, 39.92022 ], [ -75.443035, 39.92 ], [ -75.443023, 39.919962 ], [ -75.443002, 39.919902 ], [ -75.442951, 39.919778 ], [ -75.442893, 39.919675 ], [ -75.442793, 39.919498 ], [ -75.4429, 39.919428 ], [ -75.442968, 39.919377 ], [ -75.443005, 39.91934 ], [ -75.443064, 39.919284 ], [ -75.443126, 39.919222 ], [ -75.443202, 39.919143 ], [ -75.443331, 39.919015 ], [ -75.44373, 39.918633 ], [ -75.44383, 39.918548 ], [ -75.443933, 39.918486 ], [ -75.444023, 39.918449 ], [ -75.444018, 39.918403 ], [ -75.444029, 39.918349 ], [ -75.444052, 39.918306 ], [ -75.444098, 39.918262 ], [ -75.444328, 39.918042 ], [ -75.444393, 39.91798 ], [ -75.44471, 39.917688 ], [ -75.444771, 39.917704 ], [ -75.444823, 39.917704 ], [ -75.444868, 39.917694 ], [ -75.44492, 39.91767 ], [ -75.444976, 39.917625 ], [ -75.444721, 39.917489 ], [ -75.44468, 39.917526 ], [ -75.444651, 39.917571 ], [ -75.444648, 39.917604 ], [ -75.444656, 39.917637 ], [ -75.444685, 39.91767 ], [ -75.44471, 39.917688 ], [ -75.444393, 39.91798 ], [ -75.444328, 39.918042 ], [ -75.444098, 39.918262 ], [ -75.444052, 39.918306 ], [ -75.444029, 39.918349 ], [ -75.444018, 39.918403 ], [ -75.444023, 39.918449 ], [ -75.443933, 39.918486 ], [ -75.44383, 39.918548 ], [ -75.44373, 39.918632 ], [ -75.443331, 39.919015 ], [ -75.443202, 39.919143 ], [ -75.443126, 39.919222 ], [ -75.443064, 39.919284 ], [ -75.443005, 39.91934 ], [ -75.442968, 39.919377 ], [ -75.4429, 39.919428 ], [ -75.442793, 39.919498 ], [ -75.44272, 39.919395 ], [ -75.442589, 39.919213 ], [ -75.442489, 39.919097 ], [ -75.442366, 39.918977 ], [ -75.442206, 39.918842 ], [ -75.441955, 39.918652 ], [ -75.441298, 39.918175 ], [ -75.441192, 39.918095 ], [ -75.441161, 39.918076 ], [ -75.441116, 39.918068 ], [ -75.441047, 39.918016 ], [ -75.440877, 39.917897 ], [ -75.44072, 39.917794 ], [ -75.440651, 39.91775 ], [ -75.440564, 39.917702 ], [ -75.440446, 39.917632 ], [ -75.440351, 39.917311 ], [ -75.440338, 39.917138 ], [ -75.440323, 39.916975 ], [ -75.440298, 39.916825 ], [ -75.440269, 39.916646 ], [ -75.440219, 39.916371 ], [ -75.440039, 39.915273 ], [ -75.439966, 39.914757 ], [ -75.439928, 39.91457 ], [ -75.439895, 39.914339 ], [ -75.439838, 39.91403 ], [ -75.439776, 39.91352 ], [ -75.439745, 39.913033 ], [ -75.439737, 39.912925 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436382, 39.913286 ], [ -75.435978, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434501, 39.913693 ], [ -75.434003, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427245, 39.914728 ], [ -75.42631, 39.914885 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421713, 39.91553 ], [ -75.421259, 39.915591 ], [ -75.420859, 39.915647 ], [ -75.420658, 39.915673 ], [ -75.420338, 39.915715 ], [ -75.419935, 39.915774 ], [ -75.419305, 39.915862 ], [ -75.418823, 39.915935 ], [ -75.41868, 39.915958 ], [ -75.417733, 39.916098 ], [ -75.417587, 39.916118 ], [ -75.416877, 39.916218 ], [ -75.415489, 39.916416 ], [ -75.415486, 39.916337 ], [ -75.41548, 39.916095 ], [ -75.415487, 39.91592 ], [ -75.415497, 39.915777 ], [ -75.415533, 39.915285 ], [ -75.415542, 39.915 ], [ -75.415542, 39.914944 ], [ -75.415536, 39.91487 ], [ -75.415368, 39.91494 ], [ -75.415174, 39.914988 ], [ -75.413645, 39.915152 ], [ -75.413144, 39.91524 ], [ -75.411373, 39.91567 ], [ -75.411223, 39.915682 ], [ -75.41108, 39.915678 ], [ -75.410961, 39.915651 ], [ -75.410756, 39.915566 ], [ -75.410477, 39.915417 ], [ -75.410356, 39.915321 ], [ -75.410226, 39.915168 ], [ -75.410095, 39.914956 ], [ -75.410052, 39.914829 ], [ -75.410034, 39.91465 ], [ -75.410038, 39.9145 ], [ -75.410057, 39.914376 ], [ -75.410088, 39.914285 ], [ -75.410153, 39.914181 ], [ -75.410315, 39.914027 ], [ -75.410611, 39.913807 ], [ -75.410838, 39.913685 ], [ -75.41117, 39.91352 ], [ -75.411231, 39.913474 ], [ -75.411267, 39.913408 ], [ -75.411279, 39.913341 ], [ -75.411267, 39.913223 ], [ -75.411238, 39.913124 ], [ -75.411188, 39.913008 ], [ -75.411095, 39.912847 ], [ -75.410484, 39.911823 ], [ -75.410446, 39.91174 ], [ -75.410202, 39.911177 ], [ -75.409991, 39.910701 ], [ -75.40985, 39.910411 ], [ -75.409651, 39.910022 ], [ -75.40912, 39.91037 ], [ -75.408999, 39.910481 ], [ -75.408921, 39.910567 ], [ -75.408839, 39.910685 ], [ -75.408424, 39.911349 ], [ -75.408263, 39.911527 ], [ -75.408149, 39.911629 ], [ -75.407682, 39.912006 ], [ -75.407584, 39.912108 ], [ -75.407452, 39.912245 ], [ -75.407309, 39.91249 ], [ -75.407183, 39.912758 ], [ -75.406983, 39.913055 ], [ -75.406573, 39.913502 ], [ -75.406233, 39.913925 ], [ -75.405732, 39.914504 ], [ -75.405514, 39.914705 ], [ -75.405204, 39.91495 ], [ -75.404977, 39.915138 ], [ -75.404838, 39.915261 ], [ -75.4048, 39.915296 ], [ -75.404693, 39.915475 ], [ -75.404659, 39.915545 ], [ -75.404631, 39.915611 ], [ -75.404608, 39.915687 ], [ -75.404596, 39.915749 ], [ -75.404584, 39.915814 ], [ -75.404564, 39.915931 ], [ -75.404551, 39.916019 ], [ -75.404536, 39.916118 ], [ -75.404524, 39.91621 ], [ -75.404513, 39.916311 ], [ -75.404504, 39.91641 ], [ -75.404497, 39.916512 ], [ -75.404502, 39.916599 ], [ -75.404507, 39.916734 ], [ -75.404521, 39.91691 ], [ -75.404253, 39.9169 ], [ -75.403742, 39.916873 ], [ -75.403414, 39.916855 ], [ -75.403016, 39.916841 ], [ -75.402721, 39.916824 ], [ -75.401718, 39.91677 ], [ -75.401168, 39.916736 ], [ -75.400898, 39.916723 ], [ -75.40073, 39.916717 ], [ -75.4006, 39.916716 ], [ -75.400421, 39.916713 ], [ -75.400236, 39.916722 ], [ -75.40005, 39.916742 ], [ -75.39988, 39.916771 ], [ -75.399715, 39.91681 ], [ -75.399596, 39.916847 ], [ -75.399447, 39.9169 ], [ -75.399362, 39.916937 ], [ -75.399288, 39.916972 ], [ -75.399192, 39.917021 ], [ -75.399053, 39.917096 ], [ -75.398686, 39.917324 ], [ -75.398491, 39.917446 ], [ -75.398209, 39.917609 ], [ -75.397971, 39.917749 ], [ -75.397835, 39.917801 ], [ -75.397711, 39.917836 ], [ -75.397584, 39.917857 ], [ -75.397455, 39.917864 ], [ -75.397362, 39.917866 ], [ -75.397285, 39.917863 ], [ -75.397196, 39.917854 ], [ -75.397128, 39.917846 ], [ -75.39706, 39.917837 ], [ -75.396982, 39.917826 ], [ -75.396878, 39.917812 ], [ -75.396822, 39.917826 ], [ -75.396611, 39.917795 ], [ -75.39611, 39.917731 ], [ -75.395223, 39.917607 ], [ -75.393275, 39.917335 ], [ -75.392759, 39.917264 ], [ -75.392265, 39.917197 ], [ -75.391292, 39.917072 ], [ -75.390509, 39.916967 ], [ -75.390196, 39.916923 ], [ -75.389701, 39.916855 ], [ -75.388776, 39.91672 ], [ -75.388275, 39.91664 ], [ -75.387875, 39.916577 ], [ -75.386971, 39.916456 ], [ -75.386318, 39.916362 ], [ -75.385909, 39.916304 ], [ -75.384773, 39.916146 ], [ -75.384299, 39.91608 ], [ -75.383152, 39.915932 ], [ -75.382657, 39.915866 ], [ -75.382331, 39.915822 ], [ -75.38206, 39.915785 ], [ -75.381327, 39.915685 ], [ -75.381013, 39.915642 ], [ -75.380884, 39.915623 ], [ -75.380735, 39.915593 ], [ -75.380601, 39.915558 ], [ -75.380445, 39.915518 ], [ -75.380247, 39.915465 ], [ -75.379941, 39.915386 ], [ -75.37982, 39.915351 ], [ -75.379723, 39.915324 ], [ -75.379325, 39.915217 ], [ -75.379207, 39.915183 ], [ -75.378877, 39.91509 ], [ -75.378757, 39.915056 ], [ -75.378669, 39.915029 ], [ -75.378301, 39.914929 ], [ -75.378138, 39.914888 ], [ -75.378001, 39.914858 ], [ -75.377913, 39.91484 ], [ -75.377644, 39.914783 ], [ -75.377307, 39.914725 ], [ -75.377079, 39.914687 ], [ -75.376198, 39.914536 ], [ -75.375523, 39.914429 ], [ -75.373498, 39.914131 ], [ -75.373293, 39.914105 ], [ -75.372681, 39.914027 ], [ -75.372385, 39.91399 ], [ -75.372039, 39.91394 ], [ -75.371817, 39.913909 ], [ -75.370162, 39.913688 ], [ -75.366942, 39.91334 ], [ -75.366075, 39.913236 ], [ -75.36578, 39.913198 ], [ -75.365509, 39.913169 ], [ -75.365381, 39.913097 ], [ -75.36446, 39.913004 ], [ -75.364016, 39.91296 ], [ -75.363794, 39.912949 ], [ -75.363265, 39.912904 ], [ -75.363101, 39.912898 ], [ -75.36289, 39.912884 ], [ -75.362808, 39.912881 ], [ -75.362327, 39.912842 ], [ -75.362117, 39.912827 ], [ -75.361736, 39.912808 ], [ -75.361375, 39.912782 ], [ -75.3612, 39.91278 ], [ -75.360933, 39.912786 ], [ -75.360498, 39.912776 ], [ -75.359824, 39.912752 ], [ -75.35934, 39.912744 ], [ -75.35923, 39.912743 ], [ -75.358936, 39.912749 ], [ -75.358683, 39.912766 ], [ -75.358438, 39.912783 ], [ -75.358292, 39.912799 ], [ -75.358204, 39.912808 ], [ -75.357811, 39.912855 ], [ -75.357512, 39.912893 ], [ -75.356371, 39.913037 ], [ -75.355682, 39.913125 ], [ -75.35527, 39.913177 ], [ -75.354796, 39.913238 ], [ -75.354519, 39.913264 ], [ -75.354445, 39.913275 ], [ -75.354371, 39.913283 ], [ -75.354329, 39.913286 ], [ -75.354095, 39.913323 ], [ -75.353903, 39.91336 ], [ -75.353669, 39.913379 ], [ -75.353304, 39.913388 ], [ -75.352764, 39.913368 ], [ -75.352482, 39.913354 ], [ -75.352301, 39.913351 ], [ -75.352186, 39.91335 ], [ -75.352125, 39.913357 ], [ -75.3521, 39.91337 ], [ -75.352075, 39.91339 ], [ -75.352049, 39.913416 ], [ -75.352025, 39.913497 ], [ -75.35202, 39.913547 ], [ -75.35203, 39.913595 ], [ -75.352057, 39.913647 ], [ -75.352111, 39.913716 ], [ -75.352131, 39.913736 ], [ -75.352176, 39.913784 ], [ -75.352195, 39.913863 ], [ -75.35219, 39.913897 ], [ -75.352172, 39.91393 ], [ -75.352138, 39.913965 ], [ -75.351593, 39.913978 ], [ -75.35149, 39.913981 ], [ -75.351306, 39.914002 ], [ -75.350721, 39.914038 ], [ -75.350522, 39.914049 ], [ -75.35036, 39.914059 ], [ -75.350248, 39.914055 ], [ -75.350122, 39.914055 ], [ -75.350005, 39.914068 ], [ -75.349912, 39.914089 ], [ -75.349823, 39.914124 ], [ -75.349741, 39.914179 ], [ -75.349708, 39.91423 ], [ -75.349661, 39.914353 ], [ -75.349629, 39.914663 ], [ -75.34964, 39.914747 ], [ -75.34964, 39.914989 ], [ -75.349633, 39.915076 ], [ -75.349553, 39.915983 ], [ -75.349099, 39.915987 ], [ -75.348852, 39.915988 ], [ -75.348734, 39.915982 ], [ -75.348723, 39.916109 ], [ -75.348679, 39.916717 ], [ -75.348667, 39.916951 ], [ -75.34861, 39.917928 ], [ -75.34861, 39.917981 ], [ -75.348649, 39.918042 ], [ -75.348633, 39.918256 ], [ -75.34862, 39.918427 ], [ -75.348608, 39.918554 ], [ -75.348498, 39.919882 ], [ -75.348444, 39.920514 ], [ -75.348412, 39.920881 ], [ -75.348319, 39.922129 ], [ -75.348293, 39.922349 ], [ -75.348277, 39.92252 ], [ -75.34828, 39.922923 ], [ -75.348303, 39.923106 ], [ -75.348355, 39.923501 ], [ -75.348407, 39.923837 ], [ -75.348464, 39.924116 ], [ -75.348534, 39.924381 ], [ -75.348614, 39.924634 ], [ -75.3488, 39.92511 ], [ -75.348908, 39.925343 ], [ -75.348941, 39.925408 ], [ -75.349071, 39.925656 ], [ -75.349545, 39.926436 ], [ -75.349738, 39.926753 ], [ -75.349797, 39.92685 ], [ -75.350116, 39.927409 ], [ -75.350521, 39.928162 ], [ -75.350772, 39.928737 ], [ -75.350918, 39.929049 ], [ -75.351248, 39.929803 ], [ -75.351558, 39.930468 ], [ -75.352025, 39.931525 ], [ -75.35211, 39.931715 ], [ -75.352138, 39.931776 ], [ -75.352116, 39.931876 ], [ -75.352138, 39.931978 ], [ -75.352239, 39.932246 ], [ -75.35228, 39.932429 ], [ -75.352308, 39.932582 ], [ -75.352355, 39.932894 ], [ -75.352373, 39.933057 ], [ -75.352372, 39.933069 ], [ -75.35237, 39.933268 ], [ -75.352359, 39.933364 ], [ -75.35233, 39.933597 ], [ -75.352278, 39.93389 ], [ -75.352173, 39.934239 ], [ -75.352072, 39.934546 ], [ -75.35188, 39.93513 ], [ -75.351574, 39.935956 ], [ -75.351518, 39.936108 ], [ -75.351389, 39.936417 ], [ -75.351311, 39.936603 ], [ -75.351108, 39.937033 ], [ -75.35103, 39.937199 ], [ -75.350859, 39.9375 ], [ -75.350833, 39.937559 ], [ -75.350709, 39.937776 ], [ -75.350549, 39.938047 ], [ -75.350477, 39.938168 ], [ -75.350463, 39.938194 ], [ -75.350404, 39.938322 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.350779, 39.937985 ], [ -75.350549, 39.938047 ], [ -75.350151, 39.938154 ], [ -75.349964, 39.938207 ], [ -75.349397, 39.938362 ], [ -75.348765, 39.938516 ], [ -75.348284, 39.938641 ], [ -75.348147, 39.938677 ], [ -75.347563, 39.938852 ], [ -75.347511, 39.938872 ], [ -75.347477, 39.938896 ], [ -75.34745, 39.938921 ], [ -75.347404, 39.93897 ], [ -75.346295, 39.939248 ], [ -75.345693, 39.939411 ], [ -75.345239, 39.939532 ], [ -75.344954, 39.939608 ], [ -75.344549, 39.939715 ], [ -75.344158, 39.939816 ], [ -75.34402, 39.939851 ], [ -75.343229, 39.940056 ], [ -75.342818, 39.940149 ], [ -75.341872, 39.940371 ], [ -75.341188, 39.940522 ], [ -75.34021, 39.94074 ], [ -75.339651, 39.940864 ], [ -75.339199, 39.940963 ], [ -75.338293, 39.941154 ], [ -75.33749, 39.941327 ], [ -75.337192, 39.941398 ], [ -75.337002, 39.94144 ], [ -75.335878, 39.941691 ], [ -75.334415, 39.942018 ], [ -75.333737, 39.942166 ], [ -75.333323, 39.942257 ], [ -75.33263, 39.942426 ], [ -75.332348, 39.942506 ], [ -75.331881, 39.942651 ], [ -75.33171, 39.94271 ], [ -75.331195, 39.942899 ], [ -75.330929, 39.943006 ], [ -75.330379, 39.943241 ], [ -75.330208, 39.943315 ], [ -75.329943, 39.943441 ], [ -75.329569, 39.943625 ], [ -75.329034, 39.943923 ], [ -75.328893, 39.943995 ], [ -75.328687, 39.944106 ], [ -75.328525, 39.944193 ], [ -75.328008, 39.944463 ], [ -75.327755, 39.944604 ], [ -75.327438, 39.944787 ], [ -75.327316, 39.944863 ], [ -75.326785, 39.94517 ], [ -75.326472, 39.945364 ], [ -75.326397, 39.945412 ], [ -75.326341, 39.945448 ], [ -75.326278, 39.945495 ], [ -75.326179, 39.945568 ], [ -75.325972, 39.945726 ], [ -75.325777, 39.945926 ], [ -75.325668, 39.946034 ], [ -75.325437, 39.946262 ], [ -75.325414, 39.946284 ], [ -75.325321, 39.946397 ], [ -75.325127, 39.946627 ], [ -75.324921, 39.946912 ], [ -75.32472, 39.94723 ], [ -75.324698, 39.947275 ], [ -75.324711, 39.947362 ], [ -75.324596, 39.947602 ], [ -75.324491, 39.947821 ], [ -75.324401, 39.948032 ], [ -75.324339, 39.948212 ], [ -75.32426, 39.948502 ], [ -75.324139, 39.949011 ], [ -75.324126, 39.949087 ], [ -75.324004, 39.949633 ], [ -75.323908, 39.950058 ], [ -75.323732, 39.950812 ], [ -75.32358, 39.951502 ], [ -75.323529, 39.951744 ], [ -75.323404, 39.952337 ], [ -75.323354, 39.95256 ], [ -75.323319, 39.952725 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310263", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.447235, 39.928441 ], [ -75.447167, 39.928446 ], [ -75.44701, 39.928627 ], [ -75.44623, 39.928955 ], [ -75.445959, 39.929084 ], [ -75.44568, 39.929272 ], [ -75.445591, 39.929067 ], [ -75.44549, 39.92883 ], [ -75.445386, 39.928587 ], [ -75.44532, 39.928411 ], [ -75.445302, 39.928351 ], [ -75.445259, 39.928214 ], [ -75.4452, 39.928047 ], [ -75.445136, 39.927886 ], [ -75.444905, 39.927329 ], [ -75.444798, 39.927051 ], [ -75.444738, 39.926912 ], [ -75.444677, 39.926748 ], [ -75.444571, 39.926429 ], [ -75.444423, 39.926098 ], [ -75.444358, 39.925944 ], [ -75.444154, 39.925385 ], [ -75.44405, 39.925111 ], [ -75.444006, 39.925016 ], [ -75.443967, 39.924985 ], [ -75.443823, 39.924586 ], [ -75.443522, 39.923696 ], [ -75.443378, 39.923269 ], [ -75.443294, 39.922965 ], [ -75.443231, 39.922632 ], [ -75.443174, 39.9223 ], [ -75.443157, 39.92209 ], [ -75.443146, 39.921943 ], [ -75.443129, 39.921338 ], [ -75.443126, 39.920821 ], [ -75.443153, 39.92078 ], [ -75.443152, 39.920742 ], [ -75.443149, 39.920684 ], [ -75.443136, 39.920526 ], [ -75.443126, 39.920415 ], [ -75.443097, 39.92022 ], [ -75.443035, 39.92 ], [ -75.443023, 39.919962 ], [ -75.443002, 39.919902 ], [ -75.442951, 39.919778 ], [ -75.442893, 39.919675 ], [ -75.442793, 39.919498 ], [ -75.4429, 39.919428 ], [ -75.442968, 39.919377 ], [ -75.443005, 39.91934 ], [ -75.443064, 39.919284 ], [ -75.443126, 39.919222 ], [ -75.443202, 39.919143 ], [ -75.443331, 39.919015 ], [ -75.44373, 39.918633 ], [ -75.44383, 39.918548 ], [ -75.443933, 39.918486 ], [ -75.444023, 39.918449 ], [ -75.444018, 39.918403 ], [ -75.444029, 39.918349 ], [ -75.444052, 39.918306 ], [ -75.444098, 39.918262 ], [ -75.444328, 39.918042 ], [ -75.444393, 39.91798 ], [ -75.44471, 39.917688 ], [ -75.444771, 39.917704 ], [ -75.444823, 39.917704 ], [ -75.444868, 39.917694 ], [ -75.44492, 39.91767 ], [ -75.444976, 39.917625 ], [ -75.444721, 39.917489 ], [ -75.44468, 39.917526 ], [ -75.444651, 39.917571 ], [ -75.444648, 39.917604 ], [ -75.444656, 39.917637 ], [ -75.444685, 39.91767 ], [ -75.44471, 39.917688 ], [ -75.444393, 39.91798 ], [ -75.444328, 39.918042 ], [ -75.444098, 39.918262 ], [ -75.444052, 39.918306 ], [ -75.444029, 39.918349 ], [ -75.444018, 39.918403 ], [ -75.444023, 39.918449 ], [ -75.443933, 39.918486 ], [ -75.44383, 39.918548 ], [ -75.44373, 39.918632 ], [ -75.443331, 39.919015 ], [ -75.443202, 39.919143 ], [ -75.443126, 39.919222 ], [ -75.443064, 39.919284 ], [ -75.443005, 39.91934 ], [ -75.442968, 39.919377 ], [ -75.4429, 39.919428 ], [ -75.442793, 39.919498 ], [ -75.44272, 39.919395 ], [ -75.442589, 39.919213 ], [ -75.442489, 39.919097 ], [ -75.442366, 39.918977 ], [ -75.442206, 39.918842 ], [ -75.441955, 39.918652 ], [ -75.441298, 39.918175 ], [ -75.441192, 39.918095 ], [ -75.441161, 39.918076 ], [ -75.441116, 39.918068 ], [ -75.441047, 39.918016 ], [ -75.440877, 39.917897 ], [ -75.44072, 39.917794 ], [ -75.440651, 39.91775 ], [ -75.440564, 39.917702 ], [ -75.440446, 39.917632 ], [ -75.440351, 39.917311 ], [ -75.440338, 39.917138 ], [ -75.440323, 39.916975 ], [ -75.440298, 39.916825 ], [ -75.440269, 39.916646 ], [ -75.440219, 39.916371 ], [ -75.440039, 39.915273 ], [ -75.439966, 39.914757 ], [ -75.439928, 39.91457 ], [ -75.439895, 39.914339 ], [ -75.439838, 39.91403 ], [ -75.439776, 39.91352 ], [ -75.439745, 39.913033 ], [ -75.439737, 39.912925 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436382, 39.913286 ], [ -75.435978, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434501, 39.913693 ], [ -75.434003, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427245, 39.914728 ], [ -75.42631, 39.914885 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421713, 39.91553 ], [ -75.421259, 39.915591 ], [ -75.420859, 39.915647 ], [ -75.420658, 39.915673 ], [ -75.420338, 39.915715 ], [ -75.419935, 39.915774 ], [ -75.419305, 39.915862 ], [ -75.418823, 39.915935 ], [ -75.41868, 39.915958 ], [ -75.417733, 39.916098 ], [ -75.417587, 39.916118 ], [ -75.416877, 39.916218 ], [ -75.415489, 39.916416 ], [ -75.414971, 39.916486 ], [ -75.412762, 39.916795 ], [ -75.411658, 39.916951 ], [ -75.410552, 39.9171 ], [ -75.410209, 39.917134 ], [ -75.40982, 39.917159 ], [ -75.409429, 39.917172 ], [ -75.409025, 39.91717 ], [ -75.409, 39.917169 ], [ -75.408828, 39.917166 ], [ -75.408543, 39.917159 ], [ -75.407625, 39.917103 ], [ -75.406709, 39.917035 ], [ -75.406444, 39.917018 ], [ -75.404876, 39.916925 ], [ -75.404521, 39.91691 ], [ -75.404253, 39.9169 ], [ -75.403742, 39.916873 ], [ -75.403414, 39.916855 ], [ -75.403016, 39.916841 ], [ -75.402721, 39.916824 ], [ -75.401718, 39.91677 ], [ -75.401168, 39.916736 ], [ -75.400898, 39.916723 ], [ -75.40073, 39.916717 ], [ -75.4006, 39.916716 ], [ -75.400421, 39.916713 ], [ -75.400236, 39.916722 ], [ -75.40005, 39.916742 ], [ -75.39988, 39.916771 ], [ -75.399715, 39.91681 ], [ -75.399596, 39.916847 ], [ -75.399447, 39.9169 ], [ -75.399362, 39.916937 ], [ -75.399288, 39.916972 ], [ -75.399192, 39.917021 ], [ -75.399053, 39.917096 ], [ -75.398686, 39.917324 ], [ -75.398491, 39.917446 ], [ -75.398209, 39.917609 ], [ -75.397971, 39.917749 ], [ -75.397835, 39.917801 ], [ -75.397711, 39.917836 ], [ -75.397584, 39.917857 ], [ -75.397455, 39.917864 ], [ -75.397362, 39.917866 ], [ -75.397285, 39.917863 ], [ -75.397196, 39.917854 ], [ -75.397128, 39.917846 ], [ -75.39706, 39.917837 ], [ -75.396982, 39.917826 ], [ -75.396878, 39.917812 ], [ -75.396822, 39.917826 ], [ -75.396611, 39.917795 ], [ -75.39611, 39.917731 ], [ -75.395223, 39.917607 ], [ -75.393275, 39.917335 ], [ -75.392759, 39.917264 ], [ -75.392265, 39.917197 ], [ -75.391292, 39.917072 ], [ -75.390509, 39.916967 ], [ -75.390196, 39.916923 ], [ -75.389701, 39.916855 ], [ -75.388776, 39.91672 ], [ -75.388275, 39.91664 ], [ -75.387875, 39.916577 ], [ -75.386971, 39.916456 ], [ -75.386318, 39.916362 ], [ -75.385909, 39.916304 ], [ -75.384773, 39.916146 ], [ -75.384299, 39.91608 ], [ -75.383152, 39.915932 ], [ -75.382657, 39.915866 ], [ -75.382331, 39.915822 ], [ -75.38206, 39.915785 ], [ -75.381327, 39.915685 ], [ -75.381013, 39.915642 ], [ -75.380884, 39.915623 ], [ -75.380735, 39.915593 ], [ -75.380601, 39.915558 ], [ -75.380445, 39.915518 ], [ -75.380247, 39.915465 ], [ -75.379941, 39.915386 ], [ -75.37982, 39.915351 ], [ -75.379723, 39.915324 ], [ -75.379325, 39.915217 ], [ -75.379207, 39.915183 ], [ -75.378877, 39.91509 ], [ -75.378757, 39.915056 ], [ -75.378669, 39.915029 ], [ -75.378301, 39.914929 ], [ -75.378138, 39.914888 ], [ -75.378001, 39.914858 ], [ -75.377913, 39.91484 ], [ -75.377644, 39.914783 ], [ -75.377307, 39.914725 ], [ -75.377079, 39.914687 ], [ -75.376198, 39.914536 ], [ -75.375523, 39.914429 ], [ -75.373498, 39.914131 ], [ -75.373293, 39.914105 ], [ -75.372681, 39.914027 ], [ -75.372385, 39.91399 ], [ -75.372039, 39.91394 ], [ -75.371817, 39.913909 ], [ -75.370162, 39.913688 ], [ -75.366942, 39.91334 ], [ -75.366075, 39.913236 ], [ -75.36578, 39.913198 ], [ -75.365509, 39.913169 ], [ -75.365381, 39.913097 ], [ -75.36446, 39.913004 ], [ -75.364016, 39.91296 ], [ -75.363794, 39.912949 ], [ -75.363265, 39.912904 ], [ -75.363101, 39.912898 ], [ -75.36289, 39.912884 ], [ -75.362808, 39.912881 ], [ -75.362327, 39.912842 ], [ -75.362117, 39.912827 ], [ -75.361736, 39.912808 ], [ -75.361375, 39.912782 ], [ -75.3612, 39.91278 ], [ -75.360933, 39.912786 ], [ -75.360498, 39.912776 ], [ -75.359824, 39.912752 ], [ -75.35934, 39.912744 ], [ -75.35923, 39.912743 ], [ -75.358936, 39.912749 ], [ -75.358683, 39.912766 ], [ -75.358438, 39.912783 ], [ -75.358292, 39.912799 ], [ -75.358204, 39.912808 ], [ -75.357811, 39.912855 ], [ -75.357512, 39.912893 ], [ -75.356371, 39.913037 ], [ -75.355682, 39.913125 ], [ -75.35527, 39.913177 ], [ -75.354796, 39.913238 ], [ -75.354519, 39.913264 ], [ -75.354445, 39.913275 ], [ -75.354371, 39.913283 ], [ -75.354329, 39.913286 ], [ -75.354095, 39.913323 ], [ -75.353903, 39.91336 ], [ -75.353669, 39.913379 ], [ -75.353304, 39.913388 ], [ -75.352764, 39.913368 ], [ -75.352482, 39.913354 ], [ -75.352301, 39.913351 ], [ -75.352186, 39.91335 ], [ -75.352125, 39.913357 ], [ -75.3521, 39.91337 ], [ -75.352075, 39.91339 ], [ -75.352049, 39.913416 ], [ -75.352025, 39.913497 ], [ -75.35202, 39.913547 ], [ -75.35203, 39.913595 ], [ -75.352057, 39.913647 ], [ -75.352111, 39.913716 ], [ -75.352131, 39.913736 ], [ -75.352176, 39.913784 ], [ -75.352195, 39.913863 ], [ -75.35219, 39.913897 ], [ -75.352172, 39.91393 ], [ -75.352138, 39.913965 ], [ -75.351593, 39.913978 ], [ -75.35149, 39.913981 ], [ -75.351306, 39.914002 ], [ -75.350721, 39.914038 ], [ -75.350522, 39.914049 ], [ -75.35036, 39.914059 ], [ -75.350248, 39.914055 ], [ -75.350122, 39.914055 ], [ -75.350005, 39.914068 ], [ -75.349912, 39.914089 ], [ -75.349823, 39.914124 ], [ -75.349741, 39.914179 ], [ -75.349708, 39.91423 ], [ -75.349661, 39.914353 ], [ -75.349629, 39.914663 ], [ -75.34964, 39.914747 ], [ -75.34964, 39.914989 ], [ -75.349633, 39.915076 ], [ -75.349553, 39.915983 ], [ -75.349099, 39.915987 ], [ -75.348852, 39.915988 ], [ -75.348734, 39.915982 ], [ -75.348723, 39.916109 ], [ -75.348679, 39.916717 ], [ -75.348667, 39.916951 ], [ -75.34861, 39.917928 ], [ -75.34861, 39.917981 ], [ -75.348649, 39.918042 ], [ -75.348633, 39.918256 ], [ -75.34862, 39.918427 ], [ -75.348608, 39.918554 ], [ -75.348498, 39.919882 ], [ -75.348444, 39.920514 ], [ -75.348412, 39.920881 ], [ -75.348319, 39.922129 ], [ -75.348293, 39.922349 ], [ -75.348277, 39.92252 ], [ -75.34828, 39.922923 ], [ -75.348303, 39.923106 ], [ -75.348355, 39.923501 ], [ -75.348407, 39.923837 ], [ -75.348464, 39.924116 ], [ -75.348534, 39.924381 ], [ -75.348614, 39.924634 ], [ -75.3488, 39.92511 ], [ -75.348908, 39.925343 ], [ -75.348941, 39.925408 ], [ -75.349071, 39.925656 ], [ -75.349545, 39.926436 ], [ -75.349738, 39.926753 ], [ -75.349797, 39.92685 ], [ -75.350116, 39.927409 ], [ -75.350521, 39.928162 ], [ -75.350772, 39.928737 ], [ -75.350918, 39.929049 ], [ -75.351248, 39.929803 ], [ -75.351558, 39.930468 ], [ -75.352025, 39.931525 ], [ -75.35211, 39.931715 ], [ -75.352138, 39.931776 ], [ -75.352116, 39.931876 ], [ -75.352138, 39.931978 ], [ -75.352239, 39.932246 ], [ -75.35228, 39.932429 ], [ -75.352308, 39.932582 ], [ -75.352355, 39.932894 ], [ -75.352373, 39.933057 ], [ -75.352372, 39.933069 ], [ -75.35237, 39.933268 ], [ -75.352359, 39.933364 ], [ -75.35233, 39.933597 ], [ -75.352278, 39.93389 ], [ -75.352173, 39.934239 ], [ -75.352072, 39.934546 ], [ -75.35188, 39.93513 ], [ -75.351574, 39.935956 ], [ -75.351518, 39.936108 ], [ -75.351389, 39.936417 ], [ -75.351311, 39.936603 ], [ -75.351108, 39.937033 ], [ -75.35103, 39.937199 ], [ -75.350859, 39.9375 ], [ -75.350833, 39.937559 ], [ -75.350709, 39.937776 ], [ -75.350549, 39.938047 ], [ -75.350477, 39.938168 ], [ -75.350463, 39.938194 ], [ -75.350404, 39.938322 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.350779, 39.937985 ], [ -75.350549, 39.938047 ], [ -75.350151, 39.938154 ], [ -75.349964, 39.938207 ], [ -75.349397, 39.938362 ], [ -75.348765, 39.938516 ], [ -75.348284, 39.938641 ], [ -75.348147, 39.938677 ], [ -75.347563, 39.938852 ], [ -75.347511, 39.938872 ], [ -75.347477, 39.938896 ], [ -75.34745, 39.938921 ], [ -75.347404, 39.93897 ], [ -75.346295, 39.939248 ], [ -75.345693, 39.939411 ], [ -75.345239, 39.939532 ], [ -75.344954, 39.939608 ], [ -75.344549, 39.939715 ], [ -75.344158, 39.939816 ], [ -75.34402, 39.939851 ], [ -75.343229, 39.940056 ], [ -75.342818, 39.940149 ], [ -75.341872, 39.940371 ], [ -75.341188, 39.940522 ], [ -75.34021, 39.94074 ], [ -75.339651, 39.940864 ], [ -75.339199, 39.940963 ], [ -75.338293, 39.941154 ], [ -75.33749, 39.941327 ], [ -75.337192, 39.941398 ], [ -75.337002, 39.94144 ], [ -75.335878, 39.941691 ], [ -75.334415, 39.942018 ], [ -75.333737, 39.942166 ], [ -75.333323, 39.942257 ], [ -75.33263, 39.942426 ], [ -75.332348, 39.942506 ], [ -75.331881, 39.942651 ], [ -75.33171, 39.94271 ], [ -75.331195, 39.942899 ], [ -75.330929, 39.943006 ], [ -75.330379, 39.943241 ], [ -75.330208, 39.943315 ], [ -75.329943, 39.943441 ], [ -75.329569, 39.943625 ], [ -75.329034, 39.943923 ], [ -75.328893, 39.943995 ], [ -75.328687, 39.944106 ], [ -75.328525, 39.944193 ], [ -75.328008, 39.944463 ], [ -75.327755, 39.944604 ], [ -75.327438, 39.944787 ], [ -75.327316, 39.944863 ], [ -75.326785, 39.94517 ], [ -75.326472, 39.945364 ], [ -75.326397, 39.945412 ], [ -75.326341, 39.945448 ], [ -75.326278, 39.945495 ], [ -75.326179, 39.945568 ], [ -75.325972, 39.945726 ], [ -75.325777, 39.945926 ], [ -75.325668, 39.946034 ], [ -75.325437, 39.946262 ], [ -75.325414, 39.946284 ], [ -75.325321, 39.946397 ], [ -75.325127, 39.946627 ], [ -75.324921, 39.946912 ], [ -75.32472, 39.94723 ], [ -75.324698, 39.947275 ], [ -75.324711, 39.947362 ], [ -75.324596, 39.947602 ], [ -75.324491, 39.947821 ], [ -75.324401, 39.948032 ], [ -75.324339, 39.948212 ], [ -75.32426, 39.948502 ], [ -75.324139, 39.949011 ], [ -75.324126, 39.949087 ], [ -75.324004, 39.949633 ], [ -75.323908, 39.950058 ], [ -75.323732, 39.950812 ], [ -75.32358, 39.951502 ], [ -75.323529, 39.951744 ], [ -75.323404, 39.952337 ], [ -75.323354, 39.95256 ], [ -75.323319, 39.952725 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310264", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310265", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.350721, 39.914038 ], [ -75.350522, 39.914049 ], [ -75.35036, 39.914059 ], [ -75.350248, 39.914055 ], [ -75.350122, 39.914055 ], [ -75.350005, 39.914068 ], [ -75.349912, 39.914089 ], [ -75.349823, 39.914124 ], [ -75.349741, 39.914179 ], [ -75.349708, 39.91423 ], [ -75.349661, 39.914353 ], [ -75.349629, 39.914663 ], [ -75.34964, 39.914747 ], [ -75.34964, 39.914989 ], [ -75.349633, 39.915076 ], [ -75.349553, 39.915983 ], [ -75.349099, 39.915987 ], [ -75.348852, 39.915988 ], [ -75.348734, 39.915982 ], [ -75.348723, 39.916109 ], [ -75.348679, 39.916717 ], [ -75.348667, 39.916951 ], [ -75.34861, 39.917928 ], [ -75.34861, 39.917981 ], [ -75.348649, 39.918042 ], [ -75.348633, 39.918256 ], [ -75.34862, 39.918427 ], [ -75.348608, 39.918554 ], [ -75.348498, 39.919882 ], [ -75.348444, 39.920514 ], [ -75.348412, 39.920881 ], [ -75.348319, 39.922129 ], [ -75.348293, 39.922349 ], [ -75.348277, 39.92252 ], [ -75.34828, 39.922923 ], [ -75.348303, 39.923106 ], [ -75.348355, 39.923501 ], [ -75.348407, 39.923837 ], [ -75.348464, 39.924116 ], [ -75.348534, 39.924381 ], [ -75.348614, 39.924634 ], [ -75.3488, 39.92511 ], [ -75.348908, 39.925343 ], [ -75.348941, 39.925408 ], [ -75.349071, 39.925656 ], [ -75.349545, 39.926436 ], [ -75.349738, 39.926753 ], [ -75.349797, 39.92685 ], [ -75.350116, 39.927409 ], [ -75.350521, 39.928162 ], [ -75.350772, 39.928737 ], [ -75.350918, 39.929049 ], [ -75.351248, 39.929803 ], [ -75.351558, 39.930468 ], [ -75.352025, 39.931525 ], [ -75.35211, 39.931715 ], [ -75.352138, 39.931776 ], [ -75.352116, 39.931876 ], [ -75.352138, 39.931978 ], [ -75.352239, 39.932246 ], [ -75.35228, 39.932429 ], [ -75.352308, 39.932582 ], [ -75.352355, 39.932894 ], [ -75.352373, 39.933057 ], [ -75.352372, 39.933069 ], [ -75.35237, 39.933268 ], [ -75.352359, 39.933364 ], [ -75.35233, 39.933597 ], [ -75.352278, 39.93389 ], [ -75.352173, 39.934239 ], [ -75.352072, 39.934546 ], [ -75.35188, 39.93513 ], [ -75.351574, 39.935956 ], [ -75.351518, 39.936108 ], [ -75.351389, 39.936417 ], [ -75.351311, 39.936603 ], [ -75.351108, 39.937033 ], [ -75.35103, 39.937199 ], [ -75.350859, 39.9375 ], [ -75.350833, 39.937559 ], [ -75.350709, 39.937776 ], [ -75.350549, 39.938047 ], [ -75.350477, 39.938168 ], [ -75.350463, 39.938194 ], [ -75.350404, 39.938322 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.350779, 39.937985 ], [ -75.350549, 39.938047 ], [ -75.350151, 39.938154 ], [ -75.349964, 39.938207 ], [ -75.349397, 39.938362 ], [ -75.348765, 39.938516 ], [ -75.348284, 39.938641 ], [ -75.348147, 39.938677 ], [ -75.347563, 39.938852 ], [ -75.347511, 39.938872 ], [ -75.347477, 39.938896 ], [ -75.34745, 39.938921 ], [ -75.347404, 39.93897 ], [ -75.346295, 39.939248 ], [ -75.345693, 39.939411 ], [ -75.345239, 39.939532 ], [ -75.344954, 39.939608 ], [ -75.344549, 39.939715 ], [ -75.344158, 39.939816 ], [ -75.34402, 39.939851 ], [ -75.343229, 39.940056 ], [ -75.342818, 39.940149 ], [ -75.341872, 39.940371 ], [ -75.341188, 39.940522 ], [ -75.34021, 39.94074 ], [ -75.339651, 39.940864 ], [ -75.339199, 39.940963 ], [ -75.338293, 39.941154 ], [ -75.33749, 39.941327 ], [ -75.337192, 39.941398 ], [ -75.337002, 39.94144 ], [ -75.335878, 39.941691 ], [ -75.334415, 39.942018 ], [ -75.333737, 39.942166 ], [ -75.333323, 39.942257 ], [ -75.33263, 39.942426 ], [ -75.332348, 39.942506 ], [ -75.331881, 39.942651 ], [ -75.33171, 39.94271 ], [ -75.331195, 39.942899 ], [ -75.330929, 39.943006 ], [ -75.330379, 39.943241 ], [ -75.330208, 39.943315 ], [ -75.329943, 39.943441 ], [ -75.329569, 39.943625 ], [ -75.329034, 39.943923 ], [ -75.328893, 39.943995 ], [ -75.328687, 39.944106 ], [ -75.328525, 39.944193 ], [ -75.328008, 39.944463 ], [ -75.327755, 39.944604 ], [ -75.327438, 39.944787 ], [ -75.327316, 39.944863 ], [ -75.326785, 39.94517 ], [ -75.326472, 39.945364 ], [ -75.326397, 39.945412 ], [ -75.326341, 39.945448 ], [ -75.326278, 39.945495 ], [ -75.326179, 39.945568 ], [ -75.325972, 39.945726 ], [ -75.325777, 39.945926 ], [ -75.325668, 39.946034 ], [ -75.325437, 39.946262 ], [ -75.325414, 39.946284 ], [ -75.325321, 39.946397 ], [ -75.325127, 39.946627 ], [ -75.324921, 39.946912 ], [ -75.32472, 39.94723 ], [ -75.324698, 39.947275 ], [ -75.324711, 39.947362 ], [ -75.324596, 39.947602 ], [ -75.324491, 39.947821 ], [ -75.324401, 39.948032 ], [ -75.324339, 39.948212 ], [ -75.32426, 39.948502 ], [ -75.324139, 39.949011 ], [ -75.324126, 39.949087 ], [ -75.324004, 39.949633 ], [ -75.323908, 39.950058 ], [ -75.323732, 39.950812 ], [ -75.32358, 39.951502 ], [ -75.323529, 39.951744 ], [ -75.323404, 39.952337 ], [ -75.323354, 39.95256 ], [ -75.323319, 39.952725 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310266", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.347101, 39.94788 ], [ -75.347453, 39.948247 ], [ -75.347777, 39.948437 ], [ -75.348133, 39.948494 ], [ -75.34942, 39.948104 ], [ -75.349356, 39.948062 ], [ -75.349293, 39.94798 ], [ -75.348871, 39.947121 ], [ -75.348771, 39.946919 ], [ -75.348702, 39.946806 ], [ -75.348656, 39.946707 ], [ -75.348524, 39.946738 ], [ -75.348445, 39.94675 ], [ -75.347941, 39.94691 ], [ -75.347755, 39.94695 ], [ -75.347711, 39.946953 ], [ -75.347612, 39.946961 ], [ -75.347444, 39.946955 ], [ -75.347228, 39.946935 ], [ -75.346937, 39.946698 ], [ -75.346774, 39.94657 ], [ -75.34635, 39.946238 ], [ -75.346721, 39.945964 ], [ -75.347196, 39.945614 ], [ -75.347357, 39.945508 ], [ -75.347489, 39.945421 ], [ -75.347665, 39.945332 ], [ -75.347869, 39.94524 ], [ -75.348079, 39.94516 ], [ -75.348305, 39.945087 ], [ -75.34808, 39.944637 ], [ -75.347503, 39.943481 ], [ -75.347209, 39.942903 ], [ -75.347177, 39.942831 ], [ -75.347109, 39.942724 ], [ -75.347036, 39.94262 ], [ -75.346848, 39.942431 ], [ -75.346655, 39.942218 ], [ -75.346317, 39.941817 ], [ -75.34615, 39.9416 ], [ -75.345903, 39.941305 ], [ -75.345573, 39.940912 ], [ -75.345299, 39.940581 ], [ -75.345115, 39.940374 ], [ -75.345033, 39.940282 ], [ -75.344873, 39.940093 ], [ -75.344833, 39.940044 ], [ -75.344745, 39.939943 ], [ -75.344644, 39.939826 ], [ -75.344549, 39.939715 ], [ -75.344158, 39.939816 ], [ -75.34402, 39.939851 ], [ -75.343229, 39.940056 ], [ -75.342818, 39.940149 ], [ -75.341872, 39.940371 ], [ -75.341188, 39.940522 ], [ -75.34021, 39.94074 ], [ -75.339651, 39.940864 ], [ -75.339199, 39.940963 ], [ -75.338293, 39.941154 ], [ -75.33749, 39.941327 ], [ -75.337192, 39.941398 ], [ -75.337002, 39.94144 ], [ -75.335878, 39.941691 ], [ -75.334415, 39.942018 ], [ -75.333737, 39.942166 ], [ -75.333323, 39.942257 ], [ -75.33263, 39.942426 ], [ -75.332348, 39.942506 ], [ -75.331881, 39.942651 ], [ -75.33171, 39.94271 ], [ -75.331195, 39.942899 ], [ -75.330929, 39.943006 ], [ -75.330379, 39.943241 ], [ -75.330208, 39.943315 ], [ -75.329943, 39.943441 ], [ -75.329569, 39.943625 ], [ -75.329034, 39.943923 ], [ -75.328893, 39.943995 ], [ -75.328687, 39.944106 ], [ -75.328525, 39.944193 ], [ -75.328008, 39.944463 ], [ -75.327755, 39.944604 ], [ -75.327438, 39.944787 ], [ -75.327316, 39.944863 ], [ -75.326785, 39.94517 ], [ -75.326472, 39.945364 ], [ -75.326397, 39.945412 ], [ -75.326341, 39.945448 ], [ -75.326278, 39.945495 ], [ -75.326179, 39.945568 ], [ -75.325972, 39.945726 ], [ -75.325777, 39.945926 ], [ -75.325668, 39.946034 ], [ -75.325437, 39.946262 ], [ -75.325414, 39.946284 ], [ -75.325321, 39.946397 ], [ -75.325127, 39.946627 ], [ -75.324921, 39.946912 ], [ -75.32472, 39.94723 ], [ -75.324698, 39.947275 ], [ -75.324711, 39.947362 ], [ -75.324596, 39.947602 ], [ -75.324491, 39.947821 ], [ -75.324401, 39.948032 ], [ -75.324339, 39.948212 ], [ -75.32426, 39.948502 ], [ -75.324139, 39.949011 ], [ -75.324126, 39.949087 ], [ -75.324004, 39.949633 ], [ -75.323908, 39.950058 ], [ -75.323732, 39.950812 ], [ -75.32358, 39.951502 ], [ -75.323529, 39.951744 ], [ -75.323404, 39.952337 ], [ -75.323354, 39.95256 ], [ -75.323319, 39.952725 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310267", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.324237, 39.954128 ], [ -75.324306, 39.95391 ], [ -75.324384, 39.953762 ], [ -75.324467, 39.953776 ], [ -75.324541, 39.953768 ], [ -75.324638, 39.953728 ], [ -75.324677, 39.953699 ], [ -75.324724, 39.953643 ], [ -75.324749, 39.953573 ], [ -75.324743, 39.9535 ], [ -75.324724, 39.953458 ], [ -75.324688, 39.953419 ], [ -75.324614, 39.953375 ], [ -75.32451, 39.953357 ], [ -75.324432, 39.953367 ], [ -75.324362, 39.953396 ], [ -75.324333, 39.95341 ], [ -75.324266, 39.953471 ], [ -75.323816, 39.953368 ], [ -75.323687, 39.953347 ], [ -75.323405, 39.953315 ], [ -75.323251, 39.9533 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262164, 39.961881 ], [ -75.261855, 39.961938 ], [ -75.261668, 39.961987 ], [ -75.261527, 39.962028 ], [ -75.261314, 39.96206 ], [ -75.259972, 39.96202 ], [ -75.25988, 39.962032 ], [ -75.259797, 39.96207 ], [ -75.259733, 39.96219 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310268", "route_id": "110" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.447235, 39.928441 ], [ -75.447167, 39.928446 ], [ -75.44701, 39.928627 ], [ -75.44623, 39.928955 ], [ -75.445959, 39.929084 ], [ -75.44568, 39.929272 ], [ -75.445591, 39.929067 ], [ -75.44549, 39.92883 ], [ -75.445386, 39.928587 ], [ -75.44532, 39.928411 ], [ -75.445302, 39.928351 ], [ -75.445259, 39.928214 ], [ -75.4452, 39.928047 ], [ -75.445136, 39.927886 ], [ -75.444905, 39.927329 ], [ -75.444798, 39.927051 ], [ -75.444738, 39.926912 ], [ -75.444677, 39.926748 ], [ -75.444571, 39.926429 ], [ -75.444423, 39.926098 ], [ -75.444358, 39.925944 ], [ -75.444154, 39.925385 ], [ -75.44405, 39.925111 ], [ -75.444006, 39.925016 ], [ -75.443967, 39.924985 ], [ -75.443823, 39.924586 ], [ -75.443522, 39.923696 ], [ -75.443378, 39.923269 ], [ -75.443294, 39.922965 ], [ -75.443231, 39.922632 ], [ -75.443174, 39.9223 ], [ -75.443157, 39.92209 ], [ -75.443146, 39.921943 ], [ -75.443129, 39.921338 ], [ -75.443126, 39.920821 ], [ -75.443153, 39.92078 ], [ -75.443152, 39.920742 ], [ -75.443149, 39.920684 ], [ -75.443136, 39.920526 ], [ -75.443126, 39.920415 ], [ -75.443097, 39.92022 ], [ -75.443035, 39.92 ], [ -75.443023, 39.919962 ], [ -75.443002, 39.919902 ], [ -75.442951, 39.919778 ], [ -75.442893, 39.919675 ], [ -75.442793, 39.919498 ], [ -75.4429, 39.919428 ], [ -75.442968, 39.919377 ], [ -75.443005, 39.91934 ], [ -75.443064, 39.919284 ], [ -75.443126, 39.919222 ], [ -75.443202, 39.919143 ], [ -75.443331, 39.919015 ], [ -75.44373, 39.918633 ], [ -75.44383, 39.918548 ], [ -75.443933, 39.918486 ], [ -75.444023, 39.918449 ], [ -75.444018, 39.918403 ], [ -75.444029, 39.918349 ], [ -75.444052, 39.918306 ], [ -75.444098, 39.918262 ], [ -75.444328, 39.918042 ], [ -75.444393, 39.91798 ], [ -75.44471, 39.917688 ], [ -75.444771, 39.917704 ], [ -75.444823, 39.917704 ], [ -75.444868, 39.917694 ], [ -75.44492, 39.91767 ], [ -75.444976, 39.917625 ], [ -75.444721, 39.917489 ], [ -75.44468, 39.917526 ], [ -75.444651, 39.917571 ], [ -75.444648, 39.917604 ], [ -75.444656, 39.917637 ], [ -75.444685, 39.91767 ], [ -75.44471, 39.917688 ], [ -75.444393, 39.91798 ], [ -75.444328, 39.918042 ], [ -75.444098, 39.918262 ], [ -75.444052, 39.918306 ], [ -75.444029, 39.918349 ], [ -75.444018, 39.918403 ], [ -75.444023, 39.918449 ], [ -75.443933, 39.918486 ], [ -75.44383, 39.918548 ], [ -75.44373, 39.918632 ], [ -75.443331, 39.919015 ], [ -75.443202, 39.919143 ], [ -75.443126, 39.919222 ], [ -75.443064, 39.919284 ], [ -75.443005, 39.91934 ], [ -75.442968, 39.919377 ], [ -75.4429, 39.919428 ], [ -75.442793, 39.919498 ], [ -75.44272, 39.919395 ], [ -75.442589, 39.919213 ], [ -75.442489, 39.919097 ], [ -75.442366, 39.918977 ], [ -75.442206, 39.918842 ], [ -75.441955, 39.918652 ], [ -75.441298, 39.918175 ], [ -75.441192, 39.918095 ], [ -75.441161, 39.918076 ], [ -75.441116, 39.918068 ], [ -75.441047, 39.918016 ], [ -75.440877, 39.917897 ], [ -75.44072, 39.917794 ], [ -75.440651, 39.91775 ], [ -75.440564, 39.917702 ], [ -75.440446, 39.917632 ], [ -75.440351, 39.917311 ], [ -75.440338, 39.917138 ], [ -75.440323, 39.916975 ], [ -75.440298, 39.916825 ], [ -75.440269, 39.916646 ], [ -75.440219, 39.916371 ], [ -75.440039, 39.915273 ], [ -75.439966, 39.914757 ], [ -75.439928, 39.91457 ], [ -75.439895, 39.914339 ], [ -75.439838, 39.91403 ], [ -75.439776, 39.91352 ], [ -75.439745, 39.913033 ], [ -75.439737, 39.912925 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436382, 39.913286 ], [ -75.435978, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434501, 39.913693 ], [ -75.434003, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427245, 39.914728 ], [ -75.42631, 39.914885 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421713, 39.91553 ], [ -75.421259, 39.915591 ], [ -75.420859, 39.915647 ], [ -75.420658, 39.915673 ], [ -75.420338, 39.915715 ], [ -75.419935, 39.915774 ], [ -75.419305, 39.915862 ], [ -75.418823, 39.915935 ], [ -75.41868, 39.915958 ], [ -75.417733, 39.916098 ], [ -75.417587, 39.916118 ], [ -75.416877, 39.916218 ], [ -75.415489, 39.916416 ], [ -75.414971, 39.916486 ], [ -75.412762, 39.916795 ], [ -75.411658, 39.916951 ], [ -75.410552, 39.9171 ], [ -75.410209, 39.917134 ], [ -75.40982, 39.917159 ], [ -75.409429, 39.917172 ], [ -75.409025, 39.91717 ], [ -75.409, 39.917169 ], [ -75.408828, 39.917166 ], [ -75.408543, 39.917159 ], [ -75.407625, 39.917103 ], [ -75.406709, 39.917035 ], [ -75.406444, 39.917018 ], [ -75.404876, 39.916925 ], [ -75.404521, 39.91691 ], [ -75.404253, 39.9169 ], [ -75.403742, 39.916873 ], [ -75.403414, 39.916855 ], [ -75.403016, 39.916841 ], [ -75.402721, 39.916824 ], [ -75.401718, 39.91677 ], [ -75.401168, 39.916736 ], [ -75.400898, 39.916723 ], [ -75.40073, 39.916717 ], [ -75.4006, 39.916716 ], [ -75.400421, 39.916713 ], [ -75.400236, 39.916722 ], [ -75.40005, 39.916742 ], [ -75.39988, 39.916771 ], [ -75.399715, 39.91681 ], [ -75.399596, 39.916847 ], [ -75.399447, 39.9169 ], [ -75.399362, 39.916937 ], [ -75.399288, 39.916972 ], [ -75.399192, 39.917021 ], [ -75.399053, 39.917096 ], [ -75.398686, 39.917324 ], [ -75.398491, 39.917446 ], [ -75.398209, 39.917609 ], [ -75.397971, 39.917749 ], [ -75.397835, 39.917801 ], [ -75.397711, 39.917836 ], [ -75.397584, 39.917857 ], [ -75.397455, 39.917864 ], [ -75.397362, 39.917866 ], [ -75.397285, 39.917863 ], [ -75.397196, 39.917854 ], [ -75.397128, 39.917846 ], [ -75.39706, 39.917837 ], [ -75.396982, 39.917826 ], [ -75.396878, 39.917812 ], [ -75.396822, 39.917826 ], [ -75.396611, 39.917795 ], [ -75.39611, 39.917731 ], [ -75.395223, 39.917607 ], [ -75.393275, 39.917335 ], [ -75.392759, 39.917264 ], [ -75.392265, 39.917197 ], [ -75.391292, 39.917072 ], [ -75.390509, 39.916967 ], [ -75.390196, 39.916923 ], [ -75.389701, 39.916855 ], [ -75.388776, 39.91672 ], [ -75.388275, 39.91664 ], [ -75.387875, 39.916577 ], [ -75.386971, 39.916456 ], [ -75.386318, 39.916362 ], [ -75.385909, 39.916304 ], [ -75.384773, 39.916146 ], [ -75.384299, 39.91608 ], [ -75.383152, 39.915932 ], [ -75.382657, 39.915866 ], [ -75.382331, 39.915822 ], [ -75.38206, 39.915785 ], [ -75.381327, 39.915685 ], [ -75.381013, 39.915642 ], [ -75.380884, 39.915623 ], [ -75.380735, 39.915593 ], [ -75.380601, 39.915558 ], [ -75.380445, 39.915518 ], [ -75.380247, 39.915465 ], [ -75.379941, 39.915386 ], [ -75.37982, 39.915351 ], [ -75.379723, 39.915324 ], [ -75.379325, 39.915217 ], [ -75.379207, 39.915183 ], [ -75.378877, 39.91509 ], [ -75.378757, 39.915056 ], [ -75.378669, 39.915029 ], [ -75.378301, 39.914929 ], [ -75.378138, 39.914888 ], [ -75.378001, 39.914858 ], [ -75.377913, 39.91484 ], [ -75.377644, 39.914783 ], [ -75.377307, 39.914725 ], [ -75.377079, 39.914687 ], [ -75.376198, 39.914536 ], [ -75.375523, 39.914429 ], [ -75.373498, 39.914131 ], [ -75.373293, 39.914105 ], [ -75.372681, 39.914027 ], [ -75.372385, 39.91399 ], [ -75.372039, 39.91394 ], [ -75.371817, 39.913909 ], [ -75.370162, 39.913688 ], [ -75.366942, 39.91334 ], [ -75.366075, 39.913236 ], [ -75.36578, 39.913198 ], [ -75.365509, 39.913169 ], [ -75.365381, 39.913097 ], [ -75.36446, 39.913004 ], [ -75.364016, 39.91296 ], [ -75.363794, 39.912949 ], [ -75.363265, 39.912904 ], [ -75.363101, 39.912898 ], [ -75.36289, 39.912884 ], [ -75.362808, 39.912881 ], [ -75.362327, 39.912842 ], [ -75.362117, 39.912827 ], [ -75.361736, 39.912808 ], [ -75.361375, 39.912782 ], [ -75.3612, 39.91278 ], [ -75.360933, 39.912786 ], [ -75.360498, 39.912776 ], [ -75.359824, 39.912752 ], [ -75.35934, 39.912744 ], [ -75.35923, 39.912743 ], [ -75.358936, 39.912749 ], [ -75.358683, 39.912766 ], [ -75.358438, 39.912783 ], [ -75.358292, 39.912799 ], [ -75.358204, 39.912808 ], [ -75.357811, 39.912855 ], [ -75.357512, 39.912893 ], [ -75.356371, 39.913037 ], [ -75.355682, 39.913125 ], [ -75.35527, 39.913177 ], [ -75.354796, 39.913238 ], [ -75.354519, 39.913264 ], [ -75.354445, 39.913275 ], [ -75.354371, 39.913283 ], [ -75.354329, 39.913286 ], [ -75.354095, 39.913323 ], [ -75.353903, 39.91336 ], [ -75.353669, 39.913379 ], [ -75.353304, 39.913388 ], [ -75.352764, 39.913368 ], [ -75.352482, 39.913354 ], [ -75.352301, 39.913351 ], [ -75.352186, 39.91335 ], [ -75.352125, 39.913357 ], [ -75.3521, 39.91337 ], [ -75.352075, 39.91339 ], [ -75.352049, 39.913416 ], [ -75.352025, 39.913497 ], [ -75.35202, 39.913547 ], [ -75.35203, 39.913595 ], [ -75.352057, 39.913647 ], [ -75.352111, 39.913716 ], [ -75.352131, 39.913736 ], [ -75.352176, 39.913784 ], [ -75.352195, 39.913863 ], [ -75.35219, 39.913897 ], [ -75.352172, 39.91393 ], [ -75.352138, 39.913965 ], [ -75.351593, 39.913978 ], [ -75.35149, 39.913981 ], [ -75.351306, 39.914002 ], [ -75.350721, 39.914038 ], [ -75.350522, 39.914049 ], [ -75.35036, 39.914059 ], [ -75.350248, 39.914055 ], [ -75.350122, 39.914055 ], [ -75.350005, 39.914068 ], [ -75.349912, 39.914089 ], [ -75.349823, 39.914124 ], [ -75.349741, 39.914179 ], [ -75.349708, 39.91423 ], [ -75.349661, 39.914353 ], [ -75.349629, 39.914663 ], [ -75.34964, 39.914747 ], [ -75.34964, 39.914989 ], [ -75.349633, 39.915076 ], [ -75.349553, 39.915983 ], [ -75.349099, 39.915987 ], [ -75.348852, 39.915988 ], [ -75.348734, 39.915982 ], [ -75.348723, 39.916109 ], [ -75.348679, 39.916717 ], [ -75.348667, 39.916951 ], [ -75.34861, 39.917928 ], [ -75.34861, 39.917981 ], [ -75.348649, 39.918042 ], [ -75.348633, 39.918256 ], [ -75.34862, 39.918427 ], [ -75.348608, 39.918554 ], [ -75.348498, 39.919882 ], [ -75.348444, 39.920514 ], [ -75.348412, 39.920881 ], [ -75.348319, 39.922129 ], [ -75.348293, 39.922349 ], [ -75.348277, 39.92252 ], [ -75.34828, 39.922923 ], [ -75.348303, 39.923106 ], [ -75.348355, 39.923501 ], [ -75.348407, 39.923837 ], [ -75.348464, 39.924116 ], [ -75.348534, 39.924381 ], [ -75.348614, 39.924634 ], [ -75.3488, 39.92511 ], [ -75.348908, 39.925343 ], [ -75.348941, 39.925408 ], [ -75.349071, 39.925656 ], [ -75.349545, 39.926436 ], [ -75.349738, 39.926753 ], [ -75.349797, 39.92685 ], [ -75.350116, 39.927409 ], [ -75.350521, 39.928162 ], [ -75.350772, 39.928737 ], [ -75.350918, 39.929049 ], [ -75.351248, 39.929803 ], [ -75.351558, 39.930468 ], [ -75.352025, 39.931525 ], [ -75.35211, 39.931715 ], [ -75.352138, 39.931776 ], [ -75.352116, 39.931876 ], [ -75.352138, 39.931978 ], [ -75.352239, 39.932246 ], [ -75.35228, 39.932429 ], [ -75.352308, 39.932582 ], [ -75.352355, 39.932894 ], [ -75.352373, 39.933057 ], [ -75.352372, 39.933069 ], [ -75.35237, 39.933268 ], [ -75.352359, 39.933364 ], [ -75.35233, 39.933597 ], [ -75.352278, 39.93389 ], [ -75.352173, 39.934239 ], [ -75.352072, 39.934546 ], [ -75.35188, 39.93513 ], [ -75.351574, 39.935956 ], [ -75.351518, 39.936108 ], [ -75.351389, 39.936417 ], [ -75.351311, 39.936603 ], [ -75.351108, 39.937033 ], [ -75.35103, 39.937199 ], [ -75.350859, 39.9375 ], [ -75.350833, 39.937559 ], [ -75.350709, 39.937776 ], [ -75.350549, 39.938047 ], [ -75.350477, 39.938168 ], [ -75.350463, 39.938194 ], [ -75.350404, 39.938322 ], [ -75.350352, 39.938427 ], [ -75.350546, 39.938381 ], [ -75.35095, 39.938275 ], [ -75.351989, 39.938021 ], [ -75.352729, 39.937812 ], [ -75.353465, 39.937605 ], [ -75.353857, 39.937502 ], [ -75.354034, 39.93753 ], [ -75.35407, 39.93754 ], [ -75.354124, 39.937564 ], [ -75.354158, 39.937586 ], [ -75.35419, 39.937614 ], [ -75.354271, 39.937681 ], [ -75.354365, 39.937789 ], [ -75.354383, 39.937914 ], [ -75.354437, 39.938009 ], [ -75.354413, 39.938134 ], [ -75.354205, 39.938271 ], [ -75.355103, 39.939035 ], [ -75.355194, 39.939087 ], [ -75.355317, 39.93903 ], [ -75.357047, 39.937869 ], [ -75.35708, 39.937788 ], [ -75.356916, 39.937612 ], [ -75.355215, 39.937536 ], [ -75.354975, 39.937725 ], [ -75.354849, 39.937812 ], [ -75.354788, 39.937842 ], [ -75.35472, 39.937863 ], [ -75.354649, 39.937872 ], [ -75.354571, 39.937872 ], [ -75.354497, 39.93786 ], [ -75.354437, 39.93784 ], [ -75.354391, 39.937815 ], [ -75.354365, 39.93779 ], [ -75.354271, 39.937681 ], [ -75.354209, 39.93759 ], [ -75.354174, 39.937538 ], [ -75.354133, 39.937483 ], [ -75.354106, 39.937435 ], [ -75.354082, 39.937393 ], [ -75.354047, 39.9373 ], [ -75.354019, 39.937225 ], [ -75.353262, 39.937388 ], [ -75.352932, 39.937466 ], [ -75.352825, 39.937495 ], [ -75.352314, 39.937622 ], [ -75.352173, 39.937655 ], [ -75.351678, 39.937768 ], [ -75.351371, 39.93784 ], [ -75.351328, 39.93785 ], [ -75.350779, 39.937985 ], [ -75.350549, 39.938047 ], [ -75.350151, 39.938154 ], [ -75.349964, 39.938207 ], [ -75.349397, 39.938362 ], [ -75.348765, 39.938516 ], [ -75.348284, 39.938641 ], [ -75.348147, 39.938677 ], [ -75.347563, 39.938852 ], [ -75.347511, 39.938872 ], [ -75.347477, 39.938896 ], [ -75.34745, 39.938921 ], [ -75.347404, 39.93897 ], [ -75.346295, 39.939248 ], [ -75.345693, 39.939411 ], [ -75.345239, 39.939532 ], [ -75.344954, 39.939608 ], [ -75.344549, 39.939715 ], [ -75.344158, 39.939816 ], [ -75.34402, 39.939851 ], [ -75.343229, 39.940056 ], [ -75.342818, 39.940149 ], [ -75.341872, 39.940371 ], [ -75.341188, 39.940522 ], [ -75.34021, 39.94074 ], [ -75.339651, 39.940864 ], [ -75.339199, 39.940963 ], [ -75.338293, 39.941154 ], [ -75.33749, 39.941327 ], [ -75.337192, 39.941398 ], [ -75.337002, 39.94144 ], [ -75.335878, 39.941691 ], [ -75.334415, 39.942018 ], [ -75.333737, 39.942166 ], [ -75.333323, 39.942257 ], [ -75.33263, 39.942426 ], [ -75.332348, 39.942506 ], [ -75.331881, 39.942651 ], [ -75.33171, 39.94271 ], [ -75.331195, 39.942899 ], [ -75.330929, 39.943006 ], [ -75.330379, 39.943241 ], [ -75.330208, 39.943315 ], [ -75.329943, 39.943441 ], [ -75.329569, 39.943625 ], [ -75.329034, 39.943923 ], [ -75.328893, 39.943995 ], [ -75.328687, 39.944106 ], [ -75.328525, 39.944193 ], [ -75.328008, 39.944463 ], [ -75.327755, 39.944604 ], [ -75.327438, 39.944787 ], [ -75.327316, 39.944863 ], [ -75.326785, 39.94517 ], [ -75.326472, 39.945364 ], [ -75.326397, 39.945412 ], [ -75.326341, 39.945448 ], [ -75.326278, 39.945495 ], [ -75.326179, 39.945568 ], [ -75.325972, 39.945726 ], [ -75.325777, 39.945926 ], [ -75.325668, 39.946034 ], [ -75.325437, 39.946262 ], [ -75.325414, 39.946284 ], [ -75.325321, 39.946397 ], [ -75.325127, 39.946627 ], [ -75.324921, 39.946912 ], [ -75.32472, 39.94723 ], [ -75.324698, 39.947275 ], [ -75.324711, 39.947362 ], [ -75.324596, 39.947602 ], [ -75.324491, 39.947821 ], [ -75.324401, 39.948032 ], [ -75.324339, 39.948212 ], [ -75.32426, 39.948502 ], [ -75.324139, 39.949011 ], [ -75.324126, 39.949087 ], [ -75.324004, 39.949633 ], [ -75.323908, 39.950058 ], [ -75.323732, 39.950812 ], [ -75.32358, 39.951502 ], [ -75.323529, 39.951744 ], [ -75.323404, 39.952337 ], [ -75.323354, 39.95256 ], [ -75.323319, 39.952725 ], [ -75.323193, 39.953296 ], [ -75.323095, 39.953706 ], [ -75.323081, 39.953758 ], [ -75.323043, 39.953887 ], [ -75.32296, 39.954122 ], [ -75.322863, 39.954357 ], [ -75.322795, 39.954513 ], [ -75.322727, 39.95464 ], [ -75.32271, 39.954671 ], [ -75.322561, 39.954927 ], [ -75.322388, 39.955186 ], [ -75.322257, 39.955366 ], [ -75.321989, 39.95567 ], [ -75.321831, 39.955838 ], [ -75.321754, 39.955865 ], [ -75.32165, 39.955952 ], [ -75.321549, 39.956047 ], [ -75.321418, 39.956171 ], [ -75.321326, 39.956247 ], [ -75.321309, 39.956261 ], [ -75.321097, 39.956424 ], [ -75.320864, 39.956582 ], [ -75.320515, 39.956798 ], [ -75.320454, 39.956831 ], [ -75.320081, 39.957026 ], [ -75.319698, 39.957212 ], [ -75.319305, 39.957397 ], [ -75.319254, 39.957459 ], [ -75.318601, 39.957741 ], [ -75.318043, 39.957982 ], [ -75.317805, 39.958086 ], [ -75.317324, 39.958279 ], [ -75.317006, 39.95841 ], [ -75.316159, 39.95879 ], [ -75.315606, 39.959041 ], [ -75.315043, 39.959295 ], [ -75.314681, 39.959452 ], [ -75.314422, 39.959564 ], [ -75.314171, 39.959672 ], [ -75.31392, 39.959781 ], [ -75.313773, 39.959845 ], [ -75.31351, 39.959959 ], [ -75.313194, 39.960096 ], [ -75.313082, 39.960149 ], [ -75.312292, 39.960496 ], [ -75.31204, 39.960612 ], [ -75.311816, 39.960715 ], [ -75.31154, 39.96084 ], [ -75.311421, 39.960892 ], [ -75.311071, 39.961045 ], [ -75.310583, 39.961262 ], [ -75.310069, 39.961484 ], [ -75.309831, 39.961589 ], [ -75.309666, 39.961664 ], [ -75.309382, 39.961794 ], [ -75.309078, 39.961932 ], [ -75.308501, 39.962185 ], [ -75.308324, 39.962264 ], [ -75.307772, 39.962516 ], [ -75.307578, 39.962604 ], [ -75.306901, 39.962902 ], [ -75.305837, 39.96337 ], [ -75.304626, 39.963904 ], [ -75.304453, 39.963982 ], [ -75.304144, 39.964121 ], [ -75.303893, 39.964233 ], [ -75.303763, 39.964292 ], [ -75.303161, 39.964566 ], [ -75.302943, 39.964662 ], [ -75.302557, 39.964832 ], [ -75.302431, 39.964887 ], [ -75.30224, 39.964974 ], [ -75.301675, 39.96523 ], [ -75.301093, 39.965478 ], [ -75.300952, 39.965537 ], [ -75.300562, 39.965717 ], [ -75.300191, 39.965886 ], [ -75.300046, 39.965953 ], [ -75.299253, 39.966314 ], [ -75.298892, 39.966477 ], [ -75.298608, 39.966605 ], [ -75.298194, 39.966778 ], [ -75.2976, 39.967057 ], [ -75.297311, 39.967183 ], [ -75.296613, 39.96751 ], [ -75.296114, 39.967743 ], [ -75.295825, 39.967878 ], [ -75.295752, 39.967802 ], [ -75.295631, 39.967678 ], [ -75.29551, 39.967565 ], [ -75.29535, 39.967397 ], [ -75.295085, 39.967132 ], [ -75.294552, 39.966628 ], [ -75.29403, 39.966165 ], [ -75.293463, 39.965649 ], [ -75.293304, 39.965512 ], [ -75.293156, 39.965377 ], [ -75.292806, 39.965064 ], [ -75.292658, 39.964938 ], [ -75.291913, 39.964279 ], [ -75.291609, 39.964009 ], [ -75.291232, 39.963677 ], [ -75.290987, 39.963463 ], [ -75.290692, 39.963201 ], [ -75.290343, 39.962903 ], [ -75.290123, 39.962719 ], [ -75.28987, 39.962467 ], [ -75.289745, 39.962334 ], [ -75.289632, 39.962205 ], [ -75.289549, 39.96212 ], [ -75.289374, 39.961929 ], [ -75.289279, 39.961825 ], [ -75.289157, 39.961677 ], [ -75.288937, 39.961405 ], [ -75.288669, 39.961074 ], [ -75.288611, 39.960998 ], [ -75.288495, 39.960815 ], [ -75.288417, 39.960674 ], [ -75.288362, 39.960571 ], [ -75.288205, 39.960275 ], [ -75.287986, 39.959864 ], [ -75.287923, 39.959745 ], [ -75.287708, 39.959334 ], [ -75.287179, 39.959516 ], [ -75.28693, 39.959593 ], [ -75.286402, 39.959767 ], [ -75.286244, 39.959814 ], [ -75.286109, 39.959851 ], [ -75.28582, 39.959894 ], [ -75.285343, 39.959964 ], [ -75.284517, 39.960142 ], [ -75.2843, 39.96019 ], [ -75.283859, 39.960286 ], [ -75.283006, 39.960466 ], [ -75.282237, 39.960626 ], [ -75.281936, 39.960682 ], [ -75.280851, 39.960814 ], [ -75.280441, 39.960857 ], [ -75.279905, 39.960924 ], [ -75.278438, 39.961092 ], [ -75.278241, 39.961112 ], [ -75.277752, 39.961172 ], [ -75.277384, 39.961217 ], [ -75.276369, 39.961335 ], [ -75.275798, 39.961397 ], [ -75.275472, 39.961436 ], [ -75.27451, 39.961557 ], [ -75.274134, 39.961596 ], [ -75.273704, 39.961655 ], [ -75.273673, 39.961658 ], [ -75.273553, 39.961681 ], [ -75.273429, 39.961717 ], [ -75.273305, 39.961765 ], [ -75.27318, 39.961825 ], [ -75.273055, 39.961901 ], [ -75.273, 39.961932 ], [ -75.272549, 39.96223 ], [ -75.272037, 39.962595 ], [ -75.271586, 39.96292 ], [ -75.271329, 39.963097 ], [ -75.270958, 39.963364 ], [ -75.270696, 39.96355 ], [ -75.270219, 39.963935 ], [ -75.269476, 39.963798 ], [ -75.26869, 39.963654 ], [ -75.26827, 39.96358 ], [ -75.267949, 39.963524 ], [ -75.267121, 39.963378 ], [ -75.266658, 39.963294 ], [ -75.266302, 39.963228 ], [ -75.266036, 39.963176 ], [ -75.265825, 39.963135 ], [ -75.265372, 39.963043 ], [ -75.265182, 39.963003 ], [ -75.264806, 39.962928 ], [ -75.264479, 39.962852 ], [ -75.264192, 39.962762 ], [ -75.264038, 39.962709 ], [ -75.263998, 39.962694 ], [ -75.263836, 39.962635 ], [ -75.263645, 39.962548 ], [ -75.263493, 39.962468 ], [ -75.263087, 39.962263 ], [ -75.262727, 39.962081 ], [ -75.262601, 39.962028 ], [ -75.262396, 39.961942 ], [ -75.262295, 39.961911 ], [ -75.262163, 39.96188 ], [ -75.262072, 39.961858 ], [ -75.261921, 39.961833 ], [ -75.261766, 39.961816 ], [ -75.261596, 39.961807 ], [ -75.261386, 39.961798 ], [ -75.261062, 39.961815 ], [ -75.260925, 39.961818 ], [ -75.259587, 39.96175 ], [ -75.259123, 39.961727 ], [ -75.259022, 39.961722 ], [ -75.258872, 39.961725 ], [ -75.258812, 39.961728 ], [ -75.258716, 39.961773 ], [ -75.258601, 39.961778 ], [ -75.258369, 39.961803 ], [ -75.258003, 39.961866 ], [ -75.25771, 39.961915 ], [ -75.257207, 39.961991 ], [ -75.257304, 39.962069 ], [ -75.257481, 39.962123 ], [ -75.258284, 39.962026 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310304", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.389211, 39.840348 ], [ -75.389285, 39.840429 ], [ -75.389551, 39.840737 ], [ -75.389769, 39.840982 ], [ -75.390003, 39.841246 ], [ -75.390261, 39.84155 ], [ -75.390672, 39.842009 ], [ -75.390975, 39.842344 ], [ -75.391455, 39.842901 ], [ -75.391506, 39.842959 ], [ -75.391885, 39.843401 ], [ -75.391997, 39.843517 ], [ -75.39218, 39.843702 ], [ -75.392243, 39.843754 ], [ -75.392328, 39.843819 ], [ -75.392389, 39.843857 ], [ -75.392539, 39.843964 ], [ -75.392635, 39.844026 ], [ -75.392738, 39.844089 ], [ -75.393146, 39.844325 ], [ -75.393382, 39.84446 ], [ -75.393626, 39.844594 ], [ -75.393718, 39.844654 ], [ -75.39381, 39.844705 ], [ -75.394151, 39.8449 ], [ -75.394274, 39.844967 ], [ -75.394351, 39.845009 ], [ -75.39437, 39.84502 ], [ -75.3947, 39.845169 ], [ -75.395249, 39.845391 ], [ -75.395577, 39.84551 ], [ -75.396515, 39.845863 ], [ -75.396671, 39.845918 ], [ -75.396931, 39.845997 ], [ -75.397004, 39.846022 ], [ -75.397094, 39.846041 ], [ -75.397264, 39.846084 ], [ -75.39738, 39.846125 ], [ -75.397506, 39.84618 ], [ -75.397652, 39.846264 ], [ -75.39778, 39.846343 ], [ -75.398174, 39.846591 ], [ -75.399242, 39.847295 ], [ -75.399375, 39.847383 ], [ -75.399521, 39.84748 ], [ -75.399761, 39.847636 ], [ -75.400053, 39.847826 ], [ -75.40016, 39.847905 ], [ -75.400249, 39.847978 ], [ -75.400339, 39.848061 ], [ -75.400402, 39.84813 ], [ -75.400461, 39.848203 ], [ -75.400534, 39.848296 ], [ -75.400843, 39.848734 ], [ -75.401195, 39.849232 ], [ -75.401373, 39.849517 ], [ -75.401431, 39.849644 ], [ -75.40148, 39.849781 ], [ -75.401522, 39.849911 ], [ -75.401577, 39.850111 ], [ -75.401624, 39.85031 ], [ -75.401688, 39.850577 ], [ -75.401783, 39.851048 ], [ -75.401804, 39.851149 ], [ -75.40182, 39.851264 ], [ -75.401831, 39.851397 ], [ -75.40184, 39.851555 ], [ -75.401876, 39.852184 ], [ -75.401885, 39.85245 ], [ -75.401905, 39.852573 ], [ -75.40193, 39.852655 ], [ -75.401964, 39.852765 ], [ -75.402003, 39.852855 ], [ -75.40205, 39.852942 ], [ -75.402153, 39.853107 ], [ -75.402256, 39.853245 ], [ -75.402465, 39.85349 ], [ -75.402965, 39.854062 ], [ -75.403077, 39.854196 ], [ -75.403091, 39.854212 ], [ -75.403275, 39.854416 ], [ -75.40337, 39.85451 ], [ -75.403512, 39.854656 ], [ -75.403714, 39.854856 ], [ -75.404173, 39.855278 ], [ -75.404603, 39.855675 ], [ -75.404769, 39.855815 ], [ -75.404894, 39.855931 ], [ -75.405043, 39.856043 ], [ -75.405161, 39.856121 ], [ -75.405312, 39.856204 ], [ -75.405475, 39.856276 ], [ -75.405656, 39.85635 ], [ -75.406595, 39.856747 ], [ -75.407121, 39.856992 ], [ -75.407604, 39.85723 ], [ -75.407872, 39.857381 ], [ -75.408037, 39.85749 ], [ -75.408513, 39.857869 ], [ -75.409556, 39.858686 ], [ -75.409563, 39.858709 ], [ -75.409566, 39.858721 ], [ -75.409573, 39.858732 ], [ -75.409602, 39.858759 ], [ -75.409644, 39.858793 ], [ -75.409803, 39.858912 ], [ -75.409815, 39.858922 ], [ -75.409967, 39.859035 ], [ -75.4102, 39.859204 ], [ -75.410305, 39.85928 ], [ -75.410328, 39.859297 ], [ -75.410358, 39.859319 ], [ -75.410388, 39.859338 ], [ -75.410444, 39.859351 ], [ -75.410524, 39.859417 ], [ -75.410789, 39.859626 ], [ -75.411103, 39.859886 ], [ -75.411279, 39.860032 ], [ -75.411508, 39.860214 ], [ -75.412157, 39.860732 ], [ -75.412421, 39.860934 ], [ -75.412832, 39.861253 ], [ -75.412848, 39.861306 ], [ -75.412976, 39.861415 ], [ -75.413029, 39.861461 ], [ -75.413129, 39.861538 ], [ -75.413208, 39.861594 ], [ -75.413321, 39.861678 ], [ -75.413393, 39.861726 ], [ -75.413485, 39.861742 ], [ -75.413788, 39.861976 ], [ -75.415376, 39.86311 ], [ -75.415795, 39.863388 ], [ -75.416044, 39.863566 ], [ -75.416245, 39.863727 ], [ -75.416381, 39.863836 ], [ -75.416558, 39.863977 ], [ -75.416628, 39.863897 ], [ -75.416694, 39.863818 ], [ -75.416791, 39.863689 ], [ -75.416888, 39.863544 ], [ -75.417238, 39.863043 ], [ -75.417302, 39.86295 ], [ -75.417858, 39.862114 ], [ -75.41798, 39.861942 ], [ -75.418064, 39.861816 ], [ -75.41812, 39.861737 ], [ -75.418183, 39.861635 ], [ -75.418218, 39.861562 ], [ -75.418253, 39.861461 ], [ -75.418385, 39.860797 ], [ -75.418587, 39.859671 ], [ -75.418686, 39.859167 ], [ -75.418754, 39.858823 ], [ -75.418785, 39.85868 ], [ -75.418816, 39.858582 ], [ -75.418863, 39.858473 ], [ -75.41891, 39.858383 ], [ -75.418944, 39.858328 ], [ -75.419021, 39.858219 ], [ -75.419037, 39.8582 ], [ -75.419113, 39.858115 ], [ -75.419226, 39.858008 ], [ -75.419257, 39.857984 ], [ -75.419356, 39.857904 ], [ -75.419491, 39.857811 ], [ -75.419693, 39.857703 ], [ -75.419854, 39.857633 ], [ -75.420012, 39.85758 ], [ -75.420174, 39.857535 ], [ -75.420341, 39.857503 ], [ -75.42051, 39.857482 ], [ -75.420616, 39.857475 ], [ -75.421019, 39.857441 ], [ -75.421099, 39.857475 ], [ -75.421183, 39.857477 ], [ -75.42129, 39.85747 ], [ -75.42152, 39.857448 ], [ -75.42194, 39.857431 ], [ -75.422393, 39.857427 ], [ -75.422405, 39.857427 ], [ -75.422652, 39.857415 ], [ -75.422986, 39.8574 ], [ -75.423833, 39.85734 ], [ -75.424241, 39.857316 ], [ -75.424602, 39.857295 ], [ -75.424706, 39.857243 ], [ -75.4249, 39.857229 ], [ -75.425133, 39.857213 ], [ -75.425394, 39.857195 ], [ -75.425703, 39.857173 ], [ -75.426102, 39.857146 ], [ -75.42644, 39.857133 ], [ -75.426971, 39.857113 ], [ -75.426977, 39.857164 ], [ -75.42701, 39.857508 ], [ -75.427028, 39.857686 ], [ -75.427045, 39.858024 ], [ -75.427074, 39.858388 ], [ -75.427092, 39.858605 ], [ -75.427096, 39.858655 ], [ -75.427179, 39.859491 ], [ -75.427201, 39.859731 ], [ -75.427208, 39.859799 ], [ -75.427229, 39.859981 ], [ -75.427229, 39.859986 ], [ -75.427249, 39.860155 ], [ -75.427264, 39.860282 ], [ -75.42728, 39.860399 ], [ -75.427298, 39.860524 ], [ -75.427343, 39.860838 ], [ -75.427356, 39.860927 ], [ -75.427374, 39.861048 ], [ -75.427391, 39.861162 ], [ -75.427503, 39.861914 ], [ -75.427565, 39.862365 ], [ -75.427666, 39.863126 ], [ -75.427709, 39.863404 ], [ -75.427737, 39.86358 ], [ -75.427762, 39.863743 ], [ -75.427792, 39.863929 ], [ -75.427809, 39.864014 ], [ -75.427836, 39.864165 ], [ -75.427894, 39.864577 ], [ -75.427917, 39.864738 ], [ -75.427934, 39.86486 ], [ -75.428018, 39.865457 ], [ -75.428071, 39.86577 ], [ -75.428094, 39.865907 ], [ -75.428114, 39.866091 ], [ -75.428137, 39.866298 ], [ -75.428161, 39.866519 ], [ -75.428184, 39.866739 ], [ -75.428231, 39.867197 ], [ -75.428291, 39.867764 ], [ -75.428308, 39.867928 ], [ -75.428314, 39.86799 ], [ -75.428418, 39.868922 ], [ -75.42848, 39.868961 ], [ -75.428555, 39.869009 ], [ -75.429092, 39.869321 ], [ -75.42921, 39.869389 ], [ -75.429307, 39.869445 ], [ -75.429371, 39.869472 ], [ -75.429513, 39.869554 ], [ -75.429613, 39.869617 ], [ -75.429638, 39.869632 ], [ -75.429746, 39.869687 ], [ -75.429789, 39.869712 ], [ -75.430045, 39.869848 ], [ -75.430165, 39.869896 ], [ -75.430331, 39.869955 ], [ -75.431079, 39.870222 ], [ -75.431405, 39.870334 ], [ -75.431662, 39.870419 ], [ -75.431866, 39.870487 ], [ -75.432023, 39.870526 ], [ -75.432177, 39.87055 ], [ -75.432354, 39.870567 ], [ -75.432987, 39.870591 ], [ -75.43314, 39.870596 ], [ -75.433591, 39.870608 ], [ -75.434452, 39.870622 ], [ -75.434983, 39.870636 ], [ -75.435544, 39.87065 ], [ -75.436786, 39.870685 ], [ -75.436781, 39.870908 ], [ -75.436785, 39.870958 ], [ -75.436798, 39.871007 ], [ -75.436819, 39.871044 ], [ -75.436844, 39.871074 ], [ -75.436872, 39.871106 ], [ -75.436905, 39.871134 ], [ -75.436934, 39.871154 ], [ -75.437094, 39.871246 ], [ -75.437602, 39.871528 ], [ -75.437851, 39.87167 ], [ -75.437981, 39.871753 ], [ -75.438131, 39.871874 ], [ -75.438554, 39.872242 ], [ -75.439473, 39.873098 ], [ -75.439632, 39.873247 ], [ -75.439654, 39.873347 ], [ -75.439672, 39.873443 ], [ -75.43969, 39.873551 ], [ -75.439713, 39.873653 ], [ -75.439629, 39.873738 ], [ -75.43959, 39.873794 ], [ -75.439565, 39.87384 ], [ -75.439553, 39.873879 ], [ -75.439548, 39.873927 ], [ -75.43955, 39.873968 ], [ -75.439557, 39.874023 ], [ -75.439566, 39.874081 ], [ -75.439578, 39.874111 ], [ -75.439611, 39.874149 ], [ -75.439652, 39.874179 ], [ -75.439702, 39.874192 ], [ -75.439765, 39.874192 ], [ -75.439804, 39.874186 ], [ -75.439868, 39.874175 ], [ -75.439902, 39.874168 ], [ -75.439931, 39.874153 ], [ -75.439957, 39.874129 ], [ -75.439972, 39.874103 ], [ -75.439978, 39.874049 ], [ -75.43997, 39.873962 ], [ -75.439959, 39.87389 ], [ -75.43995, 39.873847 ], [ -75.439943, 39.873829 ], [ -75.43993, 39.873799 ], [ -75.439907, 39.873775 ], [ -75.439831, 39.873721 ], [ -75.439757, 39.873677 ], [ -75.439713, 39.873653 ], [ -75.43969, 39.873551 ], [ -75.439672, 39.873443 ], [ -75.439654, 39.873347 ], [ -75.439632, 39.873246 ], [ -75.439473, 39.873098 ], [ -75.438554, 39.872242 ], [ -75.438131, 39.871874 ], [ -75.437981, 39.871753 ], [ -75.437851, 39.87167 ], [ -75.437602, 39.871528 ], [ -75.437094, 39.871246 ], [ -75.436934, 39.871154 ], [ -75.436905, 39.871134 ], [ -75.436872, 39.871106 ], [ -75.436844, 39.871074 ], [ -75.436819, 39.871044 ], [ -75.436798, 39.871007 ], [ -75.436785, 39.870958 ], [ -75.436781, 39.870908 ], [ -75.436786, 39.870685 ], [ -75.435544, 39.87065 ], [ -75.434983, 39.870636 ], [ -75.434452, 39.870622 ], [ -75.433591, 39.870608 ], [ -75.43314, 39.870596 ], [ -75.432987, 39.870591 ], [ -75.432354, 39.870567 ], [ -75.432177, 39.87055 ], [ -75.432023, 39.870526 ], [ -75.431866, 39.870487 ], [ -75.431662, 39.870419 ], [ -75.431405, 39.870334 ], [ -75.431079, 39.870222 ], [ -75.430331, 39.869955 ], [ -75.430165, 39.869896 ], [ -75.430045, 39.869848 ], [ -75.429789, 39.869712 ], [ -75.429746, 39.869687 ], [ -75.429638, 39.869632 ], [ -75.429613, 39.869617 ], [ -75.429513, 39.869554 ], [ -75.429371, 39.869472 ], [ -75.429307, 39.869445 ], [ -75.42921, 39.869389 ], [ -75.429092, 39.869321 ], [ -75.428555, 39.869009 ], [ -75.42848, 39.868961 ], [ -75.428418, 39.868922 ], [ -75.428418, 39.869007 ], [ -75.42842, 39.869046 ], [ -75.42842, 39.869102 ], [ -75.428435, 39.869214 ], [ -75.428457, 39.869363 ], [ -75.428503, 39.869569 ], [ -75.42853, 39.869707 ], [ -75.428497, 39.869779 ], [ -75.428521, 39.869879 ], [ -75.428541, 39.869951 ], [ -75.428579, 39.870078 ], [ -75.428609, 39.870174 ], [ -75.428688, 39.870238 ], [ -75.428718, 39.87034 ], [ -75.428742, 39.870417 ], [ -75.428871, 39.870819 ], [ -75.428912, 39.870943 ], [ -75.429032, 39.871306 ], [ -75.429077, 39.871414 ], [ -75.429217, 39.871703 ], [ -75.429277, 39.871804 ], [ -75.429306, 39.871857 ], [ -75.429306, 39.871914 ], [ -75.429456, 39.872153 ], [ -75.429511, 39.872239 ], [ -75.429588, 39.872346 ], [ -75.429634, 39.872406 ], [ -75.429733, 39.872537 ], [ -75.429794, 39.872566 ], [ -75.429867, 39.872656 ], [ -75.43006, 39.872867 ], [ -75.430162, 39.872971 ], [ -75.430427, 39.873242 ], [ -75.430613, 39.873439 ], [ -75.430937, 39.873829 ], [ -75.431079, 39.874037 ], [ -75.431219, 39.874295 ], [ -75.431283, 39.874429 ], [ -75.43139, 39.874697 ], [ -75.431467, 39.874956 ], [ -75.431534, 39.875251 ], [ -75.43157, 39.87552 ], [ -75.431581, 39.875648 ], [ -75.43159, 39.875917 ], [ -75.431578, 39.876134 ], [ -75.431523, 39.876425 ], [ -75.431422, 39.876759 ], [ -75.431285, 39.877072 ], [ -75.43121, 39.87722 ], [ -75.431154, 39.877319 ], [ -75.43104, 39.877509 ], [ -75.430819, 39.877831 ], [ -75.429574, 39.87932 ], [ -75.429508, 39.879391 ], [ -75.429268, 39.879701 ], [ -75.429155, 39.879867 ], [ -75.429054, 39.880037 ], [ -75.428968, 39.880213 ], [ -75.428891, 39.880433 ], [ -75.428857, 39.880541 ], [ -75.428842, 39.880637 ], [ -75.428809, 39.880848 ], [ -75.428797, 39.881104 ], [ -75.428795, 39.881191 ], [ -75.428808, 39.88129 ], [ -75.428822, 39.881391 ], [ -75.428842, 39.881488 ], [ -75.428908, 39.881741 ], [ -75.428973, 39.881898 ], [ -75.429085, 39.882112 ], [ -75.429187, 39.882284 ], [ -75.429326, 39.882483 ], [ -75.429468, 39.88267 ], [ -75.430142, 39.883587 ], [ -75.430382, 39.883914 ], [ -75.430594, 39.884219 ], [ -75.430714, 39.884409 ], [ -75.430716, 39.884414 ], [ -75.430746, 39.884468 ], [ -75.430778, 39.884538 ], [ -75.430912, 39.884868 ], [ -75.430956, 39.884972 ], [ -75.431037, 39.885239 ], [ -75.431097, 39.885518 ], [ -75.431131, 39.885785 ], [ -75.431151, 39.88599 ], [ -75.431153, 39.88606 ], [ -75.431147, 39.886238 ], [ -75.431135, 39.886407 ], [ -75.431107, 39.886589 ], [ -75.43099, 39.887091 ], [ -75.430964, 39.887291 ], [ -75.430944, 39.887587 ], [ -75.430934, 39.888509 ], [ -75.430951, 39.889111 ], [ -75.430967, 39.889223 ], [ -75.43101, 39.889461 ], [ -75.43148, 39.891444 ], [ -75.431567, 39.891736 ], [ -75.431649, 39.891928 ], [ -75.431743, 39.892109 ], [ -75.431765, 39.892143 ], [ -75.431873, 39.892306 ], [ -75.432319, 39.892962 ], [ -75.43261, 39.89335 ], [ -75.432616, 39.893356 ], [ -75.432724, 39.89346 ], [ -75.43284, 39.893546 ], [ -75.433017, 39.893651 ], [ -75.433268, 39.893764 ], [ -75.433917, 39.894036 ], [ -75.434198, 39.894152 ], [ -75.43421, 39.894157 ], [ -75.434445, 39.894261 ], [ -75.434648, 39.894374 ], [ -75.434669, 39.894386 ], [ -75.434783, 39.894458 ], [ -75.435064, 39.894667 ], [ -75.435131, 39.894723 ], [ -75.435195, 39.894784 ], [ -75.435293, 39.894867 ], [ -75.435495, 39.895091 ], [ -75.435627, 39.89527 ], [ -75.435698, 39.895365 ], [ -75.435892, 39.895672 ], [ -75.435994, 39.895866 ], [ -75.436073, 39.896019 ], [ -75.436115, 39.896101 ], [ -75.436196, 39.896297 ], [ -75.436331, 39.8967 ], [ -75.436566, 39.897368 ], [ -75.43708, 39.898804 ], [ -75.437345, 39.899601 ], [ -75.437573, 39.900278 ], [ -75.437851, 39.901005 ], [ -75.43825, 39.901745 ], [ -75.438439, 39.902029 ], [ -75.439078, 39.902891 ], [ -75.439459, 39.903411 ], [ -75.439647, 39.903667 ], [ -75.439768, 39.903841 ], [ -75.439899, 39.90406 ], [ -75.439968, 39.904191 ], [ -75.440022, 39.904354 ], [ -75.440062, 39.904503 ], [ -75.440091, 39.904652 ], [ -75.440099, 39.904833 ], [ -75.440086, 39.905049 ], [ -75.440066, 39.905227 ], [ -75.440052, 39.905387 ], [ -75.440013, 39.905885 ], [ -75.439996, 39.906136 ], [ -75.439995, 39.906569 ], [ -75.440022, 39.90697 ], [ -75.440068, 39.907499 ], [ -75.440129, 39.908159 ], [ -75.440161, 39.908746 ], [ -75.440147, 39.909012 ], [ -75.440101, 39.90932 ], [ -75.440041, 39.909665 ], [ -75.439943, 39.910112 ], [ -75.439899, 39.910298 ], [ -75.439861, 39.910522 ], [ -75.439827, 39.91088 ], [ -75.439802, 39.911059 ], [ -75.439774, 39.911259 ], [ -75.43975, 39.911428 ], [ -75.439737, 39.911522 ], [ -75.439723, 39.911629 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436132, 39.913368 ], [ -75.435977, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434502, 39.913692 ], [ -75.434002, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427244, 39.914727 ], [ -75.42631, 39.914886 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421599, 39.915493 ], [ -75.421528, 39.915493 ], [ -75.421444, 39.915492 ], [ -75.421294, 39.915479 ], [ -75.421177, 39.915467 ], [ -75.420919, 39.915425 ], [ -75.420606, 39.915357 ], [ -75.420108, 39.91523 ], [ -75.419827, 39.915163 ], [ -75.419685, 39.915133 ], [ -75.419652, 39.915127 ], [ -75.419501, 39.915106 ], [ -75.41935, 39.915096 ], [ -75.419198, 39.915099 ], [ -75.419048, 39.915113 ], [ -75.4189, 39.915139 ], [ -75.418756, 39.915178 ], [ -75.418618, 39.915227 ], [ -75.418486, 39.915287 ], [ -75.418363, 39.915354 ], [ -75.418258, 39.915425 ], [ -75.418153, 39.915488 ], [ -75.418063, 39.915568 ], [ -75.417948, 39.915688 ], [ -75.417858, 39.915829 ], [ -75.417812, 39.915927 ], [ -75.417733, 39.916098 ], [ -75.417699, 39.916196 ], [ -75.417668, 39.91627 ], [ -75.41761, 39.916404 ], [ -75.417612, 39.916494 ], [ -75.417591, 39.916553 ], [ -75.417568, 39.916612 ], [ -75.417546, 39.91668 ], [ -75.417529, 39.916753 ], [ -75.417524, 39.916803 ], [ -75.417525, 39.91684 ], [ -75.417528, 39.91687 ], [ -75.417531, 39.916896 ], [ -75.41754, 39.916927 ], [ -75.417552, 39.91695 ], [ -75.417563, 39.916974 ], [ -75.417582, 39.917 ], [ -75.417606, 39.917025 ], [ -75.417629, 39.917045 ], [ -75.417668, 39.917073 ], [ -75.417703, 39.917093 ], [ -75.417739, 39.91711 ], [ -75.417775, 39.917118 ], [ -75.417811, 39.917126 ], [ -75.417846, 39.917127 ], [ -75.417897, 39.917127 ], [ -75.417951, 39.917121 ], [ -75.417985, 39.917113 ], [ -75.418015, 39.917099 ], [ -75.418071, 39.917074 ], [ -75.418233, 39.916991 ], [ -75.418406, 39.916902 ], [ -75.418582, 39.916811 ], [ -75.418774, 39.916708 ], [ -75.419064, 39.916561 ], [ -75.419378, 39.916391 ], [ -75.419629, 39.916269 ], [ -75.419887, 39.916154 ], [ -75.420232, 39.916021 ], [ -75.420619, 39.915889 ], [ -75.420864, 39.915819 ], [ -75.421031, 39.915779 ], [ -75.421246, 39.915736 ], [ -75.421372, 39.915712 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422476, 39.915504 ], [ -75.422867, 39.915447 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424408, 39.915236 ], [ -75.424542, 39.915218 ], [ -75.424587, 39.915209 ], [ -75.424723, 39.915188 ], [ -75.42515, 39.915129 ], [ -75.42528, 39.91511 ], [ -75.426327, 39.914951 ], [ -75.426781, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.440326, 39.912147 ], [ -75.441046, 39.911923 ], [ -75.441751, 39.911704 ], [ -75.442303, 39.91154 ], [ -75.442766, 39.911388 ], [ -75.4432, 39.911242 ], [ -75.443747, 39.911048 ], [ -75.443939, 39.910978 ], [ -75.444631, 39.910735 ], [ -75.444932, 39.910624 ], [ -75.445424, 39.91044 ], [ -75.445436, 39.910435 ], [ -75.445742, 39.910316 ], [ -75.445937, 39.910239 ], [ -75.446177, 39.910139 ], [ -75.446377, 39.910054 ], [ -75.446624, 39.909951 ], [ -75.446816, 39.909864 ], [ -75.447079, 39.909738 ], [ -75.447431, 39.909569 ], [ -75.447723, 39.909427 ], [ -75.448058, 39.909253 ], [ -75.448308, 39.90912 ], [ -75.448492, 39.909018 ], [ -75.448587, 39.908965 ], [ -75.448703, 39.908896 ], [ -75.449097, 39.908656 ], [ -75.44915, 39.908623 ], [ -75.44952, 39.908395 ], [ -75.449793, 39.908238 ], [ -75.450759, 39.907682 ], [ -75.452019, 39.906936 ], [ -75.452877, 39.906429 ], [ -75.453211, 39.906233 ], [ -75.45385, 39.905855 ], [ -75.454024, 39.905751 ], [ -75.455632, 39.9048 ], [ -75.456049, 39.904548 ], [ -75.456842, 39.904078 ], [ -75.457488, 39.903698 ], [ -75.457715, 39.903563 ], [ -75.458471, 39.90311 ], [ -75.45857, 39.903048 ], [ -75.458792, 39.902896 ], [ -75.458961, 39.902777 ], [ -75.459203, 39.902595 ], [ -75.459418, 39.90243 ], [ -75.45935, 39.90238 ], [ -75.459166, 39.902228 ], [ -75.459158, 39.902165 ], [ -75.459182, 39.902112 ], [ -75.459276, 39.902094 ], [ -75.459371, 39.902094 ], [ -75.459453, 39.902112 ], [ -75.4595, 39.902103 ], [ -75.459548, 39.902067 ], [ -75.460055, 39.901638 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310305", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.388455, 39.839479 ], [ -75.387523, 39.838426 ], [ -75.387107, 39.838657 ], [ -75.386519, 39.839048 ], [ -75.385972, 39.839299 ], [ -75.385413, 39.839587 ], [ -75.385772, 39.839953 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310306", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.389883, 39.839333 ], [ -75.390289, 39.839119 ], [ -75.390727, 39.838882 ], [ -75.39094, 39.838767 ], [ -75.391247, 39.838584 ], [ -75.391576, 39.83838 ], [ -75.391818, 39.838221 ], [ -75.391939, 39.838142 ], [ -75.39289, 39.837461 ], [ -75.393824, 39.836784 ], [ -75.394562, 39.836238 ], [ -75.394803, 39.836062 ], [ -75.394824, 39.836048 ], [ -75.395067, 39.835896 ], [ -75.395367, 39.836158 ], [ -75.395659, 39.836416 ], [ -75.395671, 39.836467 ], [ -75.395714, 39.836506 ], [ -75.395856, 39.836622 ], [ -75.396003, 39.836735 ], [ -75.396065, 39.836748 ], [ -75.396316, 39.836943 ], [ -75.396822, 39.837377 ], [ -75.396954, 39.837489 ], [ -75.397579, 39.837976 ], [ -75.39817, 39.838467 ], [ -75.398462, 39.838707 ], [ -75.398873, 39.839043 ], [ -75.399124, 39.839251 ], [ -75.399558, 39.839608 ], [ -75.3999, 39.839877 ], [ -75.39992, 39.839937 ], [ -75.400049, 39.840039 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310307", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.389211, 39.840348 ], [ -75.389285, 39.840429 ], [ -75.389551, 39.840737 ], [ -75.389769, 39.840982 ], [ -75.390003, 39.841246 ], [ -75.390261, 39.84155 ], [ -75.390672, 39.842009 ], [ -75.390975, 39.842344 ], [ -75.391455, 39.842901 ], [ -75.391506, 39.842959 ], [ -75.391885, 39.843401 ], [ -75.391997, 39.843517 ], [ -75.39218, 39.843702 ], [ -75.392243, 39.843754 ], [ -75.392328, 39.843819 ], [ -75.392389, 39.843857 ], [ -75.392539, 39.843964 ], [ -75.392635, 39.844026 ], [ -75.392738, 39.844089 ], [ -75.393146, 39.844325 ], [ -75.393382, 39.84446 ], [ -75.393626, 39.844594 ], [ -75.393718, 39.844654 ], [ -75.39381, 39.844705 ], [ -75.394151, 39.8449 ], [ -75.394274, 39.844967 ], [ -75.394351, 39.845009 ], [ -75.39437, 39.84502 ], [ -75.3947, 39.845169 ], [ -75.395249, 39.845391 ], [ -75.395577, 39.84551 ], [ -75.396515, 39.845863 ], [ -75.396671, 39.845918 ], [ -75.396931, 39.845997 ], [ -75.397004, 39.846022 ], [ -75.397094, 39.846041 ], [ -75.397264, 39.846084 ], [ -75.39738, 39.846125 ], [ -75.397506, 39.84618 ], [ -75.397652, 39.846264 ], [ -75.39778, 39.846343 ], [ -75.398174, 39.846591 ], [ -75.399242, 39.847295 ], [ -75.399375, 39.847383 ], [ -75.399521, 39.84748 ], [ -75.399761, 39.847636 ], [ -75.400053, 39.847826 ], [ -75.40016, 39.847905 ], [ -75.400249, 39.847978 ], [ -75.400339, 39.848061 ], [ -75.400402, 39.84813 ], [ -75.400461, 39.848203 ], [ -75.400534, 39.848296 ], [ -75.400843, 39.848734 ], [ -75.401195, 39.849232 ], [ -75.401373, 39.849517 ], [ -75.401431, 39.849644 ], [ -75.40148, 39.849781 ], [ -75.401522, 39.849911 ], [ -75.401577, 39.850111 ], [ -75.401624, 39.85031 ], [ -75.401688, 39.850577 ], [ -75.401783, 39.851048 ], [ -75.401804, 39.851149 ], [ -75.40182, 39.851264 ], [ -75.401831, 39.851397 ], [ -75.40184, 39.851555 ], [ -75.401876, 39.852184 ], [ -75.401885, 39.85245 ], [ -75.401905, 39.852573 ], [ -75.40193, 39.852655 ], [ -75.401964, 39.852765 ], [ -75.402003, 39.852855 ], [ -75.40205, 39.852942 ], [ -75.402153, 39.853107 ], [ -75.402256, 39.853245 ], [ -75.402465, 39.85349 ], [ -75.402965, 39.854062 ], [ -75.403077, 39.854196 ], [ -75.403091, 39.854212 ], [ -75.403275, 39.854416 ], [ -75.40337, 39.85451 ], [ -75.403512, 39.854656 ], [ -75.403714, 39.854856 ], [ -75.404173, 39.855278 ], [ -75.404603, 39.855675 ], [ -75.404769, 39.855815 ], [ -75.404894, 39.855931 ], [ -75.405043, 39.856043 ], [ -75.405161, 39.856121 ], [ -75.405312, 39.856204 ], [ -75.405475, 39.856276 ], [ -75.405656, 39.85635 ], [ -75.406595, 39.856747 ], [ -75.407121, 39.856992 ], [ -75.407604, 39.85723 ], [ -75.407872, 39.857381 ], [ -75.408037, 39.85749 ], [ -75.408513, 39.857869 ], [ -75.409556, 39.858686 ], [ -75.409563, 39.858709 ], [ -75.409566, 39.858721 ], [ -75.409573, 39.858732 ], [ -75.409602, 39.858759 ], [ -75.409644, 39.858793 ], [ -75.409803, 39.858912 ], [ -75.409815, 39.858922 ], [ -75.409967, 39.859035 ], [ -75.4102, 39.859204 ], [ -75.410305, 39.85928 ], [ -75.410328, 39.859297 ], [ -75.410358, 39.859319 ], [ -75.410388, 39.859338 ], [ -75.410444, 39.859351 ], [ -75.410524, 39.859417 ], [ -75.410789, 39.859626 ], [ -75.411103, 39.859886 ], [ -75.411279, 39.860032 ], [ -75.411508, 39.860214 ], [ -75.412157, 39.860732 ], [ -75.412421, 39.860934 ], [ -75.412832, 39.861253 ], [ -75.412848, 39.861306 ], [ -75.412976, 39.861415 ], [ -75.413029, 39.861461 ], [ -75.413129, 39.861538 ], [ -75.413208, 39.861594 ], [ -75.413321, 39.861678 ], [ -75.413393, 39.861726 ], [ -75.413485, 39.861742 ], [ -75.413788, 39.861976 ], [ -75.415376, 39.86311 ], [ -75.415795, 39.863388 ], [ -75.416044, 39.863566 ], [ -75.416245, 39.863727 ], [ -75.416381, 39.863836 ], [ -75.416558, 39.863977 ], [ -75.416628, 39.863897 ], [ -75.416694, 39.863818 ], [ -75.416791, 39.863689 ], [ -75.416888, 39.863544 ], [ -75.417238, 39.863043 ], [ -75.417302, 39.86295 ], [ -75.417858, 39.862114 ], [ -75.41798, 39.861942 ], [ -75.418064, 39.861816 ], [ -75.41812, 39.861737 ], [ -75.418183, 39.861635 ], [ -75.418218, 39.861562 ], [ -75.418253, 39.861461 ], [ -75.418385, 39.860797 ], [ -75.418587, 39.859671 ], [ -75.418686, 39.859167 ], [ -75.418754, 39.858823 ], [ -75.418785, 39.85868 ], [ -75.418816, 39.858582 ], [ -75.418863, 39.858473 ], [ -75.41891, 39.858383 ], [ -75.418944, 39.858328 ], [ -75.419021, 39.858219 ], [ -75.419037, 39.8582 ], [ -75.419113, 39.858115 ], [ -75.419226, 39.858008 ], [ -75.419257, 39.857984 ], [ -75.419356, 39.857904 ], [ -75.419491, 39.857811 ], [ -75.419693, 39.857703 ], [ -75.419854, 39.857633 ], [ -75.420012, 39.85758 ], [ -75.420174, 39.857535 ], [ -75.420341, 39.857503 ], [ -75.42051, 39.857482 ], [ -75.420616, 39.857475 ], [ -75.421019, 39.857441 ], [ -75.421099, 39.857475 ], [ -75.421183, 39.857477 ], [ -75.42129, 39.85747 ], [ -75.42152, 39.857448 ], [ -75.42194, 39.857431 ], [ -75.422393, 39.857427 ], [ -75.422405, 39.857427 ], [ -75.422652, 39.857415 ], [ -75.422986, 39.8574 ], [ -75.423833, 39.85734 ], [ -75.424241, 39.857316 ], [ -75.424602, 39.857295 ], [ -75.424706, 39.857243 ], [ -75.4249, 39.857229 ], [ -75.425133, 39.857213 ], [ -75.425394, 39.857195 ], [ -75.425703, 39.857173 ], [ -75.426102, 39.857146 ], [ -75.42644, 39.857133 ], [ -75.426971, 39.857113 ], [ -75.426977, 39.857164 ], [ -75.42701, 39.857508 ], [ -75.427028, 39.857686 ], [ -75.427045, 39.858024 ], [ -75.427074, 39.858388 ], [ -75.427092, 39.858605 ], [ -75.427096, 39.858655 ], [ -75.427179, 39.859491 ], [ -75.427201, 39.859731 ], [ -75.427208, 39.859799 ], [ -75.427229, 39.859981 ], [ -75.427229, 39.859986 ], [ -75.427249, 39.860155 ], [ -75.427264, 39.860282 ], [ -75.42728, 39.860399 ], [ -75.427298, 39.860524 ], [ -75.427343, 39.860838 ], [ -75.427356, 39.860927 ], [ -75.427374, 39.861048 ], [ -75.427391, 39.861162 ], [ -75.427503, 39.861914 ], [ -75.427565, 39.862365 ], [ -75.427666, 39.863126 ], [ -75.427709, 39.863404 ], [ -75.427737, 39.86358 ], [ -75.427762, 39.863743 ], [ -75.427792, 39.863929 ], [ -75.427809, 39.864014 ], [ -75.427836, 39.864165 ], [ -75.427894, 39.864577 ], [ -75.427917, 39.864738 ], [ -75.427934, 39.86486 ], [ -75.428018, 39.865457 ], [ -75.428071, 39.86577 ], [ -75.428094, 39.865907 ], [ -75.428114, 39.866091 ], [ -75.428137, 39.866298 ], [ -75.428161, 39.866519 ], [ -75.428184, 39.866739 ], [ -75.428231, 39.867197 ], [ -75.428291, 39.867764 ], [ -75.428308, 39.867928 ], [ -75.428314, 39.86799 ], [ -75.428418, 39.868922 ], [ -75.42848, 39.868961 ], [ -75.428555, 39.869009 ], [ -75.429092, 39.869321 ], [ -75.42921, 39.869389 ], [ -75.429307, 39.869445 ], [ -75.429371, 39.869472 ], [ -75.429513, 39.869554 ], [ -75.429613, 39.869617 ], [ -75.429638, 39.869632 ], [ -75.429746, 39.869687 ], [ -75.429789, 39.869712 ], [ -75.430045, 39.869848 ], [ -75.430165, 39.869896 ], [ -75.430331, 39.869955 ], [ -75.431079, 39.870222 ], [ -75.431405, 39.870334 ], [ -75.431662, 39.870419 ], [ -75.431866, 39.870487 ], [ -75.432023, 39.870526 ], [ -75.432177, 39.87055 ], [ -75.432354, 39.870567 ], [ -75.432987, 39.870591 ], [ -75.43314, 39.870596 ], [ -75.433591, 39.870608 ], [ -75.434452, 39.870622 ], [ -75.434983, 39.870636 ], [ -75.435544, 39.87065 ], [ -75.436786, 39.870685 ], [ -75.436781, 39.870908 ], [ -75.436785, 39.870958 ], [ -75.436798, 39.871007 ], [ -75.436819, 39.871044 ], [ -75.436844, 39.871074 ], [ -75.436872, 39.871106 ], [ -75.436905, 39.871134 ], [ -75.436934, 39.871154 ], [ -75.437094, 39.871246 ], [ -75.437602, 39.871528 ], [ -75.437851, 39.87167 ], [ -75.437981, 39.871753 ], [ -75.438131, 39.871874 ], [ -75.438554, 39.872242 ], [ -75.439473, 39.873098 ], [ -75.439632, 39.873247 ], [ -75.439654, 39.873347 ], [ -75.439672, 39.873443 ], [ -75.43969, 39.873551 ], [ -75.439713, 39.873653 ], [ -75.439629, 39.873738 ], [ -75.43959, 39.873794 ], [ -75.439565, 39.87384 ], [ -75.439553, 39.873879 ], [ -75.439548, 39.873927 ], [ -75.43955, 39.873968 ], [ -75.439557, 39.874023 ], [ -75.439566, 39.874081 ], [ -75.439578, 39.874111 ], [ -75.439611, 39.874149 ], [ -75.439652, 39.874179 ], [ -75.439702, 39.874192 ], [ -75.439765, 39.874192 ], [ -75.439804, 39.874186 ], [ -75.439868, 39.874175 ], [ -75.439902, 39.874168 ], [ -75.439931, 39.874153 ], [ -75.439957, 39.874129 ], [ -75.439972, 39.874103 ], [ -75.439978, 39.874049 ], [ -75.43997, 39.873962 ], [ -75.439959, 39.87389 ], [ -75.43995, 39.873847 ], [ -75.439943, 39.873829 ], [ -75.43993, 39.873799 ], [ -75.439907, 39.873775 ], [ -75.439831, 39.873721 ], [ -75.439757, 39.873677 ], [ -75.439713, 39.873653 ], [ -75.43969, 39.873551 ], [ -75.439672, 39.873443 ], [ -75.439654, 39.873347 ], [ -75.439632, 39.873246 ], [ -75.439473, 39.873098 ], [ -75.438554, 39.872242 ], [ -75.438131, 39.871874 ], [ -75.437981, 39.871753 ], [ -75.437851, 39.87167 ], [ -75.437602, 39.871528 ], [ -75.437094, 39.871246 ], [ -75.436934, 39.871154 ], [ -75.436905, 39.871134 ], [ -75.436872, 39.871106 ], [ -75.436844, 39.871074 ], [ -75.436819, 39.871044 ], [ -75.436798, 39.871007 ], [ -75.436785, 39.870958 ], [ -75.436781, 39.870908 ], [ -75.436786, 39.870685 ], [ -75.435544, 39.87065 ], [ -75.434983, 39.870636 ], [ -75.434452, 39.870622 ], [ -75.433591, 39.870608 ], [ -75.43314, 39.870596 ], [ -75.432987, 39.870591 ], [ -75.432354, 39.870567 ], [ -75.432177, 39.87055 ], [ -75.432023, 39.870526 ], [ -75.431866, 39.870487 ], [ -75.431662, 39.870419 ], [ -75.431405, 39.870334 ], [ -75.431079, 39.870222 ], [ -75.430331, 39.869955 ], [ -75.430165, 39.869896 ], [ -75.430045, 39.869848 ], [ -75.429789, 39.869712 ], [ -75.429746, 39.869687 ], [ -75.429638, 39.869632 ], [ -75.429613, 39.869617 ], [ -75.429513, 39.869554 ], [ -75.429371, 39.869472 ], [ -75.429307, 39.869445 ], [ -75.42921, 39.869389 ], [ -75.429092, 39.869321 ], [ -75.428555, 39.869009 ], [ -75.42848, 39.868961 ], [ -75.428418, 39.868922 ], [ -75.428418, 39.869007 ], [ -75.42842, 39.869046 ], [ -75.42842, 39.869102 ], [ -75.428435, 39.869214 ], [ -75.428457, 39.869363 ], [ -75.428503, 39.869569 ], [ -75.42853, 39.869707 ], [ -75.428497, 39.869779 ], [ -75.428521, 39.869879 ], [ -75.428541, 39.869951 ], [ -75.428579, 39.870078 ], [ -75.428609, 39.870174 ], [ -75.428688, 39.870238 ], [ -75.428718, 39.87034 ], [ -75.428742, 39.870417 ], [ -75.428871, 39.870819 ], [ -75.428912, 39.870943 ], [ -75.429032, 39.871306 ], [ -75.429077, 39.871414 ], [ -75.429217, 39.871703 ], [ -75.429277, 39.871804 ], [ -75.429306, 39.871857 ], [ -75.429306, 39.871914 ], [ -75.429456, 39.872153 ], [ -75.429511, 39.872239 ], [ -75.429588, 39.872346 ], [ -75.429634, 39.872406 ], [ -75.429733, 39.872537 ], [ -75.429794, 39.872566 ], [ -75.429867, 39.872656 ], [ -75.43006, 39.872867 ], [ -75.430162, 39.872971 ], [ -75.430427, 39.873242 ], [ -75.430613, 39.873439 ], [ -75.430937, 39.873829 ], [ -75.431079, 39.874037 ], [ -75.431219, 39.874295 ], [ -75.431283, 39.874429 ], [ -75.43139, 39.874697 ], [ -75.431467, 39.874956 ], [ -75.431534, 39.875251 ], [ -75.43157, 39.87552 ], [ -75.431581, 39.875648 ], [ -75.43159, 39.875917 ], [ -75.431578, 39.876134 ], [ -75.431523, 39.876425 ], [ -75.431422, 39.876759 ], [ -75.431285, 39.877072 ], [ -75.43121, 39.87722 ], [ -75.431154, 39.877319 ], [ -75.43104, 39.877509 ], [ -75.430819, 39.877831 ], [ -75.429574, 39.87932 ], [ -75.429508, 39.879391 ], [ -75.429268, 39.879701 ], [ -75.429155, 39.879867 ], [ -75.429054, 39.880037 ], [ -75.428968, 39.880213 ], [ -75.428891, 39.880433 ], [ -75.428857, 39.880541 ], [ -75.428842, 39.880637 ], [ -75.428809, 39.880848 ], [ -75.428797, 39.881104 ], [ -75.428795, 39.881191 ], [ -75.428808, 39.88129 ], [ -75.428822, 39.881391 ], [ -75.428842, 39.881488 ], [ -75.428908, 39.881741 ], [ -75.428973, 39.881898 ], [ -75.429085, 39.882112 ], [ -75.429187, 39.882284 ], [ -75.429326, 39.882483 ], [ -75.429468, 39.88267 ], [ -75.430142, 39.883587 ], [ -75.430382, 39.883914 ], [ -75.430594, 39.884219 ], [ -75.430714, 39.884409 ], [ -75.430716, 39.884414 ], [ -75.430746, 39.884468 ], [ -75.430778, 39.884538 ], [ -75.430912, 39.884868 ], [ -75.430956, 39.884972 ], [ -75.431037, 39.885239 ], [ -75.431097, 39.885518 ], [ -75.431131, 39.885785 ], [ -75.431151, 39.88599 ], [ -75.431153, 39.88606 ], [ -75.431147, 39.886238 ], [ -75.431135, 39.886407 ], [ -75.431107, 39.886589 ], [ -75.43099, 39.887091 ], [ -75.430964, 39.887291 ], [ -75.430944, 39.887587 ], [ -75.430934, 39.888509 ], [ -75.430951, 39.889111 ], [ -75.430967, 39.889223 ], [ -75.43101, 39.889461 ], [ -75.43148, 39.891444 ], [ -75.431567, 39.891736 ], [ -75.431649, 39.891928 ], [ -75.431743, 39.892109 ], [ -75.431765, 39.892143 ], [ -75.431873, 39.892306 ], [ -75.432319, 39.892962 ], [ -75.43261, 39.89335 ], [ -75.432616, 39.893356 ], [ -75.432724, 39.89346 ], [ -75.43284, 39.893546 ], [ -75.433017, 39.893651 ], [ -75.433268, 39.893764 ], [ -75.433917, 39.894036 ], [ -75.434198, 39.894152 ], [ -75.43421, 39.894157 ], [ -75.434445, 39.894261 ], [ -75.434648, 39.894374 ], [ -75.434669, 39.894386 ], [ -75.434783, 39.894458 ], [ -75.435064, 39.894667 ], [ -75.435131, 39.894723 ], [ -75.435195, 39.894784 ], [ -75.435293, 39.894867 ], [ -75.435495, 39.895091 ], [ -75.435627, 39.89527 ], [ -75.435698, 39.895365 ], [ -75.435892, 39.895672 ], [ -75.435994, 39.895866 ], [ -75.436073, 39.896019 ], [ -75.436115, 39.896101 ], [ -75.436196, 39.896297 ], [ -75.436331, 39.8967 ], [ -75.436566, 39.897368 ], [ -75.43708, 39.898804 ], [ -75.437345, 39.899601 ], [ -75.437573, 39.900278 ], [ -75.437851, 39.901005 ], [ -75.43825, 39.901745 ], [ -75.438439, 39.902029 ], [ -75.439078, 39.902891 ], [ -75.439459, 39.903411 ], [ -75.439647, 39.903667 ], [ -75.439768, 39.903841 ], [ -75.439899, 39.90406 ], [ -75.439968, 39.904191 ], [ -75.440022, 39.904354 ], [ -75.440062, 39.904503 ], [ -75.440091, 39.904652 ], [ -75.440099, 39.904833 ], [ -75.440086, 39.905049 ], [ -75.440066, 39.905227 ], [ -75.440052, 39.905387 ], [ -75.440013, 39.905885 ], [ -75.439996, 39.906136 ], [ -75.439995, 39.906569 ], [ -75.440022, 39.90697 ], [ -75.440068, 39.907499 ], [ -75.440129, 39.908159 ], [ -75.440161, 39.908746 ], [ -75.440147, 39.909012 ], [ -75.440101, 39.90932 ], [ -75.440041, 39.909665 ], [ -75.439943, 39.910112 ], [ -75.439899, 39.910298 ], [ -75.439861, 39.910522 ], [ -75.439827, 39.91088 ], [ -75.439802, 39.911059 ], [ -75.439774, 39.911259 ], [ -75.43975, 39.911428 ], [ -75.439737, 39.911522 ], [ -75.439723, 39.911629 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436132, 39.913368 ], [ -75.435977, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434502, 39.913692 ], [ -75.434002, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427244, 39.914727 ], [ -75.42631, 39.914886 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421599, 39.915493 ], [ -75.421528, 39.915493 ], [ -75.421444, 39.915492 ], [ -75.421294, 39.915479 ], [ -75.421177, 39.915467 ], [ -75.420919, 39.915425 ], [ -75.420606, 39.915357 ], [ -75.420108, 39.91523 ], [ -75.419827, 39.915163 ], [ -75.419685, 39.915133 ], [ -75.419652, 39.915127 ], [ -75.419501, 39.915106 ], [ -75.41935, 39.915096 ], [ -75.419198, 39.915099 ], [ -75.419048, 39.915113 ], [ -75.4189, 39.915139 ], [ -75.418756, 39.915178 ], [ -75.418618, 39.915227 ], [ -75.418486, 39.915287 ], [ -75.418363, 39.915354 ], [ -75.418258, 39.915425 ], [ -75.418153, 39.915488 ], [ -75.418063, 39.915568 ], [ -75.417948, 39.915688 ], [ -75.417858, 39.915829 ], [ -75.417812, 39.915927 ], [ -75.417733, 39.916098 ], [ -75.417699, 39.916196 ], [ -75.417668, 39.91627 ], [ -75.41761, 39.916404 ], [ -75.417612, 39.916494 ], [ -75.417591, 39.916553 ], [ -75.417568, 39.916612 ], [ -75.417546, 39.91668 ], [ -75.417529, 39.916753 ], [ -75.417524, 39.916803 ], [ -75.417525, 39.91684 ], [ -75.417528, 39.91687 ], [ -75.417531, 39.916896 ], [ -75.41754, 39.916927 ], [ -75.417552, 39.91695 ], [ -75.417563, 39.916974 ], [ -75.417582, 39.917 ], [ -75.417606, 39.917025 ], [ -75.417629, 39.917045 ], [ -75.417668, 39.917073 ], [ -75.417703, 39.917093 ], [ -75.417739, 39.91711 ], [ -75.417775, 39.917118 ], [ -75.417811, 39.917126 ], [ -75.417846, 39.917127 ], [ -75.417897, 39.917127 ], [ -75.417951, 39.917121 ], [ -75.417985, 39.917113 ], [ -75.418015, 39.917099 ], [ -75.418071, 39.917074 ], [ -75.418233, 39.916991 ], [ -75.418406, 39.916902 ], [ -75.418582, 39.916811 ], [ -75.418774, 39.916708 ], [ -75.419064, 39.916561 ], [ -75.419378, 39.916391 ], [ -75.419629, 39.916269 ], [ -75.419887, 39.916154 ], [ -75.420232, 39.916021 ], [ -75.420619, 39.915889 ], [ -75.420864, 39.915819 ], [ -75.421031, 39.915779 ], [ -75.421246, 39.915736 ], [ -75.421372, 39.915712 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422476, 39.915504 ], [ -75.422867, 39.915447 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424408, 39.915236 ], [ -75.424542, 39.915218 ], [ -75.424587, 39.915209 ], [ -75.424723, 39.915188 ], [ -75.42515, 39.915129 ], [ -75.42528, 39.91511 ], [ -75.426327, 39.914951 ], [ -75.426781, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.439737, 39.912925 ], [ -75.439745, 39.913033 ], [ -75.439776, 39.91352 ], [ -75.439838, 39.91403 ], [ -75.439895, 39.914339 ], [ -75.439928, 39.91457 ], [ -75.439966, 39.914757 ], [ -75.440039, 39.915273 ], [ -75.440219, 39.916371 ], [ -75.440269, 39.916647 ], [ -75.440298, 39.916825 ], [ -75.440323, 39.916975 ], [ -75.440338, 39.917138 ], [ -75.440352, 39.91731 ], [ -75.440446, 39.917632 ], [ -75.440564, 39.917702 ], [ -75.440651, 39.91775 ], [ -75.44072, 39.917794 ], [ -75.440877, 39.917897 ], [ -75.441047, 39.918016 ], [ -75.441116, 39.918068 ], [ -75.441131, 39.918101 ], [ -75.441639, 39.9185 ], [ -75.441752, 39.91858 ], [ -75.441811, 39.918622 ], [ -75.441937, 39.918709 ], [ -75.442039, 39.918786 ], [ -75.44218, 39.918911 ], [ -75.442207, 39.918932 ], [ -75.442223, 39.918952 ], [ -75.442235, 39.918965 ], [ -75.442332, 39.919071 ], [ -75.442455, 39.919205 ], [ -75.442552, 39.919321 ], [ -75.442717, 39.919545 ], [ -75.442793, 39.919498 ], [ -75.4429, 39.919428 ], [ -75.442967, 39.919376 ], [ -75.443004, 39.919341 ], [ -75.443065, 39.919285 ], [ -75.443126, 39.919222 ], [ -75.443202, 39.919143 ], [ -75.443331, 39.919015 ], [ -75.44373, 39.918633 ], [ -75.44383, 39.918548 ], [ -75.443933, 39.918486 ], [ -75.444023, 39.918449 ], [ -75.444018, 39.918403 ], [ -75.444029, 39.918349 ], [ -75.444052, 39.918306 ], [ -75.444098, 39.918262 ], [ -75.444328, 39.918042 ], [ -75.444393, 39.91798 ], [ -75.44471, 39.917688 ], [ -75.444771, 39.917704 ], [ -75.444823, 39.917704 ], [ -75.444868, 39.917694 ], [ -75.44492, 39.91767 ], [ -75.444976, 39.917625 ], [ -75.444721, 39.917489 ], [ -75.44468, 39.917526 ], [ -75.444651, 39.917571 ], [ -75.444648, 39.917604 ], [ -75.444656, 39.917637 ], [ -75.444685, 39.91767 ], [ -75.44471, 39.917688 ], [ -75.444393, 39.91798 ], [ -75.444328, 39.918042 ], [ -75.444098, 39.918262 ], [ -75.444052, 39.918306 ], [ -75.444029, 39.918349 ], [ -75.444018, 39.918403 ], [ -75.444023, 39.918449 ], [ -75.443933, 39.918486 ], [ -75.44383, 39.918548 ], [ -75.44373, 39.918632 ], [ -75.443331, 39.919015 ], [ -75.443202, 39.919143 ], [ -75.443126, 39.919222 ], [ -75.443064, 39.919284 ], [ -75.443004, 39.919341 ], [ -75.442967, 39.919376 ], [ -75.442899, 39.919428 ], [ -75.442793, 39.919498 ], [ -75.442717, 39.919545 ], [ -75.442805, 39.919675 ], [ -75.442872, 39.9198 ], [ -75.442939, 39.919955 ], [ -75.442999, 39.920148 ], [ -75.443047, 39.920341 ], [ -75.443054, 39.920387 ], [ -75.443079, 39.920536 ], [ -75.443089, 39.92069 ], [ -75.443092, 39.920728 ], [ -75.443097, 39.920781 ], [ -75.443126, 39.920821 ], [ -75.443129, 39.921338 ], [ -75.443146, 39.921943 ], [ -75.443157, 39.92209 ], [ -75.443174, 39.9223 ], [ -75.443231, 39.922632 ], [ -75.443294, 39.922965 ], [ -75.443378, 39.923269 ], [ -75.443522, 39.923696 ], [ -75.443823, 39.924586 ], [ -75.443967, 39.924985 ], [ -75.443958, 39.925029 ], [ -75.444135, 39.925535 ], [ -75.444296, 39.925976 ], [ -75.444524, 39.926539 ], [ -75.444569, 39.926668 ], [ -75.444738, 39.927092 ], [ -75.444857, 39.92741 ], [ -75.445242, 39.928352 ], [ -75.445619, 39.929305 ], [ -75.44568, 39.929272 ], [ -75.447053, 39.928679 ], [ -75.447305, 39.928655 ], [ -75.447415, 39.928594 ], [ -75.447401, 39.928489 ], [ -75.447305, 39.928437 ], [ -75.447235, 39.928441 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310308", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310309", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.263535, 39.919049 ], [ -75.263821, 39.918997 ], [ -75.264719, 39.918997 ], [ -75.264717, 39.918911 ], [ -75.264711, 39.918702 ], [ -75.264707, 39.918363 ], [ -75.264722, 39.918121 ], [ -75.264725, 39.918006 ], [ -75.264723, 39.917955 ], [ -75.264722, 39.917914 ], [ -75.264718, 39.917853 ], [ -75.264704, 39.917782 ], [ -75.264685, 39.917716 ], [ -75.264658, 39.917645 ], [ -75.264631, 39.917574 ], [ -75.264612, 39.917528 ], [ -75.264595, 39.917485 ], [ -75.264582, 39.91745 ], [ -75.264567, 39.917409 ], [ -75.264539, 39.917282 ], [ -75.264536, 39.917249 ], [ -75.264547, 39.917127 ], [ -75.264547, 39.917092 ], [ -75.264583, 39.916876 ], [ -75.264589, 39.916849 ], [ -75.264674, 39.916505 ], [ -75.264843, 39.91574 ], [ -75.264889, 39.915527 ], [ -75.265024, 39.914918 ], [ -75.265065, 39.91475 ], [ -75.265103, 39.914618 ], [ -75.265152, 39.914482 ], [ -75.265185, 39.914411 ], [ -75.265258, 39.9143 ], [ -75.265365, 39.914203 ], [ -75.265515, 39.914088 ], [ -75.265666, 39.913979 ], [ -75.265797, 39.913883 ], [ -75.265853, 39.913844 ], [ -75.265926, 39.913793 ], [ -75.266083, 39.913675 ], [ -75.266309, 39.913506 ], [ -75.266911, 39.913039 ], [ -75.267579, 39.912559 ], [ -75.267814, 39.912369 ], [ -75.268091, 39.912158 ], [ -75.268175, 39.912101 ], [ -75.268695, 39.911719 ], [ -75.269442, 39.911165 ], [ -75.269821, 39.910883 ], [ -75.270082, 39.910689 ], [ -75.270399, 39.91047 ], [ -75.270552, 39.910374 ], [ -75.270642, 39.910315 ], [ -75.270727, 39.91027 ], [ -75.270924, 39.910163 ], [ -75.271333, 39.909942 ], [ -75.271419, 39.909895 ], [ -75.271806, 39.90969 ], [ -75.271892, 39.909643 ], [ -75.271991, 39.909634 ], [ -75.272099, 39.90958 ], [ -75.272222, 39.909512 ], [ -75.27261, 39.909318 ], [ -75.273239, 39.908991 ], [ -75.273289, 39.908959 ], [ -75.273327, 39.908935 ], [ -75.273384, 39.908847 ], [ -75.273628, 39.908716 ], [ -75.27374, 39.908665 ], [ -75.273866, 39.908604 ], [ -75.273902, 39.908583 ], [ -75.274054, 39.908498 ], [ -75.274188, 39.908425 ], [ -75.27431, 39.908356 ], [ -75.274726, 39.908122 ], [ -75.275048, 39.907947 ], [ -75.27517, 39.907882 ], [ -75.27532, 39.907801 ], [ -75.275431, 39.907739 ], [ -75.275554, 39.907669 ], [ -75.275728, 39.907574 ], [ -75.275852, 39.907505 ], [ -75.275891, 39.907478 ], [ -75.275947, 39.907444 ], [ -75.276592, 39.907078 ], [ -75.276667, 39.907039 ], [ -75.27685, 39.906939 ], [ -75.277018, 39.906845 ], [ -75.277227, 39.906729 ], [ -75.277464, 39.906606 ], [ -75.27765, 39.906503 ], [ -75.277932, 39.906344 ], [ -75.278246, 39.906172 ], [ -75.278405, 39.906085 ], [ -75.279283, 39.905606 ], [ -75.27944, 39.905519 ], [ -75.279607, 39.905429 ], [ -75.27972, 39.905367 ], [ -75.280067, 39.905198 ], [ -75.280165, 39.905149 ], [ -75.28027, 39.905097 ], [ -75.280762, 39.904827 ], [ -75.281966, 39.904168 ], [ -75.282733, 39.903752 ], [ -75.283222, 39.903485 ], [ -75.283624, 39.903265 ], [ -75.284022, 39.903047 ], [ -75.284821, 39.902615 ], [ -75.285658, 39.902162 ], [ -75.286065, 39.901942 ], [ -75.28629, 39.901824 ], [ -75.286498, 39.901716 ], [ -75.287036, 39.901424 ], [ -75.28718, 39.901345 ], [ -75.287654, 39.901088 ], [ -75.28809, 39.900844 ], [ -75.288214, 39.900774 ], [ -75.289215, 39.900231 ], [ -75.289547, 39.900045 ], [ -75.289636, 39.899992 ], [ -75.289695, 39.89995 ], [ -75.289768, 39.899887 ], [ -75.290059, 39.89959 ], [ -75.29014, 39.899505 ], [ -75.290227, 39.899392 ], [ -75.29082, 39.89871 ], [ -75.29091, 39.898612 ], [ -75.29108, 39.898427 ], [ -75.291561, 39.897895 ], [ -75.291828, 39.897594 ], [ -75.292154, 39.897228 ], [ -75.293191, 39.89606 ], [ -75.29387, 39.895289 ], [ -75.293953, 39.895196 ], [ -75.294105, 39.89503 ], [ -75.294238, 39.894878 ], [ -75.294452, 39.894633 ], [ -75.294683, 39.894396 ], [ -75.294722, 39.894342 ], [ -75.294771, 39.894267 ], [ -75.294899, 39.894129 ], [ -75.295166, 39.893834 ], [ -75.295485, 39.893473 ], [ -75.295583, 39.89337 ], [ -75.29579, 39.893136 ], [ -75.295993, 39.892918 ], [ -75.296448, 39.892401 ], [ -75.296776, 39.89203 ], [ -75.296921, 39.891867 ], [ -75.297136, 39.891608 ], [ -75.297434, 39.891287 ], [ -75.297587, 39.891114 ], [ -75.298009, 39.89064 ], [ -75.298133, 39.890499 ], [ -75.298913, 39.889629 ], [ -75.299223, 39.889278 ], [ -75.299371, 39.889112 ], [ -75.299539, 39.888935 ], [ -75.299579, 39.888884 ], [ -75.299657, 39.888794 ], [ -75.299939, 39.888483 ], [ -75.300035, 39.888377 ], [ -75.300294, 39.88809 ], [ -75.300489, 39.887867 ], [ -75.30063, 39.887698 ], [ -75.300989, 39.88729 ], [ -75.30135, 39.886882 ], [ -75.301542, 39.886666 ], [ -75.301667, 39.886534 ], [ -75.301718, 39.886478 ], [ -75.301788, 39.886396 ], [ -75.302132, 39.886012 ], [ -75.302269, 39.885849 ], [ -75.30277, 39.885292 ], [ -75.303131, 39.884892 ], [ -75.303309, 39.884695 ], [ -75.303328, 39.884674 ], [ -75.303609, 39.884357 ], [ -75.303766, 39.884194 ], [ -75.303973, 39.883978 ], [ -75.304366, 39.883556 ], [ -75.304465, 39.883472 ], [ -75.304522, 39.883426 ], [ -75.304559, 39.883398 ], [ -75.304599, 39.883368 ], [ -75.30506, 39.883064 ], [ -75.305167, 39.883001 ], [ -75.305259, 39.882945 ], [ -75.30548, 39.882798 ], [ -75.30603, 39.882501 ], [ -75.306219, 39.882397 ], [ -75.306824, 39.882114 ], [ -75.306922, 39.88206 ], [ -75.307113, 39.881952 ], [ -75.307314, 39.881847 ], [ -75.307327, 39.881841 ], [ -75.307556, 39.881723 ], [ -75.307601, 39.881702 ], [ -75.307683, 39.881661 ], [ -75.307783, 39.881611 ], [ -75.308222, 39.881396 ], [ -75.308331, 39.881338 ], [ -75.308512, 39.88124 ], [ -75.308883, 39.881031 ], [ -75.309789, 39.880548 ], [ -75.310116, 39.880379 ], [ -75.310571, 39.88012 ], [ -75.310806, 39.879995 ], [ -75.311021, 39.879892 ], [ -75.311674, 39.879669 ], [ -75.312057, 39.879543 ], [ -75.312653, 39.879346 ], [ -75.313003, 39.879241 ], [ -75.31361, 39.879053 ], [ -75.315246, 39.878544 ], [ -75.3166, 39.878105 ], [ -75.317227, 39.877903 ], [ -75.317756, 39.877738 ], [ -75.318122, 39.877623 ], [ -75.318621, 39.877463 ], [ -75.319111, 39.877306 ], [ -75.319346, 39.877235 ], [ -75.319964, 39.877039 ], [ -75.320222, 39.87694 ], [ -75.320467, 39.876819 ], [ -75.320659, 39.876721 ], [ -75.321103, 39.876493 ], [ -75.321474, 39.876284 ], [ -75.32169, 39.876187 ], [ -75.322001, 39.876047 ], [ -75.32213, 39.875981 ], [ -75.322265, 39.875912 ], [ -75.322515, 39.875779 ], [ -75.322608, 39.875733 ], [ -75.322692, 39.875695 ], [ -75.322934, 39.87557 ], [ -75.323186, 39.875436 ], [ -75.323512, 39.875259 ], [ -75.323578, 39.875223 ], [ -75.324104, 39.874957 ], [ -75.324455, 39.874787 ], [ -75.324798, 39.87461 ], [ -75.325449, 39.87425 ], [ -75.325502, 39.874222 ], [ -75.32556, 39.874194 ], [ -75.325651, 39.874146 ], [ -75.325893, 39.874011 ], [ -75.326171, 39.87386 ], [ -75.326302, 39.873782 ], [ -75.326478, 39.87369 ], [ -75.326754, 39.87355 ], [ -75.326981, 39.873433 ], [ -75.327282, 39.873275 ], [ -75.327504, 39.873156 ], [ -75.327594, 39.873114 ], [ -75.327715, 39.87306 ], [ -75.328005, 39.872932 ], [ -75.328059, 39.872907 ], [ -75.328106, 39.872886 ], [ -75.328174, 39.872854 ], [ -75.328587, 39.872641 ], [ -75.328663, 39.872604 ], [ -75.328762, 39.872552 ], [ -75.328851, 39.872503 ], [ -75.329042, 39.872403 ], [ -75.32928, 39.872262 ], [ -75.329567, 39.872114 ], [ -75.329679, 39.872055 ], [ -75.330101, 39.871855 ], [ -75.330294, 39.871773 ], [ -75.330554, 39.871648 ], [ -75.330651, 39.871602 ], [ -75.330742, 39.871564 ], [ -75.330909, 39.871489 ], [ -75.33105, 39.871423 ], [ -75.331232, 39.871346 ], [ -75.331423, 39.871256 ], [ -75.331722, 39.871119 ], [ -75.331843, 39.871064 ], [ -75.331978, 39.871 ], [ -75.332094, 39.870953 ], [ -75.332386, 39.870813 ], [ -75.332545, 39.870738 ], [ -75.332785, 39.870628 ], [ -75.33393, 39.870087 ], [ -75.333987, 39.870066 ], [ -75.334502, 39.869845 ], [ -75.334705, 39.869759 ], [ -75.33481, 39.869715 ], [ -75.335576, 39.869343 ], [ -75.336638, 39.868851 ], [ -75.336961, 39.868699 ], [ -75.337418, 39.868483 ], [ -75.337595, 39.8684 ], [ -75.337797, 39.868303 ], [ -75.338036, 39.868186 ], [ -75.338486, 39.867965 ], [ -75.33872, 39.867849 ], [ -75.338887, 39.867768 ], [ -75.338937, 39.867745 ], [ -75.339142, 39.867633 ], [ -75.339533, 39.867446 ], [ -75.340282, 39.867087 ], [ -75.340539, 39.86696 ], [ -75.34079, 39.866837 ], [ -75.341487, 39.866484 ], [ -75.3416, 39.866428 ], [ -75.341884, 39.866287 ], [ -75.342233, 39.866115 ], [ -75.342332, 39.866112 ], [ -75.342376, 39.86609 ], [ -75.342476, 39.866038 ], [ -75.342516, 39.866019 ], [ -75.342689, 39.865933 ], [ -75.34319, 39.865683 ], [ -75.343239, 39.86562 ], [ -75.343695, 39.865421 ], [ -75.344128, 39.865198 ], [ -75.345078, 39.864706 ], [ -75.345756, 39.864367 ], [ -75.346172, 39.864135 ], [ -75.34606, 39.864008 ], [ -75.345953, 39.863906 ], [ -75.345439, 39.863419 ], [ -75.345336, 39.863321 ], [ -75.345204, 39.863198 ], [ -75.344929, 39.862942 ], [ -75.344631, 39.862673 ], [ -75.344516, 39.86257 ], [ -75.344442, 39.862494 ], [ -75.344411, 39.862456 ], [ -75.344363, 39.862396 ], [ -75.344298, 39.862294 ], [ -75.344256, 39.86221 ], [ -75.344173, 39.862083 ], [ -75.344097, 39.861951 ], [ -75.344019, 39.861813 ], [ -75.343953, 39.861713 ], [ -75.343749, 39.861399 ], [ -75.343417, 39.860879 ], [ -75.343323, 39.860726 ], [ -75.343229, 39.860571 ], [ -75.343138, 39.860427 ], [ -75.342622, 39.859616 ], [ -75.342517, 39.859449 ], [ -75.342726, 39.859373 ], [ -75.343395, 39.859129 ], [ -75.343558, 39.859069 ], [ -75.343796, 39.858984 ], [ -75.344367, 39.858778 ], [ -75.344485, 39.858736 ], [ -75.344623, 39.858686 ], [ -75.344841, 39.858597 ], [ -75.345636, 39.85827 ], [ -75.34604, 39.858118 ], [ -75.346612, 39.857935 ], [ -75.347741, 39.857521 ], [ -75.348238, 39.857338 ], [ -75.348726, 39.85715 ], [ -75.349179, 39.856981 ], [ -75.35025, 39.856581 ], [ -75.350934, 39.856331 ], [ -75.351627, 39.856066 ], [ -75.351789, 39.85601 ], [ -75.352072, 39.855905 ], [ -75.35233, 39.85581 ], [ -75.353584, 39.855346 ], [ -75.354022, 39.855177 ], [ -75.354113, 39.855142 ], [ -75.354343, 39.855053 ], [ -75.355764, 39.854535 ], [ -75.356974, 39.854085 ], [ -75.357201, 39.854001 ], [ -75.358656, 39.853459 ], [ -75.359421, 39.853173 ], [ -75.360028, 39.852941 ], [ -75.360064, 39.852927 ], [ -75.360368, 39.852807 ], [ -75.360689, 39.85268 ], [ -75.360689, 39.852526 ], [ -75.360688, 39.852365 ], [ -75.360703, 39.852073 ], [ -75.36073, 39.851768 ], [ -75.360757, 39.851477 ], [ -75.360761, 39.851401 ], [ -75.360836, 39.850681 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.36088, 39.85261 ], [ -75.361092, 39.852534 ], [ -75.361224, 39.852481 ], [ -75.361345, 39.852433 ], [ -75.361648, 39.852314 ], [ -75.362327, 39.852022 ], [ -75.362673, 39.851869 ], [ -75.363233, 39.851628 ], [ -75.365608, 39.850663 ], [ -75.365875, 39.850542 ], [ -75.365922, 39.850522 ], [ -75.366176, 39.850428 ], [ -75.367622, 39.849829 ], [ -75.368337, 39.849534 ], [ -75.369283, 39.849146 ], [ -75.370318, 39.848714 ], [ -75.370701, 39.848549 ], [ -75.370736, 39.848535 ], [ -75.371232, 39.848354 ], [ -75.371395, 39.848289 ], [ -75.371631, 39.848206 ], [ -75.371876, 39.848123 ], [ -75.372439, 39.847927 ], [ -75.372562, 39.847885 ], [ -75.373168, 39.847679 ], [ -75.373731, 39.847466 ], [ -75.374917, 39.847063 ], [ -75.375416, 39.846883 ], [ -75.375913, 39.846641 ], [ -75.376387, 39.84639 ], [ -75.376899, 39.846118 ], [ -75.377411, 39.84585 ], [ -75.378397, 39.84531 ], [ -75.378807, 39.845099 ], [ -75.379376, 39.844805 ], [ -75.380423, 39.844266 ], [ -75.381001, 39.84397 ], [ -75.381413, 39.843745 ], [ -75.381742, 39.843574 ], [ -75.382415, 39.843219 ], [ -75.382716, 39.84307 ], [ -75.383134, 39.842841 ], [ -75.383361, 39.84271 ], [ -75.383461, 39.842652 ], [ -75.383556, 39.842614 ], [ -75.383685, 39.842597 ], [ -75.383799, 39.842544 ], [ -75.384025, 39.842428 ], [ -75.384385, 39.842234 ], [ -75.384616, 39.84212 ], [ -75.384663, 39.842096 ], [ -75.384703, 39.842073 ], [ -75.384793, 39.842029 ], [ -75.385282, 39.841781 ], [ -75.385451, 39.841693 ], [ -75.385505, 39.841609 ], [ -75.385575, 39.841567 ], [ -75.385767, 39.841462 ], [ -75.385809, 39.841438 ], [ -75.385937, 39.841376 ], [ -75.386479, 39.841114 ], [ -75.386675, 39.84101 ], [ -75.387396, 39.840638 ], [ -75.387759, 39.840453 ], [ -75.388812, 39.839894 ], [ -75.389211, 39.840348 ], [ -75.389285, 39.840429 ], [ -75.389551, 39.840737 ], [ -75.389769, 39.840982 ], [ -75.390003, 39.841246 ], [ -75.390261, 39.84155 ], [ -75.390672, 39.842009 ], [ -75.390975, 39.842344 ], [ -75.391455, 39.842901 ], [ -75.391506, 39.842959 ], [ -75.391885, 39.843401 ], [ -75.391997, 39.843517 ], [ -75.39218, 39.843702 ], [ -75.392243, 39.843754 ], [ -75.392328, 39.843819 ], [ -75.392389, 39.843857 ], [ -75.392539, 39.843964 ], [ -75.392635, 39.844026 ], [ -75.392738, 39.844089 ], [ -75.393146, 39.844325 ], [ -75.393382, 39.84446 ], [ -75.393626, 39.844594 ], [ -75.393718, 39.844654 ], [ -75.39381, 39.844705 ], [ -75.394151, 39.8449 ], [ -75.394274, 39.844967 ], [ -75.394351, 39.845009 ], [ -75.39437, 39.84502 ], [ -75.3947, 39.845169 ], [ -75.395249, 39.845391 ], [ -75.395577, 39.84551 ], [ -75.396515, 39.845863 ], [ -75.396671, 39.845918 ], [ -75.396931, 39.845997 ], [ -75.397004, 39.846022 ], [ -75.397094, 39.846041 ], [ -75.397264, 39.846084 ], [ -75.39738, 39.846125 ], [ -75.397506, 39.84618 ], [ -75.397652, 39.846264 ], [ -75.39778, 39.846343 ], [ -75.398174, 39.846591 ], [ -75.399242, 39.847295 ], [ -75.399375, 39.847383 ], [ -75.399521, 39.84748 ], [ -75.399761, 39.847636 ], [ -75.400053, 39.847826 ], [ -75.40016, 39.847905 ], [ -75.400249, 39.847978 ], [ -75.400339, 39.848061 ], [ -75.400402, 39.84813 ], [ -75.400461, 39.848203 ], [ -75.400534, 39.848296 ], [ -75.400843, 39.848734 ], [ -75.401195, 39.849232 ], [ -75.401373, 39.849517 ], [ -75.401431, 39.849644 ], [ -75.40148, 39.849781 ], [ -75.401522, 39.849911 ], [ -75.401577, 39.850111 ], [ -75.401624, 39.85031 ], [ -75.401688, 39.850577 ], [ -75.401783, 39.851048 ], [ -75.401804, 39.851149 ], [ -75.40182, 39.851264 ], [ -75.401831, 39.851397 ], [ -75.40184, 39.851555 ], [ -75.401876, 39.852184 ], [ -75.401885, 39.85245 ], [ -75.401905, 39.852573 ], [ -75.40193, 39.852655 ], [ -75.402293, 39.852575 ], [ -75.402448, 39.852534 ], [ -75.402577, 39.852489 ], [ -75.402731, 39.852419 ], [ -75.40288, 39.852333 ], [ -75.402997, 39.852236 ], [ -75.403121, 39.852121 ], [ -75.403224, 39.851994 ], [ -75.403401, 39.851819 ], [ -75.403514, 39.851707 ], [ -75.403607, 39.851625 ], [ -75.403727, 39.851529 ], [ -75.40384, 39.851456 ], [ -75.403982, 39.851372 ], [ -75.404113, 39.851304 ], [ -75.404243, 39.851239 ], [ -75.404605, 39.851061 ], [ -75.407879, 39.849548 ], [ -75.409846, 39.84862 ], [ -75.409945, 39.848562 ], [ -75.409516, 39.847999 ], [ -75.409179, 39.847595 ], [ -75.408745, 39.847054 ], [ -75.408588, 39.846896 ], [ -75.408478, 39.84683 ], [ -75.408391, 39.846796 ], [ -75.408278, 39.846779 ], [ -75.408127, 39.84679 ], [ -75.407975, 39.84683 ], [ -75.40772, 39.846931 ], [ -75.4052, 39.848138 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310310", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.460055, 39.901638 ], [ -75.46009, 39.901603 ], [ -75.460102, 39.901549 ], [ -75.460055, 39.901505 ], [ -75.459984, 39.901505 ], [ -75.459913, 39.901531 ], [ -75.459866, 39.901567 ], [ -75.459418, 39.901942 ], [ -75.459347, 39.902005 ], [ -75.459288, 39.90204 ], [ -75.459241, 39.902049 ], [ -75.459182, 39.902085 ], [ -75.459135, 39.90213 ], [ -75.459135, 39.902165 ], [ -75.459166, 39.902228 ], [ -75.45935, 39.90238 ], [ -75.458767, 39.902792 ], [ -75.458606, 39.902906 ], [ -75.458491, 39.902983 ], [ -75.458394, 39.903044 ], [ -75.458285, 39.903109 ], [ -75.458137, 39.903197 ], [ -75.458036, 39.903261 ], [ -75.45788, 39.903354 ], [ -75.45767, 39.903483 ], [ -75.457411, 39.903636 ], [ -75.456918, 39.903924 ], [ -75.45588, 39.904525 ], [ -75.455438, 39.904789 ], [ -75.454558, 39.905301 ], [ -75.453759, 39.905768 ], [ -75.452699, 39.90641 ], [ -75.451596, 39.90707 ], [ -75.449883, 39.908054 ], [ -75.449437, 39.90831 ], [ -75.448976, 39.908605 ], [ -75.448599, 39.908842 ], [ -75.448453, 39.908934 ], [ -75.448301, 39.909019 ], [ -75.448118, 39.90912 ], [ -75.447822, 39.909276 ], [ -75.447575, 39.909402 ], [ -75.446976, 39.909684 ], [ -75.446766, 39.90978 ], [ -75.446536, 39.909879 ], [ -75.446184, 39.910023 ], [ -75.445766, 39.910187 ], [ -75.445416, 39.910323 ], [ -75.445396, 39.910332 ], [ -75.444574, 39.910638 ], [ -75.443929, 39.910871 ], [ -75.443448, 39.911044 ], [ -75.443139, 39.911152 ], [ -75.44246, 39.911379 ], [ -75.442118, 39.911488 ], [ -75.441544, 39.91166 ], [ -75.441009, 39.911826 ], [ -75.440747, 39.911908 ], [ -75.44061, 39.911951 ], [ -75.440093, 39.912112 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436132, 39.913368 ], [ -75.435977, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434502, 39.913692 ], [ -75.434002, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427244, 39.914727 ], [ -75.42631, 39.914886 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421599, 39.915493 ], [ -75.421528, 39.915493 ], [ -75.421444, 39.915492 ], [ -75.421294, 39.915479 ], [ -75.421177, 39.915467 ], [ -75.420919, 39.915425 ], [ -75.420606, 39.915357 ], [ -75.420108, 39.91523 ], [ -75.419827, 39.915163 ], [ -75.419685, 39.915133 ], [ -75.419652, 39.915127 ], [ -75.419501, 39.915106 ], [ -75.41935, 39.915096 ], [ -75.419198, 39.915099 ], [ -75.419048, 39.915113 ], [ -75.4189, 39.915139 ], [ -75.418756, 39.915178 ], [ -75.418618, 39.915227 ], [ -75.418486, 39.915287 ], [ -75.418363, 39.915354 ], [ -75.418258, 39.915425 ], [ -75.418153, 39.915488 ], [ -75.418063, 39.915568 ], [ -75.417948, 39.915688 ], [ -75.417858, 39.915829 ], [ -75.417812, 39.915927 ], [ -75.417733, 39.916098 ], [ -75.417699, 39.916196 ], [ -75.417668, 39.91627 ], [ -75.41761, 39.916404 ], [ -75.417612, 39.916494 ], [ -75.417591, 39.916553 ], [ -75.417568, 39.916612 ], [ -75.417546, 39.91668 ], [ -75.417529, 39.916753 ], [ -75.417524, 39.916803 ], [ -75.417525, 39.91684 ], [ -75.417528, 39.91687 ], [ -75.417531, 39.916896 ], [ -75.41754, 39.916927 ], [ -75.417552, 39.91695 ], [ -75.417563, 39.916974 ], [ -75.417582, 39.917 ], [ -75.417606, 39.917025 ], [ -75.417629, 39.917045 ], [ -75.417668, 39.917073 ], [ -75.417703, 39.917093 ], [ -75.417739, 39.91711 ], [ -75.417775, 39.917118 ], [ -75.417811, 39.917126 ], [ -75.417846, 39.917127 ], [ -75.417897, 39.917127 ], [ -75.417951, 39.917121 ], [ -75.417985, 39.917113 ], [ -75.418015, 39.917099 ], [ -75.418071, 39.917074 ], [ -75.418233, 39.916991 ], [ -75.418406, 39.916902 ], [ -75.418582, 39.916811 ], [ -75.418774, 39.916708 ], [ -75.419064, 39.916561 ], [ -75.419378, 39.916391 ], [ -75.419629, 39.916269 ], [ -75.419887, 39.916154 ], [ -75.420232, 39.916021 ], [ -75.420619, 39.915889 ], [ -75.420864, 39.915819 ], [ -75.421031, 39.915779 ], [ -75.421246, 39.915736 ], [ -75.421372, 39.915712 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422476, 39.915504 ], [ -75.422867, 39.915447 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424408, 39.915236 ], [ -75.424542, 39.915218 ], [ -75.424587, 39.915209 ], [ -75.424723, 39.915188 ], [ -75.42515, 39.915129 ], [ -75.42528, 39.91511 ], [ -75.426327, 39.914951 ], [ -75.426781, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.439723, 39.911629 ], [ -75.439737, 39.911522 ], [ -75.43975, 39.911428 ], [ -75.439774, 39.911259 ], [ -75.439802, 39.911059 ], [ -75.439827, 39.91088 ], [ -75.439861, 39.910522 ], [ -75.439899, 39.910298 ], [ -75.439943, 39.910112 ], [ -75.440041, 39.909665 ], [ -75.440101, 39.90932 ], [ -75.440147, 39.909012 ], [ -75.440161, 39.908746 ], [ -75.440129, 39.908159 ], [ -75.440068, 39.907499 ], [ -75.440022, 39.90697 ], [ -75.439995, 39.906569 ], [ -75.439996, 39.906136 ], [ -75.440013, 39.905885 ], [ -75.440052, 39.905387 ], [ -75.440066, 39.905227 ], [ -75.440086, 39.905049 ], [ -75.440099, 39.904833 ], [ -75.440091, 39.904652 ], [ -75.440062, 39.904503 ], [ -75.440022, 39.904354 ], [ -75.439968, 39.904191 ], [ -75.439899, 39.90406 ], [ -75.439768, 39.903841 ], [ -75.439647, 39.903667 ], [ -75.439459, 39.903411 ], [ -75.439078, 39.902891 ], [ -75.438439, 39.902029 ], [ -75.43825, 39.901745 ], [ -75.437851, 39.901005 ], [ -75.437573, 39.900278 ], [ -75.437345, 39.899601 ], [ -75.43708, 39.898804 ], [ -75.436566, 39.897368 ], [ -75.436331, 39.8967 ], [ -75.436196, 39.896297 ], [ -75.436115, 39.896101 ], [ -75.436073, 39.896019 ], [ -75.435994, 39.895866 ], [ -75.435892, 39.895672 ], [ -75.435698, 39.895365 ], [ -75.435627, 39.89527 ], [ -75.435495, 39.895091 ], [ -75.435293, 39.894867 ], [ -75.435195, 39.894784 ], [ -75.435131, 39.894723 ], [ -75.435064, 39.894667 ], [ -75.434783, 39.894458 ], [ -75.434669, 39.894386 ], [ -75.434648, 39.894374 ], [ -75.434445, 39.894261 ], [ -75.43421, 39.894157 ], [ -75.434198, 39.894152 ], [ -75.433917, 39.894036 ], [ -75.433268, 39.893764 ], [ -75.433017, 39.893651 ], [ -75.43284, 39.893546 ], [ -75.432724, 39.89346 ], [ -75.432616, 39.893356 ], [ -75.43261, 39.89335 ], [ -75.432319, 39.892962 ], [ -75.431873, 39.892306 ], [ -75.431765, 39.892143 ], [ -75.431743, 39.892109 ], [ -75.431649, 39.891928 ], [ -75.431567, 39.891736 ], [ -75.43148, 39.891444 ], [ -75.43101, 39.889461 ], [ -75.430967, 39.889223 ], [ -75.430951, 39.889111 ], [ -75.430934, 39.888509 ], [ -75.430944, 39.887587 ], [ -75.430964, 39.887291 ], [ -75.43099, 39.887091 ], [ -75.431107, 39.886589 ], [ -75.431135, 39.886407 ], [ -75.431147, 39.886238 ], [ -75.431153, 39.88606 ], [ -75.431151, 39.88599 ], [ -75.431131, 39.885785 ], [ -75.431097, 39.885518 ], [ -75.431037, 39.885239 ], [ -75.430956, 39.884972 ], [ -75.430912, 39.884868 ], [ -75.430778, 39.884538 ], [ -75.430746, 39.884468 ], [ -75.430716, 39.884414 ], [ -75.430714, 39.884409 ], [ -75.430594, 39.884219 ], [ -75.430382, 39.883914 ], [ -75.430142, 39.883587 ], [ -75.429468, 39.88267 ], [ -75.429326, 39.882483 ], [ -75.429187, 39.882284 ], [ -75.429085, 39.882112 ], [ -75.428973, 39.881898 ], [ -75.428908, 39.881741 ], [ -75.428842, 39.881488 ], [ -75.428822, 39.881391 ], [ -75.428808, 39.88129 ], [ -75.428795, 39.881191 ], [ -75.428797, 39.881104 ], [ -75.428809, 39.880848 ], [ -75.428842, 39.880637 ], [ -75.428857, 39.880541 ], [ -75.428891, 39.880433 ], [ -75.428968, 39.880213 ], [ -75.429054, 39.880037 ], [ -75.429155, 39.879867 ], [ -75.429268, 39.879701 ], [ -75.429508, 39.879391 ], [ -75.429574, 39.87932 ], [ -75.430819, 39.877831 ], [ -75.43104, 39.877509 ], [ -75.431154, 39.877319 ], [ -75.43121, 39.87722 ], [ -75.431285, 39.877072 ], [ -75.431422, 39.876759 ], [ -75.431523, 39.876425 ], [ -75.431578, 39.876134 ], [ -75.43159, 39.875917 ], [ -75.431581, 39.875648 ], [ -75.43157, 39.87552 ], [ -75.431534, 39.875251 ], [ -75.431467, 39.874956 ], [ -75.43139, 39.874697 ], [ -75.431283, 39.874429 ], [ -75.431219, 39.874295 ], [ -75.431079, 39.874037 ], [ -75.430937, 39.873829 ], [ -75.430613, 39.873439 ], [ -75.430427, 39.873242 ], [ -75.430162, 39.872971 ], [ -75.43006, 39.872867 ], [ -75.429867, 39.872656 ], [ -75.429794, 39.872566 ], [ -75.429797, 39.872509 ], [ -75.429735, 39.872408 ], [ -75.429662, 39.872312 ], [ -75.429546, 39.872149 ], [ -75.4295, 39.872073 ], [ -75.429425, 39.871952 ], [ -75.42938, 39.871891 ], [ -75.429306, 39.871857 ], [ -75.429277, 39.871804 ], [ -75.429217, 39.871703 ], [ -75.429077, 39.871414 ], [ -75.429032, 39.871306 ], [ -75.428912, 39.870943 ], [ -75.428871, 39.870819 ], [ -75.428742, 39.870417 ], [ -75.428718, 39.87034 ], [ -75.428688, 39.870238 ], [ -75.428719, 39.87016 ], [ -75.42865, 39.869938 ], [ -75.428598, 39.869766 ], [ -75.42853, 39.869707 ], [ -75.428503, 39.869569 ], [ -75.428457, 39.869363 ], [ -75.428435, 39.869214 ], [ -75.42842, 39.869102 ], [ -75.42842, 39.869046 ], [ -75.428418, 39.869007 ], [ -75.428418, 39.868922 ], [ -75.42848, 39.868961 ], [ -75.428555, 39.869009 ], [ -75.429092, 39.869321 ], [ -75.42921, 39.869389 ], [ -75.429307, 39.869445 ], [ -75.429371, 39.869472 ], [ -75.429513, 39.869554 ], [ -75.429613, 39.869617 ], [ -75.429638, 39.869632 ], [ -75.429746, 39.869687 ], [ -75.429789, 39.869712 ], [ -75.430045, 39.869848 ], [ -75.430165, 39.869896 ], [ -75.430331, 39.869955 ], [ -75.431079, 39.870222 ], [ -75.431405, 39.870334 ], [ -75.431662, 39.870419 ], [ -75.431866, 39.870487 ], [ -75.432023, 39.870526 ], [ -75.432177, 39.87055 ], [ -75.432354, 39.870567 ], [ -75.432987, 39.870591 ], [ -75.43314, 39.870596 ], [ -75.433591, 39.870608 ], [ -75.434452, 39.870622 ], [ -75.434983, 39.870636 ], [ -75.435544, 39.87065 ], [ -75.436786, 39.870685 ], [ -75.436781, 39.870908 ], [ -75.436785, 39.870958 ], [ -75.436798, 39.871007 ], [ -75.436819, 39.871044 ], [ -75.436844, 39.871074 ], [ -75.436872, 39.871106 ], [ -75.436905, 39.871134 ], [ -75.436934, 39.871154 ], [ -75.437094, 39.871246 ], [ -75.437602, 39.871528 ], [ -75.437851, 39.87167 ], [ -75.437981, 39.871753 ], [ -75.438131, 39.871874 ], [ -75.438554, 39.872242 ], [ -75.439473, 39.873098 ], [ -75.439632, 39.873247 ], [ -75.439654, 39.873347 ], [ -75.439672, 39.873443 ], [ -75.43969, 39.873551 ], [ -75.439713, 39.873653 ], [ -75.439629, 39.873738 ], [ -75.43959, 39.873794 ], [ -75.439565, 39.87384 ], [ -75.439553, 39.873879 ], [ -75.439548, 39.873927 ], [ -75.43955, 39.873968 ], [ -75.439557, 39.874023 ], [ -75.439566, 39.874081 ], [ -75.439578, 39.874111 ], [ -75.439611, 39.874149 ], [ -75.439652, 39.874179 ], [ -75.439702, 39.874192 ], [ -75.439765, 39.874192 ], [ -75.439804, 39.874186 ], [ -75.439868, 39.874175 ], [ -75.439902, 39.874168 ], [ -75.439931, 39.874153 ], [ -75.439957, 39.874129 ], [ -75.439972, 39.874103 ], [ -75.439978, 39.874049 ], [ -75.43997, 39.873962 ], [ -75.439959, 39.87389 ], [ -75.43995, 39.873847 ], [ -75.439943, 39.873829 ], [ -75.43993, 39.873799 ], [ -75.439907, 39.873775 ], [ -75.439831, 39.873721 ], [ -75.439757, 39.873677 ], [ -75.439713, 39.873653 ], [ -75.43969, 39.873551 ], [ -75.439672, 39.873443 ], [ -75.439654, 39.873347 ], [ -75.439632, 39.873246 ], [ -75.439473, 39.873098 ], [ -75.438554, 39.872242 ], [ -75.438131, 39.871874 ], [ -75.437981, 39.871753 ], [ -75.437851, 39.87167 ], [ -75.437602, 39.871528 ], [ -75.437094, 39.871246 ], [ -75.436934, 39.871154 ], [ -75.436905, 39.871134 ], [ -75.436872, 39.871106 ], [ -75.436844, 39.871074 ], [ -75.436819, 39.871044 ], [ -75.436798, 39.871007 ], [ -75.436785, 39.870958 ], [ -75.436781, 39.870908 ], [ -75.436786, 39.870685 ], [ -75.435544, 39.87065 ], [ -75.434983, 39.870636 ], [ -75.434452, 39.870622 ], [ -75.433591, 39.870608 ], [ -75.43314, 39.870596 ], [ -75.432987, 39.870591 ], [ -75.432354, 39.870567 ], [ -75.432177, 39.87055 ], [ -75.432023, 39.870526 ], [ -75.431866, 39.870487 ], [ -75.431662, 39.870419 ], [ -75.431405, 39.870334 ], [ -75.431079, 39.870222 ], [ -75.430331, 39.869955 ], [ -75.430165, 39.869896 ], [ -75.430045, 39.869848 ], [ -75.429789, 39.869712 ], [ -75.429746, 39.869687 ], [ -75.429638, 39.869632 ], [ -75.429613, 39.869617 ], [ -75.429513, 39.869554 ], [ -75.429371, 39.869472 ], [ -75.429307, 39.869445 ], [ -75.42921, 39.869389 ], [ -75.429092, 39.869321 ], [ -75.428555, 39.869009 ], [ -75.42848, 39.868961 ], [ -75.428418, 39.868922 ], [ -75.428314, 39.86799 ], [ -75.428308, 39.867928 ], [ -75.428291, 39.867764 ], [ -75.428231, 39.867197 ], [ -75.428184, 39.866739 ], [ -75.428161, 39.866519 ], [ -75.428137, 39.866298 ], [ -75.428114, 39.866091 ], [ -75.428094, 39.865907 ], [ -75.428071, 39.86577 ], [ -75.428018, 39.865457 ], [ -75.427934, 39.86486 ], [ -75.427917, 39.864738 ], [ -75.427894, 39.864577 ], [ -75.427836, 39.864165 ], [ -75.427809, 39.864014 ], [ -75.427792, 39.863929 ], [ -75.427762, 39.863743 ], [ -75.427737, 39.86358 ], [ -75.427709, 39.863404 ], [ -75.427666, 39.863126 ], [ -75.427565, 39.862365 ], [ -75.427503, 39.861914 ], [ -75.427391, 39.861162 ], [ -75.427374, 39.861048 ], [ -75.427356, 39.860927 ], [ -75.427343, 39.860838 ], [ -75.427298, 39.860524 ], [ -75.42728, 39.860399 ], [ -75.427264, 39.860282 ], [ -75.427249, 39.860155 ], [ -75.427229, 39.859986 ], [ -75.427229, 39.859981 ], [ -75.427208, 39.859799 ], [ -75.427201, 39.859731 ], [ -75.427179, 39.859491 ], [ -75.427096, 39.858655 ], [ -75.427092, 39.858605 ], [ -75.427074, 39.858388 ], [ -75.427045, 39.858024 ], [ -75.427028, 39.857686 ], [ -75.42701, 39.857508 ], [ -75.426977, 39.857164 ], [ -75.426971, 39.857113 ], [ -75.42644, 39.857133 ], [ -75.426102, 39.857146 ], [ -75.425703, 39.857173 ], [ -75.425394, 39.857195 ], [ -75.425133, 39.857213 ], [ -75.4249, 39.857229 ], [ -75.424706, 39.857243 ], [ -75.424599, 39.857202 ], [ -75.423988, 39.857229 ], [ -75.423404, 39.857255 ], [ -75.422975, 39.857275 ], [ -75.422201, 39.857329 ], [ -75.42134, 39.857389 ], [ -75.421188, 39.857397 ], [ -75.421089, 39.857409 ], [ -75.421019, 39.857441 ], [ -75.420616, 39.857475 ], [ -75.42051, 39.857482 ], [ -75.420341, 39.857503 ], [ -75.420174, 39.857535 ], [ -75.420012, 39.85758 ], [ -75.419854, 39.857633 ], [ -75.419693, 39.857703 ], [ -75.419491, 39.857811 ], [ -75.419356, 39.857904 ], [ -75.419257, 39.857984 ], [ -75.419226, 39.858008 ], [ -75.419113, 39.858115 ], [ -75.419037, 39.8582 ], [ -75.419021, 39.858219 ], [ -75.418944, 39.858328 ], [ -75.41891, 39.858383 ], [ -75.418863, 39.858473 ], [ -75.418816, 39.858582 ], [ -75.418785, 39.85868 ], [ -75.418754, 39.858823 ], [ -75.418686, 39.859167 ], [ -75.418587, 39.859671 ], [ -75.418385, 39.860797 ], [ -75.418253, 39.861461 ], [ -75.418218, 39.861562 ], [ -75.418183, 39.861635 ], [ -75.41812, 39.861737 ], [ -75.418064, 39.861816 ], [ -75.41798, 39.861942 ], [ -75.417858, 39.862114 ], [ -75.417302, 39.86295 ], [ -75.417238, 39.863043 ], [ -75.416888, 39.863544 ], [ -75.416791, 39.863689 ], [ -75.416694, 39.863818 ], [ -75.416628, 39.863897 ], [ -75.416558, 39.863977 ], [ -75.416381, 39.863836 ], [ -75.416245, 39.863727 ], [ -75.416044, 39.863566 ], [ -75.415795, 39.863388 ], [ -75.415376, 39.86311 ], [ -75.413788, 39.861976 ], [ -75.413485, 39.861742 ], [ -75.413462, 39.861683 ], [ -75.413297, 39.861564 ], [ -75.413187, 39.861481 ], [ -75.413079, 39.8614 ], [ -75.412898, 39.861269 ], [ -75.412832, 39.861253 ], [ -75.412421, 39.860934 ], [ -75.412157, 39.860732 ], [ -75.411508, 39.860214 ], [ -75.411279, 39.860032 ], [ -75.411103, 39.859886 ], [ -75.410789, 39.859626 ], [ -75.410524, 39.859417 ], [ -75.410444, 39.859351 ], [ -75.410426, 39.859306 ], [ -75.410402, 39.859284 ], [ -75.410264, 39.859178 ], [ -75.410024, 39.85901 ], [ -75.409803, 39.858847 ], [ -75.409601, 39.858697 ], [ -75.409556, 39.858686 ], [ -75.408513, 39.857869 ], [ -75.408037, 39.85749 ], [ -75.407872, 39.857381 ], [ -75.407604, 39.85723 ], [ -75.407121, 39.856992 ], [ -75.406595, 39.856747 ], [ -75.405656, 39.85635 ], [ -75.405475, 39.856276 ], [ -75.405312, 39.856204 ], [ -75.405161, 39.856121 ], [ -75.405043, 39.856043 ], [ -75.404894, 39.855931 ], [ -75.404769, 39.855815 ], [ -75.404603, 39.855675 ], [ -75.404173, 39.855278 ], [ -75.403714, 39.854856 ], [ -75.403512, 39.854656 ], [ -75.40337, 39.85451 ], [ -75.403275, 39.854416 ], [ -75.403091, 39.854212 ], [ -75.403077, 39.854196 ], [ -75.402965, 39.854062 ], [ -75.402465, 39.85349 ], [ -75.402256, 39.853245 ], [ -75.402153, 39.853107 ], [ -75.40205, 39.852942 ], [ -75.402003, 39.852855 ], [ -75.401964, 39.852765 ], [ -75.40193, 39.852655 ], [ -75.401905, 39.852573 ], [ -75.401885, 39.85245 ], [ -75.401876, 39.852184 ], [ -75.40184, 39.851555 ], [ -75.401831, 39.851397 ], [ -75.40182, 39.851264 ], [ -75.401804, 39.851149 ], [ -75.401783, 39.851048 ], [ -75.401688, 39.850577 ], [ -75.401624, 39.85031 ], [ -75.401577, 39.850111 ], [ -75.401522, 39.849911 ], [ -75.40148, 39.849781 ], [ -75.401431, 39.849644 ], [ -75.401373, 39.849517 ], [ -75.401195, 39.849232 ], [ -75.400843, 39.848734 ], [ -75.400534, 39.848296 ], [ -75.400461, 39.848203 ], [ -75.400402, 39.84813 ], [ -75.400339, 39.848061 ], [ -75.400249, 39.847978 ], [ -75.40016, 39.847905 ], [ -75.400053, 39.847826 ], [ -75.399761, 39.847636 ], [ -75.399521, 39.84748 ], [ -75.399375, 39.847383 ], [ -75.399242, 39.847295 ], [ -75.398174, 39.846591 ], [ -75.39778, 39.846343 ], [ -75.397652, 39.846264 ], [ -75.397506, 39.84618 ], [ -75.39738, 39.846125 ], [ -75.397264, 39.846084 ], [ -75.397094, 39.846041 ], [ -75.397004, 39.846022 ], [ -75.396931, 39.845997 ], [ -75.396671, 39.845918 ], [ -75.396515, 39.845863 ], [ -75.395577, 39.84551 ], [ -75.395249, 39.845391 ], [ -75.3947, 39.845169 ], [ -75.39437, 39.84502 ], [ -75.394351, 39.845009 ], [ -75.394274, 39.844967 ], [ -75.394151, 39.8449 ], [ -75.39381, 39.844705 ], [ -75.393718, 39.844654 ], [ -75.393626, 39.844594 ], [ -75.393382, 39.84446 ], [ -75.393146, 39.844325 ], [ -75.392738, 39.844089 ], [ -75.392635, 39.844026 ], [ -75.392539, 39.843964 ], [ -75.392389, 39.843857 ], [ -75.392328, 39.843819 ], [ -75.392243, 39.843754 ], [ -75.39218, 39.843702 ], [ -75.391997, 39.843517 ], [ -75.391885, 39.843401 ], [ -75.391506, 39.842959 ], [ -75.391455, 39.842901 ], [ -75.390975, 39.842344 ], [ -75.390672, 39.842009 ], [ -75.390261, 39.84155 ], [ -75.390003, 39.841246 ], [ -75.389769, 39.840982 ], [ -75.389551, 39.840737 ], [ -75.389285, 39.840429 ], [ -75.389211, 39.840348 ], [ -75.388812, 39.839894 ], [ -75.387759, 39.840453 ], [ -75.387396, 39.840638 ], [ -75.386675, 39.84101 ], [ -75.386479, 39.841114 ], [ -75.385937, 39.841376 ], [ -75.385809, 39.841438 ], [ -75.385767, 39.841462 ], [ -75.385575, 39.841567 ], [ -75.385505, 39.841609 ], [ -75.3854, 39.841618 ], [ -75.385272, 39.841671 ], [ -75.384996, 39.841808 ], [ -75.384639, 39.842 ], [ -75.384598, 39.84202 ], [ -75.384554, 39.842042 ], [ -75.384327, 39.842155 ], [ -75.383777, 39.842433 ], [ -75.383708, 39.842472 ], [ -75.383621, 39.842523 ], [ -75.383556, 39.842614 ], [ -75.383461, 39.842652 ], [ -75.383361, 39.84271 ], [ -75.383134, 39.842841 ], [ -75.382716, 39.84307 ], [ -75.382415, 39.843219 ], [ -75.381742, 39.843574 ], [ -75.381413, 39.843745 ], [ -75.381001, 39.84397 ], [ -75.380423, 39.844266 ], [ -75.379376, 39.844805 ], [ -75.378807, 39.845099 ], [ -75.378397, 39.84531 ], [ -75.377411, 39.84585 ], [ -75.376899, 39.846118 ], [ -75.376387, 39.84639 ], [ -75.375913, 39.846641 ], [ -75.375416, 39.846883 ], [ -75.374917, 39.847063 ], [ -75.373731, 39.847466 ], [ -75.373168, 39.847679 ], [ -75.372562, 39.847885 ], [ -75.372439, 39.847927 ], [ -75.371876, 39.848123 ], [ -75.371631, 39.848206 ], [ -75.371395, 39.848289 ], [ -75.371232, 39.848354 ], [ -75.370736, 39.848535 ], [ -75.370701, 39.848549 ], [ -75.370318, 39.848714 ], [ -75.369283, 39.849146 ], [ -75.368337, 39.849534 ], [ -75.367622, 39.849829 ], [ -75.366176, 39.850428 ], [ -75.365922, 39.850522 ], [ -75.365875, 39.850542 ], [ -75.365608, 39.850663 ], [ -75.363233, 39.851628 ], [ -75.36298, 39.851265 ], [ -75.362721, 39.850916 ], [ -75.362496, 39.850591 ], [ -75.362203, 39.850162 ], [ -75.361492, 39.849117 ], [ -75.360903, 39.849329 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310311", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.4052, 39.848138 ], [ -75.405069, 39.848222 ], [ -75.404755, 39.84849 ], [ -75.404584, 39.848687 ], [ -75.404344, 39.84905 ], [ -75.404174, 39.849331 ], [ -75.404091, 39.84954 ], [ -75.404057, 39.849716 ], [ -75.404057, 39.849968 ], [ -75.404071, 39.850106 ], [ -75.404159, 39.850392 ], [ -75.40426, 39.850544 ], [ -75.404605, 39.851061 ], [ -75.407879, 39.849548 ], [ -75.409846, 39.84862 ], [ -75.409945, 39.848562 ], [ -75.409516, 39.847999 ], [ -75.409179, 39.847595 ], [ -75.408745, 39.847054 ], [ -75.408588, 39.846896 ], [ -75.408478, 39.84683 ], [ -75.408391, 39.846796 ], [ -75.408278, 39.846779 ], [ -75.408127, 39.84679 ], [ -75.407975, 39.84683 ], [ -75.40772, 39.846931 ], [ -75.4052, 39.848138 ], [ -75.405069, 39.848222 ], [ -75.404755, 39.84849 ], [ -75.404584, 39.848687 ], [ -75.404344, 39.84905 ], [ -75.404174, 39.849331 ], [ -75.404091, 39.84954 ], [ -75.404057, 39.849716 ], [ -75.404057, 39.849968 ], [ -75.404071, 39.850106 ], [ -75.404159, 39.850392 ], [ -75.40426, 39.850544 ], [ -75.404605, 39.851061 ], [ -75.404243, 39.851239 ], [ -75.404113, 39.851304 ], [ -75.403982, 39.851372 ], [ -75.40384, 39.851456 ], [ -75.403727, 39.851529 ], [ -75.403607, 39.851625 ], [ -75.403514, 39.851707 ], [ -75.403401, 39.851819 ], [ -75.403224, 39.851994 ], [ -75.403121, 39.852121 ], [ -75.402997, 39.852236 ], [ -75.40288, 39.852333 ], [ -75.402731, 39.852419 ], [ -75.402577, 39.852489 ], [ -75.402448, 39.852534 ], [ -75.402293, 39.852575 ], [ -75.40193, 39.852655 ], [ -75.401905, 39.852573 ], [ -75.401885, 39.85245 ], [ -75.401876, 39.852184 ], [ -75.40184, 39.851555 ], [ -75.401831, 39.851397 ], [ -75.40182, 39.851264 ], [ -75.401804, 39.851149 ], [ -75.401783, 39.851048 ], [ -75.401688, 39.850577 ], [ -75.401624, 39.85031 ], [ -75.401577, 39.850111 ], [ -75.401522, 39.849911 ], [ -75.40148, 39.849781 ], [ -75.401431, 39.849644 ], [ -75.401373, 39.849517 ], [ -75.401195, 39.849232 ], [ -75.400843, 39.848734 ], [ -75.400534, 39.848296 ], [ -75.400461, 39.848203 ], [ -75.400402, 39.84813 ], [ -75.400339, 39.848061 ], [ -75.400249, 39.847978 ], [ -75.40016, 39.847905 ], [ -75.400053, 39.847826 ], [ -75.399761, 39.847636 ], [ -75.399521, 39.84748 ], [ -75.399375, 39.847383 ], [ -75.399242, 39.847295 ], [ -75.398174, 39.846591 ], [ -75.39778, 39.846343 ], [ -75.397652, 39.846264 ], [ -75.397506, 39.84618 ], [ -75.39738, 39.846125 ], [ -75.397264, 39.846084 ], [ -75.397094, 39.846041 ], [ -75.397004, 39.846022 ], [ -75.396931, 39.845997 ], [ -75.396671, 39.845918 ], [ -75.396515, 39.845863 ], [ -75.395577, 39.84551 ], [ -75.395249, 39.845391 ], [ -75.3947, 39.845169 ], [ -75.39437, 39.84502 ], [ -75.394351, 39.845009 ], [ -75.394274, 39.844967 ], [ -75.394151, 39.8449 ], [ -75.39381, 39.844705 ], [ -75.393718, 39.844654 ], [ -75.393626, 39.844594 ], [ -75.393382, 39.84446 ], [ -75.393146, 39.844325 ], [ -75.392738, 39.844089 ], [ -75.392635, 39.844026 ], [ -75.392539, 39.843964 ], [ -75.392389, 39.843857 ], [ -75.392328, 39.843819 ], [ -75.392243, 39.843754 ], [ -75.39218, 39.843702 ], [ -75.391997, 39.843517 ], [ -75.391885, 39.843401 ], [ -75.391506, 39.842959 ], [ -75.391455, 39.842901 ], [ -75.390975, 39.842344 ], [ -75.390672, 39.842009 ], [ -75.390261, 39.84155 ], [ -75.390003, 39.841246 ], [ -75.389769, 39.840982 ], [ -75.389551, 39.840737 ], [ -75.389285, 39.840429 ], [ -75.389211, 39.840348 ], [ -75.388812, 39.839894 ], [ -75.387759, 39.840453 ], [ -75.387396, 39.840638 ], [ -75.386675, 39.84101 ], [ -75.386479, 39.841114 ], [ -75.385937, 39.841376 ], [ -75.385809, 39.841438 ], [ -75.385767, 39.841462 ], [ -75.385575, 39.841567 ], [ -75.385505, 39.841609 ], [ -75.3854, 39.841618 ], [ -75.385272, 39.841671 ], [ -75.384996, 39.841808 ], [ -75.384639, 39.842 ], [ -75.384598, 39.84202 ], [ -75.384554, 39.842042 ], [ -75.384327, 39.842155 ], [ -75.383777, 39.842433 ], [ -75.383708, 39.842472 ], [ -75.383621, 39.842523 ], [ -75.383556, 39.842614 ], [ -75.383461, 39.842652 ], [ -75.383361, 39.84271 ], [ -75.383134, 39.842841 ], [ -75.382716, 39.84307 ], [ -75.382415, 39.843219 ], [ -75.381742, 39.843574 ], [ -75.381413, 39.843745 ], [ -75.381001, 39.84397 ], [ -75.380423, 39.844266 ], [ -75.379376, 39.844805 ], [ -75.378807, 39.845099 ], [ -75.378397, 39.84531 ], [ -75.377411, 39.84585 ], [ -75.376899, 39.846118 ], [ -75.376387, 39.84639 ], [ -75.375913, 39.846641 ], [ -75.375416, 39.846883 ], [ -75.374917, 39.847063 ], [ -75.373731, 39.847466 ], [ -75.373168, 39.847679 ], [ -75.372562, 39.847885 ], [ -75.372439, 39.847927 ], [ -75.371876, 39.848123 ], [ -75.371631, 39.848206 ], [ -75.371395, 39.848289 ], [ -75.371232, 39.848354 ], [ -75.370736, 39.848535 ], [ -75.370701, 39.848549 ], [ -75.370318, 39.848714 ], [ -75.369283, 39.849146 ], [ -75.368337, 39.849534 ], [ -75.367622, 39.849829 ], [ -75.366176, 39.850428 ], [ -75.365922, 39.850522 ], [ -75.365875, 39.850542 ], [ -75.365608, 39.850663 ], [ -75.363233, 39.851628 ], [ -75.36298, 39.851265 ], [ -75.362721, 39.850916 ], [ -75.362496, 39.850591 ], [ -75.362203, 39.850162 ], [ -75.361492, 39.849117 ], [ -75.360903, 39.849329 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310312", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310313", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.385772, 39.839953 ], [ -75.38635, 39.840613 ], [ -75.386571, 39.840883 ], [ -75.386675, 39.84101 ], [ -75.386479, 39.841114 ], [ -75.385937, 39.841376 ], [ -75.385809, 39.841438 ], [ -75.385767, 39.841462 ], [ -75.385575, 39.841567 ], [ -75.385505, 39.841609 ], [ -75.3854, 39.841618 ], [ -75.385272, 39.841671 ], [ -75.384996, 39.841808 ], [ -75.384639, 39.842 ], [ -75.384598, 39.84202 ], [ -75.384554, 39.842042 ], [ -75.384327, 39.842155 ], [ -75.383777, 39.842433 ], [ -75.383708, 39.842472 ], [ -75.383621, 39.842523 ], [ -75.383556, 39.842614 ], [ -75.383461, 39.842652 ], [ -75.383361, 39.84271 ], [ -75.383134, 39.842841 ], [ -75.382716, 39.84307 ], [ -75.382415, 39.843219 ], [ -75.381742, 39.843574 ], [ -75.381413, 39.843745 ], [ -75.381001, 39.84397 ], [ -75.380423, 39.844266 ], [ -75.379376, 39.844805 ], [ -75.378807, 39.845099 ], [ -75.378397, 39.84531 ], [ -75.377411, 39.84585 ], [ -75.376899, 39.846118 ], [ -75.376387, 39.84639 ], [ -75.375913, 39.846641 ], [ -75.375416, 39.846883 ], [ -75.374917, 39.847063 ], [ -75.373731, 39.847466 ], [ -75.373168, 39.847679 ], [ -75.372562, 39.847885 ], [ -75.372439, 39.847927 ], [ -75.371876, 39.848123 ], [ -75.371631, 39.848206 ], [ -75.371395, 39.848289 ], [ -75.371232, 39.848354 ], [ -75.370736, 39.848535 ], [ -75.370701, 39.848549 ], [ -75.370318, 39.848714 ], [ -75.369283, 39.849146 ], [ -75.368337, 39.849534 ], [ -75.367622, 39.849829 ], [ -75.366176, 39.850428 ], [ -75.365922, 39.850522 ], [ -75.365875, 39.850542 ], [ -75.365608, 39.850663 ], [ -75.363233, 39.851628 ], [ -75.36298, 39.851265 ], [ -75.362721, 39.850916 ], [ -75.362496, 39.850591 ], [ -75.362203, 39.850162 ], [ -75.361492, 39.849117 ], [ -75.360903, 39.849329 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310314", "route_id": "114" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.447235, 39.928441 ], [ -75.447167, 39.928446 ], [ -75.44701, 39.928627 ], [ -75.44623, 39.928955 ], [ -75.445959, 39.929084 ], [ -75.44568, 39.929272 ], [ -75.445591, 39.929067 ], [ -75.44549, 39.92883 ], [ -75.445386, 39.928587 ], [ -75.44532, 39.928411 ], [ -75.445302, 39.928351 ], [ -75.445259, 39.928214 ], [ -75.4452, 39.928047 ], [ -75.445136, 39.927886 ], [ -75.444905, 39.927329 ], [ -75.444798, 39.927051 ], [ -75.444738, 39.926912 ], [ -75.444677, 39.926748 ], [ -75.444571, 39.926429 ], [ -75.444423, 39.926098 ], [ -75.444358, 39.925944 ], [ -75.444154, 39.925385 ], [ -75.44405, 39.925111 ], [ -75.444006, 39.925016 ], [ -75.443967, 39.924985 ], [ -75.443823, 39.924586 ], [ -75.443522, 39.923696 ], [ -75.443378, 39.923269 ], [ -75.443294, 39.922965 ], [ -75.443231, 39.922632 ], [ -75.443174, 39.9223 ], [ -75.443157, 39.92209 ], [ -75.443146, 39.921943 ], [ -75.443129, 39.921338 ], [ -75.443126, 39.920821 ], [ -75.443153, 39.92078 ], [ -75.443152, 39.920742 ], [ -75.443149, 39.920684 ], [ -75.443136, 39.920526 ], [ -75.443126, 39.920415 ], [ -75.443097, 39.92022 ], [ -75.443035, 39.92 ], [ -75.443023, 39.919962 ], [ -75.443002, 39.919902 ], [ -75.442951, 39.919778 ], [ -75.442893, 39.919675 ], [ -75.442793, 39.919498 ], [ -75.4429, 39.919428 ], [ -75.442967, 39.919376 ], [ -75.443004, 39.919341 ], [ -75.443065, 39.919285 ], [ -75.443126, 39.919222 ], [ -75.443202, 39.919143 ], [ -75.443331, 39.919015 ], [ -75.44373, 39.918633 ], [ -75.44383, 39.918548 ], [ -75.443933, 39.918486 ], [ -75.444023, 39.918449 ], [ -75.444018, 39.918403 ], [ -75.444029, 39.918349 ], [ -75.444052, 39.918306 ], [ -75.444098, 39.918262 ], [ -75.444328, 39.918042 ], [ -75.444393, 39.91798 ], [ -75.44471, 39.917688 ], [ -75.444771, 39.917704 ], [ -75.444823, 39.917704 ], [ -75.444868, 39.917694 ], [ -75.44492, 39.91767 ], [ -75.444976, 39.917625 ], [ -75.444721, 39.917489 ], [ -75.44468, 39.917526 ], [ -75.444651, 39.917571 ], [ -75.444648, 39.917604 ], [ -75.444656, 39.917637 ], [ -75.444685, 39.91767 ], [ -75.44471, 39.917688 ], [ -75.444393, 39.91798 ], [ -75.444328, 39.918042 ], [ -75.444098, 39.918262 ], [ -75.444052, 39.918306 ], [ -75.444029, 39.918349 ], [ -75.444018, 39.918403 ], [ -75.444023, 39.918449 ], [ -75.443933, 39.918486 ], [ -75.44383, 39.918548 ], [ -75.44373, 39.918632 ], [ -75.443331, 39.919015 ], [ -75.443202, 39.919143 ], [ -75.443126, 39.919222 ], [ -75.443064, 39.919284 ], [ -75.443004, 39.919341 ], [ -75.442967, 39.919376 ], [ -75.442899, 39.919428 ], [ -75.442793, 39.919498 ], [ -75.44272, 39.919395 ], [ -75.442589, 39.919213 ], [ -75.442489, 39.919097 ], [ -75.442366, 39.918977 ], [ -75.442206, 39.918842 ], [ -75.441955, 39.918652 ], [ -75.441298, 39.918175 ], [ -75.441192, 39.918095 ], [ -75.441161, 39.918076 ], [ -75.441116, 39.918068 ], [ -75.441047, 39.918016 ], [ -75.440877, 39.917897 ], [ -75.44072, 39.917794 ], [ -75.440651, 39.91775 ], [ -75.440564, 39.917702 ], [ -75.440446, 39.917632 ], [ -75.440351, 39.917311 ], [ -75.440338, 39.917138 ], [ -75.440323, 39.916975 ], [ -75.440298, 39.916825 ], [ -75.440269, 39.916646 ], [ -75.440219, 39.916371 ], [ -75.440039, 39.915273 ], [ -75.439966, 39.914757 ], [ -75.439928, 39.91457 ], [ -75.439895, 39.914339 ], [ -75.439838, 39.91403 ], [ -75.439776, 39.91352 ], [ -75.439745, 39.913033 ], [ -75.439737, 39.912925 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.4378, 39.912841 ], [ -75.437319, 39.912993 ], [ -75.436809, 39.913153 ], [ -75.436658, 39.913196 ], [ -75.436132, 39.913368 ], [ -75.435977, 39.913415 ], [ -75.435684, 39.913492 ], [ -75.435386, 39.913556 ], [ -75.435047, 39.913616 ], [ -75.434634, 39.913677 ], [ -75.434502, 39.913692 ], [ -75.434002, 39.91376 ], [ -75.433439, 39.913844 ], [ -75.432339, 39.913986 ], [ -75.431274, 39.914131 ], [ -75.431068, 39.914159 ], [ -75.430159, 39.914282 ], [ -75.429059, 39.914434 ], [ -75.428626, 39.914504 ], [ -75.427244, 39.914727 ], [ -75.42631, 39.914886 ], [ -75.425547, 39.915003 ], [ -75.425276, 39.915046 ], [ -75.424858, 39.915112 ], [ -75.424697, 39.915133 ], [ -75.42455, 39.915154 ], [ -75.424503, 39.915162 ], [ -75.424374, 39.915178 ], [ -75.424008, 39.915227 ], [ -75.423836, 39.915248 ], [ -75.423373, 39.915312 ], [ -75.423345, 39.915316 ], [ -75.423037, 39.915358 ], [ -75.422866, 39.915383 ], [ -75.422558, 39.915423 ], [ -75.421972, 39.915496 ], [ -75.421599, 39.915493 ], [ -75.421528, 39.915493 ], [ -75.421444, 39.915492 ], [ -75.421294, 39.915479 ], [ -75.421177, 39.915467 ], [ -75.420919, 39.915425 ], [ -75.420606, 39.915357 ], [ -75.420108, 39.91523 ], [ -75.419827, 39.915163 ], [ -75.419685, 39.915133 ], [ -75.419652, 39.915127 ], [ -75.419501, 39.915106 ], [ -75.41935, 39.915096 ], [ -75.419198, 39.915099 ], [ -75.419048, 39.915113 ], [ -75.4189, 39.915139 ], [ -75.418756, 39.915178 ], [ -75.418618, 39.915227 ], [ -75.418486, 39.915287 ], [ -75.418363, 39.915354 ], [ -75.418258, 39.915425 ], [ -75.418153, 39.915488 ], [ -75.418063, 39.915568 ], [ -75.417948, 39.915688 ], [ -75.417858, 39.915829 ], [ -75.417812, 39.915927 ], [ -75.417733, 39.916098 ], [ -75.417699, 39.916196 ], [ -75.417668, 39.91627 ], [ -75.41761, 39.916404 ], [ -75.417612, 39.916494 ], [ -75.417591, 39.916553 ], [ -75.417568, 39.916612 ], [ -75.417546, 39.91668 ], [ -75.417529, 39.916753 ], [ -75.417524, 39.916803 ], [ -75.417525, 39.91684 ], [ -75.417528, 39.91687 ], [ -75.417531, 39.916896 ], [ -75.41754, 39.916927 ], [ -75.417552, 39.91695 ], [ -75.417563, 39.916974 ], [ -75.417582, 39.917 ], [ -75.417606, 39.917025 ], [ -75.417629, 39.917045 ], [ -75.417668, 39.917073 ], [ -75.417703, 39.917093 ], [ -75.417739, 39.91711 ], [ -75.417775, 39.917118 ], [ -75.417811, 39.917126 ], [ -75.417846, 39.917127 ], [ -75.417897, 39.917127 ], [ -75.417951, 39.917121 ], [ -75.417985, 39.917113 ], [ -75.418015, 39.917099 ], [ -75.418071, 39.917074 ], [ -75.418233, 39.916991 ], [ -75.418406, 39.916902 ], [ -75.418582, 39.916811 ], [ -75.418774, 39.916708 ], [ -75.419064, 39.916561 ], [ -75.419378, 39.916391 ], [ -75.419629, 39.916269 ], [ -75.419887, 39.916154 ], [ -75.420232, 39.916021 ], [ -75.420619, 39.915889 ], [ -75.420864, 39.915819 ], [ -75.421031, 39.915779 ], [ -75.421246, 39.915736 ], [ -75.421372, 39.915712 ], [ -75.421765, 39.915608 ], [ -75.42208, 39.915562 ], [ -75.422476, 39.915504 ], [ -75.422867, 39.915447 ], [ -75.423053, 39.915423 ], [ -75.423417, 39.915372 ], [ -75.424007, 39.915295 ], [ -75.424292, 39.915251 ], [ -75.424408, 39.915236 ], [ -75.424542, 39.915218 ], [ -75.424587, 39.915209 ], [ -75.424723, 39.915188 ], [ -75.42515, 39.915129 ], [ -75.42528, 39.91511 ], [ -75.426327, 39.914951 ], [ -75.426781, 39.914881 ], [ -75.427289, 39.914803 ], [ -75.428103, 39.914679 ], [ -75.428664, 39.914594 ], [ -75.429369, 39.914499 ], [ -75.430185, 39.91439 ], [ -75.431747, 39.914193 ], [ -75.432414, 39.914103 ], [ -75.433, 39.914024 ], [ -75.433451, 39.91396 ], [ -75.434017, 39.913876 ], [ -75.434944, 39.913745 ], [ -75.435192, 39.913706 ], [ -75.435451, 39.913657 ], [ -75.435556, 39.913634 ], [ -75.435822, 39.913565 ], [ -75.435872, 39.91355 ], [ -75.436202, 39.91345 ], [ -75.436748, 39.913278 ], [ -75.436911, 39.913226 ], [ -75.437854, 39.912932 ], [ -75.438267, 39.912799 ], [ -75.438841, 39.912615 ], [ -75.4397, 39.912341 ], [ -75.439695, 39.912244 ], [ -75.439723, 39.911629 ], [ -75.439737, 39.911522 ], [ -75.43975, 39.911428 ], [ -75.439774, 39.911259 ], [ -75.439802, 39.911059 ], [ -75.439827, 39.91088 ], [ -75.439861, 39.910522 ], [ -75.439899, 39.910298 ], [ -75.439943, 39.910112 ], [ -75.440041, 39.909665 ], [ -75.440101, 39.90932 ], [ -75.440147, 39.909012 ], [ -75.440161, 39.908746 ], [ -75.440129, 39.908159 ], [ -75.440068, 39.907499 ], [ -75.440022, 39.90697 ], [ -75.439995, 39.906569 ], [ -75.439996, 39.906136 ], [ -75.440013, 39.905885 ], [ -75.440052, 39.905387 ], [ -75.440066, 39.905227 ], [ -75.440086, 39.905049 ], [ -75.440099, 39.904833 ], [ -75.440091, 39.904652 ], [ -75.440062, 39.904503 ], [ -75.440022, 39.904354 ], [ -75.439968, 39.904191 ], [ -75.439899, 39.90406 ], [ -75.439768, 39.903841 ], [ -75.439647, 39.903667 ], [ -75.439459, 39.903411 ], [ -75.439078, 39.902891 ], [ -75.438439, 39.902029 ], [ -75.43825, 39.901745 ], [ -75.437851, 39.901005 ], [ -75.437573, 39.900278 ], [ -75.437345, 39.899601 ], [ -75.43708, 39.898804 ], [ -75.436566, 39.897368 ], [ -75.436331, 39.8967 ], [ -75.436196, 39.896297 ], [ -75.436115, 39.896101 ], [ -75.436073, 39.896019 ], [ -75.435994, 39.895866 ], [ -75.435892, 39.895672 ], [ -75.435698, 39.895365 ], [ -75.435627, 39.89527 ], [ -75.435495, 39.895091 ], [ -75.435293, 39.894867 ], [ -75.435195, 39.894784 ], [ -75.435131, 39.894723 ], [ -75.435064, 39.894667 ], [ -75.434783, 39.894458 ], [ -75.434669, 39.894386 ], [ -75.434648, 39.894374 ], [ -75.434445, 39.894261 ], [ -75.43421, 39.894157 ], [ -75.434198, 39.894152 ], [ -75.433917, 39.894036 ], [ -75.433268, 39.893764 ], [ -75.433017, 39.893651 ], [ -75.43284, 39.893546 ], [ -75.432724, 39.89346 ], [ -75.432616, 39.893356 ], [ -75.43261, 39.89335 ], [ -75.432319, 39.892962 ], [ -75.431873, 39.892306 ], [ -75.431765, 39.892143 ], [ -75.431743, 39.892109 ], [ -75.431649, 39.891928 ], [ -75.431567, 39.891736 ], [ -75.43148, 39.891444 ], [ -75.43101, 39.889461 ], [ -75.430967, 39.889223 ], [ -75.430951, 39.889111 ], [ -75.430934, 39.888509 ], [ -75.430944, 39.887587 ], [ -75.430964, 39.887291 ], [ -75.43099, 39.887091 ], [ -75.431107, 39.886589 ], [ -75.431135, 39.886407 ], [ -75.431147, 39.886238 ], [ -75.431153, 39.88606 ], [ -75.431151, 39.88599 ], [ -75.431131, 39.885785 ], [ -75.431097, 39.885518 ], [ -75.431037, 39.885239 ], [ -75.430956, 39.884972 ], [ -75.430912, 39.884868 ], [ -75.430778, 39.884538 ], [ -75.430746, 39.884468 ], [ -75.430716, 39.884414 ], [ -75.430714, 39.884409 ], [ -75.430594, 39.884219 ], [ -75.430382, 39.883914 ], [ -75.430142, 39.883587 ], [ -75.429468, 39.88267 ], [ -75.429326, 39.882483 ], [ -75.429187, 39.882284 ], [ -75.429085, 39.882112 ], [ -75.428973, 39.881898 ], [ -75.428908, 39.881741 ], [ -75.428842, 39.881488 ], [ -75.428822, 39.881391 ], [ -75.428808, 39.88129 ], [ -75.428795, 39.881191 ], [ -75.428797, 39.881104 ], [ -75.428809, 39.880848 ], [ -75.428842, 39.880637 ], [ -75.428857, 39.880541 ], [ -75.428891, 39.880433 ], [ -75.428968, 39.880213 ], [ -75.429054, 39.880037 ], [ -75.429155, 39.879867 ], [ -75.429268, 39.879701 ], [ -75.429508, 39.879391 ], [ -75.429574, 39.87932 ], [ -75.430819, 39.877831 ], [ -75.43104, 39.877509 ], [ -75.431154, 39.877319 ], [ -75.43121, 39.87722 ], [ -75.431285, 39.877072 ], [ -75.431422, 39.876759 ], [ -75.431523, 39.876425 ], [ -75.431578, 39.876134 ], [ -75.43159, 39.875917 ], [ -75.431581, 39.875648 ], [ -75.43157, 39.87552 ], [ -75.431534, 39.875251 ], [ -75.431467, 39.874956 ], [ -75.43139, 39.874697 ], [ -75.431283, 39.874429 ], [ -75.431219, 39.874295 ], [ -75.431079, 39.874037 ], [ -75.430937, 39.873829 ], [ -75.430613, 39.873439 ], [ -75.430427, 39.873242 ], [ -75.430162, 39.872971 ], [ -75.43006, 39.872867 ], [ -75.429867, 39.872656 ], [ -75.429794, 39.872566 ], [ -75.429797, 39.872509 ], [ -75.429735, 39.872408 ], [ -75.429662, 39.872312 ], [ -75.429546, 39.872149 ], [ -75.4295, 39.872073 ], [ -75.429425, 39.871952 ], [ -75.42938, 39.871891 ], [ -75.429306, 39.871857 ], [ -75.429277, 39.871804 ], [ -75.429217, 39.871703 ], [ -75.429077, 39.871414 ], [ -75.429032, 39.871306 ], [ -75.428912, 39.870943 ], [ -75.428871, 39.870819 ], [ -75.428742, 39.870417 ], [ -75.428718, 39.87034 ], [ -75.428688, 39.870238 ], [ -75.428719, 39.87016 ], [ -75.42865, 39.869938 ], [ -75.428598, 39.869766 ], [ -75.42853, 39.869707 ], [ -75.428503, 39.869569 ], [ -75.428457, 39.869363 ], [ -75.428435, 39.869214 ], [ -75.42842, 39.869102 ], [ -75.42842, 39.869046 ], [ -75.428418, 39.869007 ], [ -75.428418, 39.868922 ], [ -75.42848, 39.868961 ], [ -75.428555, 39.869009 ], [ -75.429092, 39.869321 ], [ -75.42921, 39.869389 ], [ -75.429307, 39.869445 ], [ -75.429371, 39.869472 ], [ -75.429513, 39.869554 ], [ -75.429613, 39.869617 ], [ -75.429638, 39.869632 ], [ -75.429746, 39.869687 ], [ -75.429789, 39.869712 ], [ -75.430045, 39.869848 ], [ -75.430165, 39.869896 ], [ -75.430331, 39.869955 ], [ -75.431079, 39.870222 ], [ -75.431405, 39.870334 ], [ -75.431662, 39.870419 ], [ -75.431866, 39.870487 ], [ -75.432023, 39.870526 ], [ -75.432177, 39.87055 ], [ -75.432354, 39.870567 ], [ -75.432987, 39.870591 ], [ -75.43314, 39.870596 ], [ -75.433591, 39.870608 ], [ -75.434452, 39.870622 ], [ -75.434983, 39.870636 ], [ -75.435544, 39.87065 ], [ -75.436786, 39.870685 ], [ -75.436781, 39.870908 ], [ -75.436785, 39.870958 ], [ -75.436798, 39.871007 ], [ -75.436819, 39.871044 ], [ -75.436844, 39.871074 ], [ -75.436872, 39.871106 ], [ -75.436905, 39.871134 ], [ -75.436934, 39.871154 ], [ -75.437094, 39.871246 ], [ -75.437602, 39.871528 ], [ -75.437851, 39.87167 ], [ -75.437981, 39.871753 ], [ -75.438131, 39.871874 ], [ -75.438554, 39.872242 ], [ -75.439473, 39.873098 ], [ -75.439632, 39.873247 ], [ -75.439654, 39.873347 ], [ -75.439672, 39.873443 ], [ -75.43969, 39.873551 ], [ -75.439713, 39.873653 ], [ -75.439629, 39.873738 ], [ -75.43959, 39.873794 ], [ -75.439565, 39.87384 ], [ -75.439553, 39.873879 ], [ -75.439548, 39.873927 ], [ -75.43955, 39.873968 ], [ -75.439557, 39.874023 ], [ -75.439566, 39.874081 ], [ -75.439578, 39.874111 ], [ -75.439611, 39.874149 ], [ -75.439652, 39.874179 ], [ -75.439702, 39.874192 ], [ -75.439765, 39.874192 ], [ -75.439804, 39.874186 ], [ -75.439868, 39.874175 ], [ -75.439902, 39.874168 ], [ -75.439931, 39.874153 ], [ -75.439957, 39.874129 ], [ -75.439972, 39.874103 ], [ -75.439978, 39.874049 ], [ -75.43997, 39.873962 ], [ -75.439959, 39.87389 ], [ -75.43995, 39.873847 ], [ -75.439943, 39.873829 ], [ -75.43993, 39.873799 ], [ -75.439907, 39.873775 ], [ -75.439831, 39.873721 ], [ -75.439757, 39.873677 ], [ -75.439713, 39.873653 ], [ -75.43969, 39.873551 ], [ -75.439672, 39.873443 ], [ -75.439654, 39.873347 ], [ -75.439632, 39.873246 ], [ -75.439473, 39.873098 ], [ -75.438554, 39.872242 ], [ -75.438131, 39.871874 ], [ -75.437981, 39.871753 ], [ -75.437851, 39.87167 ], [ -75.437602, 39.871528 ], [ -75.437094, 39.871246 ], [ -75.436934, 39.871154 ], [ -75.436905, 39.871134 ], [ -75.436872, 39.871106 ], [ -75.436844, 39.871074 ], [ -75.436819, 39.871044 ], [ -75.436798, 39.871007 ], [ -75.436785, 39.870958 ], [ -75.436781, 39.870908 ], [ -75.436786, 39.870685 ], [ -75.435544, 39.87065 ], [ -75.434983, 39.870636 ], [ -75.434452, 39.870622 ], [ -75.433591, 39.870608 ], [ -75.43314, 39.870596 ], [ -75.432987, 39.870591 ], [ -75.432354, 39.870567 ], [ -75.432177, 39.87055 ], [ -75.432023, 39.870526 ], [ -75.431866, 39.870487 ], [ -75.431662, 39.870419 ], [ -75.431405, 39.870334 ], [ -75.431079, 39.870222 ], [ -75.430331, 39.869955 ], [ -75.430165, 39.869896 ], [ -75.430045, 39.869848 ], [ -75.429789, 39.869712 ], [ -75.429746, 39.869687 ], [ -75.429638, 39.869632 ], [ -75.429613, 39.869617 ], [ -75.429513, 39.869554 ], [ -75.429371, 39.869472 ], [ -75.429307, 39.869445 ], [ -75.42921, 39.869389 ], [ -75.429092, 39.869321 ], [ -75.428555, 39.869009 ], [ -75.42848, 39.868961 ], [ -75.428418, 39.868922 ], [ -75.428314, 39.86799 ], [ -75.428308, 39.867928 ], [ -75.428291, 39.867764 ], [ -75.428231, 39.867197 ], [ -75.428184, 39.866739 ], [ -75.428161, 39.866519 ], [ -75.428137, 39.866298 ], [ -75.428114, 39.866091 ], [ -75.428094, 39.865907 ], [ -75.428071, 39.86577 ], [ -75.428018, 39.865457 ], [ -75.427934, 39.86486 ], [ -75.427917, 39.864738 ], [ -75.427894, 39.864577 ], [ -75.427836, 39.864165 ], [ -75.427809, 39.864014 ], [ -75.427792, 39.863929 ], [ -75.427762, 39.863743 ], [ -75.427737, 39.86358 ], [ -75.427709, 39.863404 ], [ -75.427666, 39.863126 ], [ -75.427565, 39.862365 ], [ -75.427503, 39.861914 ], [ -75.427391, 39.861162 ], [ -75.427374, 39.861048 ], [ -75.427356, 39.860927 ], [ -75.427343, 39.860838 ], [ -75.427298, 39.860524 ], [ -75.42728, 39.860399 ], [ -75.427264, 39.860282 ], [ -75.427249, 39.860155 ], [ -75.427229, 39.859986 ], [ -75.427229, 39.859981 ], [ -75.427208, 39.859799 ], [ -75.427201, 39.859731 ], [ -75.427179, 39.859491 ], [ -75.427096, 39.858655 ], [ -75.427092, 39.858605 ], [ -75.427074, 39.858388 ], [ -75.427045, 39.858024 ], [ -75.427028, 39.857686 ], [ -75.42701, 39.857508 ], [ -75.426977, 39.857164 ], [ -75.426971, 39.857113 ], [ -75.42644, 39.857133 ], [ -75.426102, 39.857146 ], [ -75.425703, 39.857173 ], [ -75.425394, 39.857195 ], [ -75.425133, 39.857213 ], [ -75.4249, 39.857229 ], [ -75.424706, 39.857243 ], [ -75.424599, 39.857202 ], [ -75.423988, 39.857229 ], [ -75.423404, 39.857255 ], [ -75.422975, 39.857275 ], [ -75.422201, 39.857329 ], [ -75.42134, 39.857389 ], [ -75.421188, 39.857397 ], [ -75.421089, 39.857409 ], [ -75.421019, 39.857441 ], [ -75.420616, 39.857475 ], [ -75.42051, 39.857482 ], [ -75.420341, 39.857503 ], [ -75.420174, 39.857535 ], [ -75.420012, 39.85758 ], [ -75.419854, 39.857633 ], [ -75.419693, 39.857703 ], [ -75.419491, 39.857811 ], [ -75.419356, 39.857904 ], [ -75.419257, 39.857984 ], [ -75.419226, 39.858008 ], [ -75.419113, 39.858115 ], [ -75.419037, 39.8582 ], [ -75.419021, 39.858219 ], [ -75.418944, 39.858328 ], [ -75.41891, 39.858383 ], [ -75.418863, 39.858473 ], [ -75.418816, 39.858582 ], [ -75.418785, 39.85868 ], [ -75.418754, 39.858823 ], [ -75.418686, 39.859167 ], [ -75.418587, 39.859671 ], [ -75.418385, 39.860797 ], [ -75.418253, 39.861461 ], [ -75.418218, 39.861562 ], [ -75.418183, 39.861635 ], [ -75.41812, 39.861737 ], [ -75.418064, 39.861816 ], [ -75.41798, 39.861942 ], [ -75.417858, 39.862114 ], [ -75.417302, 39.86295 ], [ -75.417238, 39.863043 ], [ -75.416888, 39.863544 ], [ -75.416791, 39.863689 ], [ -75.416694, 39.863818 ], [ -75.416628, 39.863897 ], [ -75.416558, 39.863977 ], [ -75.416381, 39.863836 ], [ -75.416245, 39.863727 ], [ -75.416044, 39.863566 ], [ -75.415795, 39.863388 ], [ -75.415376, 39.86311 ], [ -75.413788, 39.861976 ], [ -75.413485, 39.861742 ], [ -75.413462, 39.861683 ], [ -75.413297, 39.861564 ], [ -75.413187, 39.861481 ], [ -75.413079, 39.8614 ], [ -75.412898, 39.861269 ], [ -75.412832, 39.861253 ], [ -75.412421, 39.860934 ], [ -75.412157, 39.860732 ], [ -75.411508, 39.860214 ], [ -75.411279, 39.860032 ], [ -75.411103, 39.859886 ], [ -75.410789, 39.859626 ], [ -75.410524, 39.859417 ], [ -75.410444, 39.859351 ], [ -75.410426, 39.859306 ], [ -75.410402, 39.859284 ], [ -75.410264, 39.859178 ], [ -75.410024, 39.85901 ], [ -75.409803, 39.858847 ], [ -75.409601, 39.858697 ], [ -75.409556, 39.858686 ], [ -75.408513, 39.857869 ], [ -75.408037, 39.85749 ], [ -75.407872, 39.857381 ], [ -75.407604, 39.85723 ], [ -75.407121, 39.856992 ], [ -75.406595, 39.856747 ], [ -75.405656, 39.85635 ], [ -75.405475, 39.856276 ], [ -75.405312, 39.856204 ], [ -75.405161, 39.856121 ], [ -75.405043, 39.856043 ], [ -75.404894, 39.855931 ], [ -75.404769, 39.855815 ], [ -75.404603, 39.855675 ], [ -75.404173, 39.855278 ], [ -75.403714, 39.854856 ], [ -75.403512, 39.854656 ], [ -75.40337, 39.85451 ], [ -75.403275, 39.854416 ], [ -75.403091, 39.854212 ], [ -75.403077, 39.854196 ], [ -75.402965, 39.854062 ], [ -75.402465, 39.85349 ], [ -75.402256, 39.853245 ], [ -75.402153, 39.853107 ], [ -75.40205, 39.852942 ], [ -75.402003, 39.852855 ], [ -75.401964, 39.852765 ], [ -75.40193, 39.852655 ], [ -75.401905, 39.852573 ], [ -75.401885, 39.85245 ], [ -75.401876, 39.852184 ], [ -75.40184, 39.851555 ], [ -75.401831, 39.851397 ], [ -75.40182, 39.851264 ], [ -75.401804, 39.851149 ], [ -75.401783, 39.851048 ], [ -75.401688, 39.850577 ], [ -75.401624, 39.85031 ], [ -75.401577, 39.850111 ], [ -75.401522, 39.849911 ], [ -75.40148, 39.849781 ], [ -75.401431, 39.849644 ], [ -75.401373, 39.849517 ], [ -75.401195, 39.849232 ], [ -75.400843, 39.848734 ], [ -75.400534, 39.848296 ], [ -75.400461, 39.848203 ], [ -75.400402, 39.84813 ], [ -75.400339, 39.848061 ], [ -75.400249, 39.847978 ], [ -75.40016, 39.847905 ], [ -75.400053, 39.847826 ], [ -75.399761, 39.847636 ], [ -75.399521, 39.84748 ], [ -75.399375, 39.847383 ], [ -75.399242, 39.847295 ], [ -75.398174, 39.846591 ], [ -75.39778, 39.846343 ], [ -75.397652, 39.846264 ], [ -75.397506, 39.84618 ], [ -75.39738, 39.846125 ], [ -75.397264, 39.846084 ], [ -75.397094, 39.846041 ], [ -75.397004, 39.846022 ], [ -75.396931, 39.845997 ], [ -75.396671, 39.845918 ], [ -75.396515, 39.845863 ], [ -75.395577, 39.84551 ], [ -75.395249, 39.845391 ], [ -75.3947, 39.845169 ], [ -75.39437, 39.84502 ], [ -75.394351, 39.845009 ], [ -75.394274, 39.844967 ], [ -75.394151, 39.8449 ], [ -75.39381, 39.844705 ], [ -75.393718, 39.844654 ], [ -75.393626, 39.844594 ], [ -75.393382, 39.84446 ], [ -75.393146, 39.844325 ], [ -75.392738, 39.844089 ], [ -75.392635, 39.844026 ], [ -75.392539, 39.843964 ], [ -75.392389, 39.843857 ], [ -75.392328, 39.843819 ], [ -75.392243, 39.843754 ], [ -75.39218, 39.843702 ], [ -75.391997, 39.843517 ], [ -75.391885, 39.843401 ], [ -75.391506, 39.842959 ], [ -75.391455, 39.842901 ], [ -75.390975, 39.842344 ], [ -75.390672, 39.842009 ], [ -75.390261, 39.84155 ], [ -75.390003, 39.841246 ], [ -75.389769, 39.840982 ], [ -75.389551, 39.840737 ], [ -75.389285, 39.840429 ], [ -75.389211, 39.840348 ], [ -75.388812, 39.839894 ], [ -75.387759, 39.840453 ], [ -75.387396, 39.840638 ], [ -75.386675, 39.84101 ], [ -75.386479, 39.841114 ], [ -75.385937, 39.841376 ], [ -75.385809, 39.841438 ], [ -75.385767, 39.841462 ], [ -75.385575, 39.841567 ], [ -75.385505, 39.841609 ], [ -75.3854, 39.841618 ], [ -75.385272, 39.841671 ], [ -75.384996, 39.841808 ], [ -75.384639, 39.842 ], [ -75.384598, 39.84202 ], [ -75.384554, 39.842042 ], [ -75.384327, 39.842155 ], [ -75.383777, 39.842433 ], [ -75.383708, 39.842472 ], [ -75.383621, 39.842523 ], [ -75.383556, 39.842614 ], [ -75.383461, 39.842652 ], [ -75.383361, 39.84271 ], [ -75.383134, 39.842841 ], [ -75.382716, 39.84307 ], [ -75.382415, 39.843219 ], [ -75.381742, 39.843574 ], [ -75.381413, 39.843745 ], [ -75.381001, 39.84397 ], [ -75.380423, 39.844266 ], [ -75.379376, 39.844805 ], [ -75.378807, 39.845099 ], [ -75.378397, 39.84531 ], [ -75.377411, 39.84585 ], [ -75.376899, 39.846118 ], [ -75.376387, 39.84639 ], [ -75.375913, 39.846641 ], [ -75.375416, 39.846883 ], [ -75.374917, 39.847063 ], [ -75.373731, 39.847466 ], [ -75.373168, 39.847679 ], [ -75.372562, 39.847885 ], [ -75.372439, 39.847927 ], [ -75.371876, 39.848123 ], [ -75.371631, 39.848206 ], [ -75.371395, 39.848289 ], [ -75.371232, 39.848354 ], [ -75.370736, 39.848535 ], [ -75.370701, 39.848549 ], [ -75.370318, 39.848714 ], [ -75.369283, 39.849146 ], [ -75.368337, 39.849534 ], [ -75.367622, 39.849829 ], [ -75.366176, 39.850428 ], [ -75.365922, 39.850522 ], [ -75.365875, 39.850542 ], [ -75.365608, 39.850663 ], [ -75.363233, 39.851628 ], [ -75.36298, 39.851265 ], [ -75.362721, 39.850916 ], [ -75.362496, 39.850591 ], [ -75.362203, 39.850162 ], [ -75.361492, 39.849117 ], [ -75.360903, 39.849329 ], [ -75.360894, 39.849468 ], [ -75.360642, 39.84955 ], [ -75.360329, 39.849681 ], [ -75.359794, 39.84993 ], [ -75.360281, 39.850508 ], [ -75.360541, 39.850808 ], [ -75.360761, 39.851401 ], [ -75.360757, 39.851477 ], [ -75.36073, 39.851768 ], [ -75.360703, 39.852074 ], [ -75.360688, 39.852365 ], [ -75.360689, 39.852526 ], [ -75.360689, 39.85268 ], [ -75.360368, 39.852807 ], [ -75.360064, 39.852927 ], [ -75.360028, 39.852941 ], [ -75.359421, 39.853173 ], [ -75.358656, 39.853459 ], [ -75.357201, 39.854001 ], [ -75.356974, 39.854085 ], [ -75.355764, 39.854535 ], [ -75.354343, 39.855053 ], [ -75.354113, 39.855142 ], [ -75.354022, 39.855177 ], [ -75.353584, 39.855346 ], [ -75.35233, 39.85581 ], [ -75.352072, 39.855905 ], [ -75.351789, 39.85601 ], [ -75.351627, 39.856066 ], [ -75.350934, 39.856331 ], [ -75.35025, 39.856581 ], [ -75.349179, 39.856981 ], [ -75.348726, 39.85715 ], [ -75.348238, 39.857338 ], [ -75.347741, 39.857521 ], [ -75.346612, 39.857935 ], [ -75.34604, 39.858118 ], [ -75.345636, 39.85827 ], [ -75.344841, 39.858597 ], [ -75.344623, 39.858686 ], [ -75.344485, 39.858736 ], [ -75.344367, 39.858778 ], [ -75.343796, 39.858984 ], [ -75.343558, 39.859069 ], [ -75.343395, 39.859129 ], [ -75.342726, 39.859373 ], [ -75.342517, 39.859449 ], [ -75.342622, 39.859616 ], [ -75.343138, 39.860427 ], [ -75.343229, 39.860571 ], [ -75.343323, 39.860726 ], [ -75.343417, 39.860879 ], [ -75.343749, 39.861399 ], [ -75.343953, 39.861713 ], [ -75.344019, 39.861813 ], [ -75.344097, 39.861951 ], [ -75.344173, 39.862083 ], [ -75.344256, 39.86221 ], [ -75.344298, 39.862294 ], [ -75.344363, 39.862396 ], [ -75.344411, 39.862456 ], [ -75.344442, 39.862494 ], [ -75.344516, 39.86257 ], [ -75.344631, 39.862673 ], [ -75.344929, 39.862942 ], [ -75.345204, 39.863198 ], [ -75.345336, 39.863321 ], [ -75.345439, 39.863419 ], [ -75.345953, 39.863906 ], [ -75.34606, 39.864008 ], [ -75.346172, 39.864135 ], [ -75.345756, 39.864367 ], [ -75.345078, 39.864706 ], [ -75.344128, 39.865198 ], [ -75.343695, 39.865421 ], [ -75.343239, 39.86562 ], [ -75.343152, 39.865621 ], [ -75.343118, 39.865634 ], [ -75.343048, 39.865665 ], [ -75.342806, 39.865793 ], [ -75.342458, 39.865964 ], [ -75.342267, 39.866064 ], [ -75.342233, 39.866115 ], [ -75.341884, 39.866287 ], [ -75.3416, 39.866428 ], [ -75.341487, 39.866484 ], [ -75.34079, 39.866837 ], [ -75.340539, 39.86696 ], [ -75.340282, 39.867087 ], [ -75.339533, 39.867446 ], [ -75.339142, 39.867633 ], [ -75.338937, 39.867745 ], [ -75.338887, 39.867768 ], [ -75.33872, 39.867849 ], [ -75.338486, 39.867965 ], [ -75.338036, 39.868186 ], [ -75.337797, 39.868303 ], [ -75.337595, 39.8684 ], [ -75.337418, 39.868483 ], [ -75.336961, 39.868699 ], [ -75.336638, 39.868851 ], [ -75.335576, 39.869344 ], [ -75.33481, 39.869715 ], [ -75.334705, 39.869759 ], [ -75.334502, 39.869845 ], [ -75.333987, 39.870066 ], [ -75.33393, 39.870087 ], [ -75.332785, 39.870628 ], [ -75.332545, 39.870738 ], [ -75.332385, 39.870812 ], [ -75.332095, 39.870953 ], [ -75.331978, 39.871 ], [ -75.331843, 39.871064 ], [ -75.331722, 39.871119 ], [ -75.331423, 39.871256 ], [ -75.331232, 39.871346 ], [ -75.33105, 39.871423 ], [ -75.330909, 39.871489 ], [ -75.330742, 39.871564 ], [ -75.330651, 39.871602 ], [ -75.330554, 39.871648 ], [ -75.330294, 39.871773 ], [ -75.330101, 39.871855 ], [ -75.329679, 39.872055 ], [ -75.329566, 39.872114 ], [ -75.329281, 39.872263 ], [ -75.329042, 39.872403 ], [ -75.328851, 39.872503 ], [ -75.328762, 39.872552 ], [ -75.328663, 39.872604 ], [ -75.328587, 39.872641 ], [ -75.328174, 39.872854 ], [ -75.328106, 39.872886 ], [ -75.328059, 39.872907 ], [ -75.328005, 39.872932 ], [ -75.327715, 39.87306 ], [ -75.327594, 39.873114 ], [ -75.327504, 39.873156 ], [ -75.327281, 39.873274 ], [ -75.326981, 39.873433 ], [ -75.326754, 39.87355 ], [ -75.326478, 39.87369 ], [ -75.326302, 39.873782 ], [ -75.326171, 39.87386 ], [ -75.325893, 39.874011 ], [ -75.325651, 39.874146 ], [ -75.32556, 39.874194 ], [ -75.325502, 39.874222 ], [ -75.325449, 39.87425 ], [ -75.324798, 39.87461 ], [ -75.324455, 39.874787 ], [ -75.324104, 39.874957 ], [ -75.323578, 39.875223 ], [ -75.323512, 39.875259 ], [ -75.323186, 39.875436 ], [ -75.322934, 39.87557 ], [ -75.322692, 39.875695 ], [ -75.322608, 39.875733 ], [ -75.322515, 39.875779 ], [ -75.322265, 39.875912 ], [ -75.32213, 39.875981 ], [ -75.322001, 39.876047 ], [ -75.32169, 39.876187 ], [ -75.321475, 39.876285 ], [ -75.321103, 39.876493 ], [ -75.320659, 39.876721 ], [ -75.320467, 39.876819 ], [ -75.320222, 39.87694 ], [ -75.319964, 39.877039 ], [ -75.319346, 39.877235 ], [ -75.319111, 39.877306 ], [ -75.318621, 39.877463 ], [ -75.318122, 39.877623 ], [ -75.317756, 39.877738 ], [ -75.317227, 39.877903 ], [ -75.3166, 39.878105 ], [ -75.315246, 39.878544 ], [ -75.31361, 39.879053 ], [ -75.313003, 39.879241 ], [ -75.312653, 39.879346 ], [ -75.312057, 39.879543 ], [ -75.311674, 39.879669 ], [ -75.311021, 39.879892 ], [ -75.310806, 39.879995 ], [ -75.310571, 39.88012 ], [ -75.310116, 39.880379 ], [ -75.309789, 39.880548 ], [ -75.308883, 39.881031 ], [ -75.308512, 39.88124 ], [ -75.308331, 39.881338 ], [ -75.308222, 39.881395 ], [ -75.307783, 39.881611 ], [ -75.307683, 39.881661 ], [ -75.307601, 39.881702 ], [ -75.307556, 39.881723 ], [ -75.307327, 39.881841 ], [ -75.307314, 39.881847 ], [ -75.307113, 39.881952 ], [ -75.306922, 39.88206 ], [ -75.306824, 39.882114 ], [ -75.306218, 39.882398 ], [ -75.30603, 39.882501 ], [ -75.30548, 39.882799 ], [ -75.305259, 39.882945 ], [ -75.305167, 39.883001 ], [ -75.30506, 39.883064 ], [ -75.304599, 39.883368 ], [ -75.304559, 39.883398 ], [ -75.304522, 39.883426 ], [ -75.304466, 39.883471 ], [ -75.304366, 39.883556 ], [ -75.303973, 39.883978 ], [ -75.303766, 39.884194 ], [ -75.303609, 39.884357 ], [ -75.303328, 39.884674 ], [ -75.303309, 39.884695 ], [ -75.303131, 39.884892 ], [ -75.30277, 39.885292 ], [ -75.302269, 39.885849 ], [ -75.302132, 39.886012 ], [ -75.301788, 39.886396 ], [ -75.301718, 39.886478 ], [ -75.301667, 39.886534 ], [ -75.301542, 39.886666 ], [ -75.30135, 39.886882 ], [ -75.300989, 39.88729 ], [ -75.30063, 39.887698 ], [ -75.300489, 39.887867 ], [ -75.300294, 39.88809 ], [ -75.300035, 39.888377 ], [ -75.299939, 39.888483 ], [ -75.299657, 39.888794 ], [ -75.299579, 39.888884 ], [ -75.299539, 39.888935 ], [ -75.299371, 39.889112 ], [ -75.299223, 39.889278 ], [ -75.298913, 39.889629 ], [ -75.298133, 39.890499 ], [ -75.298009, 39.89064 ], [ -75.297587, 39.891114 ], [ -75.297434, 39.891287 ], [ -75.297136, 39.891608 ], [ -75.296921, 39.891867 ], [ -75.296776, 39.89203 ], [ -75.296448, 39.892401 ], [ -75.295993, 39.892918 ], [ -75.29579, 39.893136 ], [ -75.295583, 39.89337 ], [ -75.295485, 39.893473 ], [ -75.295166, 39.893834 ], [ -75.294899, 39.894129 ], [ -75.294771, 39.894267 ], [ -75.294722, 39.894342 ], [ -75.294683, 39.894396 ], [ -75.294452, 39.894633 ], [ -75.294238, 39.894878 ], [ -75.294105, 39.89503 ], [ -75.293953, 39.895196 ], [ -75.29387, 39.895289 ], [ -75.293191, 39.89606 ], [ -75.292154, 39.897228 ], [ -75.291828, 39.897594 ], [ -75.291561, 39.897895 ], [ -75.29108, 39.898427 ], [ -75.29091, 39.898612 ], [ -75.29082, 39.89871 ], [ -75.290227, 39.899392 ], [ -75.29014, 39.899505 ], [ -75.290059, 39.89959 ], [ -75.289768, 39.899887 ], [ -75.289695, 39.89995 ], [ -75.289636, 39.899992 ], [ -75.289547, 39.900045 ], [ -75.289215, 39.900231 ], [ -75.288214, 39.900774 ], [ -75.28809, 39.900844 ], [ -75.287654, 39.901088 ], [ -75.28718, 39.901345 ], [ -75.287036, 39.901424 ], [ -75.286498, 39.901716 ], [ -75.28629, 39.901824 ], [ -75.286065, 39.901942 ], [ -75.285658, 39.902162 ], [ -75.284821, 39.902615 ], [ -75.284022, 39.903047 ], [ -75.283624, 39.903265 ], [ -75.283222, 39.903485 ], [ -75.282733, 39.903752 ], [ -75.281966, 39.904168 ], [ -75.280762, 39.904827 ], [ -75.28027, 39.905097 ], [ -75.280165, 39.905149 ], [ -75.280067, 39.905198 ], [ -75.27972, 39.905367 ], [ -75.279607, 39.905429 ], [ -75.27944, 39.905519 ], [ -75.279283, 39.905606 ], [ -75.278405, 39.906085 ], [ -75.278246, 39.906172 ], [ -75.277932, 39.906344 ], [ -75.27765, 39.906503 ], [ -75.277464, 39.906606 ], [ -75.277227, 39.906729 ], [ -75.277018, 39.906845 ], [ -75.27685, 39.906939 ], [ -75.276667, 39.907039 ], [ -75.276592, 39.907078 ], [ -75.275947, 39.907444 ], [ -75.275891, 39.907478 ], [ -75.275852, 39.907505 ], [ -75.275728, 39.907574 ], [ -75.275554, 39.907669 ], [ -75.275431, 39.907739 ], [ -75.27532, 39.907801 ], [ -75.27517, 39.907882 ], [ -75.275048, 39.907947 ], [ -75.274726, 39.908122 ], [ -75.27431, 39.908356 ], [ -75.274188, 39.908425 ], [ -75.274054, 39.908498 ], [ -75.273902, 39.908583 ], [ -75.273866, 39.908604 ], [ -75.27374, 39.908665 ], [ -75.273628, 39.908716 ], [ -75.273384, 39.908847 ], [ -75.273263, 39.908859 ], [ -75.272547, 39.909244 ], [ -75.272048, 39.909488 ], [ -75.27198, 39.909527 ], [ -75.271939, 39.909554 ], [ -75.271892, 39.909643 ], [ -75.271806, 39.90969 ], [ -75.271419, 39.909895 ], [ -75.271333, 39.909942 ], [ -75.270924, 39.910163 ], [ -75.270727, 39.91027 ], [ -75.270642, 39.910315 ], [ -75.270552, 39.910374 ], [ -75.270399, 39.91047 ], [ -75.270082, 39.910689 ], [ -75.269821, 39.910883 ], [ -75.269442, 39.911165 ], [ -75.268695, 39.911719 ], [ -75.268175, 39.912101 ], [ -75.268091, 39.912158 ], [ -75.267814, 39.912369 ], [ -75.267579, 39.912559 ], [ -75.266911, 39.913039 ], [ -75.266309, 39.913506 ], [ -75.266083, 39.913675 ], [ -75.265926, 39.913793 ], [ -75.265853, 39.913844 ], [ -75.265797, 39.913883 ], [ -75.265666, 39.913979 ], [ -75.265515, 39.914088 ], [ -75.265365, 39.914203 ], [ -75.265258, 39.9143 ], [ -75.265185, 39.914411 ], [ -75.265152, 39.914482 ], [ -75.265103, 39.914618 ], [ -75.265065, 39.91475 ], [ -75.265024, 39.914918 ], [ -75.264889, 39.915527 ], [ -75.264843, 39.91574 ], [ -75.264675, 39.916506 ], [ -75.264589, 39.916849 ], [ -75.264583, 39.916876 ], [ -75.264546, 39.917091 ], [ -75.264547, 39.917127 ], [ -75.264481, 39.917234 ], [ -75.264437, 39.917291 ], [ -75.264403, 39.917331 ], [ -75.264356, 39.917398 ], [ -75.264231, 39.917562 ], [ -75.264044, 39.917664 ], [ -75.263813, 39.917797 ], [ -75.263658, 39.917887 ], [ -75.2634, 39.918039 ], [ -75.263283, 39.918102 ], [ -75.263234, 39.91813 ], [ -75.263114, 39.918194 ], [ -75.262906, 39.918304 ], [ -75.262727, 39.918397 ], [ -75.262614, 39.918455 ], [ -75.262289, 39.918624 ], [ -75.262385, 39.918701 ], [ -75.262474, 39.918803 ], [ -75.262542, 39.918907 ], [ -75.262826, 39.919344 ], [ -75.263535, 39.919049 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310322", "route_id": "117" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.405039, 39.84819 ], [ -75.40475, 39.848439 ], [ -75.404639, 39.84856 ], [ -75.404459, 39.848789 ], [ -75.404419, 39.848869 ], [ -75.40427, 39.84909 ], [ -75.404069, 39.84945 ], [ -75.404, 39.849759 ], [ -75.404009, 39.85007 ], [ -75.404059, 39.85028 ], [ -75.404149, 39.85043 ], [ -75.404199, 39.85052 ], [ -75.40462, 39.851049 ], [ -75.40535, 39.85071 ], [ -75.406179, 39.850319 ], [ -75.406719, 39.85007 ], [ -75.406899, 39.84998 ], [ -75.40742, 39.84974 ], [ -75.40805, 39.84944 ], [ -75.408779, 39.8491 ], [ -75.4093, 39.848859 ], [ -75.40992, 39.84857 ], [ -75.409279, 39.84777 ], [ -75.40921, 39.84768 ], [ -75.409149, 39.847599 ], [ -75.40904, 39.84746 ], [ -75.408829, 39.847179 ], [ -75.40866, 39.846959 ], [ -75.408429, 39.846799 ], [ -75.408329, 39.84677 ], [ -75.408149, 39.84676 ], [ -75.407919, 39.846819 ], [ -75.40773, 39.84692 ], [ -75.40751, 39.84701 ], [ -75.407199, 39.847159 ], [ -75.40687, 39.84732 ], [ -75.406629, 39.847429 ], [ -75.40598, 39.84774 ], [ -75.405509, 39.847959 ], [ -75.405229, 39.848079 ], [ -75.405039, 39.84819 ], [ -75.40475, 39.848439 ], [ -75.404639, 39.84856 ], [ -75.404459, 39.848789 ], [ -75.404419, 39.848869 ], [ -75.40427, 39.84909 ], [ -75.404069, 39.84945 ], [ -75.404, 39.849759 ], [ -75.404009, 39.85007 ], [ -75.404059, 39.85028 ], [ -75.404149, 39.85043 ], [ -75.404199, 39.85052 ], [ -75.40462, 39.851049 ], [ -75.404229, 39.85126 ], [ -75.404019, 39.851369 ], [ -75.40385, 39.85145 ], [ -75.403739, 39.85152 ], [ -75.403609, 39.85163 ], [ -75.403419, 39.85178 ], [ -75.40328, 39.851939 ], [ -75.40309, 39.85216 ], [ -75.402809, 39.852369 ], [ -75.402519, 39.85251 ], [ -75.40224, 39.852579 ], [ -75.40197, 39.852649 ], [ -75.40193, 39.85244 ], [ -75.40187, 39.85161 ], [ -75.40183, 39.85127 ], [ -75.40179, 39.851019 ], [ -75.401709, 39.850649 ], [ -75.401669, 39.85046 ], [ -75.40157, 39.850049 ], [ -75.40151, 39.849869 ], [ -75.401449, 39.84972 ], [ -75.40139, 39.849599 ], [ -75.40129, 39.849429 ], [ -75.401219, 39.849319 ], [ -75.40102, 39.84901 ], [ -75.400779, 39.848689 ], [ -75.40067, 39.848529 ], [ -75.400499, 39.84829 ], [ -75.400409, 39.84818 ], [ -75.40031, 39.848069 ], [ -75.40017, 39.84795 ], [ -75.39993, 39.847779 ], [ -75.399649, 39.84759 ], [ -75.399369, 39.84741 ], [ -75.39841, 39.846779 ], [ -75.39815, 39.846619 ], [ -75.39796, 39.84649 ], [ -75.39769, 39.84631 ], [ -75.39761, 39.846259 ], [ -75.397529, 39.84622 ], [ -75.39746, 39.846189 ], [ -75.39738, 39.846159 ], [ -75.39729, 39.84613 ], [ -75.397219, 39.84611 ], [ -75.397089, 39.846079 ], [ -75.396909, 39.84604 ], [ -75.396719, 39.845999 ], [ -75.39644, 39.84594 ], [ -75.39621, 39.845889 ], [ -75.39594, 39.845829 ], [ -75.395549, 39.845739 ], [ -75.395329, 39.84569 ], [ -75.39396, 39.845359 ], [ -75.39387, 39.84534 ], [ -75.39377, 39.84532 ], [ -75.39368, 39.84531 ], [ -75.393609, 39.84531 ], [ -75.393629, 39.845259 ], [ -75.39373, 39.845189 ], [ -75.393849, 39.84513 ], [ -75.394059, 39.845079 ], [ -75.39432, 39.845019 ], [ -75.394509, 39.84498 ], [ -75.394739, 39.844919 ], [ -75.39536, 39.84477 ], [ -75.395869, 39.844649 ], [ -75.396219, 39.844569 ], [ -75.39661, 39.844549 ], [ -75.396899, 39.844549 ], [ -75.3972, 39.844559 ], [ -75.39741, 39.844539 ], [ -75.397719, 39.844469 ], [ -75.39792, 39.844379 ], [ -75.398339, 39.84405 ], [ -75.398519, 39.843929 ], [ -75.39881, 39.84379 ], [ -75.399009, 39.84372 ], [ -75.399279, 39.84362 ], [ -75.399459, 39.843549 ], [ -75.399779, 39.843459 ], [ -75.400239, 39.84336 ], [ -75.400629, 39.843289 ], [ -75.4021, 39.843019 ], [ -75.4022, 39.843009 ], [ -75.402849, 39.84279 ], [ -75.402809, 39.842729 ], [ -75.40251, 39.84235 ], [ -75.40197, 39.841659 ], [ -75.40179, 39.84143 ], [ -75.401579, 39.84118 ], [ -75.40156, 39.84116 ], [ -75.40139, 39.84099 ], [ -75.401139, 39.840779 ], [ -75.400689, 39.84048 ], [ -75.400499, 39.84035 ], [ -75.40022, 39.840139 ], [ -75.40007, 39.84003 ], [ -75.39998, 39.839959 ], [ -75.39935, 39.83946 ], [ -75.399109, 39.83927 ], [ -75.398519, 39.838779 ], [ -75.398209, 39.838529 ], [ -75.397989, 39.838349 ], [ -75.39782, 39.83821 ], [ -75.39761, 39.83803 ], [ -75.39759, 39.83802 ], [ -75.39701, 39.837549 ], [ -75.39666, 39.837249 ], [ -75.39634, 39.836989 ], [ -75.396129, 39.836829 ], [ -75.395959, 39.83669 ], [ -75.39566, 39.836439 ], [ -75.39539, 39.83621 ], [ -75.395049, 39.835929 ], [ -75.394799, 39.836089 ], [ -75.39467, 39.836169 ], [ -75.394439, 39.836349 ], [ -75.39437, 39.8364 ], [ -75.394259, 39.836469 ], [ -75.394029, 39.836649 ], [ -75.39382, 39.836809 ], [ -75.393439, 39.837089 ], [ -75.392889, 39.83748 ], [ -75.39233, 39.837879 ], [ -75.39194, 39.838159 ], [ -75.391419, 39.838499 ], [ -75.391269, 39.83859 ], [ -75.39093, 39.838799 ], [ -75.390099, 39.839239 ], [ -75.38987, 39.83936 ], [ -75.38924, 39.83967 ], [ -75.38878, 39.8399 ], [ -75.387719, 39.84045 ], [ -75.38666, 39.84101 ], [ -75.386279, 39.841219 ], [ -75.38622, 39.84125 ], [ -75.38591, 39.841409 ], [ -75.385559, 39.841589 ], [ -75.385029, 39.841859 ], [ -75.384669, 39.842049 ], [ -75.384569, 39.842109 ], [ -75.38433, 39.84224 ], [ -75.38393, 39.84245 ], [ -75.38348, 39.842679 ], [ -75.3831, 39.84288 ], [ -75.38283, 39.843029 ], [ -75.38244, 39.84324 ], [ -75.381999, 39.843469 ], [ -75.381879, 39.84353 ], [ -75.38141, 39.84378 ], [ -75.38126, 39.84386 ], [ -75.38113, 39.843929 ], [ -75.380979, 39.844009 ], [ -75.380659, 39.84417 ], [ -75.380439, 39.844279 ], [ -75.38014, 39.84444 ], [ -75.379629, 39.84471 ], [ -75.37938, 39.844839 ], [ -75.379219, 39.844919 ], [ -75.378869, 39.845109 ], [ -75.37866, 39.84523 ], [ -75.378409, 39.845349 ], [ -75.37803, 39.845559 ], [ -75.37744, 39.845879 ], [ -75.3769, 39.846159 ], [ -75.37641, 39.84641 ], [ -75.375939, 39.84666 ], [ -75.375889, 39.84668 ], [ -75.37559, 39.84683 ], [ -75.37538, 39.84692 ], [ -75.37455, 39.84722 ], [ -75.37375, 39.847509 ], [ -75.37259, 39.84791 ], [ -75.372419, 39.847959 ], [ -75.37212, 39.848059 ], [ -75.37199, 39.8481 ], [ -75.371879, 39.848139 ], [ -75.37182, 39.848159 ], [ -75.37141, 39.8483 ], [ -75.371199, 39.84838 ], [ -75.371079, 39.848429 ], [ -75.37105, 39.848439 ], [ -75.37086, 39.848509 ], [ -75.370749, 39.84855 ], [ -75.37056, 39.84863 ], [ -75.37046, 39.84867 ], [ -75.370319, 39.84873 ], [ -75.3693, 39.84917 ], [ -75.369099, 39.849249 ], [ -75.367649, 39.849849 ], [ -75.36663, 39.85027 ], [ -75.36619, 39.85045 ], [ -75.365809, 39.850599 ], [ -75.36533, 39.8508 ], [ -75.36511, 39.85089 ], [ -75.36488, 39.85098 ], [ -75.363239, 39.851659 ], [ -75.36277, 39.851859 ], [ -75.3624, 39.852009 ], [ -75.361929, 39.852199 ], [ -75.361719, 39.852289 ], [ -75.36161, 39.85233 ], [ -75.361209, 39.852479 ], [ -75.36102, 39.852559 ], [ -75.3608, 39.852649 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85236 ], [ -75.3607, 39.852209 ], [ -75.3607, 39.85208 ], [ -75.36071, 39.851759 ], [ -75.36074, 39.851459 ], [ -75.360769, 39.851109 ], [ -75.3607, 39.851029 ], [ -75.360509, 39.85079 ], [ -75.360279, 39.850479 ], [ -75.36011, 39.85026 ], [ -75.359789, 39.8499 ], [ -75.359639, 39.849759 ], [ -75.359599, 39.84972 ], [ -75.359559, 39.84965 ], [ -75.35954, 39.84963 ], [ -75.35944, 39.849499 ], [ -75.359549, 39.849399 ], [ -75.359609, 39.849329 ], [ -75.35971, 39.84926 ], [ -75.359819, 39.849219 ], [ -75.35994, 39.84917 ], [ -75.359999, 39.84917 ], [ -75.360049, 39.84919 ], [ -75.36011, 39.849219 ], [ -75.360179, 39.849239 ], [ -75.36029, 39.849219 ], [ -75.36061, 39.8491 ], [ -75.36075, 39.849069 ], [ -75.360399, 39.848609 ], [ -75.36038, 39.84858 ], [ -75.36003, 39.84812 ], [ -75.359779, 39.84782 ], [ -75.35976, 39.847789 ], [ -75.35958, 39.84758 ], [ -75.359509, 39.8475 ], [ -75.359279, 39.847609 ], [ -75.359139, 39.84768 ], [ -75.359049, 39.847719 ], [ -75.3589, 39.847789 ], [ -75.35882, 39.84783 ], [ -75.358329, 39.848059 ], [ -75.35885, 39.848769 ], [ -75.35909, 39.849069 ], [ -75.359149, 39.849149 ], [ -75.359229, 39.849249 ], [ -75.359339, 39.84938 ], [ -75.35944, 39.849499 ], [ -75.35954, 39.84963 ], [ -75.359559, 39.84965 ], [ -75.359599, 39.84972 ], [ -75.359639, 39.849759 ], [ -75.359789, 39.8499 ], [ -75.36011, 39.85026 ], [ -75.360279, 39.850479 ], [ -75.360509, 39.85079 ], [ -75.3607, 39.851029 ], [ -75.360769, 39.851109 ], [ -75.36074, 39.851459 ], [ -75.36071, 39.851759 ], [ -75.3607, 39.85208 ], [ -75.3607, 39.852209 ], [ -75.360689, 39.85236 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85297 ], [ -75.360689, 39.85313 ], [ -75.3607, 39.8536 ], [ -75.360719, 39.85398 ], [ -75.360759, 39.854369 ], [ -75.360819, 39.85505 ], [ -75.360859, 39.855359 ], [ -75.360899, 39.855619 ], [ -75.360949, 39.85595 ], [ -75.360999, 39.856179 ], [ -75.361039, 39.856339 ], [ -75.36111, 39.856609 ], [ -75.36116, 39.85684 ], [ -75.36119, 39.856959 ], [ -75.361219, 39.857069 ], [ -75.36124, 39.85713 ], [ -75.36128, 39.85728 ], [ -75.361389, 39.857689 ], [ -75.361439, 39.85783 ], [ -75.361489, 39.857959 ], [ -75.361659, 39.85836 ], [ -75.36168, 39.858409 ], [ -75.361989, 39.85907 ], [ -75.362259, 39.859589 ], [ -75.36295, 39.859319 ], [ -75.363199, 39.859239 ], [ -75.363329, 39.85918 ], [ -75.363909, 39.85891 ], [ -75.36416, 39.858839 ], [ -75.36452, 39.85865 ], [ -75.36592, 39.858049 ], [ -75.36637, 39.857869 ], [ -75.36642, 39.85785 ], [ -75.367379, 39.857439 ], [ -75.36764, 39.8573 ], [ -75.367919, 39.857319 ], [ -75.368229, 39.857339 ], [ -75.368499, 39.857349 ], [ -75.368639, 39.85736 ], [ -75.36893, 39.85738 ], [ -75.369279, 39.857419 ], [ -75.370399, 39.857499 ], [ -75.370569, 39.85754 ], [ -75.37088, 39.857609 ], [ -75.371709, 39.85776 ], [ -75.371659, 39.85792 ], [ -75.371529, 39.85826 ], [ -75.37149, 39.85838 ], [ -75.37141, 39.85857 ], [ -75.371389, 39.858939 ], [ -75.371299, 39.859039 ], [ -75.37123, 39.859129 ], [ -75.371169, 39.859219 ], [ -75.371069, 39.859399 ], [ -75.371019, 39.859499 ], [ -75.37082, 39.85989 ], [ -75.37043, 39.860659 ], [ -75.370049, 39.861389 ], [ -75.36974, 39.86195 ], [ -75.369579, 39.862199 ], [ -75.369459, 39.862379 ], [ -75.36935, 39.86253 ], [ -75.369229, 39.86269 ], [ -75.369129, 39.862829 ], [ -75.36902, 39.862999 ], [ -75.36894, 39.86313 ], [ -75.3688, 39.863459 ], [ -75.368699, 39.86368 ], [ -75.368599, 39.863879 ], [ -75.368699, 39.863899 ], [ -75.368919, 39.86394 ], [ -75.369139, 39.863989 ], [ -75.36926, 39.864009 ], [ -75.36935, 39.86403 ], [ -75.369769, 39.86411 ], [ -75.369909, 39.86414 ], [ -75.370039, 39.864169 ], [ -75.37028, 39.86423 ], [ -75.370399, 39.864269 ], [ -75.37052, 39.86431 ], [ -75.370849, 39.864429 ], [ -75.3711, 39.864529 ], [ -75.37196, 39.864869 ], [ -75.37204, 39.864899 ], [ -75.3729, 39.865249 ], [ -75.373679, 39.86559 ], [ -75.37406, 39.86576 ], [ -75.374439, 39.86592 ], [ -75.375, 39.866169 ], [ -75.37509, 39.86621 ], [ -75.375889, 39.86658 ], [ -75.376059, 39.86666 ], [ -75.376109, 39.866679 ], [ -75.376349, 39.866789 ], [ -75.376789, 39.86699 ], [ -75.377289, 39.8672 ], [ -75.37731, 39.86721 ], [ -75.377679, 39.86736 ], [ -75.37839, 39.867669 ], [ -75.378589, 39.867749 ], [ -75.378679, 39.867789 ], [ -75.37906, 39.867939 ], [ -75.379139, 39.867969 ], [ -75.37942, 39.86809 ], [ -75.379579, 39.86816 ], [ -75.38033, 39.868479 ], [ -75.380529, 39.868559 ], [ -75.380829, 39.868679 ], [ -75.38099, 39.868749 ], [ -75.38131, 39.86888 ], [ -75.38154, 39.86897 ], [ -75.381639, 39.869009 ], [ -75.38199, 39.869139 ], [ -75.38207, 39.86918 ], [ -75.3822, 39.869229 ], [ -75.38225, 39.869099 ], [ -75.38225, 39.86906 ], [ -75.382239, 39.868479 ], [ -75.382239, 39.86844 ], [ -75.382239, 39.86837 ], [ -75.382239, 39.868239 ], [ -75.38222, 39.86774 ], [ -75.38221, 39.86717 ], [ -75.382139, 39.86584 ], [ -75.382089, 39.86431 ], [ -75.38207, 39.863979 ], [ -75.38204, 39.86339 ], [ -75.38204, 39.863089 ], [ -75.38202, 39.86276 ], [ -75.382009, 39.862269 ], [ -75.381999, 39.862089 ], [ -75.38199, 39.86199 ], [ -75.38198, 39.861549 ], [ -75.381959, 39.86063 ], [ -75.38194, 39.859319 ], [ -75.38193, 39.858849 ], [ -75.381999, 39.85839 ], [ -75.38204, 39.857969 ], [ -75.38211, 39.85754 ], [ -75.38217, 39.857059 ], [ -75.38221, 39.85673 ], [ -75.382229, 39.85657 ], [ -75.38235, 39.85559 ], [ -75.38252, 39.85566 ], [ -75.38265, 39.855709 ], [ -75.383439, 39.855969 ], [ -75.383849, 39.8561 ], [ -75.384, 39.856149 ], [ -75.384219, 39.85622 ], [ -75.3846, 39.856339 ], [ -75.38487, 39.856429 ], [ -75.38514, 39.856519 ], [ -75.385299, 39.85658 ], [ -75.385529, 39.85667 ], [ -75.385709, 39.85675 ], [ -75.38595, 39.85686 ], [ -75.38603, 39.856899 ], [ -75.386139, 39.85695 ], [ -75.386279, 39.85702 ], [ -75.386409, 39.857079 ], [ -75.38693, 39.857319 ], [ -75.387599, 39.85763 ], [ -75.38816, 39.857889 ], [ -75.388629, 39.85811 ], [ -75.38919, 39.85837 ], [ -75.38928, 39.858409 ], [ -75.389739, 39.85862 ], [ -75.38991, 39.858699 ], [ -75.390159, 39.85882 ], [ -75.390379, 39.85892 ], [ -75.390459, 39.858959 ], [ -75.39095, 39.85919 ], [ -75.391679, 39.85953 ], [ -75.39189, 39.85963 ], [ -75.39197, 39.859669 ], [ -75.392269, 39.85982 ], [ -75.39256, 39.85998 ], [ -75.39278, 39.860139 ], [ -75.392979, 39.860299 ], [ -75.393119, 39.86043 ], [ -75.393219, 39.86054 ], [ -75.393349, 39.8607 ], [ -75.393429, 39.86081 ], [ -75.393479, 39.86089 ], [ -75.3936, 39.861109 ], [ -75.39377, 39.861469 ], [ -75.39401, 39.86204 ], [ -75.394069, 39.862179 ], [ -75.394119, 39.862299 ], [ -75.39423, 39.862549 ], [ -75.39427, 39.862649 ], [ -75.394329, 39.86279 ], [ -75.39441, 39.86298 ], [ -75.39446, 39.863259 ], [ -75.394469, 39.86348 ], [ -75.39446, 39.86369 ], [ -75.39445, 39.863739 ], [ -75.394439, 39.863789 ], [ -75.394419, 39.86386 ], [ -75.394389, 39.86395 ], [ -75.39436, 39.86403 ], [ -75.39432, 39.86412 ], [ -75.394199, 39.86438 ], [ -75.394119, 39.864549 ], [ -75.39405, 39.864699 ], [ -75.393799, 39.865259 ], [ -75.393759, 39.865349 ], [ -75.39369, 39.865519 ], [ -75.39364, 39.86565 ], [ -75.393529, 39.86595 ], [ -75.39347, 39.86611 ], [ -75.393399, 39.86629 ], [ -75.39332, 39.86648 ], [ -75.39324, 39.86666 ], [ -75.39315, 39.86684 ], [ -75.39292, 39.86729 ], [ -75.39275, 39.86762 ], [ -75.39239, 39.868329 ], [ -75.39233, 39.86844 ], [ -75.39228, 39.86852 ], [ -75.39224, 39.868579 ], [ -75.3922, 39.86863 ], [ -75.39215, 39.868689 ], [ -75.39192, 39.868929 ], [ -75.391539, 39.869299 ], [ -75.39134, 39.869489 ], [ -75.3912, 39.86962 ], [ -75.39108, 39.86973 ], [ -75.39094, 39.869849 ], [ -75.3908, 39.86996 ], [ -75.39, 39.87053 ], [ -75.38967, 39.87077 ], [ -75.389569, 39.870849 ], [ -75.38946, 39.87095 ], [ -75.38932, 39.871099 ], [ -75.389209, 39.87123 ], [ -75.38909, 39.871379 ], [ -75.388979, 39.87152 ], [ -75.38888, 39.871659 ], [ -75.38877, 39.871819 ], [ -75.38868, 39.87196 ], [ -75.38861, 39.872089 ], [ -75.388479, 39.87233 ], [ -75.38843, 39.872439 ], [ -75.388349, 39.872539 ], [ -75.38819, 39.87269 ], [ -75.38851, 39.872829 ], [ -75.388799, 39.87295 ], [ -75.389079, 39.873059 ], [ -75.38928, 39.87314 ], [ -75.389389, 39.873179 ], [ -75.389609, 39.873259 ], [ -75.389799, 39.873329 ], [ -75.3899, 39.873369 ], [ -75.390019, 39.873419 ], [ -75.39022, 39.8735 ], [ -75.390369, 39.87356 ], [ -75.39053, 39.873619 ], [ -75.39057, 39.873639 ], [ -75.390919, 39.87378 ], [ -75.391009, 39.873819 ], [ -75.391179, 39.873899 ], [ -75.39129, 39.87396 ], [ -75.39135, 39.873989 ], [ -75.391369, 39.873999 ], [ -75.391449, 39.87405 ], [ -75.391639, 39.874149 ], [ -75.391689, 39.874179 ], [ -75.39188, 39.87429 ], [ -75.392089, 39.87441 ], [ -75.39212, 39.874429 ], [ -75.392169, 39.87446 ], [ -75.39233, 39.87457 ], [ -75.39255, 39.874719 ], [ -75.392619, 39.874779 ], [ -75.39275, 39.874879 ], [ -75.392849, 39.874959 ], [ -75.393159, 39.87522 ], [ -75.393669, 39.87564 ], [ -75.39395, 39.875869 ], [ -75.39441, 39.876249 ], [ -75.395049, 39.8768 ], [ -75.395139, 39.876869 ], [ -75.395699, 39.877309 ], [ -75.395519, 39.87746 ], [ -75.395099, 39.877739 ], [ -75.39531, 39.87791 ], [ -75.395409, 39.878 ], [ -75.39557, 39.878139 ], [ -75.395639, 39.878219 ], [ -75.395689, 39.87828 ], [ -75.39581, 39.87843 ], [ -75.395919, 39.878569 ], [ -75.3953, 39.878919 ], [ -75.39544, 39.87906 ], [ -75.395589, 39.879209 ], [ -75.39571, 39.87933 ], [ -75.396279, 39.879009 ], [ -75.396399, 39.87916 ], [ -75.396549, 39.87934 ], [ -75.39665, 39.87945 ], [ -75.39671, 39.87952 ], [ -75.39678, 39.8796 ], [ -75.39764, 39.87918 ], [ -75.39769, 39.87924 ], [ -75.397749, 39.87932 ], [ -75.39782, 39.87942 ], [ -75.39792, 39.879569 ], [ -75.398079, 39.87981 ], [ -75.398259, 39.880099 ], [ -75.39842, 39.880359 ], [ -75.39932, 39.881789 ], [ -75.399379, 39.881889 ], [ -75.39944, 39.881979 ], [ -75.39993, 39.88278 ], [ -75.40058, 39.88383 ], [ -75.40092, 39.88438 ], [ -75.40151, 39.88535 ], [ -75.40183, 39.885929 ], [ -75.401989, 39.886219 ], [ -75.4021, 39.88645 ], [ -75.402219, 39.8867 ], [ -75.4025, 39.887289 ], [ -75.40273, 39.88782 ], [ -75.40313, 39.88872 ], [ -75.40319, 39.88887 ], [ -75.40327, 39.88908 ], [ -75.403339, 39.889289 ], [ -75.40395, 39.891089 ], [ -75.40502, 39.894219 ], [ -75.405129, 39.89454 ], [ -75.40526, 39.8949 ], [ -75.40534, 39.895109 ], [ -75.405419, 39.895299 ], [ -75.405499, 39.895479 ], [ -75.40562, 39.89572 ], [ -75.405759, 39.89597 ], [ -75.405859, 39.89615 ], [ -75.405939, 39.89628 ], [ -75.406029, 39.89642 ], [ -75.40614, 39.896569 ], [ -75.40637, 39.89687 ], [ -75.406569, 39.897119 ], [ -75.40679, 39.89736 ], [ -75.406989, 39.897579 ], [ -75.407169, 39.897759 ], [ -75.40732, 39.89789 ], [ -75.407479, 39.89804 ], [ -75.40764, 39.898179 ], [ -75.407799, 39.89831 ], [ -75.40823, 39.89867 ], [ -75.41028, 39.90041 ], [ -75.41231, 39.90211 ], [ -75.412609, 39.90237 ], [ -75.412889, 39.902619 ], [ -75.413099, 39.90281 ], [ -75.413289, 39.902979 ], [ -75.41353, 39.903209 ], [ -75.413729, 39.903409 ], [ -75.4139, 39.903589 ], [ -75.414099, 39.90381 ], [ -75.414279, 39.904 ], [ -75.41447, 39.904209 ], [ -75.414809, 39.90456 ], [ -75.41506, 39.90483 ], [ -75.41519, 39.90497 ], [ -75.41528, 39.90507 ], [ -75.415389, 39.90519 ], [ -75.415569, 39.90537 ], [ -75.41596, 39.90579 ], [ -75.41547, 39.905949 ], [ -75.41457, 39.90625 ], [ -75.41429, 39.90635 ], [ -75.413649, 39.90659 ], [ -75.413139, 39.906829 ], [ -75.4129, 39.90696 ], [ -75.412709, 39.90708 ], [ -75.412509, 39.907209 ], [ -75.41237, 39.90733 ], [ -75.4121, 39.90759 ], [ -75.411839, 39.90787 ], [ -75.411659, 39.907819 ], [ -75.4115, 39.907829 ], [ -75.411359, 39.90787 ], [ -75.41132, 39.907929 ], [ -75.411299, 39.908009 ], [ -75.41132, 39.908109 ], [ -75.411439, 39.90824 ], [ -75.411209, 39.90842 ], [ -75.41102, 39.908529 ], [ -75.410769, 39.908729 ], [ -75.410629, 39.908899 ], [ -75.410589, 39.90896 ], [ -75.410169, 39.90959 ], [ -75.41003, 39.90976 ], [ -75.40967, 39.91004 ], [ -75.41055, 39.911859 ], [ -75.410759, 39.912299 ], [ -75.410949, 39.91262 ], [ -75.411179, 39.912959 ], [ -75.411249, 39.91309 ], [ -75.411269, 39.913139 ], [ -75.411299, 39.91328 ], [ -75.411259, 39.91344 ], [ -75.411179, 39.91355 ], [ -75.41106, 39.91361 ], [ -75.410859, 39.913669 ], [ -75.41065, 39.91381 ], [ -75.410259, 39.9141 ], [ -75.41015, 39.91427 ], [ -75.41007, 39.91444 ], [ -75.41006, 39.91451 ], [ -75.410039, 39.91462 ], [ -75.410079, 39.914839 ], [ -75.410179, 39.915029 ], [ -75.41039, 39.915299 ], [ -75.41064, 39.915469 ], [ -75.41087, 39.915559 ], [ -75.41114, 39.915639 ], [ -75.411269, 39.915649 ], [ -75.41138, 39.915639 ], [ -75.411809, 39.91552 ], [ -75.41196, 39.915479 ], [ -75.41227, 39.915389 ], [ -75.412509, 39.91533 ], [ -75.412689, 39.915289 ], [ -75.412749, 39.915279 ], [ -75.41304, 39.915219 ], [ -75.415089, 39.915039 ], [ -75.41555, 39.91488 ], [ -75.415529, 39.91523 ], [ -75.41552, 39.91551 ], [ -75.415489, 39.91605 ], [ -75.415489, 39.916099 ], [ -75.4155, 39.916449 ], [ -75.41573, 39.91642 ], [ -75.416019, 39.916379 ], [ -75.416659, 39.916289 ], [ -75.41776, 39.91614 ], [ -75.418279, 39.91607 ], [ -75.4188, 39.915999 ], [ -75.419399, 39.915919 ], [ -75.41996, 39.915839 ], [ -75.421839, 39.9156 ], [ -75.422329, 39.9155 ], [ -75.422869, 39.91543 ], [ -75.422959, 39.91542 ], [ -75.42315, 39.915389 ], [ -75.423449, 39.91536 ], [ -75.423639, 39.91533 ], [ -75.42397, 39.915279 ], [ -75.42455, 39.915199 ], [ -75.424839, 39.91515 ], [ -75.425109, 39.915109 ], [ -75.42532, 39.91508 ], [ -75.425569, 39.915039 ], [ -75.42569, 39.915019 ], [ -75.425889, 39.91499 ], [ -75.42632, 39.914929 ], [ -75.426869, 39.914849 ], [ -75.42726, 39.91479 ], [ -75.427319, 39.91478 ], [ -75.42815, 39.91464 ], [ -75.428679, 39.91455 ], [ -75.428809, 39.91454 ], [ -75.429029, 39.914499 ], [ -75.429209, 39.914479 ], [ -75.429269, 39.914469 ], [ -75.43014, 39.91435 ], [ -75.430889, 39.91426 ], [ -75.43149, 39.91417 ], [ -75.43175, 39.914139 ], [ -75.432549, 39.914029 ], [ -75.432899, 39.91399 ], [ -75.433219, 39.913949 ], [ -75.433439, 39.91392 ], [ -75.433489, 39.91391 ], [ -75.433669, 39.91389 ], [ -75.433709, 39.91388 ], [ -75.43374, 39.91388 ], [ -75.43396, 39.913839 ], [ -75.43449, 39.913769 ], [ -75.434699, 39.91374 ], [ -75.434929, 39.9137 ], [ -75.43527, 39.91364 ], [ -75.435369, 39.91362 ], [ -75.435549, 39.913579 ], [ -75.43585, 39.913499 ], [ -75.436089, 39.91343 ], [ -75.43613, 39.913419 ], [ -75.43622, 39.913389 ], [ -75.436359, 39.91334 ], [ -75.436499, 39.91329 ], [ -75.436599, 39.91325 ], [ -75.43738, 39.913029 ], [ -75.437719, 39.91292 ], [ -75.43783, 39.912879 ], [ -75.437949, 39.912839 ], [ -75.438169, 39.912769 ], [ -75.43824, 39.912749 ], [ -75.438389, 39.912699 ], [ -75.43864, 39.91262 ], [ -75.43882, 39.912569 ], [ -75.439079, 39.912489 ], [ -75.439289, 39.912419 ], [ -75.439709, 39.91229 ], [ -75.439709, 39.912499 ], [ -75.43972, 39.912679 ], [ -75.43973, 39.91289 ], [ -75.439739, 39.913049 ], [ -75.439749, 39.913229 ], [ -75.43976, 39.91347 ], [ -75.439789, 39.91373 ], [ -75.43981, 39.913869 ], [ -75.439839, 39.91406 ], [ -75.43995, 39.914749 ], [ -75.43999, 39.915009 ], [ -75.440019, 39.915219 ], [ -75.440069, 39.91551 ], [ -75.44009, 39.91562 ], [ -75.44026, 39.91667 ], [ -75.440289, 39.916829 ], [ -75.44031, 39.91697 ], [ -75.440319, 39.917079 ], [ -75.440319, 39.917179 ], [ -75.44031, 39.917249 ], [ -75.44035, 39.9174 ], [ -75.440379, 39.91749 ], [ -75.440429, 39.91758 ], [ -75.44053, 39.9177 ], [ -75.44081, 39.91788 ], [ -75.440999, 39.918009 ], [ -75.441369, 39.918269 ], [ -75.44178, 39.91858 ], [ -75.441849, 39.918629 ], [ -75.441909, 39.91868 ], [ -75.44215, 39.91887 ], [ -75.44228, 39.918979 ], [ -75.44241, 39.91911 ], [ -75.442489, 39.9192 ], [ -75.44259, 39.91932 ], [ -75.44268, 39.919439 ], [ -75.44277, 39.91957 ], [ -75.44301, 39.919359 ], [ -75.44313, 39.919239 ], [ -75.443379, 39.918999 ], [ -75.443829, 39.91856 ], [ -75.444059, 39.9183 ], [ -75.444779, 39.917609 ], [ -75.444059, 39.9183 ], [ -75.443829, 39.91856 ], [ -75.443379, 39.918999 ], [ -75.44313, 39.919239 ], [ -75.44301, 39.919359 ], [ -75.44277, 39.91957 ], [ -75.44283, 39.91967 ], [ -75.442889, 39.919779 ], [ -75.442939, 39.919889 ], [ -75.44297, 39.919969 ], [ -75.442989, 39.920049 ], [ -75.44304, 39.92022 ], [ -75.443079, 39.920399 ], [ -75.44309, 39.920509 ], [ -75.443109, 39.92083 ], [ -75.443109, 39.92101 ], [ -75.443109, 39.921479 ], [ -75.44313, 39.921839 ], [ -75.44314, 39.922039 ], [ -75.443159, 39.922229 ], [ -75.44318, 39.922389 ], [ -75.443199, 39.92253 ], [ -75.44323, 39.92271 ], [ -75.44328, 39.922949 ], [ -75.44331, 39.92308 ], [ -75.443349, 39.923219 ], [ -75.443379, 39.923309 ], [ -75.44369, 39.924199 ], [ -75.443979, 39.925019 ], [ -75.4443, 39.925899 ], [ -75.44435, 39.92604 ], [ -75.44445, 39.926289 ], [ -75.44457, 39.92658 ], [ -75.44476, 39.92704 ], [ -75.44486, 39.9273 ], [ -75.444999, 39.92765 ], [ -75.44512, 39.92796 ], [ -75.445269, 39.928329 ], [ -75.44538, 39.928619 ], [ -75.44558, 39.92912 ], [ -75.445639, 39.929259 ], [ -75.44616, 39.92902 ], [ -75.446639, 39.92882 ], [ -75.44693, 39.928689 ], [ -75.44701, 39.92867 ], [ -75.447169, 39.92868 ], [ -75.447299, 39.92867 ], [ -75.44737, 39.928629 ], [ -75.447399, 39.92856 ], [ -75.44738, 39.9285 ], [ -75.447309, 39.92846 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310323", "route_id": "117" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.395589, 39.879209 ], [ -75.39571, 39.87933 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.39581, 39.87843 ], [ -75.395689, 39.87828 ], [ -75.395639, 39.878219 ], [ -75.39557, 39.878139 ], [ -75.395409, 39.878 ], [ -75.39531, 39.87791 ], [ -75.395099, 39.877739 ], [ -75.395519, 39.87746 ], [ -75.395699, 39.877309 ], [ -75.395139, 39.876869 ], [ -75.395049, 39.8768 ], [ -75.39441, 39.876249 ], [ -75.39395, 39.875869 ], [ -75.393669, 39.87564 ], [ -75.393159, 39.87522 ], [ -75.392849, 39.874959 ], [ -75.39275, 39.874879 ], [ -75.392619, 39.874779 ], [ -75.39255, 39.874719 ], [ -75.39233, 39.87457 ], [ -75.392169, 39.87446 ], [ -75.39212, 39.874429 ], [ -75.392089, 39.87441 ], [ -75.39188, 39.87429 ], [ -75.391689, 39.874179 ], [ -75.391639, 39.874149 ], [ -75.391449, 39.87405 ], [ -75.391369, 39.873999 ], [ -75.39135, 39.873989 ], [ -75.39129, 39.87396 ], [ -75.391179, 39.873899 ], [ -75.391009, 39.873819 ], [ -75.390919, 39.87378 ], [ -75.39057, 39.873639 ], [ -75.39053, 39.873619 ], [ -75.390369, 39.87356 ], [ -75.39022, 39.8735 ], [ -75.390019, 39.873419 ], [ -75.3899, 39.873369 ], [ -75.389799, 39.873329 ], [ -75.389609, 39.873259 ], [ -75.389389, 39.873179 ], [ -75.38928, 39.87314 ], [ -75.389079, 39.873059 ], [ -75.388799, 39.87295 ], [ -75.38851, 39.872829 ], [ -75.38819, 39.87269 ], [ -75.388349, 39.872539 ], [ -75.38843, 39.872439 ], [ -75.388479, 39.87233 ], [ -75.38861, 39.872089 ], [ -75.38868, 39.87196 ], [ -75.38877, 39.871819 ], [ -75.38888, 39.871659 ], [ -75.388979, 39.87152 ], [ -75.38909, 39.871379 ], [ -75.389209, 39.87123 ], [ -75.38932, 39.871099 ], [ -75.38946, 39.87095 ], [ -75.389569, 39.870849 ], [ -75.38967, 39.87077 ], [ -75.39, 39.87053 ], [ -75.3908, 39.86996 ], [ -75.39094, 39.869849 ], [ -75.39108, 39.86973 ], [ -75.3912, 39.86962 ], [ -75.39134, 39.869489 ], [ -75.391539, 39.869299 ], [ -75.39192, 39.868929 ], [ -75.39215, 39.868689 ], [ -75.3922, 39.86863 ], [ -75.39224, 39.868579 ], [ -75.39228, 39.86852 ], [ -75.39233, 39.86844 ], [ -75.39239, 39.868329 ], [ -75.39275, 39.86762 ], [ -75.39292, 39.86729 ], [ -75.39315, 39.86684 ], [ -75.39324, 39.86666 ], [ -75.39332, 39.86648 ], [ -75.393399, 39.86629 ], [ -75.39347, 39.86611 ], [ -75.393529, 39.86595 ], [ -75.39364, 39.86565 ], [ -75.39369, 39.865519 ], [ -75.393759, 39.865349 ], [ -75.393799, 39.865259 ], [ -75.39405, 39.864699 ], [ -75.394119, 39.864549 ], [ -75.394199, 39.86438 ], [ -75.39432, 39.86412 ], [ -75.39436, 39.86403 ], [ -75.394389, 39.86395 ], [ -75.394419, 39.86386 ], [ -75.394439, 39.863789 ], [ -75.39445, 39.863739 ], [ -75.39446, 39.86369 ], [ -75.394469, 39.86348 ], [ -75.39446, 39.863259 ], [ -75.39441, 39.86298 ], [ -75.394329, 39.86279 ], [ -75.39427, 39.862649 ], [ -75.39423, 39.862549 ], [ -75.394119, 39.862299 ], [ -75.394069, 39.862179 ], [ -75.39401, 39.86204 ], [ -75.39377, 39.861469 ], [ -75.3936, 39.861109 ], [ -75.393479, 39.86089 ], [ -75.393429, 39.86081 ], [ -75.393349, 39.8607 ], [ -75.393219, 39.86054 ], [ -75.393119, 39.86043 ], [ -75.392979, 39.860299 ], [ -75.39278, 39.860139 ], [ -75.39256, 39.85998 ], [ -75.392269, 39.85982 ], [ -75.39197, 39.859669 ], [ -75.39189, 39.85963 ], [ -75.391679, 39.85953 ], [ -75.39095, 39.85919 ], [ -75.390459, 39.858959 ], [ -75.390379, 39.85892 ], [ -75.390159, 39.85882 ], [ -75.38991, 39.858699 ], [ -75.389739, 39.85862 ], [ -75.38928, 39.858409 ], [ -75.38919, 39.85837 ], [ -75.388629, 39.85811 ], [ -75.38816, 39.857889 ], [ -75.387599, 39.85763 ], [ -75.38693, 39.857319 ], [ -75.386409, 39.857079 ], [ -75.386279, 39.85702 ], [ -75.386139, 39.85695 ], [ -75.38603, 39.856899 ], [ -75.38595, 39.85686 ], [ -75.385709, 39.85675 ], [ -75.385529, 39.85667 ], [ -75.385299, 39.85658 ], [ -75.38514, 39.856519 ], [ -75.38487, 39.856429 ], [ -75.3846, 39.856339 ], [ -75.384219, 39.85622 ], [ -75.384, 39.856149 ], [ -75.383849, 39.8561 ], [ -75.383439, 39.855969 ], [ -75.38265, 39.855709 ], [ -75.38252, 39.85566 ], [ -75.38235, 39.85559 ], [ -75.382229, 39.85657 ], [ -75.38221, 39.85673 ], [ -75.38217, 39.857059 ], [ -75.38211, 39.85754 ], [ -75.38204, 39.857969 ], [ -75.381999, 39.85839 ], [ -75.38193, 39.858849 ], [ -75.38194, 39.859319 ], [ -75.381959, 39.86063 ], [ -75.38198, 39.861549 ], [ -75.38199, 39.86199 ], [ -75.381999, 39.862089 ], [ -75.382009, 39.862269 ], [ -75.38202, 39.86276 ], [ -75.38204, 39.863089 ], [ -75.38204, 39.86339 ], [ -75.38207, 39.863979 ], [ -75.382089, 39.86431 ], [ -75.382139, 39.86584 ], [ -75.38221, 39.86717 ], [ -75.38222, 39.86774 ], [ -75.382239, 39.868239 ], [ -75.382239, 39.86837 ], [ -75.382239, 39.86844 ], [ -75.382239, 39.868479 ], [ -75.38225, 39.86906 ], [ -75.38225, 39.869099 ], [ -75.3822, 39.869229 ], [ -75.38207, 39.86918 ], [ -75.38199, 39.869139 ], [ -75.381639, 39.869009 ], [ -75.38154, 39.86897 ], [ -75.38131, 39.86888 ], [ -75.38099, 39.868749 ], [ -75.380829, 39.868679 ], [ -75.380529, 39.868559 ], [ -75.38033, 39.868479 ], [ -75.379579, 39.86816 ], [ -75.37942, 39.86809 ], [ -75.379139, 39.867969 ], [ -75.37906, 39.867939 ], [ -75.378679, 39.867789 ], [ -75.378589, 39.867749 ], [ -75.37839, 39.867669 ], [ -75.377679, 39.86736 ], [ -75.37731, 39.86721 ], [ -75.377289, 39.8672 ], [ -75.376789, 39.86699 ], [ -75.376349, 39.866789 ], [ -75.376109, 39.866679 ], [ -75.376059, 39.86666 ], [ -75.375889, 39.86658 ], [ -75.37509, 39.86621 ], [ -75.375, 39.866169 ], [ -75.374439, 39.86592 ], [ -75.37406, 39.86576 ], [ -75.373679, 39.86559 ], [ -75.3729, 39.865249 ], [ -75.37204, 39.864899 ], [ -75.37196, 39.864869 ], [ -75.3711, 39.864529 ], [ -75.370849, 39.864429 ], [ -75.37052, 39.86431 ], [ -75.370399, 39.864269 ], [ -75.37028, 39.86423 ], [ -75.370039, 39.864169 ], [ -75.369909, 39.86414 ], [ -75.369769, 39.86411 ], [ -75.36935, 39.86403 ], [ -75.36926, 39.864009 ], [ -75.369139, 39.863989 ], [ -75.368919, 39.86394 ], [ -75.368699, 39.863899 ], [ -75.368599, 39.863879 ], [ -75.368699, 39.86368 ], [ -75.3688, 39.863459 ], [ -75.36894, 39.86313 ], [ -75.36902, 39.862999 ], [ -75.369129, 39.862829 ], [ -75.369229, 39.86269 ], [ -75.36935, 39.86253 ], [ -75.369459, 39.862379 ], [ -75.369579, 39.862199 ], [ -75.36974, 39.86195 ], [ -75.370049, 39.861389 ], [ -75.37043, 39.860659 ], [ -75.37082, 39.85989 ], [ -75.371019, 39.859499 ], [ -75.371069, 39.859399 ], [ -75.371169, 39.859219 ], [ -75.37123, 39.859129 ], [ -75.371299, 39.859039 ], [ -75.371389, 39.858939 ], [ -75.37141, 39.85857 ], [ -75.37149, 39.85838 ], [ -75.371529, 39.85826 ], [ -75.371659, 39.85792 ], [ -75.371709, 39.85776 ], [ -75.37088, 39.857609 ], [ -75.370569, 39.85754 ], [ -75.370399, 39.857499 ], [ -75.369279, 39.857419 ], [ -75.36893, 39.85738 ], [ -75.368639, 39.85736 ], [ -75.368499, 39.857349 ], [ -75.368229, 39.857339 ], [ -75.367919, 39.857319 ], [ -75.36764, 39.8573 ], [ -75.367379, 39.857439 ], [ -75.36642, 39.85785 ], [ -75.36637, 39.857869 ], [ -75.36592, 39.858049 ], [ -75.36452, 39.85865 ], [ -75.36416, 39.858839 ], [ -75.363909, 39.85891 ], [ -75.363329, 39.85918 ], [ -75.363199, 39.859239 ], [ -75.36295, 39.859319 ], [ -75.362259, 39.859589 ], [ -75.361989, 39.85907 ], [ -75.36168, 39.858409 ], [ -75.361659, 39.85836 ], [ -75.361489, 39.857959 ], [ -75.361439, 39.85783 ], [ -75.361389, 39.857689 ], [ -75.36128, 39.85728 ], [ -75.36124, 39.85713 ], [ -75.361219, 39.857069 ], [ -75.36119, 39.856959 ], [ -75.36116, 39.85684 ], [ -75.36111, 39.856609 ], [ -75.361039, 39.856339 ], [ -75.360999, 39.856179 ], [ -75.360949, 39.85595 ], [ -75.360899, 39.855619 ], [ -75.360859, 39.855359 ], [ -75.360819, 39.85505 ], [ -75.360759, 39.854369 ], [ -75.360719, 39.85398 ], [ -75.3607, 39.8536 ], [ -75.360689, 39.85313 ], [ -75.360689, 39.85297 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85236 ], [ -75.3607, 39.852209 ], [ -75.3607, 39.85208 ], [ -75.36071, 39.851759 ], [ -75.36074, 39.851459 ], [ -75.360769, 39.851109 ], [ -75.3607, 39.851029 ], [ -75.360509, 39.85079 ], [ -75.360279, 39.850479 ], [ -75.36011, 39.85026 ], [ -75.359789, 39.8499 ], [ -75.359639, 39.849759 ], [ -75.359599, 39.84972 ], [ -75.359559, 39.84965 ], [ -75.35954, 39.84963 ], [ -75.35944, 39.849499 ], [ -75.359549, 39.849399 ], [ -75.359609, 39.849329 ], [ -75.35971, 39.84926 ], [ -75.359819, 39.849219 ], [ -75.35994, 39.84917 ], [ -75.359999, 39.84917 ], [ -75.360049, 39.84919 ], [ -75.36011, 39.849219 ], [ -75.360179, 39.849239 ], [ -75.36029, 39.849219 ], [ -75.36061, 39.8491 ], [ -75.36075, 39.849069 ], [ -75.360399, 39.848609 ], [ -75.36038, 39.84858 ], [ -75.36003, 39.84812 ], [ -75.359779, 39.84782 ], [ -75.35976, 39.847789 ], [ -75.35958, 39.84758 ], [ -75.359509, 39.8475 ], [ -75.359279, 39.847609 ], [ -75.359139, 39.84768 ], [ -75.359049, 39.847719 ], [ -75.3589, 39.847789 ], [ -75.35882, 39.84783 ], [ -75.358329, 39.848059 ], [ -75.35885, 39.848769 ], [ -75.35909, 39.849069 ], [ -75.359149, 39.849149 ], [ -75.359229, 39.849249 ], [ -75.359339, 39.84938 ], [ -75.35944, 39.849499 ], [ -75.35954, 39.84963 ], [ -75.359559, 39.84965 ], [ -75.359599, 39.84972 ], [ -75.359639, 39.849759 ], [ -75.359789, 39.8499 ], [ -75.36011, 39.85026 ], [ -75.360279, 39.850479 ], [ -75.360509, 39.85079 ], [ -75.3607, 39.851029 ], [ -75.360769, 39.851109 ], [ -75.36074, 39.851459 ], [ -75.36071, 39.851759 ], [ -75.3607, 39.85208 ], [ -75.3607, 39.852209 ], [ -75.360689, 39.85236 ], [ -75.360689, 39.85269 ], [ -75.3608, 39.852649 ], [ -75.36102, 39.852559 ], [ -75.361209, 39.852479 ], [ -75.36161, 39.85233 ], [ -75.361719, 39.852289 ], [ -75.361929, 39.852199 ], [ -75.3624, 39.852009 ], [ -75.36277, 39.851859 ], [ -75.363239, 39.851659 ], [ -75.36488, 39.85098 ], [ -75.36511, 39.85089 ], [ -75.36533, 39.8508 ], [ -75.365809, 39.850599 ], [ -75.36619, 39.85045 ], [ -75.36663, 39.85027 ], [ -75.367649, 39.849849 ], [ -75.369099, 39.849249 ], [ -75.3693, 39.84917 ], [ -75.370319, 39.84873 ], [ -75.37046, 39.84867 ], [ -75.37056, 39.84863 ], [ -75.370749, 39.84855 ], [ -75.37086, 39.848509 ], [ -75.37105, 39.848439 ], [ -75.371079, 39.848429 ], [ -75.371199, 39.84838 ], [ -75.37141, 39.8483 ], [ -75.37182, 39.848159 ], [ -75.371879, 39.848139 ], [ -75.37199, 39.8481 ], [ -75.37212, 39.848059 ], [ -75.372419, 39.847959 ], [ -75.37259, 39.84791 ], [ -75.37375, 39.847509 ], [ -75.37455, 39.84722 ], [ -75.37538, 39.84692 ], [ -75.37559, 39.84683 ], [ -75.375889, 39.84668 ], [ -75.375939, 39.84666 ], [ -75.37641, 39.84641 ], [ -75.3769, 39.846159 ], [ -75.37744, 39.845879 ], [ -75.37803, 39.845559 ], [ -75.378409, 39.845349 ], [ -75.37866, 39.84523 ], [ -75.378869, 39.845109 ], [ -75.379219, 39.844919 ], [ -75.37938, 39.844839 ], [ -75.379629, 39.84471 ], [ -75.38014, 39.84444 ], [ -75.380439, 39.844279 ], [ -75.380659, 39.84417 ], [ -75.380979, 39.844009 ], [ -75.38113, 39.843929 ], [ -75.38126, 39.84386 ], [ -75.38141, 39.84378 ], [ -75.381879, 39.84353 ], [ -75.381999, 39.843469 ], [ -75.38244, 39.84324 ], [ -75.38283, 39.843029 ], [ -75.3831, 39.84288 ], [ -75.38348, 39.842679 ], [ -75.38393, 39.84245 ], [ -75.38433, 39.84224 ], [ -75.384569, 39.842109 ], [ -75.384669, 39.842049 ], [ -75.385029, 39.841859 ], [ -75.385559, 39.841589 ], [ -75.38591, 39.841409 ], [ -75.38622, 39.84125 ], [ -75.386279, 39.841219 ], [ -75.38666, 39.84101 ], [ -75.387719, 39.84045 ], [ -75.38878, 39.8399 ], [ -75.38924, 39.83967 ], [ -75.38987, 39.83936 ], [ -75.390099, 39.839239 ], [ -75.39093, 39.838799 ], [ -75.391269, 39.83859 ], [ -75.391419, 39.838499 ], [ -75.39194, 39.838159 ], [ -75.39233, 39.837879 ], [ -75.392889, 39.83748 ], [ -75.393439, 39.837089 ], [ -75.39382, 39.836809 ], [ -75.394029, 39.836649 ], [ -75.394259, 39.836469 ], [ -75.39437, 39.8364 ], [ -75.394439, 39.836349 ], [ -75.39467, 39.836169 ], [ -75.394799, 39.836089 ], [ -75.395049, 39.835929 ], [ -75.39539, 39.83621 ], [ -75.39566, 39.836439 ], [ -75.395959, 39.83669 ], [ -75.396129, 39.836829 ], [ -75.39634, 39.836989 ], [ -75.39666, 39.837249 ], [ -75.39701, 39.837549 ], [ -75.39759, 39.83802 ], [ -75.39761, 39.83803 ], [ -75.39782, 39.83821 ], [ -75.397989, 39.838349 ], [ -75.398209, 39.838529 ], [ -75.398519, 39.838779 ], [ -75.399109, 39.83927 ], [ -75.39935, 39.83946 ], [ -75.39998, 39.839959 ], [ -75.40007, 39.84003 ], [ -75.40022, 39.840139 ], [ -75.400499, 39.84035 ], [ -75.400689, 39.84048 ], [ -75.401139, 39.840779 ], [ -75.40139, 39.84099 ], [ -75.40156, 39.84116 ], [ -75.401579, 39.84118 ], [ -75.40179, 39.84143 ], [ -75.40197, 39.841659 ], [ -75.40251, 39.84235 ], [ -75.40255, 39.842579 ], [ -75.402519, 39.84272 ], [ -75.402489, 39.84278 ], [ -75.402389, 39.84289 ], [ -75.4022, 39.843009 ], [ -75.4021, 39.843019 ], [ -75.400629, 39.843289 ], [ -75.400239, 39.84336 ], [ -75.399779, 39.843459 ], [ -75.399459, 39.843549 ], [ -75.399279, 39.84362 ], [ -75.399009, 39.84372 ], [ -75.39881, 39.84379 ], [ -75.398519, 39.843929 ], [ -75.398339, 39.84405 ], [ -75.39792, 39.844379 ], [ -75.397719, 39.844469 ], [ -75.39741, 39.844539 ], [ -75.3972, 39.844559 ], [ -75.396899, 39.844549 ], [ -75.39661, 39.844549 ], [ -75.396219, 39.844569 ], [ -75.395869, 39.844649 ], [ -75.39536, 39.84477 ], [ -75.394739, 39.844919 ], [ -75.394509, 39.84498 ], [ -75.39432, 39.845019 ], [ -75.394059, 39.845079 ], [ -75.393849, 39.84513 ], [ -75.39373, 39.845189 ], [ -75.393629, 39.845259 ], [ -75.393609, 39.84531 ], [ -75.39368, 39.84531 ], [ -75.39377, 39.84532 ], [ -75.39387, 39.84534 ], [ -75.39396, 39.845359 ], [ -75.395329, 39.84569 ], [ -75.395549, 39.845739 ], [ -75.39594, 39.845829 ], [ -75.39621, 39.845889 ], [ -75.39644, 39.84594 ], [ -75.396719, 39.845999 ], [ -75.396909, 39.84604 ], [ -75.397089, 39.846079 ], [ -75.397219, 39.84611 ], [ -75.39729, 39.84613 ], [ -75.39738, 39.846159 ], [ -75.39746, 39.846189 ], [ -75.397529, 39.84622 ], [ -75.39761, 39.846259 ], [ -75.39769, 39.84631 ], [ -75.39796, 39.84649 ], [ -75.39815, 39.846619 ], [ -75.39841, 39.846779 ], [ -75.399369, 39.84741 ], [ -75.399649, 39.84759 ], [ -75.39993, 39.847779 ], [ -75.40017, 39.84795 ], [ -75.40031, 39.848069 ], [ -75.400409, 39.84818 ], [ -75.400499, 39.84829 ], [ -75.40067, 39.848529 ], [ -75.400779, 39.848689 ], [ -75.40102, 39.84901 ], [ -75.401219, 39.849319 ], [ -75.40129, 39.849429 ], [ -75.40139, 39.849599 ], [ -75.401449, 39.84972 ], [ -75.40151, 39.849869 ], [ -75.40157, 39.850049 ], [ -75.401669, 39.85046 ], [ -75.401709, 39.850649 ], [ -75.40179, 39.851019 ], [ -75.40183, 39.85127 ], [ -75.40187, 39.85161 ], [ -75.40193, 39.85244 ], [ -75.40197, 39.852649 ], [ -75.40224, 39.852579 ], [ -75.402519, 39.85251 ], [ -75.402809, 39.852369 ], [ -75.40309, 39.85216 ], [ -75.40328, 39.851939 ], [ -75.403419, 39.85178 ], [ -75.403609, 39.85163 ], [ -75.403739, 39.85152 ], [ -75.40385, 39.85145 ], [ -75.404019, 39.851369 ], [ -75.404229, 39.85126 ], [ -75.40462, 39.851049 ], [ -75.40535, 39.85071 ], [ -75.406179, 39.850319 ], [ -75.406719, 39.85007 ], [ -75.406899, 39.84998 ], [ -75.40742, 39.84974 ], [ -75.40805, 39.84944 ], [ -75.408779, 39.8491 ], [ -75.4093, 39.848859 ], [ -75.40992, 39.84857 ], [ -75.409279, 39.84777 ], [ -75.40921, 39.84768 ], [ -75.409149, 39.847599 ], [ -75.40904, 39.84746 ], [ -75.408829, 39.847179 ], [ -75.40866, 39.846959 ], [ -75.408429, 39.846799 ], [ -75.408329, 39.84677 ], [ -75.408149, 39.84676 ], [ -75.407919, 39.846819 ], [ -75.40773, 39.84692 ], [ -75.40751, 39.84701 ], [ -75.407199, 39.847159 ], [ -75.40687, 39.84732 ], [ -75.406629, 39.847429 ], [ -75.40598, 39.84774 ], [ -75.405509, 39.847959 ], [ -75.405229, 39.848079 ], [ -75.405039, 39.84819 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310324", "route_id": "117" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.44723, 39.92846 ], [ -75.44714, 39.92849 ], [ -75.44701, 39.92867 ], [ -75.44693, 39.928689 ], [ -75.446639, 39.92882 ], [ -75.44616, 39.92902 ], [ -75.445639, 39.929259 ], [ -75.44558, 39.92912 ], [ -75.44538, 39.928619 ], [ -75.445269, 39.928329 ], [ -75.44512, 39.92796 ], [ -75.444999, 39.92765 ], [ -75.44486, 39.9273 ], [ -75.44476, 39.92704 ], [ -75.44457, 39.92658 ], [ -75.44445, 39.926289 ], [ -75.44435, 39.92604 ], [ -75.4443, 39.925899 ], [ -75.443979, 39.925019 ], [ -75.44369, 39.924199 ], [ -75.443379, 39.923309 ], [ -75.443349, 39.923219 ], [ -75.44331, 39.92308 ], [ -75.44328, 39.922949 ], [ -75.44323, 39.92271 ], [ -75.443199, 39.92253 ], [ -75.44318, 39.922389 ], [ -75.443159, 39.922229 ], [ -75.44314, 39.922039 ], [ -75.44313, 39.921839 ], [ -75.443109, 39.921479 ], [ -75.443109, 39.92101 ], [ -75.443109, 39.92083 ], [ -75.44309, 39.920509 ], [ -75.443079, 39.920399 ], [ -75.44304, 39.92022 ], [ -75.442989, 39.920049 ], [ -75.44297, 39.919969 ], [ -75.442939, 39.919889 ], [ -75.442889, 39.919779 ], [ -75.44283, 39.91967 ], [ -75.44277, 39.91957 ], [ -75.44301, 39.919359 ], [ -75.44313, 39.919239 ], [ -75.443379, 39.918999 ], [ -75.443829, 39.91856 ], [ -75.444059, 39.9183 ], [ -75.444779, 39.917609 ], [ -75.444059, 39.9183 ], [ -75.443829, 39.91856 ], [ -75.443379, 39.918999 ], [ -75.44313, 39.919239 ], [ -75.44301, 39.919359 ], [ -75.44277, 39.91957 ], [ -75.44268, 39.919439 ], [ -75.44259, 39.91932 ], [ -75.442489, 39.9192 ], [ -75.44241, 39.91911 ], [ -75.44228, 39.918979 ], [ -75.44215, 39.91887 ], [ -75.441909, 39.91868 ], [ -75.441849, 39.918629 ], [ -75.44178, 39.91858 ], [ -75.441369, 39.918269 ], [ -75.440999, 39.918009 ], [ -75.44081, 39.91788 ], [ -75.44053, 39.9177 ], [ -75.440429, 39.91758 ], [ -75.440379, 39.91749 ], [ -75.44035, 39.9174 ], [ -75.44031, 39.917249 ], [ -75.440319, 39.917179 ], [ -75.440319, 39.917079 ], [ -75.44031, 39.91697 ], [ -75.440289, 39.916829 ], [ -75.44026, 39.91667 ], [ -75.44009, 39.91562 ], [ -75.440069, 39.91551 ], [ -75.440019, 39.915219 ], [ -75.43999, 39.915009 ], [ -75.43995, 39.914749 ], [ -75.439839, 39.91406 ], [ -75.43981, 39.913869 ], [ -75.439789, 39.91373 ], [ -75.43976, 39.91347 ], [ -75.439749, 39.913229 ], [ -75.439739, 39.913049 ], [ -75.43973, 39.91289 ], [ -75.43972, 39.912679 ], [ -75.439709, 39.912499 ], [ -75.439709, 39.91229 ], [ -75.439289, 39.912419 ], [ -75.439079, 39.912489 ], [ -75.43882, 39.912569 ], [ -75.43864, 39.91262 ], [ -75.438389, 39.912699 ], [ -75.43824, 39.912749 ], [ -75.438169, 39.912769 ], [ -75.437949, 39.912839 ], [ -75.43783, 39.912879 ], [ -75.437719, 39.91292 ], [ -75.43738, 39.913029 ], [ -75.436599, 39.91325 ], [ -75.436499, 39.91329 ], [ -75.436359, 39.91334 ], [ -75.43622, 39.913389 ], [ -75.43613, 39.913419 ], [ -75.436089, 39.91343 ], [ -75.43585, 39.913499 ], [ -75.435549, 39.913579 ], [ -75.435369, 39.91362 ], [ -75.43527, 39.91364 ], [ -75.434929, 39.9137 ], [ -75.434699, 39.91374 ], [ -75.43449, 39.913769 ], [ -75.43396, 39.913839 ], [ -75.43374, 39.91388 ], [ -75.433709, 39.91388 ], [ -75.433669, 39.91389 ], [ -75.433489, 39.91391 ], [ -75.433439, 39.91392 ], [ -75.433219, 39.913949 ], [ -75.432899, 39.91399 ], [ -75.432549, 39.914029 ], [ -75.43175, 39.914139 ], [ -75.43149, 39.91417 ], [ -75.430889, 39.91426 ], [ -75.43014, 39.91435 ], [ -75.429269, 39.914469 ], [ -75.429209, 39.914479 ], [ -75.429029, 39.914499 ], [ -75.428809, 39.91454 ], [ -75.428679, 39.91455 ], [ -75.42815, 39.91464 ], [ -75.427319, 39.91478 ], [ -75.42726, 39.91479 ], [ -75.426869, 39.914849 ], [ -75.42632, 39.914929 ], [ -75.425889, 39.91499 ], [ -75.42569, 39.915019 ], [ -75.425569, 39.915039 ], [ -75.42532, 39.91508 ], [ -75.425109, 39.915109 ], [ -75.424839, 39.91515 ], [ -75.42455, 39.915199 ], [ -75.42397, 39.915279 ], [ -75.423639, 39.91533 ], [ -75.423449, 39.91536 ], [ -75.42315, 39.915389 ], [ -75.422959, 39.91542 ], [ -75.422869, 39.91543 ], [ -75.422329, 39.9155 ], [ -75.421839, 39.9156 ], [ -75.41996, 39.915839 ], [ -75.419399, 39.915919 ], [ -75.4188, 39.915999 ], [ -75.418279, 39.91607 ], [ -75.41776, 39.91614 ], [ -75.416659, 39.916289 ], [ -75.416019, 39.916379 ], [ -75.41573, 39.91642 ], [ -75.4155, 39.916449 ], [ -75.415489, 39.916099 ], [ -75.415489, 39.91605 ], [ -75.41552, 39.91551 ], [ -75.415529, 39.91523 ], [ -75.41555, 39.91488 ], [ -75.415089, 39.915039 ], [ -75.41304, 39.915219 ], [ -75.412749, 39.915279 ], [ -75.412689, 39.915289 ], [ -75.412509, 39.91533 ], [ -75.41227, 39.915389 ], [ -75.41196, 39.915479 ], [ -75.411809, 39.91552 ], [ -75.41138, 39.915639 ], [ -75.411269, 39.915649 ], [ -75.41114, 39.915639 ], [ -75.41087, 39.915559 ], [ -75.41064, 39.915469 ], [ -75.41039, 39.915299 ], [ -75.410179, 39.915029 ], [ -75.410079, 39.914839 ], [ -75.410039, 39.91462 ], [ -75.41006, 39.91451 ], [ -75.41007, 39.91444 ], [ -75.41015, 39.91427 ], [ -75.410259, 39.9141 ], [ -75.41065, 39.91381 ], [ -75.410859, 39.913669 ], [ -75.41106, 39.91361 ], [ -75.411179, 39.91355 ], [ -75.411259, 39.91344 ], [ -75.411299, 39.91328 ], [ -75.411269, 39.913139 ], [ -75.411249, 39.91309 ], [ -75.411179, 39.912959 ], [ -75.410949, 39.91262 ], [ -75.410759, 39.912299 ], [ -75.41055, 39.911859 ], [ -75.40967, 39.91004 ], [ -75.41003, 39.90976 ], [ -75.410169, 39.90959 ], [ -75.410589, 39.90896 ], [ -75.410629, 39.908899 ], [ -75.410769, 39.908729 ], [ -75.41102, 39.908529 ], [ -75.411209, 39.90842 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.411659, 39.907819 ], [ -75.4115, 39.907829 ], [ -75.411359, 39.90787 ], [ -75.41132, 39.907929 ], [ -75.411299, 39.908009 ], [ -75.41132, 39.908109 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.4121, 39.90759 ], [ -75.41237, 39.90733 ], [ -75.412509, 39.907209 ], [ -75.412709, 39.90708 ], [ -75.4129, 39.90696 ], [ -75.413139, 39.906829 ], [ -75.413649, 39.90659 ], [ -75.41429, 39.90635 ], [ -75.41457, 39.90625 ], [ -75.41547, 39.905949 ], [ -75.41596, 39.90579 ], [ -75.415569, 39.90537 ], [ -75.415389, 39.90519 ], [ -75.41528, 39.90507 ], [ -75.41519, 39.90497 ], [ -75.41506, 39.90483 ], [ -75.414809, 39.90456 ], [ -75.41447, 39.904209 ], [ -75.414279, 39.904 ], [ -75.414099, 39.90381 ], [ -75.4139, 39.903589 ], [ -75.413729, 39.903409 ], [ -75.41353, 39.903209 ], [ -75.413289, 39.902979 ], [ -75.413099, 39.90281 ], [ -75.412889, 39.902619 ], [ -75.412609, 39.90237 ], [ -75.41231, 39.90211 ], [ -75.41028, 39.90041 ], [ -75.40823, 39.89867 ], [ -75.407799, 39.89831 ], [ -75.40764, 39.898179 ], [ -75.407479, 39.89804 ], [ -75.40732, 39.89789 ], [ -75.407169, 39.897759 ], [ -75.406989, 39.897579 ], [ -75.40679, 39.89736 ], [ -75.406569, 39.897119 ], [ -75.40637, 39.89687 ], [ -75.40614, 39.896569 ], [ -75.406029, 39.89642 ], [ -75.405939, 39.89628 ], [ -75.405859, 39.89615 ], [ -75.405759, 39.89597 ], [ -75.40562, 39.89572 ], [ -75.405499, 39.895479 ], [ -75.405419, 39.895299 ], [ -75.40534, 39.895109 ], [ -75.40526, 39.8949 ], [ -75.405129, 39.89454 ], [ -75.40502, 39.894219 ], [ -75.40395, 39.891089 ], [ -75.403339, 39.889289 ], [ -75.40327, 39.88908 ], [ -75.40319, 39.88887 ], [ -75.40313, 39.88872 ], [ -75.40273, 39.88782 ], [ -75.4025, 39.887289 ], [ -75.402219, 39.8867 ], [ -75.4021, 39.88645 ], [ -75.401989, 39.886219 ], [ -75.40183, 39.885929 ], [ -75.40151, 39.88535 ], [ -75.40092, 39.88438 ], [ -75.40058, 39.88383 ], [ -75.39993, 39.88278 ], [ -75.39944, 39.881979 ], [ -75.399379, 39.881889 ], [ -75.39932, 39.881789 ], [ -75.39842, 39.880359 ], [ -75.398259, 39.880099 ], [ -75.398079, 39.87981 ], [ -75.39792, 39.879569 ], [ -75.39782, 39.87942 ], [ -75.397749, 39.87932 ], [ -75.39769, 39.87924 ], [ -75.39764, 39.87918 ], [ -75.39678, 39.8796 ], [ -75.39671, 39.87952 ], [ -75.39665, 39.87945 ], [ -75.396549, 39.87934 ], [ -75.396399, 39.87916 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.3953, 39.878919 ], [ -75.39544, 39.87906 ], [ -75.395589, 39.879209 ], [ -75.39571, 39.87933 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.39581, 39.87843 ], [ -75.395689, 39.87828 ], [ -75.395639, 39.878219 ], [ -75.39557, 39.878139 ], [ -75.395409, 39.878 ], [ -75.39531, 39.87791 ], [ -75.395099, 39.877739 ], [ -75.395519, 39.87746 ], [ -75.395699, 39.877309 ], [ -75.395139, 39.876869 ], [ -75.395049, 39.8768 ], [ -75.39441, 39.876249 ], [ -75.39395, 39.875869 ], [ -75.393669, 39.87564 ], [ -75.393159, 39.87522 ], [ -75.392849, 39.874959 ], [ -75.39275, 39.874879 ], [ -75.392619, 39.874779 ], [ -75.39255, 39.874719 ], [ -75.39233, 39.87457 ], [ -75.392169, 39.87446 ], [ -75.39212, 39.874429 ], [ -75.392089, 39.87441 ], [ -75.39188, 39.87429 ], [ -75.391689, 39.874179 ], [ -75.391639, 39.874149 ], [ -75.391449, 39.87405 ], [ -75.391369, 39.873999 ], [ -75.39135, 39.873989 ], [ -75.39129, 39.87396 ], [ -75.391179, 39.873899 ], [ -75.391009, 39.873819 ], [ -75.390919, 39.87378 ], [ -75.39057, 39.873639 ], [ -75.39053, 39.873619 ], [ -75.390369, 39.87356 ], [ -75.39022, 39.8735 ], [ -75.390019, 39.873419 ], [ -75.3899, 39.873369 ], [ -75.389799, 39.873329 ], [ -75.389609, 39.873259 ], [ -75.389389, 39.873179 ], [ -75.38928, 39.87314 ], [ -75.389079, 39.873059 ], [ -75.388799, 39.87295 ], [ -75.38851, 39.872829 ], [ -75.38819, 39.87269 ], [ -75.388349, 39.872539 ], [ -75.38843, 39.872439 ], [ -75.388479, 39.87233 ], [ -75.38861, 39.872089 ], [ -75.38868, 39.87196 ], [ -75.38877, 39.871819 ], [ -75.38888, 39.871659 ], [ -75.388979, 39.87152 ], [ -75.38909, 39.871379 ], [ -75.389209, 39.87123 ], [ -75.38932, 39.871099 ], [ -75.38946, 39.87095 ], [ -75.389569, 39.870849 ], [ -75.38967, 39.87077 ], [ -75.39, 39.87053 ], [ -75.3908, 39.86996 ], [ -75.39094, 39.869849 ], [ -75.39108, 39.86973 ], [ -75.3912, 39.86962 ], [ -75.39134, 39.869489 ], [ -75.391539, 39.869299 ], [ -75.39192, 39.868929 ], [ -75.39215, 39.868689 ], [ -75.3922, 39.86863 ], [ -75.39224, 39.868579 ], [ -75.39228, 39.86852 ], [ -75.39233, 39.86844 ], [ -75.39239, 39.868329 ], [ -75.39275, 39.86762 ], [ -75.39292, 39.86729 ], [ -75.39315, 39.86684 ], [ -75.39324, 39.86666 ], [ -75.39332, 39.86648 ], [ -75.393399, 39.86629 ], [ -75.39347, 39.86611 ], [ -75.393529, 39.86595 ], [ -75.39364, 39.86565 ], [ -75.39369, 39.865519 ], [ -75.393759, 39.865349 ], [ -75.393799, 39.865259 ], [ -75.39405, 39.864699 ], [ -75.394119, 39.864549 ], [ -75.394199, 39.86438 ], [ -75.39432, 39.86412 ], [ -75.39436, 39.86403 ], [ -75.394389, 39.86395 ], [ -75.394419, 39.86386 ], [ -75.394439, 39.863789 ], [ -75.39445, 39.863739 ], [ -75.39446, 39.86369 ], [ -75.394469, 39.86348 ], [ -75.39446, 39.863259 ], [ -75.39441, 39.86298 ], [ -75.394329, 39.86279 ], [ -75.39427, 39.862649 ], [ -75.39423, 39.862549 ], [ -75.394119, 39.862299 ], [ -75.394069, 39.862179 ], [ -75.39401, 39.86204 ], [ -75.39377, 39.861469 ], [ -75.3936, 39.861109 ], [ -75.393479, 39.86089 ], [ -75.393429, 39.86081 ], [ -75.393349, 39.8607 ], [ -75.393219, 39.86054 ], [ -75.393119, 39.86043 ], [ -75.392979, 39.860299 ], [ -75.39278, 39.860139 ], [ -75.39256, 39.85998 ], [ -75.392269, 39.85982 ], [ -75.39197, 39.859669 ], [ -75.39189, 39.85963 ], [ -75.391679, 39.85953 ], [ -75.39095, 39.85919 ], [ -75.390459, 39.858959 ], [ -75.390379, 39.85892 ], [ -75.390159, 39.85882 ], [ -75.38991, 39.858699 ], [ -75.389739, 39.85862 ], [ -75.38928, 39.858409 ], [ -75.38919, 39.85837 ], [ -75.388629, 39.85811 ], [ -75.38816, 39.857889 ], [ -75.387599, 39.85763 ], [ -75.38693, 39.857319 ], [ -75.386409, 39.857079 ], [ -75.386279, 39.85702 ], [ -75.386139, 39.85695 ], [ -75.38603, 39.856899 ], [ -75.38595, 39.85686 ], [ -75.385709, 39.85675 ], [ -75.385529, 39.85667 ], [ -75.385299, 39.85658 ], [ -75.38514, 39.856519 ], [ -75.38487, 39.856429 ], [ -75.3846, 39.856339 ], [ -75.384219, 39.85622 ], [ -75.384, 39.856149 ], [ -75.383849, 39.8561 ], [ -75.383439, 39.855969 ], [ -75.38265, 39.855709 ], [ -75.38252, 39.85566 ], [ -75.38235, 39.85559 ], [ -75.382229, 39.85657 ], [ -75.38221, 39.85673 ], [ -75.38217, 39.857059 ], [ -75.38211, 39.85754 ], [ -75.38204, 39.857969 ], [ -75.381999, 39.85839 ], [ -75.38193, 39.858849 ], [ -75.38194, 39.859319 ], [ -75.381959, 39.86063 ], [ -75.38198, 39.861549 ], [ -75.38199, 39.86199 ], [ -75.381999, 39.862089 ], [ -75.382009, 39.862269 ], [ -75.38202, 39.86276 ], [ -75.38204, 39.863089 ], [ -75.38204, 39.86339 ], [ -75.38207, 39.863979 ], [ -75.382089, 39.86431 ], [ -75.382139, 39.86584 ], [ -75.38221, 39.86717 ], [ -75.38222, 39.86774 ], [ -75.382239, 39.868239 ], [ -75.382239, 39.86837 ], [ -75.382239, 39.86844 ], [ -75.382239, 39.868479 ], [ -75.38225, 39.86906 ], [ -75.38225, 39.869099 ], [ -75.3822, 39.869229 ], [ -75.38207, 39.86918 ], [ -75.38199, 39.869139 ], [ -75.381639, 39.869009 ], [ -75.38154, 39.86897 ], [ -75.38131, 39.86888 ], [ -75.38099, 39.868749 ], [ -75.380829, 39.868679 ], [ -75.380529, 39.868559 ], [ -75.38033, 39.868479 ], [ -75.379579, 39.86816 ], [ -75.37942, 39.86809 ], [ -75.379139, 39.867969 ], [ -75.37906, 39.867939 ], [ -75.378679, 39.867789 ], [ -75.378589, 39.867749 ], [ -75.37839, 39.867669 ], [ -75.377679, 39.86736 ], [ -75.37731, 39.86721 ], [ -75.377289, 39.8672 ], [ -75.376789, 39.86699 ], [ -75.376349, 39.866789 ], [ -75.376109, 39.866679 ], [ -75.376059, 39.86666 ], [ -75.375889, 39.86658 ], [ -75.37509, 39.86621 ], [ -75.375, 39.866169 ], [ -75.374439, 39.86592 ], [ -75.37406, 39.86576 ], [ -75.373679, 39.86559 ], [ -75.3729, 39.865249 ], [ -75.37204, 39.864899 ], [ -75.37196, 39.864869 ], [ -75.3711, 39.864529 ], [ -75.370849, 39.864429 ], [ -75.37052, 39.86431 ], [ -75.370399, 39.864269 ], [ -75.37028, 39.86423 ], [ -75.370039, 39.864169 ], [ -75.369909, 39.86414 ], [ -75.369769, 39.86411 ], [ -75.36935, 39.86403 ], [ -75.36926, 39.864009 ], [ -75.369139, 39.863989 ], [ -75.368919, 39.86394 ], [ -75.368699, 39.863899 ], [ -75.368599, 39.863879 ], [ -75.368699, 39.86368 ], [ -75.3688, 39.863459 ], [ -75.36894, 39.86313 ], [ -75.36902, 39.862999 ], [ -75.369129, 39.862829 ], [ -75.369229, 39.86269 ], [ -75.36935, 39.86253 ], [ -75.369459, 39.862379 ], [ -75.369579, 39.862199 ], [ -75.36974, 39.86195 ], [ -75.370049, 39.861389 ], [ -75.37043, 39.860659 ], [ -75.37082, 39.85989 ], [ -75.371019, 39.859499 ], [ -75.371069, 39.859399 ], [ -75.371169, 39.859219 ], [ -75.37123, 39.859129 ], [ -75.371299, 39.859039 ], [ -75.371389, 39.858939 ], [ -75.37141, 39.85857 ], [ -75.37149, 39.85838 ], [ -75.371529, 39.85826 ], [ -75.371659, 39.85792 ], [ -75.371709, 39.85776 ], [ -75.37088, 39.857609 ], [ -75.370569, 39.85754 ], [ -75.370399, 39.857499 ], [ -75.369279, 39.857419 ], [ -75.36893, 39.85738 ], [ -75.368639, 39.85736 ], [ -75.368499, 39.857349 ], [ -75.368229, 39.857339 ], [ -75.367919, 39.857319 ], [ -75.36764, 39.8573 ], [ -75.367379, 39.857439 ], [ -75.36642, 39.85785 ], [ -75.36637, 39.857869 ], [ -75.36592, 39.858049 ], [ -75.36452, 39.85865 ], [ -75.36416, 39.858839 ], [ -75.363909, 39.85891 ], [ -75.363329, 39.85918 ], [ -75.363199, 39.859239 ], [ -75.36295, 39.859319 ], [ -75.362259, 39.859589 ], [ -75.361989, 39.85907 ], [ -75.36168, 39.858409 ], [ -75.361659, 39.85836 ], [ -75.361489, 39.857959 ], [ -75.361439, 39.85783 ], [ -75.361389, 39.857689 ], [ -75.36128, 39.85728 ], [ -75.36124, 39.85713 ], [ -75.361219, 39.857069 ], [ -75.36119, 39.856959 ], [ -75.36116, 39.85684 ], [ -75.36111, 39.856609 ], [ -75.361039, 39.856339 ], [ -75.360999, 39.856179 ], [ -75.360949, 39.85595 ], [ -75.360899, 39.855619 ], [ -75.360859, 39.855359 ], [ -75.360819, 39.85505 ], [ -75.360759, 39.854369 ], [ -75.360719, 39.85398 ], [ -75.3607, 39.8536 ], [ -75.360689, 39.85313 ], [ -75.360689, 39.85297 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85236 ], [ -75.3607, 39.852209 ], [ -75.3607, 39.85208 ], [ -75.36071, 39.851759 ], [ -75.36074, 39.851459 ], [ -75.360769, 39.851109 ], [ -75.3607, 39.851029 ], [ -75.360509, 39.85079 ], [ -75.360279, 39.850479 ], [ -75.36011, 39.85026 ], [ -75.359789, 39.8499 ], [ -75.359639, 39.849759 ], [ -75.359599, 39.84972 ], [ -75.359559, 39.84965 ], [ -75.35954, 39.84963 ], [ -75.35944, 39.849499 ], [ -75.359549, 39.849399 ], [ -75.359609, 39.849329 ], [ -75.35971, 39.84926 ], [ -75.359819, 39.849219 ], [ -75.35994, 39.84917 ], [ -75.359999, 39.84917 ], [ -75.360049, 39.84919 ], [ -75.36011, 39.849219 ], [ -75.360179, 39.849239 ], [ -75.36029, 39.849219 ], [ -75.36061, 39.8491 ], [ -75.36075, 39.849069 ], [ -75.360399, 39.848609 ], [ -75.36038, 39.84858 ], [ -75.36003, 39.84812 ], [ -75.359779, 39.84782 ], [ -75.35976, 39.847789 ], [ -75.35958, 39.84758 ], [ -75.359509, 39.8475 ], [ -75.359279, 39.847609 ], [ -75.359139, 39.84768 ], [ -75.359049, 39.847719 ], [ -75.3589, 39.847789 ], [ -75.35882, 39.84783 ], [ -75.358329, 39.848059 ], [ -75.35885, 39.848769 ], [ -75.35909, 39.849069 ], [ -75.359149, 39.849149 ], [ -75.359229, 39.849249 ], [ -75.359339, 39.84938 ], [ -75.35944, 39.849499 ], [ -75.35954, 39.84963 ], [ -75.359559, 39.84965 ], [ -75.359599, 39.84972 ], [ -75.359639, 39.849759 ], [ -75.359789, 39.8499 ], [ -75.36011, 39.85026 ], [ -75.360279, 39.850479 ], [ -75.360509, 39.85079 ], [ -75.3607, 39.851029 ], [ -75.360769, 39.851109 ], [ -75.36074, 39.851459 ], [ -75.36071, 39.851759 ], [ -75.3607, 39.85208 ], [ -75.3607, 39.852209 ], [ -75.360689, 39.85236 ], [ -75.360689, 39.85269 ], [ -75.3608, 39.852649 ], [ -75.36102, 39.852559 ], [ -75.361209, 39.852479 ], [ -75.36161, 39.85233 ], [ -75.361719, 39.852289 ], [ -75.361929, 39.852199 ], [ -75.3624, 39.852009 ], [ -75.36277, 39.851859 ], [ -75.363239, 39.851659 ], [ -75.36488, 39.85098 ], [ -75.36511, 39.85089 ], [ -75.36533, 39.8508 ], [ -75.365809, 39.850599 ], [ -75.36619, 39.85045 ], [ -75.36663, 39.85027 ], [ -75.367649, 39.849849 ], [ -75.369099, 39.849249 ], [ -75.3693, 39.84917 ], [ -75.370319, 39.84873 ], [ -75.37046, 39.84867 ], [ -75.37056, 39.84863 ], [ -75.370749, 39.84855 ], [ -75.37086, 39.848509 ], [ -75.37105, 39.848439 ], [ -75.371079, 39.848429 ], [ -75.371199, 39.84838 ], [ -75.37141, 39.8483 ], [ -75.37182, 39.848159 ], [ -75.371879, 39.848139 ], [ -75.37199, 39.8481 ], [ -75.37212, 39.848059 ], [ -75.372419, 39.847959 ], [ -75.37259, 39.84791 ], [ -75.37375, 39.847509 ], [ -75.37455, 39.84722 ], [ -75.37538, 39.84692 ], [ -75.37559, 39.84683 ], [ -75.375889, 39.84668 ], [ -75.375939, 39.84666 ], [ -75.37641, 39.84641 ], [ -75.3769, 39.846159 ], [ -75.37744, 39.845879 ], [ -75.37803, 39.845559 ], [ -75.378409, 39.845349 ], [ -75.37866, 39.84523 ], [ -75.378869, 39.845109 ], [ -75.379219, 39.844919 ], [ -75.37938, 39.844839 ], [ -75.379629, 39.84471 ], [ -75.38014, 39.84444 ], [ -75.380439, 39.844279 ], [ -75.380659, 39.84417 ], [ -75.380979, 39.844009 ], [ -75.38113, 39.843929 ], [ -75.38126, 39.84386 ], [ -75.38141, 39.84378 ], [ -75.381879, 39.84353 ], [ -75.381999, 39.843469 ], [ -75.38244, 39.84324 ], [ -75.38283, 39.843029 ], [ -75.3831, 39.84288 ], [ -75.38348, 39.842679 ], [ -75.38393, 39.84245 ], [ -75.38433, 39.84224 ], [ -75.384569, 39.842109 ], [ -75.384669, 39.842049 ], [ -75.385029, 39.841859 ], [ -75.385559, 39.841589 ], [ -75.38591, 39.841409 ], [ -75.38622, 39.84125 ], [ -75.386279, 39.841219 ], [ -75.38666, 39.84101 ], [ -75.387719, 39.84045 ], [ -75.38878, 39.8399 ], [ -75.38924, 39.83967 ], [ -75.38987, 39.83936 ], [ -75.390099, 39.839239 ], [ -75.39093, 39.838799 ], [ -75.391269, 39.83859 ], [ -75.391419, 39.838499 ], [ -75.39194, 39.838159 ], [ -75.39233, 39.837879 ], [ -75.392889, 39.83748 ], [ -75.393439, 39.837089 ], [ -75.39382, 39.836809 ], [ -75.394029, 39.836649 ], [ -75.394259, 39.836469 ], [ -75.39437, 39.8364 ], [ -75.394439, 39.836349 ], [ -75.39467, 39.836169 ], [ -75.394799, 39.836089 ], [ -75.395049, 39.835929 ], [ -75.39539, 39.83621 ], [ -75.39566, 39.836439 ], [ -75.395959, 39.83669 ], [ -75.396129, 39.836829 ], [ -75.39634, 39.836989 ], [ -75.39666, 39.837249 ], [ -75.39701, 39.837549 ], [ -75.39759, 39.83802 ], [ -75.39761, 39.83803 ], [ -75.39782, 39.83821 ], [ -75.397989, 39.838349 ], [ -75.398209, 39.838529 ], [ -75.398519, 39.838779 ], [ -75.399109, 39.83927 ], [ -75.39935, 39.83946 ], [ -75.39998, 39.839959 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310325", "route_id": "117" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.44723, 39.92846 ], [ -75.44714, 39.92849 ], [ -75.44701, 39.92867 ], [ -75.44693, 39.928689 ], [ -75.446639, 39.92882 ], [ -75.44616, 39.92902 ], [ -75.445639, 39.929259 ], [ -75.44558, 39.92912 ], [ -75.44538, 39.928619 ], [ -75.445269, 39.928329 ], [ -75.44512, 39.92796 ], [ -75.444999, 39.92765 ], [ -75.44486, 39.9273 ], [ -75.44476, 39.92704 ], [ -75.44457, 39.92658 ], [ -75.44445, 39.926289 ], [ -75.44435, 39.92604 ], [ -75.4443, 39.925899 ], [ -75.443979, 39.925019 ], [ -75.44369, 39.924199 ], [ -75.443379, 39.923309 ], [ -75.443349, 39.923219 ], [ -75.44331, 39.92308 ], [ -75.44328, 39.922949 ], [ -75.44323, 39.92271 ], [ -75.443199, 39.92253 ], [ -75.44318, 39.922389 ], [ -75.443159, 39.922229 ], [ -75.44314, 39.922039 ], [ -75.44313, 39.921839 ], [ -75.443109, 39.921479 ], [ -75.443109, 39.92101 ], [ -75.443109, 39.92083 ], [ -75.44309, 39.920509 ], [ -75.443079, 39.920399 ], [ -75.44304, 39.92022 ], [ -75.442989, 39.920049 ], [ -75.44297, 39.919969 ], [ -75.442939, 39.919889 ], [ -75.442889, 39.919779 ], [ -75.44283, 39.91967 ], [ -75.44277, 39.91957 ], [ -75.44301, 39.919359 ], [ -75.44313, 39.919239 ], [ -75.443379, 39.918999 ], [ -75.443829, 39.91856 ], [ -75.444059, 39.9183 ], [ -75.444779, 39.917609 ], [ -75.444059, 39.9183 ], [ -75.443829, 39.91856 ], [ -75.443379, 39.918999 ], [ -75.44313, 39.919239 ], [ -75.44301, 39.919359 ], [ -75.44277, 39.91957 ], [ -75.44268, 39.919439 ], [ -75.44259, 39.91932 ], [ -75.442489, 39.9192 ], [ -75.44241, 39.91911 ], [ -75.44228, 39.918979 ], [ -75.44215, 39.91887 ], [ -75.441909, 39.91868 ], [ -75.441849, 39.918629 ], [ -75.44178, 39.91858 ], [ -75.441369, 39.918269 ], [ -75.440999, 39.918009 ], [ -75.44081, 39.91788 ], [ -75.44053, 39.9177 ], [ -75.440429, 39.91758 ], [ -75.440379, 39.91749 ], [ -75.44035, 39.9174 ], [ -75.44031, 39.917249 ], [ -75.440319, 39.917179 ], [ -75.440319, 39.917079 ], [ -75.44031, 39.91697 ], [ -75.440289, 39.916829 ], [ -75.44026, 39.91667 ], [ -75.44009, 39.91562 ], [ -75.440069, 39.91551 ], [ -75.440019, 39.915219 ], [ -75.43999, 39.915009 ], [ -75.43995, 39.914749 ], [ -75.439839, 39.91406 ], [ -75.43981, 39.913869 ], [ -75.439789, 39.91373 ], [ -75.43976, 39.91347 ], [ -75.439749, 39.913229 ], [ -75.439739, 39.913049 ], [ -75.43973, 39.91289 ], [ -75.43972, 39.912679 ], [ -75.439709, 39.912499 ], [ -75.439709, 39.91229 ], [ -75.439289, 39.912419 ], [ -75.439079, 39.912489 ], [ -75.43882, 39.912569 ], [ -75.43864, 39.91262 ], [ -75.438389, 39.912699 ], [ -75.43824, 39.912749 ], [ -75.438169, 39.912769 ], [ -75.437949, 39.912839 ], [ -75.43783, 39.912879 ], [ -75.437719, 39.91292 ], [ -75.43738, 39.913029 ], [ -75.436599, 39.91325 ], [ -75.436499, 39.91329 ], [ -75.436359, 39.91334 ], [ -75.43622, 39.913389 ], [ -75.43613, 39.913419 ], [ -75.436089, 39.91343 ], [ -75.43585, 39.913499 ], [ -75.435549, 39.913579 ], [ -75.435369, 39.91362 ], [ -75.43527, 39.91364 ], [ -75.434929, 39.9137 ], [ -75.434699, 39.91374 ], [ -75.43449, 39.913769 ], [ -75.43396, 39.913839 ], [ -75.43374, 39.91388 ], [ -75.433709, 39.91388 ], [ -75.433669, 39.91389 ], [ -75.433489, 39.91391 ], [ -75.433439, 39.91392 ], [ -75.433219, 39.913949 ], [ -75.432899, 39.91399 ], [ -75.432549, 39.914029 ], [ -75.43175, 39.914139 ], [ -75.43149, 39.91417 ], [ -75.430889, 39.91426 ], [ -75.43014, 39.91435 ], [ -75.429269, 39.914469 ], [ -75.429209, 39.914479 ], [ -75.429029, 39.914499 ], [ -75.428809, 39.91454 ], [ -75.428679, 39.91455 ], [ -75.42815, 39.91464 ], [ -75.427319, 39.91478 ], [ -75.42726, 39.91479 ], [ -75.426869, 39.914849 ], [ -75.42632, 39.914929 ], [ -75.425889, 39.91499 ], [ -75.42569, 39.915019 ], [ -75.425569, 39.915039 ], [ -75.42532, 39.91508 ], [ -75.425109, 39.915109 ], [ -75.424839, 39.91515 ], [ -75.42455, 39.915199 ], [ -75.42397, 39.915279 ], [ -75.423639, 39.91533 ], [ -75.423449, 39.91536 ], [ -75.42315, 39.915389 ], [ -75.422959, 39.91542 ], [ -75.422869, 39.91543 ], [ -75.422329, 39.9155 ], [ -75.421839, 39.9156 ], [ -75.41996, 39.915839 ], [ -75.419399, 39.915919 ], [ -75.4188, 39.915999 ], [ -75.418279, 39.91607 ], [ -75.41776, 39.91614 ], [ -75.416659, 39.916289 ], [ -75.416019, 39.916379 ], [ -75.41573, 39.91642 ], [ -75.4155, 39.916449 ], [ -75.415489, 39.916099 ], [ -75.415489, 39.91605 ], [ -75.41552, 39.91551 ], [ -75.415529, 39.91523 ], [ -75.41555, 39.91488 ], [ -75.415089, 39.915039 ], [ -75.41304, 39.915219 ], [ -75.412749, 39.915279 ], [ -75.412689, 39.915289 ], [ -75.412509, 39.91533 ], [ -75.41227, 39.915389 ], [ -75.41196, 39.915479 ], [ -75.411809, 39.91552 ], [ -75.41138, 39.915639 ], [ -75.411269, 39.915649 ], [ -75.41114, 39.915639 ], [ -75.41087, 39.915559 ], [ -75.41064, 39.915469 ], [ -75.41039, 39.915299 ], [ -75.410179, 39.915029 ], [ -75.410079, 39.914839 ], [ -75.410039, 39.91462 ], [ -75.41006, 39.91451 ], [ -75.41007, 39.91444 ], [ -75.41015, 39.91427 ], [ -75.410259, 39.9141 ], [ -75.41065, 39.91381 ], [ -75.410859, 39.913669 ], [ -75.41106, 39.91361 ], [ -75.411179, 39.91355 ], [ -75.411259, 39.91344 ], [ -75.411299, 39.91328 ], [ -75.411269, 39.913139 ], [ -75.411249, 39.91309 ], [ -75.411179, 39.912959 ], [ -75.410949, 39.91262 ], [ -75.410759, 39.912299 ], [ -75.41055, 39.911859 ], [ -75.40967, 39.91004 ], [ -75.41003, 39.90976 ], [ -75.410169, 39.90959 ], [ -75.410589, 39.90896 ], [ -75.410629, 39.908899 ], [ -75.410769, 39.908729 ], [ -75.41102, 39.908529 ], [ -75.411209, 39.90842 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.411659, 39.907819 ], [ -75.4115, 39.907829 ], [ -75.411359, 39.90787 ], [ -75.41132, 39.907929 ], [ -75.411299, 39.908009 ], [ -75.41132, 39.908109 ], [ -75.411439, 39.90824 ], [ -75.41156, 39.90815 ], [ -75.41178, 39.90794 ], [ -75.411839, 39.90787 ], [ -75.4121, 39.90759 ], [ -75.41237, 39.90733 ], [ -75.412509, 39.907209 ], [ -75.412709, 39.90708 ], [ -75.4129, 39.90696 ], [ -75.413139, 39.906829 ], [ -75.413649, 39.90659 ], [ -75.41429, 39.90635 ], [ -75.41457, 39.90625 ], [ -75.41547, 39.905949 ], [ -75.41596, 39.90579 ], [ -75.415569, 39.90537 ], [ -75.415389, 39.90519 ], [ -75.41528, 39.90507 ], [ -75.41519, 39.90497 ], [ -75.41506, 39.90483 ], [ -75.414809, 39.90456 ], [ -75.41447, 39.904209 ], [ -75.414279, 39.904 ], [ -75.414099, 39.90381 ], [ -75.4139, 39.903589 ], [ -75.413729, 39.903409 ], [ -75.41353, 39.903209 ], [ -75.413289, 39.902979 ], [ -75.413099, 39.90281 ], [ -75.412889, 39.902619 ], [ -75.412609, 39.90237 ], [ -75.41231, 39.90211 ], [ -75.41028, 39.90041 ], [ -75.40823, 39.89867 ], [ -75.407799, 39.89831 ], [ -75.40764, 39.898179 ], [ -75.407479, 39.89804 ], [ -75.40732, 39.89789 ], [ -75.407169, 39.897759 ], [ -75.406989, 39.897579 ], [ -75.40679, 39.89736 ], [ -75.406569, 39.897119 ], [ -75.40637, 39.89687 ], [ -75.40614, 39.896569 ], [ -75.406029, 39.89642 ], [ -75.405939, 39.89628 ], [ -75.405859, 39.89615 ], [ -75.405759, 39.89597 ], [ -75.40562, 39.89572 ], [ -75.405499, 39.895479 ], [ -75.405419, 39.895299 ], [ -75.40534, 39.895109 ], [ -75.40526, 39.8949 ], [ -75.405129, 39.89454 ], [ -75.40502, 39.894219 ], [ -75.40395, 39.891089 ], [ -75.403339, 39.889289 ], [ -75.40327, 39.88908 ], [ -75.40319, 39.88887 ], [ -75.40313, 39.88872 ], [ -75.40273, 39.88782 ], [ -75.4025, 39.887289 ], [ -75.402219, 39.8867 ], [ -75.4021, 39.88645 ], [ -75.401989, 39.886219 ], [ -75.40183, 39.885929 ], [ -75.40151, 39.88535 ], [ -75.40092, 39.88438 ], [ -75.40058, 39.88383 ], [ -75.39993, 39.88278 ], [ -75.39944, 39.881979 ], [ -75.399379, 39.881889 ], [ -75.39932, 39.881789 ], [ -75.39842, 39.880359 ], [ -75.398259, 39.880099 ], [ -75.398079, 39.87981 ], [ -75.39792, 39.879569 ], [ -75.39782, 39.87942 ], [ -75.397749, 39.87932 ], [ -75.39769, 39.87924 ], [ -75.39764, 39.87918 ], [ -75.39678, 39.8796 ], [ -75.39671, 39.87952 ], [ -75.39665, 39.87945 ], [ -75.396549, 39.87934 ], [ -75.396399, 39.87916 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.3953, 39.878919 ], [ -75.39544, 39.87906 ], [ -75.395589, 39.879209 ], [ -75.39571, 39.87933 ], [ -75.396279, 39.879009 ], [ -75.39616, 39.87887 ], [ -75.396049, 39.87873 ], [ -75.395919, 39.878569 ], [ -75.39581, 39.87843 ], [ -75.395689, 39.87828 ], [ -75.395639, 39.878219 ], [ -75.39557, 39.878139 ], [ -75.395409, 39.878 ], [ -75.39531, 39.87791 ], [ -75.395099, 39.877739 ], [ -75.395519, 39.87746 ], [ -75.395699, 39.877309 ], [ -75.395139, 39.876869 ], [ -75.395049, 39.8768 ], [ -75.39441, 39.876249 ], [ -75.39395, 39.875869 ], [ -75.393669, 39.87564 ], [ -75.393159, 39.87522 ], [ -75.392849, 39.874959 ], [ -75.39275, 39.874879 ], [ -75.392619, 39.874779 ], [ -75.39255, 39.874719 ], [ -75.39233, 39.87457 ], [ -75.392169, 39.87446 ], [ -75.39212, 39.874429 ], [ -75.392089, 39.87441 ], [ -75.39188, 39.87429 ], [ -75.391689, 39.874179 ], [ -75.391639, 39.874149 ], [ -75.391449, 39.87405 ], [ -75.391369, 39.873999 ], [ -75.39135, 39.873989 ], [ -75.39129, 39.87396 ], [ -75.391179, 39.873899 ], [ -75.391009, 39.873819 ], [ -75.390919, 39.87378 ], [ -75.39057, 39.873639 ], [ -75.39053, 39.873619 ], [ -75.390369, 39.87356 ], [ -75.39022, 39.8735 ], [ -75.390019, 39.873419 ], [ -75.3899, 39.873369 ], [ -75.389799, 39.873329 ], [ -75.389609, 39.873259 ], [ -75.389389, 39.873179 ], [ -75.38928, 39.87314 ], [ -75.389079, 39.873059 ], [ -75.388799, 39.87295 ], [ -75.38851, 39.872829 ], [ -75.38819, 39.87269 ], [ -75.388349, 39.872539 ], [ -75.38843, 39.872439 ], [ -75.388479, 39.87233 ], [ -75.38861, 39.872089 ], [ -75.38868, 39.87196 ], [ -75.38877, 39.871819 ], [ -75.38888, 39.871659 ], [ -75.388979, 39.87152 ], [ -75.38909, 39.871379 ], [ -75.389209, 39.87123 ], [ -75.38932, 39.871099 ], [ -75.38946, 39.87095 ], [ -75.389569, 39.870849 ], [ -75.38967, 39.87077 ], [ -75.39, 39.87053 ], [ -75.3908, 39.86996 ], [ -75.39094, 39.869849 ], [ -75.39108, 39.86973 ], [ -75.3912, 39.86962 ], [ -75.39134, 39.869489 ], [ -75.391539, 39.869299 ], [ -75.39192, 39.868929 ], [ -75.39215, 39.868689 ], [ -75.3922, 39.86863 ], [ -75.39224, 39.868579 ], [ -75.39228, 39.86852 ], [ -75.39233, 39.86844 ], [ -75.39239, 39.868329 ], [ -75.39275, 39.86762 ], [ -75.39292, 39.86729 ], [ -75.39315, 39.86684 ], [ -75.39324, 39.86666 ], [ -75.39332, 39.86648 ], [ -75.393399, 39.86629 ], [ -75.39347, 39.86611 ], [ -75.393529, 39.86595 ], [ -75.39364, 39.86565 ], [ -75.39369, 39.865519 ], [ -75.393759, 39.865349 ], [ -75.393799, 39.865259 ], [ -75.39405, 39.864699 ], [ -75.394119, 39.864549 ], [ -75.394199, 39.86438 ], [ -75.39432, 39.86412 ], [ -75.39436, 39.86403 ], [ -75.394389, 39.86395 ], [ -75.394419, 39.86386 ], [ -75.394439, 39.863789 ], [ -75.39445, 39.863739 ], [ -75.39446, 39.86369 ], [ -75.394469, 39.86348 ], [ -75.39446, 39.863259 ], [ -75.39441, 39.86298 ], [ -75.394329, 39.86279 ], [ -75.39427, 39.862649 ], [ -75.39423, 39.862549 ], [ -75.394119, 39.862299 ], [ -75.394069, 39.862179 ], [ -75.39401, 39.86204 ], [ -75.39377, 39.861469 ], [ -75.3936, 39.861109 ], [ -75.393479, 39.86089 ], [ -75.393429, 39.86081 ], [ -75.393349, 39.8607 ], [ -75.393219, 39.86054 ], [ -75.393119, 39.86043 ], [ -75.392979, 39.860299 ], [ -75.39278, 39.860139 ], [ -75.39256, 39.85998 ], [ -75.392269, 39.85982 ], [ -75.39197, 39.859669 ], [ -75.39189, 39.85963 ], [ -75.391679, 39.85953 ], [ -75.39095, 39.85919 ], [ -75.390459, 39.858959 ], [ -75.390379, 39.85892 ], [ -75.390159, 39.85882 ], [ -75.38991, 39.858699 ], [ -75.389739, 39.85862 ], [ -75.38928, 39.858409 ], [ -75.38919, 39.85837 ], [ -75.388629, 39.85811 ], [ -75.38816, 39.857889 ], [ -75.387599, 39.85763 ], [ -75.38693, 39.857319 ], [ -75.386409, 39.857079 ], [ -75.386279, 39.85702 ], [ -75.386139, 39.85695 ], [ -75.38603, 39.856899 ], [ -75.38595, 39.85686 ], [ -75.385709, 39.85675 ], [ -75.385529, 39.85667 ], [ -75.385299, 39.85658 ], [ -75.38514, 39.856519 ], [ -75.38487, 39.856429 ], [ -75.3846, 39.856339 ], [ -75.384219, 39.85622 ], [ -75.384, 39.856149 ], [ -75.383849, 39.8561 ], [ -75.383439, 39.855969 ], [ -75.38265, 39.855709 ], [ -75.38252, 39.85566 ], [ -75.38235, 39.85559 ], [ -75.382229, 39.85657 ], [ -75.38221, 39.85673 ], [ -75.38217, 39.857059 ], [ -75.38211, 39.85754 ], [ -75.38204, 39.857969 ], [ -75.381999, 39.85839 ], [ -75.38193, 39.858849 ], [ -75.38194, 39.859319 ], [ -75.381959, 39.86063 ], [ -75.38198, 39.861549 ], [ -75.38199, 39.86199 ], [ -75.381999, 39.862089 ], [ -75.382009, 39.862269 ], [ -75.38202, 39.86276 ], [ -75.38204, 39.863089 ], [ -75.38204, 39.86339 ], [ -75.38207, 39.863979 ], [ -75.382089, 39.86431 ], [ -75.382139, 39.86584 ], [ -75.38221, 39.86717 ], [ -75.38222, 39.86774 ], [ -75.382239, 39.868239 ], [ -75.382239, 39.86837 ], [ -75.382239, 39.86844 ], [ -75.382239, 39.868479 ], [ -75.38225, 39.86906 ], [ -75.38225, 39.869099 ], [ -75.3822, 39.869229 ], [ -75.38207, 39.86918 ], [ -75.38199, 39.869139 ], [ -75.381639, 39.869009 ], [ -75.38154, 39.86897 ], [ -75.38131, 39.86888 ], [ -75.38099, 39.868749 ], [ -75.380829, 39.868679 ], [ -75.380529, 39.868559 ], [ -75.38033, 39.868479 ], [ -75.379579, 39.86816 ], [ -75.37942, 39.86809 ], [ -75.379139, 39.867969 ], [ -75.37906, 39.867939 ], [ -75.378679, 39.867789 ], [ -75.378589, 39.867749 ], [ -75.37839, 39.867669 ], [ -75.377679, 39.86736 ], [ -75.37731, 39.86721 ], [ -75.377289, 39.8672 ], [ -75.376789, 39.86699 ], [ -75.376349, 39.866789 ], [ -75.376109, 39.866679 ], [ -75.376059, 39.86666 ], [ -75.375889, 39.86658 ], [ -75.37509, 39.86621 ], [ -75.375, 39.866169 ], [ -75.374439, 39.86592 ], [ -75.37406, 39.86576 ], [ -75.373679, 39.86559 ], [ -75.3729, 39.865249 ], [ -75.37204, 39.864899 ], [ -75.37196, 39.864869 ], [ -75.3711, 39.864529 ], [ -75.370849, 39.864429 ], [ -75.37052, 39.86431 ], [ -75.370399, 39.864269 ], [ -75.37028, 39.86423 ], [ -75.370039, 39.864169 ], [ -75.369909, 39.86414 ], [ -75.369769, 39.86411 ], [ -75.36935, 39.86403 ], [ -75.36926, 39.864009 ], [ -75.369139, 39.863989 ], [ -75.368919, 39.86394 ], [ -75.368699, 39.863899 ], [ -75.368599, 39.863879 ], [ -75.368699, 39.86368 ], [ -75.3688, 39.863459 ], [ -75.36894, 39.86313 ], [ -75.36902, 39.862999 ], [ -75.369129, 39.862829 ], [ -75.369229, 39.86269 ], [ -75.36935, 39.86253 ], [ -75.369459, 39.862379 ], [ -75.369579, 39.862199 ], [ -75.36974, 39.86195 ], [ -75.370049, 39.861389 ], [ -75.37043, 39.860659 ], [ -75.37082, 39.85989 ], [ -75.371019, 39.859499 ], [ -75.371069, 39.859399 ], [ -75.371169, 39.859219 ], [ -75.37123, 39.859129 ], [ -75.371299, 39.859039 ], [ -75.371389, 39.858939 ], [ -75.37141, 39.85857 ], [ -75.37149, 39.85838 ], [ -75.371529, 39.85826 ], [ -75.371659, 39.85792 ], [ -75.371709, 39.85776 ], [ -75.37088, 39.857609 ], [ -75.370569, 39.85754 ], [ -75.370399, 39.857499 ], [ -75.369279, 39.857419 ], [ -75.36893, 39.85738 ], [ -75.368639, 39.85736 ], [ -75.368499, 39.857349 ], [ -75.368229, 39.857339 ], [ -75.367919, 39.857319 ], [ -75.36764, 39.8573 ], [ -75.367379, 39.857439 ], [ -75.36642, 39.85785 ], [ -75.36637, 39.857869 ], [ -75.36592, 39.858049 ], [ -75.36452, 39.85865 ], [ -75.36416, 39.858839 ], [ -75.363909, 39.85891 ], [ -75.363329, 39.85918 ], [ -75.363199, 39.859239 ], [ -75.36295, 39.859319 ], [ -75.362259, 39.859589 ], [ -75.361989, 39.85907 ], [ -75.36168, 39.858409 ], [ -75.361659, 39.85836 ], [ -75.361489, 39.857959 ], [ -75.361439, 39.85783 ], [ -75.361389, 39.857689 ], [ -75.36128, 39.85728 ], [ -75.36124, 39.85713 ], [ -75.361219, 39.857069 ], [ -75.36119, 39.856959 ], [ -75.36116, 39.85684 ], [ -75.36111, 39.856609 ], [ -75.361039, 39.856339 ], [ -75.360999, 39.856179 ], [ -75.360949, 39.85595 ], [ -75.360899, 39.855619 ], [ -75.360859, 39.855359 ], [ -75.360819, 39.85505 ], [ -75.360759, 39.854369 ], [ -75.360719, 39.85398 ], [ -75.3607, 39.8536 ], [ -75.360689, 39.85313 ], [ -75.360689, 39.85297 ], [ -75.360689, 39.85269 ], [ -75.360689, 39.85236 ], [ -75.3607, 39.852209 ], [ -75.3607, 39.85208 ], [ -75.36071, 39.851759 ], [ -75.36074, 39.851459 ], [ -75.360769, 39.851109 ], [ -75.3607, 39.851029 ], [ -75.360509, 39.85079 ], [ -75.360279, 39.850479 ], [ -75.36011, 39.85026 ], [ -75.359789, 39.8499 ], [ -75.359639, 39.849759 ], [ -75.359599, 39.84972 ], [ -75.359559, 39.84965 ], [ -75.35954, 39.84963 ], [ -75.35944, 39.849499 ], [ -75.359549, 39.849399 ], [ -75.359609, 39.849329 ], [ -75.35971, 39.84926 ], [ -75.359819, 39.849219 ], [ -75.35994, 39.84917 ], [ -75.359999, 39.84917 ], [ -75.360049, 39.84919 ], [ -75.36011, 39.849219 ], [ -75.360179, 39.849239 ], [ -75.36029, 39.849219 ], [ -75.36061, 39.8491 ], [ -75.36075, 39.849069 ], [ -75.360399, 39.848609 ], [ -75.36038, 39.84858 ], [ -75.36003, 39.84812 ], [ -75.359779, 39.84782 ], [ -75.35976, 39.847789 ], [ -75.35958, 39.84758 ], [ -75.359509, 39.8475 ], [ -75.359279, 39.847609 ], [ -75.359139, 39.84768 ], [ -75.359049, 39.847719 ], [ -75.3589, 39.847789 ], [ -75.35882, 39.84783 ], [ -75.358329, 39.848059 ], [ -75.35885, 39.848769 ], [ -75.35909, 39.849069 ], [ -75.359149, 39.849149 ], [ -75.359229, 39.849249 ], [ -75.359339, 39.84938 ], [ -75.35944, 39.849499 ], [ -75.35954, 39.84963 ], [ -75.359559, 39.84965 ], [ -75.359599, 39.84972 ], [ -75.359639, 39.849759 ], [ -75.359789, 39.8499 ], [ -75.36011, 39.85026 ], [ -75.360279, 39.850479 ], [ -75.360509, 39.85079 ], [ -75.3607, 39.851029 ], [ -75.360769, 39.851109 ], [ -75.36074, 39.851459 ], [ -75.36071, 39.851759 ], [ -75.3607, 39.85208 ], [ -75.3607, 39.852209 ], [ -75.360689, 39.85236 ], [ -75.360689, 39.85269 ], [ -75.3608, 39.852649 ], [ -75.36102, 39.852559 ], [ -75.361209, 39.852479 ], [ -75.36161, 39.85233 ], [ -75.361719, 39.852289 ], [ -75.361929, 39.852199 ], [ -75.3624, 39.852009 ], [ -75.36277, 39.851859 ], [ -75.363239, 39.851659 ], [ -75.36488, 39.85098 ], [ -75.36511, 39.85089 ], [ -75.36533, 39.8508 ], [ -75.365809, 39.850599 ], [ -75.36619, 39.85045 ], [ -75.36663, 39.85027 ], [ -75.367649, 39.849849 ], [ -75.369099, 39.849249 ], [ -75.3693, 39.84917 ], [ -75.370319, 39.84873 ], [ -75.37046, 39.84867 ], [ -75.37056, 39.84863 ], [ -75.370749, 39.84855 ], [ -75.37086, 39.848509 ], [ -75.37105, 39.848439 ], [ -75.371079, 39.848429 ], [ -75.371199, 39.84838 ], [ -75.37141, 39.8483 ], [ -75.37182, 39.848159 ], [ -75.371879, 39.848139 ], [ -75.37199, 39.8481 ], [ -75.37212, 39.848059 ], [ -75.372419, 39.847959 ], [ -75.37259, 39.84791 ], [ -75.37375, 39.847509 ], [ -75.37455, 39.84722 ], [ -75.37538, 39.84692 ], [ -75.37559, 39.84683 ], [ -75.375889, 39.84668 ], [ -75.375939, 39.84666 ], [ -75.37641, 39.84641 ], [ -75.3769, 39.846159 ], [ -75.37744, 39.845879 ], [ -75.37803, 39.845559 ], [ -75.378409, 39.845349 ], [ -75.37866, 39.84523 ], [ -75.378869, 39.845109 ], [ -75.379219, 39.844919 ], [ -75.37938, 39.844839 ], [ -75.379629, 39.84471 ], [ -75.38014, 39.84444 ], [ -75.380439, 39.844279 ], [ -75.380659, 39.84417 ], [ -75.380979, 39.844009 ], [ -75.38113, 39.843929 ], [ -75.38126, 39.84386 ], [ -75.38141, 39.84378 ], [ -75.381879, 39.84353 ], [ -75.381999, 39.843469 ], [ -75.38244, 39.84324 ], [ -75.38283, 39.843029 ], [ -75.3831, 39.84288 ], [ -75.38348, 39.842679 ], [ -75.38393, 39.84245 ], [ -75.38433, 39.84224 ], [ -75.384569, 39.842109 ], [ -75.384669, 39.842049 ], [ -75.385029, 39.841859 ], [ -75.385559, 39.841589 ], [ -75.38591, 39.841409 ], [ -75.38622, 39.84125 ], [ -75.386279, 39.841219 ], [ -75.38666, 39.84101 ], [ -75.387719, 39.84045 ], [ -75.38878, 39.8399 ], [ -75.38924, 39.83967 ], [ -75.38987, 39.83936 ], [ -75.390099, 39.839239 ], [ -75.39093, 39.838799 ], [ -75.391269, 39.83859 ], [ -75.391419, 39.838499 ], [ -75.39194, 39.838159 ], [ -75.39233, 39.837879 ], [ -75.392889, 39.83748 ], [ -75.393439, 39.837089 ], [ -75.39382, 39.836809 ], [ -75.394029, 39.836649 ], [ -75.394259, 39.836469 ], [ -75.39437, 39.8364 ], [ -75.394439, 39.836349 ], [ -75.39467, 39.836169 ], [ -75.394799, 39.836089 ], [ -75.395049, 39.835929 ], [ -75.39539, 39.83621 ], [ -75.39566, 39.836439 ], [ -75.395959, 39.83669 ], [ -75.396129, 39.836829 ], [ -75.39634, 39.836989 ], [ -75.39666, 39.837249 ], [ -75.39701, 39.837549 ], [ -75.39759, 39.83802 ], [ -75.39761, 39.83803 ], [ -75.39782, 39.83821 ], [ -75.397989, 39.838349 ], [ -75.398209, 39.838529 ], [ -75.398519, 39.838779 ], [ -75.399109, 39.83927 ], [ -75.39935, 39.83946 ], [ -75.39998, 39.839959 ], [ -75.40007, 39.84003 ], [ -75.40022, 39.840139 ], [ -75.400499, 39.84035 ], [ -75.400689, 39.84048 ], [ -75.401139, 39.840779 ], [ -75.40139, 39.84099 ], [ -75.40156, 39.84116 ], [ -75.401579, 39.84118 ], [ -75.40179, 39.84143 ], [ -75.40197, 39.841659 ], [ -75.40251, 39.84235 ], [ -75.40255, 39.842579 ], [ -75.402519, 39.84272 ], [ -75.402489, 39.84278 ], [ -75.402389, 39.84289 ], [ -75.4022, 39.843009 ], [ -75.4021, 39.843019 ], [ -75.400629, 39.843289 ], [ -75.400239, 39.84336 ], [ -75.399779, 39.843459 ], [ -75.399459, 39.843549 ], [ -75.399279, 39.84362 ], [ -75.399009, 39.84372 ], [ -75.39881, 39.84379 ], [ -75.398519, 39.843929 ], [ -75.398339, 39.84405 ], [ -75.39792, 39.844379 ], [ -75.397719, 39.844469 ], [ -75.39741, 39.844539 ], [ -75.3972, 39.844559 ], [ -75.396899, 39.844549 ], [ -75.39661, 39.844549 ], [ -75.396219, 39.844569 ], [ -75.395869, 39.844649 ], [ -75.39536, 39.84477 ], [ -75.394739, 39.844919 ], [ -75.394509, 39.84498 ], [ -75.39432, 39.845019 ], [ -75.394059, 39.845079 ], [ -75.393849, 39.84513 ], [ -75.39373, 39.845189 ], [ -75.393629, 39.845259 ], [ -75.393609, 39.84531 ], [ -75.39368, 39.84531 ], [ -75.39377, 39.84532 ], [ -75.39387, 39.84534 ], [ -75.39396, 39.845359 ], [ -75.395329, 39.84569 ], [ -75.395549, 39.845739 ], [ -75.39594, 39.845829 ], [ -75.39621, 39.845889 ], [ -75.39644, 39.84594 ], [ -75.396719, 39.845999 ], [ -75.396909, 39.84604 ], [ -75.397089, 39.846079 ], [ -75.397219, 39.84611 ], [ -75.39729, 39.84613 ], [ -75.39738, 39.846159 ], [ -75.39746, 39.846189 ], [ -75.397529, 39.84622 ], [ -75.39761, 39.846259 ], [ -75.39769, 39.84631 ], [ -75.39796, 39.84649 ], [ -75.39815, 39.846619 ], [ -75.39841, 39.846779 ], [ -75.399369, 39.84741 ], [ -75.399649, 39.84759 ], [ -75.39993, 39.847779 ], [ -75.40017, 39.84795 ], [ -75.40031, 39.848069 ], [ -75.400409, 39.84818 ], [ -75.400499, 39.84829 ], [ -75.40067, 39.848529 ], [ -75.400779, 39.848689 ], [ -75.40102, 39.84901 ], [ -75.401219, 39.849319 ], [ -75.40129, 39.849429 ], [ -75.40139, 39.849599 ], [ -75.401449, 39.84972 ], [ -75.40151, 39.849869 ], [ -75.40157, 39.850049 ], [ -75.401669, 39.85046 ], [ -75.401709, 39.850649 ], [ -75.40179, 39.851019 ], [ -75.40183, 39.85127 ], [ -75.40187, 39.85161 ], [ -75.40193, 39.85244 ], [ -75.40197, 39.852649 ], [ -75.40224, 39.852579 ], [ -75.402519, 39.85251 ], [ -75.402809, 39.852369 ], [ -75.40309, 39.85216 ], [ -75.40328, 39.851939 ], [ -75.403419, 39.85178 ], [ -75.403609, 39.85163 ], [ -75.403739, 39.85152 ], [ -75.40385, 39.85145 ], [ -75.404019, 39.851369 ], [ -75.404229, 39.85126 ], [ -75.40462, 39.851049 ], [ -75.40535, 39.85071 ], [ -75.406179, 39.850319 ], [ -75.406719, 39.85007 ], [ -75.406899, 39.84998 ], [ -75.40742, 39.84974 ], [ -75.40805, 39.84944 ], [ -75.408779, 39.8491 ], [ -75.4093, 39.848859 ], [ -75.40992, 39.84857 ], [ -75.409279, 39.84777 ], [ -75.40921, 39.84768 ], [ -75.409149, 39.847599 ], [ -75.40904, 39.84746 ], [ -75.408829, 39.847179 ], [ -75.40866, 39.846959 ], [ -75.408429, 39.846799 ], [ -75.408329, 39.84677 ], [ -75.408149, 39.84676 ], [ -75.407919, 39.846819 ], [ -75.40773, 39.84692 ], [ -75.40751, 39.84701 ], [ -75.407199, 39.847159 ], [ -75.40687, 39.84732 ], [ -75.406629, 39.847429 ], [ -75.40598, 39.84774 ], [ -75.405509, 39.847959 ], [ -75.405229, 39.848079 ] ] } }, +{ "type": "Feature", "properties": { "shape_id": "310348", "route_id": "84" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.07694, 40.023655 ], [ -75.076961, 40.023463 ], [ -75.076849, 40.023262 ], [ -75.076836, 40.023246 ], [ -75.076058, 40.022521 ], [ -75.075698, 40.022175 ], [ -75.07533, 40.021837 ], [ -75.074998, 40.021525 ], [ -75.074859, 40.021386 ], [ -75.074691, 40.021198 ], [ -75.074593, 40.021082 ], [ -75.07448, 40.020945 ], [ -75.074432, 40.02089 ], [ -75.074304, 40.020739 ], [ -75.07409, 40.020491 ], [ -75.07386, 40.020213 ], [ -75.073811, 40.020156 ], [ -75.073634, 40.019946 ], [ -75.073376, 40.019639 ], [ -75.073214, 40.019442 ], [ -75.073186, 40.019408 ], [ -75.073148, 40.019366 ], [ -75.073105, 40.019327 ], [ -75.072918, 40.019161 ], [ -75.072785, 40.019043 ], [ -75.072676, 40.018943 ], [ -75.072643, 40.018912 ], [ -75.072592, 40.018848 ], [ -75.072555, 40.018778 ], [ -75.072544, 40.01875 ], [ -75.072502, 40.018643 ], [ -75.07239, 40.018369 ], [ -75.072278, 40.018082 ], [ -75.072181, 40.017812 ], [ -75.072083, 40.017542 ], [ -75.071852, 40.016945 ], [ -75.071655, 40.016428 ], [ -75.071463, 40.015924 ], [ -75.071304, 40.015465 ], [ -75.071227, 40.015277 ], [ -75.071067, 40.014841 ], [ -75.070978, 40.014596 ], [ -75.070881, 40.014347 ], [ -75.070433, 40.013176 ], [ -75.069999, 40.012021 ], [ -75.069929, 40.011834 ], [ -75.069865, 40.01166 ], [ -75.069803, 40.011516 ], [ -75.06966, 40.011171 ], [ -75.06952, 40.010798 ], [ -75.069473, 40.010669 ], [ -75.069448, 40.010595 ], [ -75.069418, 40.010497 ], [ -75.069445, 40.0104 ], [ -75.069434, 40.010207 ], [ -75.069425, 40.01012 ], [ -75.069413, 40.010058 ], [ -75.069352, 40.009839 ], [ -75.069281, 40.009624 ], [ -75.069228, 40.009466 ], [ -75.069164, 40.009271 ], [ -75.069087, 40.009047 ], [ -75.069054, 40.00895 ], [ -75.069007, 40.008817 ], [ -75.068979, 40.008727 ], [ -75.068957, 40.008645 ], [ -75.068845, 40.008654 ], [ -75.068418, 40.008691 ], [ -75.068165, 40.008714 ], [ -75.06613, 40.008987 ], [ -75.06602, 40.009003 ], [ -75.065884, 40.009041 ], [ -75.065663, 40.009115 ], [ -75.065126, 40.009275 ], [ -75.064529, 40.009464 ], [ -75.064119, 40.00959 ], [ -75.063154, 40.009898 ], [ -75.062516, 40.0101 ], [ -75.062379, 40.010143 ], [ -75.062298, 40.010166 ], [ -75.062189, 40.010208 ], [ -75.062089, 40.010256 ], [ -75.061999, 40.010304 ], [ -75.061857, 40.010383 ], [ -75.061056, 40.010858 ], [ -75.060722, 40.011055 ], [ -75.06064, 40.011106 ], [ -75.059575, 40.011762 ], [ -75.058833, 40.012214 ], [ -75.058725, 40.012281 ], [ -75.05864, 40.01233 ], [ -75.058441, 40.012435 ], [ -75.05793, 40.012726 ], [ -75.057776, 40.012814 ], [ -75.05664, 40.013469 ], [ -75.056474, 40.013549 ], [ -75.055947, 40.013827 ], [ -75.054, 40.014809 ], [ -75.053834, 40.01489 ], [ -75.0537, 40.014951 ], [ -75.052624, 40.015409 ], [ -75.052253, 40.015578 ], [ -75.051345, 40.016024 ], [ -75.050305, 40.016577 ], [ -75.049966, 40.016732 ], [ -75.049877, 40.016734 ], [ -75.049574, 40.016864 ], [ -75.049486, 40.016849 ], [ -75.049432, 40.016836 ], [ -75.049342, 40.016805 ], [ -75.049273, 40.016774 ], [ -75.049213, 40.016739 ], [ -75.048983, 40.016602 ], [ -75.048705, 40.016399 ], [ -75.048623, 40.01634 ], [ -75.04858, 40.01631 ], [ -75.048555, 40.016293 ], [ -75.048467, 40.016241 ], [ -75.048379, 40.016196 ], [ -75.048309, 40.016161 ], [ -75.048206, 40.016118 ], [ -75.048133, 40.016093 ], [ -75.048054, 40.016069 ], [ -75.047957, 40.016047 ], [ -75.047843, 40.016031 ], [ -75.047767, 40.016024 ], [ -75.047656, 40.016017 ], [ -75.047546, 40.016014 ], [ -75.047448, 40.016017 ], [ -75.047347, 40.016025 ], [ -75.047244, 40.016042 ], [ -75.047169, 40.016062 ], [ -75.047027, 40.016103 ], [ -75.046894, 40.016152 ], [ -75.046743, 40.016227 ], [ -75.046666, 40.016273 ], [ -75.046602, 40.01631 ], [ -75.046531, 40.016359 ], [ -75.046493, 40.016386 ], [ -75.046416, 40.016451 ], [ -75.046363, 40.016514 ], [ -75.046326, 40.016577 ], [ -75.046306, 40.016647 ], [ -75.046303, 40.016717 ], [ -75.046312, 40.016788 ], [ -75.046337, 40.016856 ], [ -75.046377, 40.016921 ], [ -75.046427, 40.016977 ], [ -75.046673, 40.017258 ], [ -75.046878, 40.017489 ], [ -75.046949, 40.01758 ], [ -75.047106, 40.017779 ], [ -75.047133, 40.017827 ], [ -75.047147, 40.017869 ], [ -75.047156, 40.017908 ], [ -75.047158, 40.017939 ], [ -75.047157, 40.017987 ], [ -75.047146, 40.018028 ], [ -75.047127, 40.018072 ], [ -75.047103, 40.018108 ], [ -75.047083, 40.018141 ], [ -75.047035, 40.018194 ], [ -75.046793, 40.018339 ], [ -75.046727, 40.018376 ], [ -75.046465, 40.018522 ], [ -75.046384, 40.018567 ], [ -75.046298, 40.018614 ], [ -75.04616, 40.018688 ], [ -75.04606, 40.018735 ], [ -75.045923, 40.018794 ], [ -75.045346, 40.019014 ], [ -75.045239, 40.019061 ], [ -75.044816, 40.019248 ], [ -75.044764, 40.019276 ], [ -75.044448, 40.019434 ], [ -75.044003, 40.019658 ], [ -75.043388, 40.019957 ], [ -75.043362, 40.01997 ], [ -75.043294, 40.020001 ], [ -75.043194, 40.020038 ], [ -75.043106, 40.02006 ], [ -75.043015, 40.020078 ], [ -75.042931, 40.020089 ], [ -75.042811, 40.0201 ], [ -75.04269, 40.020106 ], [ -75.042456, 40.020106 ], [ -75.041955, 40.020106 ], [ -75.041812, 40.020106 ], [ -75.041654, 40.020115 ], [ -75.041512, 40.020129 ], [ -75.041365, 40.020159 ], [ -75.041281, 40.020187 ], [ -75.040622, 40.020472 ], [ -75.040193, 40.020661 ], [ -75.039708, 40.020875 ], [ -75.039474, 40.020979 ], [ -75.038922, 40.021228 ], [ -75.038512, 40.021407 ], [ -75.038192, 40.021563 ], [ -75.038103, 40.021615 ], [ -75.038009, 40.021695 ], [ -75.037911, 40.0218 ], [ -75.037849, 40.021879 ], [ -75.037814, 40.021933 ], [ -75.037763, 40.022037 ], [ -75.037734, 40.022104 ], [ -75.037716, 40.022147 ], [ -75.037699, 40.022189 ], [ -75.037664, 40.022275 ], [ -75.037609, 40.022464 ], [ -75.037594, 40.022529 ], [ -75.037568, 40.022634 ], [ -75.037528, 40.022729 ], [ -75.03748, 40.022817 ], [ -75.037414, 40.022903 ], [ -75.037326, 40.022994 ], [ -75.037264, 40.023056 ], [ -75.03716, 40.023131 ], [ -75.037052, 40.023201 ], [ -75.036959, 40.02325 ], [ -75.036853, 40.023301 ], [ -75.03675, 40.023351 ], [ -75.036497, 40.023461 ], [ -75.036152, 40.023611 ], [ -75.03578, 40.023773 ], [ -75.035637, 40.023838 ], [ -75.035378, 40.023964 ], [ -75.034746, 40.024237 ], [ -75.034483, 40.024352 ], [ -75.033924, 40.024614 ], [ -75.033025, 40.025034 ], [ -75.032461, 40.025298 ], [ -75.031641, 40.025681 ], [ -75.031589, 40.025711 ], [ -75.031688, 40.025808 ], [ -75.032056, 40.026215 ], [ -75.032288, 40.026489 ], [ -75.032466, 40.026702 ], [ -75.032667, 40.026948 ], [ -75.032755, 40.027057 ], [ -75.032795, 40.027108 ], [ -75.032825, 40.027145 ], [ -75.0329, 40.027241 ], [ -75.033087, 40.027487 ], [ -75.033287, 40.027741 ], [ -75.033519, 40.028037 ], [ -75.033647, 40.028202 ], [ -75.03394, 40.028577 ], [ -75.034348, 40.029098 ], [ -75.034683, 40.029541 ], [ -75.03473, 40.029602 ], [ -75.035015, 40.029949 ], [ -75.035165, 40.030134 ], [ -75.033875, 40.030787 ] ] } } +] +} diff --git a/index.html b/index.html new file mode 100644 index 00000000..c2ad5271 --- /dev/null +++ b/index.html @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + SEPTA service reductions simulator + + + + + +
+
+
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/js/dropdown.js b/js/dropdown.js new file mode 100644 index 00000000..a8b54281 --- /dev/null +++ b/js/dropdown.js @@ -0,0 +1,83 @@ +import * as utils from './utils.js'; + +/** +* Populate options of a drop-down menu +* +* @param {EventTarget} eventBus - The event bus to dispatch the event on +* @param {object} geojsonData - The GeoJSON FeatureCollection with data +* @param {string} dropdownId - The id of the dropdown element +* @param {string} propertyName - The property name which contains option values +* @param {string} defaultText - The text to display for the default option +*/ +export function populateDropdown(eventBus, geojsonData, dropdownId, propertyName, defaultText = 'Please choose an option') { + // Get the dropdown element + const dropdownElement = document.getElementById(dropdownId); + // Clear existing options + dropdownElement.innerHTML = ''; + // Turn disabled off + dropdownElement.disabled = false; + + // Add a default option + const defaultOption = document.createElement('option'); + defaultOption.value = ''; + defaultOption.textContent = defaultText; + dropdownElement.appendChild(defaultOption); + + // Create array of unique property values + const optionsArray = utils.getUniquePropertyValues(geojsonData, propertyName); + + // Populate new options + optionsArray.forEach(value => { + const option = document.createElement('option'); + option.value = value; + option.textContent = value; + dropdownElement.appendChild(option); + }); + + // Dispatch filtered data to event bus once selection is made + dispatchData(eventBus, geojsonData, dropdownId, propertyName); +} + +/** +* Listen for changes in a dropdown menu and dispatch an event containing the data filtered by the +* value of the selection +* +* @param {EventTarget} eventBus - The event bus to dispatch the event on +* @param {object} geojsonData - The GeoJSON FeatureCollection with data to be filtered +* @param {string} dropdownId - The id of the dropdown element +* @param {string} propertyName - The property name to filter on +*/ +export function dispatchData(eventBus, geojsonData, dropdownId, propertyName) { + const dropdownElement = document.getElementById(dropdownId); + dropdownElement.addEventListener('change', (event) => { + const selectedValue = event.target.value; + const filteredData = utils.filterGeojsonByProperty(geojsonData, propertyName, selectedValue); + const customEvent = new CustomEvent(`${dropdownId}Data`, { detail: { value: selectedValue, data: filteredData } }); + eventBus.dispatchEvent(customEvent); + // For debugging, print to console the name and details of the event dispatched + console.log(`Event dispatched: ${customEvent.type}`, customEvent.detail); + + }); +} + +/** +* Populate a new dropdown menu with data filtered from a previous dropdown selection passed via event bus, +* with values based on a specified property. +* +* @param {EventTarget} eventBus - The event bus to listen on +* @param {string} dataEventName - The name of the event to listen for, containing filtered data +* @param {string} dropdownId - The id of the dropdown element to be populated +* @param {string} propertyName - Name of the property with values to be shown as options +* @param {string} defaultText - The text to display for the default option +*/ +export function cascadeDropdown(eventBus, dataEventName, dropdownId, propertyName, defaultText) { + eventBus.addEventListener(dataEventName, (event) => { + const filteredData = event.detail.data; + // Print to console name and details of the received event for debugging + console.log(`Event received: ${dataEventName}`, event.detail); + // Populate the new dropdown with the filtered data + populateDropdown(eventBus, filteredData, dropdownId, propertyName, defaultText); + // Logging for debugging + console.log(`New dropdown populated for: ${dropdownId}, filtering by ${propertyName}`); + }); +} diff --git a/js/htmlDisplay.js b/js/htmlDisplay.js new file mode 100644 index 00000000..376d198c --- /dev/null +++ b/js/htmlDisplay.js @@ -0,0 +1,80 @@ +import * as storage from './storage.js'; + +/** +* When user selection is made, display the relevant data in the results section +* +* @param {EventTarget} eventBus - The event bus to listen for the event on +*/ +export function displayUserData(eventBus) { + eventBus.addEventListener('stopData', (event) => { + const resultElement = document.querySelector('#user-results-contents'); + const resultData = event.detail.data; + + // Clear previous results + resultElement.innerHTML = ''; + + if (resultData.features.length === 0 | resultData.features.length > 1) { + resultElement.textContent = `Please make a valid selection using the drop-down menus above.`; + return; + } + + // Pull out relevant fields from the result + const resultsFields = resultData.features[0].properties; + const routeId = resultsFields.route_id; + const tripHeadsign = resultsFields.trip_headsign; + const weekPeriod = resultsFields.week_period; + const timeOfDay = resultsFields.time_of_day; + const stopName = resultsFields.stop_name; + const arrivalsBeforeCuts = resultsFields.arrivals_before_cuts; + const arrivalsDuringCuts = resultsFields.arrivals_during_cuts; + const arrivalsChange = resultsFields.percent_change; + const waitTimeDifference = resultsFields.expected_wait_time_difference; + + // Some derived calculations for display + const arrivalsChangePercent = (arrivalsChange >= 0) ? `an increase of ${Math.round(arrivalsChange * 100)}%` : `a decrease of ${Math.abs(Math.round(arrivalsChange * 100))}%`; + const waitTimeDifferenceText = (waitTimeDifference >= 0) ? `${waitTimeDifference} minutes longer` : `${Math.abs(waitTimeDifference)} minutes less`; + + // Display the results + resultElement.innerHTML = + `

For your trip (Route ${routeId} going towards ${tripHeadsign} during ${weekPeriod}s starting at ${stopName}), + an average of ${arrivalsBeforeCuts} buses came in the ${timeOfDay} before the August 2025 service cuts.

+ +

However, during the cuts, an average of ${arrivalsDuringCuts} buses came, ${arrivalsChangePercent} from the pre-cut average. + This meant that on average you waited ${waitTimeDifferenceText} for your bus during the period of the service cuts.

`; + + }); +}; + +/** +* Display stored community data summary statistics in the community-summary section +* +* @param {string} context - 'init' for initial display, 'update' for after user data stored +*/ +export async function displayCommunityDataSummary(context) { + const displayData = await storage.calculateSummaryStatistics(); + + // Values for display + const contextText = (context === 'init') ? 'trips' : 'trips (including your own)'; + const numTrips = displayData.totalSubmissions; + const averagePercentChange = (displayData.averagePercentChange >= 0) ? `${Math.round(displayData.averagePercentChange * 100)}% increase` : `${Math.abs(Math.round(displayData.averagePercentChange * 100))}% decrease`; + const totalWaitTimeAverage = (displayData.totalWaitTimeDifference / displayData.totalSubmissions); + const totalWaitTimeDisplay = (totalWaitTimeAverage >= 0) ? `${Math.round(totalWaitTimeAverage)} additional minutes` : `${Math.abs(Math.round(totalWaitTimeAverage))} fewer minutes`; + + const summaryElement = document.querySelector('.community-results'); + summaryElement.innerHTML = ` +

Affects on community trips

+

Riders on the ${numTrips} ${contextText} summitted by users of this tool saw a ${averagePercentChange} in the number of buses arriving during their travel window during the August 2025 service cuts.

+

This meant that the riders of these trips waited ${totalWaitTimeDisplay} for their bus to come compared to before the service cuts, on average.

+ `; +}; + +/** + * Listen for user data storage event and update community data summary display + * + * @param {EventTarget} eventBus - The event bus to listen for the event on + */ +export function updateCommunityDataSummary(eventBus) { + eventBus.addEventListener('userDataStored', async () => { + await displayCommunityDataSummary('update'); + }); +}; diff --git a/js/main.js b/js/main.js new file mode 100644 index 00000000..8fd2e44b --- /dev/null +++ b/js/main.js @@ -0,0 +1,50 @@ +import * as utils from './utils.js'; +import { initMap } from './map.js'; +import * as dropdown from './dropdown.js'; +import * as htmlDisplay from './htmlDisplay.js'; +import * as storage from './storage.js'; + +// Events in event bus: +// routeData - dispatched when route is selected +// directionData - dispatched when trip direction is selected +// weekdayData - dispatched when day of week is selected +// timeData - dispatched when time of day is selected +// stopData - dispatched when stop is selected +// userDataStored - dispatched when user data is stored in Firestore +const events = new EventTarget(); + +const mapElement = document.querySelector('#map'); + +// Read geoJSON data +const septaNetwork = await utils.getGeojsonCollection('septa_routes.json'); +const arrivalsAndStops = await utils.getGeojsonCollection('arrivals_and_stops.json'); + +// Initialize map +initMap(events, mapElement, septaNetwork); + +// Display existing user data summary statistics +htmlDisplay.displayCommunityDataSummary('init'); + +// Populate route dropdown +dropdown.populateDropdown(events, arrivalsAndStops, 'route', 'route_id', 'Please choose your route'); + +// Populate trip direction dropdown based on selected route +dropdown.cascadeDropdown(events, 'routeData', 'direction', 'trip_headsign', 'Please choose your trip direction'); + +// Populate day of week dropdown based on previous selections +dropdown.cascadeDropdown(events, 'directionData', 'weekday', 'week_period', 'Please choose the day of the week'); + +// Populate day of week dropdown based on previous selections +dropdown.cascadeDropdown(events, 'weekdayData', 'time', 'time_of_day', 'Please choose your stop'); + +// Populate stop dropdown based on previous selections +dropdown.cascadeDropdown(events, 'timeData', 'stop', 'stop_name', 'Please choose your stop'); + +// In user-results section, listen for final stop selection and display results +htmlDisplay.displayUserData(events); + +// Store user data to Firestore +storage.storeUserData(events); + +// Update user data summary statistics when user's own data is stored +htmlDisplay.updateCommunityDataSummary(events); diff --git a/js/map.js b/js/map.js new file mode 100644 index 00000000..5cb9b6cc --- /dev/null +++ b/js/map.js @@ -0,0 +1,106 @@ +import * as utils from './utils.js'; + +/** +* Initialize the Leaflet map with base layers and controls +* @param {EventTarget} eventBus - The event bus to listen for data events +* @param {HTMLElement} mapElement - DOM element to attach the map to +* @param {Object} initialData - GeoJSON data to display on the map +*/ +async function initMap(eventBus, mapElement, initialData) { + // Initialize the Leaflet map + map = L.map(mapElement, { + center: [39.95, -75.19], // Philadelphia coordinates + zoom: 10, + }); + + // Add base tile layer + L.tileLayer('https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png', { + attribution: '© OpenStreetMap contributors © CARTO' + }).addTo(map); + + // Load initial data + const initialLayer = L.geoJSON(initialData, { + style: feature => { + return { color: '#be9b0eff' }; + } + }); + initialLayer.addTo(map); + map.fitBounds(initialLayer.getBounds()); + + // When route is selected, update map to show only that route + eventBus.addEventListener('routeData', (event) => { + const routeData = event.detail.data; + const routeId = utils.getUniquePropertyValues(routeData, 'route_id')[0]; + const routeMapData = utils.filterGeojsonByProperty(initialData, 'route_id', routeId); + console.log('Updating map for route:', routeId, routeMapData); + + // Highlight the selected route on the map + updateRouteMap(routeMapData); + + // Change opacity of other routes + initialLayer.eachLayer(layer => { + if (layer.feature.properties.route_id !== routeId) { + layer.setStyle({ opacity: 0.2}); + } + }); + }); + + // When stop is selected, update map to show that stop + eventBus.addEventListener('stopData', (event) => { + const stopMapData = event.detail.data; + console.log('Updating map for stop:', stopMapData); + + // Highlight the selected stop on the map + updateStopMap(stopMapData); + }); +} + +/** +* Show selected route on map +* @param {Object} routeData - GeoJSON data to display on the map +*/ +function updateRouteMap(routeData) { + // Remove existing route layer if present + if (map.routeLayer) { + map.removeLayer(map.routeLayer); + } + + // Add new route layer + map.routeLayer = L.geoJSON(routeData, { + style: feature => { + return { color: '#ff7800ff', weight: 5 }; + } + }); + map.routeLayer.addTo(map); + map.fitBounds(map.routeLayer.getBounds()); +} + +/** +* Show selected stop on map +* @param {Object} stopData - GeoJSON data for the selected stop +*/ +function updateStopMap(stopData) { + // Define custom icon for stop marker + const icon = L.divIcon({ + className: 'custom-div-icon', + html: "
departure_board", + iconSize: [30, 42], + iconAnchor: [15, 42] + }); + + // Remove existing stop marker if present + if (map.stopMarker) { + map.removeLayer(map.stopMarker); + } + + // Add new stop marker + const stopFeature = stopData.features[0]; + const [lat, lng] = stopFeature.geometry.coordinates.slice().reverse(); // GeoJSON uses [lng, lat] + + map.stopMarker = L.marker([lat, lng], { + icon: icon + }).addTo(map); + map.setView([lat, lng], 15); +} + +export { initMap }; diff --git a/js/storage.js b/js/storage.js new file mode 100644 index 00000000..3681abfb --- /dev/null +++ b/js/storage.js @@ -0,0 +1,107 @@ +// Import the functions you need from the SDKs you need +import { initializeApp } from 'https://www.gstatic.com/firebasejs/12.7.0/firebase-app.js'; +import { getFirestore, collection, addDoc, getDocs } from 'https://www.gstatic.com/firebasejs/12.7.0/firebase-firestore.js'; + +// Your web app's Firebase configuration +const firebaseConfig = { + apiKey: 'AIzaSyAp8afrw8k9_kyPgGD0NuthJVvcNSfk8GU', + authDomain: 'septa-cuts-impacts.firebaseapp.com', + projectId: 'septa-cuts-impacts', + storageBucket: 'septa-cuts-impacts.firebasestorage.app', + messagingSenderId: '260659001862', + appId: '1:260659001862:web:e3ba37f5b6071dfe4ce187', +}; + +// Initialize Firebase +const app = initializeApp(firebaseConfig); +const db = getFirestore(app); + +/** +* When stopData event is dispatched, store the user selection data in Firestore +* +* @param {EventTarget} eventBus - The event bus to listen for the event on +*/ +export function storeUserData(eventBus) { + eventBus.addEventListener('stopData', async (event) => { + const resultData = event.detail.data; + if (resultData.features.length === 0 | resultData.features.length > 1) { + console.log('Invalid selection, data not stored.'); + return; + } + const resultsFields = resultData.features[0].properties; + try { + await addDoc(collection(db, 'stop_data_storage'), { + route_id: resultsFields.route_id, + trip_headsign: resultsFields.trip_headsign, + week_period: resultsFields.week_period, + time_of_day: resultsFields.time_of_day, + stop_id: resultsFields.stop_id, + stop_name: resultsFields.stop_name, + arrivals_before_cuts: resultsFields.arrivals_before_cuts, + arrivals_during_cuts: resultsFields.arrivals_during_cuts, + percent_change: resultsFields.percent_change, + expected_wait_time_difference: resultsFields.expected_wait_time_difference, + timestamp: new Date() + }); + console.log('User data successfully stored.'); + } catch (e) { + console.error('Error adding document: ', e); + } + + // After storing user data, dispatch an event to indicate data were stored + const updateEvent = new Event('userDataStored'); + eventBus.dispatchEvent(updateEvent); + }); +}; + +/** +* Get stored community data from Firestore +* +* @returns {object} Firestore collection +*/ +async function getCommunityData() { + const communityDataCollection = collection(db, 'stop_data_storage'); + const communityData = await getDocs(communityDataCollection); + const allCommunityData = []; + communityData.forEach((doc) => { + allCommunityData.push({ id: doc.id, ...doc.data() }); + }); + return allCommunityData; +}; + +/** +* From the retrieved community data, calculate the following summary statistics: +* - Total number of submissions +* - Total number of arrivals before cuts +* - Total number of arrivals during cuts +* - Average percent change in arrivals +* - Sum of expected wait time difference +* +* @returns {object} summary statistics +*/ +export async function calculateSummaryStatistics() { + const communityDataArray = await getCommunityData(); + const totalSubmissions = communityDataArray.length; + let totalArrivalsBeforeCuts = 0; + let totalArrivalsDuringCuts = 0; + let totalWaitTimeDifference = 0; + + communityDataArray.forEach((data) => { + totalArrivalsBeforeCuts += data.arrivals_before_cuts; + totalArrivalsDuringCuts += data.arrivals_during_cuts; + totalWaitTimeDifference += data.expected_wait_time_difference; + }); + + const averagePercentChange = totalSubmissions > 0 ? (totalArrivalsDuringCuts / totalArrivalsBeforeCuts) - 1 : 0; + + const returnData = + { + totalSubmissions, + totalArrivalsBeforeCuts, + totalArrivalsDuringCuts, + averagePercentChange, + totalWaitTimeDifference + }; + + return returnData; +}; diff --git a/js/utils.js b/js/utils.js new file mode 100644 index 00000000..623df6e9 --- /dev/null +++ b/js/utils.js @@ -0,0 +1,55 @@ +/** +* Read geojson file +* +* @param {string} filename - The name of the geojson file to load +* @return {object} The FeatureCollection as loaded from the data file +*/ +export async function getGeojsonCollection(filename) { + const resp = await fetch(`data/${filename}`); + const data = await resp.json(); + return data; +} + +/** +* Find all unique values of a specified property in GeoJSON features. +* +* @param {object} geojsonData The GeoJSON object (FeatureCollection). +* @param {string} propertyName The name of the property to check. +* @returns {Array} An array of unique values. +*/ +export function getUniquePropertyValues(geojsonData, propertyName) { + if (!geojsonData || !Array.isArray(geojsonData.features)) { + throw new Error("Invalid GeoJSON FeatureCollection"); + } + + const values = geojsonData.features + .map(feature => feature.properties?.[propertyName]) + .filter(value => value !== undefined && value !== null); + + return [...new Set(values)]; +} + +/** +* Filter a geoJSON FeatureCollection so that only features with specified property value are included +* +* @param {object} geojsonData - The GeoJSON FeatureCollection +* @param {string} propertyName - The property name to filter on +* @param {any} propertyValue - The property value to match +* @returns {object} - A new GeoJSON FeatureCollection with filtered features +*/ +export function filterGeojsonByProperty(geojsonData, propertyName, propertyValue) { + if (!geojsonData || !Array.isArray(geojsonData.features)) { + throw new Error("Invalid GeoJSON FeatureCollection"); + } + + const filteredFeatures = geojsonData.features.filter(feature => + feature.properties?.[propertyName] === propertyValue + ); + + const returnData = { + type: "FeatureCollection", + features: filteredFeatures + }; + + return returnData; +} diff --git a/r/export_to_geojson.R b/r/export_to_geojson.R new file mode 100644 index 00000000..921b4175 --- /dev/null +++ b/r/export_to_geojson.R @@ -0,0 +1,162 @@ +# Purpose ------------------------------------------------------------------------------------- +# Read SEPTA's GTFS feeds pre- and post-cuts and export needed subsets of data as geojson files. + +# Preliminaries ------------------------------------------------------------------------------- + +library(tidyverse) +library(tidylog) +library(janitor) +library(tidytransit) +library(sf) + +# Set path relative to location of this script +setwd(dirname(this.path::this.dir())) + +data_dir <- str_c(getwd(), "/data") + +# Arrivals data ----------------------------------------------------------------------------- + +arrivals_pre_raw <- data.table::fread(str_c(data_dir, "raw", "arrivals_data", "stop_observations_week1.csv", sep = "/")) %>% + clean_names() + +arrivals_post_raw <- data.table::fread(str_c(data_dir, "raw", "arrivals_data", "stop_observations_week2.csv", sep = "/")) %>% + clean_names() + +# Check which route/stop combinations are present in both data +stops_pre <- arrivals_pre_raw %>% + distinct(route_id, stop_id, stop_name) + +stops_post <- arrivals_post_raw %>% + distinct(route_id, stop_id, stop_name) + +stops_good <- inner_join(stops_pre, stops_post) + +# inner_join: added no columns +# > rows only in stops_pre (1,430) +# > rows only in stops_post ( 154) +# > matched rows 6,809 +# > ======= +# > rows total 6,809 + +# Get arrival times for routes/stops which were served both pre- and post-cuts +arrivals_filtered_pre <- arrivals_pre_raw %>% + # filter: removed 161,960 rows (7%), 2,069,834 rows remaining + filter(route_id %in% stops_good$route_id) %>% + # filter: removed 28,827 rows (1%), 2,041,007 rows remaining + filter(stop_id %in% stops_good$stop_id) %>% + mutate(period = "before_cuts") + +arrivals_filtered_post <- arrivals_post_raw %>% + # filter: no rows removed + filter(route_id %in% stops_good$route_id) %>% + # filter: removed 20,020 rows (1%), 1,830,552 rows remaining + filter(stop_id %in% stops_good$stop_id) %>% + mutate(period = "during_cuts") + +arrivals_ready <- arrivals_filtered_pre %>% + bind_rows(arrivals_filtered_post) %>% + mutate(day_of_week = wday(service_date, label = TRUE)) %>% + mutate(week_period = if_else(day_of_week %in% c("Sat", "Sun"), "Weekend", "Weekday")) %>% + mutate(arrival_hour = as.numeric(str_extract(observed_time, "^\\d{2}"))) %>% + mutate(time_of_day = + case_when(arrival_hour <= 6 ~ "Early morning (00:00 to 6:59)", + arrival_hour <= 9 ~ "Morning rush (07:00 to 9:59)", + arrival_hour <= 14 ~ "Midday (10:00 to 14:59)", + arrival_hour <= 18 ~ "Afternoon rush (15:00 to 18:59)", + arrival_hour <= 23 ~ "Evening (19:00 to 23:59)")) %>% + mutate(time_of_day = + fct_relevel(time_of_day, + "Early morning (00:00 to 6:59)", + "Morning rush (07:00 to 9:59)", + "Midday (10:00 to 14:59)", + "Afternoon rush (15:00 to 18:59)", + "Evening (19:00 to 23:59)")) + +# Directions often have multiple headsigns; pick the most common per direction +directions <- arrivals_ready %>% + count(route_id, direction_id, trip_headsign) %>% + arrange(route_id, direction_id, desc(n)) %>% + slice_max(order_by = n, by = c(route_id, direction_id), with_ties = FALSE) + +# Clean order of routes +routes_order <- gtools::mixedsort(unique(arrivals_ready$route_id)) + +# Aggregate number of arrivals +arrivals_aggregated <- arrivals_ready %>% + mutate(stop_id = as.character(stop_id)) %>% + group_by(period, route_id, direction_id, week_period, stop_id, stop_name, gtfs_stop_sequence, time_of_day) %>% + summarize(arrivals = n()) %>% + ungroup() %>% + # Join prototypical direction headsigns + left_join(directions %>% select(-n)) %>% + # Normalize counts to be arrivals per day + mutate(arrivals = if_else(week_period == "Weekday", arrivals / 5, arrivals / 2)) %>% + # Pivot periods to top + pivot_wider(names_from = period, + values_from = arrivals, + names_prefix = "arrivals_", + values_fill = 0) %>% + # Remove rows with no arrivals + # filter: removed 1,759 rows (3%), 64,820 rows remaining + filter(arrivals_during_cuts > 0 & arrivals_before_cuts > 0) %>% + # Percentage loss + mutate(percent_change = (arrivals_during_cuts / arrivals_before_cuts) - 1) %>% + mutate(percent_change = round(percent_change, 2)) %>% + # Average waiting time + mutate(time_numerator = + case_when(time_of_day == "Early morning (00:00 to 6:59)" ~ 420, + time_of_day == "Morning rush (07:00 to 9:59)" ~ 180, + time_of_day == "Midday (10:00 to 14:59)" ~ 300, + time_of_day == "Afternoon rush (15:00 to 18:59)" ~ 240, + time_of_day == "Evening (19:00 to 23:59)" ~ 300)) %>% + mutate(headway_before_cuts = time_numerator / arrivals_before_cuts) %>% + mutate(headway_during_cuts = time_numerator / arrivals_during_cuts) %>% + mutate(expected_wait_time_difference = (headway_during_cuts - headway_before_cuts) / 2) %>% + mutate(expected_wait_time_difference = round(expected_wait_time_difference, 1)) %>% + # Order and select + mutate(route_id = fct_relevel(route_id, routes_order)) %>% + arrange(route_id, week_period, time_of_day, trip_headsign, gtfs_stop_sequence) %>% + select(route_id, week_period, time_of_day, trip_headsign, stop_id, stop_name, + arrivals_before_cuts, arrivals_during_cuts, + percent_change, expected_wait_time_difference) + +# Post-cut network data -------------------------------------------------------------------------------- + +network_raw <- read_gtfs(str_c(data_dir, "raw", "septa_cut", "google_bus.zip", sep = "/")) + +# Read shapes and stops as sf objects for mapping +network_sf <- gtfs_as_sf(network_raw) + +# Route linestrings +network_geometry <- network_sf[["shapes"]] + +network_trips <- network_raw[["trips"]] + +network_stop_times <- network_raw[["stop_times"]] + +network_stops <- network_raw[["stops"]] %>% + select(stop_id, stop_lat, stop_lon) %>% + st_as_sf(coords = c("stop_lon", "stop_lat"), crs = "EPSG:4326") + +# Collate data -------------------------------------------------------------------------------- + +# Associate linestrings with route numbers +network_routes_mapping <- network_geometry %>% + left_join(network_trips %>% distinct(shape_id, route_id)) %>% + # Only routes in arrivals data + filter(route_id %in% arrivals_aggregated$route_id) + +# Arrivals data with stop coords +arrivals_export <- inner_join(arrivals_aggregated, network_stops) + +# Export -------------------------------------------------------------------------------------- + +st_write(network_routes_mapping, + str_c(data_dir, "/septa_routes.json"), + driver = "GeoJSON") + +st_write(arrivals_export, + str_c(data_dir, "/arrivals_and_stops.json"), + driver = "GeoJSON") + +